/* =========================================================================
   Northland Neighbors — styles.css
   Navy & light-blue brand system (Northland Neighbor logo) for a cash home-buying company.
   Plain CSS, no build step. Edit the tokens in :root to re-theme the site.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette — from the logo (blues + orange accent) */
  --green-900: #12233b;
  --green-800: #17304d;
  --green-700: #22406a;
  --green-600: #33578a;
  --green-100: #e3ebf4;
  --green-050: #eef3f9;

  --blue-600: #3a6aa5;   /* accent blue (text highlights) */
  --blue-500: #5f89bd;   /* light brand blue (taglines) */
  --blue-300: #9db8d6;   /* pale blue on navy */

  --terra-700: #b45f1c;
  --terra-600: #e8843a;
  --terra-500: #ef9a52;
  --terra-100: #fbe7d3;

  --gold-500: #e8843a;

  /* Neutrals — cool, to match the logo's clean white */
  --cream: #f6f8fb;
  --cream-2: #eaf0f7;
  --card: #ffffff;
  --ink: #16293f;
  --body: #414b59;
  --muted: #6b7583;
  --line: #e1e7f0;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(43, 42, 39, 0.06),
               0 2px 8px rgba(43, 42, 39, 0.05);
  --shadow-md: 0 10px 30px rgba(43, 42, 39, 0.10);
  --shadow-lg: 0 24px 60px rgba(18, 35, 59, 0.16);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-800); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tint { background: var(--cream-2); }
.section--green {
  background: linear-gradient(160deg, var(--green-800), var(--green-700));
  color: #e8eef6;
}
.narrow { max-width: 760px; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-700);
  margin-bottom: 0.75rem;
}
.section-head { max-width: 680px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin-bottom: 0; }
.lede { font-size: 1.2rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--green-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; }

.btn-cta { --btn-bg: var(--terra-600); --btn-fg: var(--green-900); }
.btn-cta:hover { background: var(--terra-700); }
.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--green-800);
  border-color: var(--green-700);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--green-050); }
.btn-white { --btn-bg: #fff; --btn-fg: var(--green-800); }
.btn-lg { padding: 1.1rem 1.9rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  color: var(--green-700);
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-mark-img { height: 40px; width: auto; display: block; mix-blend-mode: multiply; }
.brand-chip { background: #fff; border-radius: 10px; padding: 5px 9px; display: inline-flex; align-items: center; }
.brand-chip img { height: 34px; width: auto; display: block; }
@media (max-width: 480px) {
  .brand-mark-img { height: 34px; }
  .brand-name { font-size: 1.02rem; }
  .brand-tag { font-size: 0.55rem; letter-spacing: 0.16em; }
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.brand-tag { font-family: var(--font-body); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-500); margin-top: 2px; }

.site-nav { display: flex; align-items: center; gap: 0.4rem; }
.site-nav > a {
  font-weight: 700;
  color: var(--body);
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  font-size: 0.98rem;
}
.site-nav > a:hover { color: var(--green-800); background: var(--green-050); }
.site-nav > a.active { color: var(--green-800); }
.site-nav .phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--green-800); font-weight: 800;
}
.site-nav .phone:hover { background: transparent; text-decoration: underline; }
.site-nav .btn { margin-left: 0.35rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 12px;
  cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 22px 1.25rem;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), max-height 0.25s var(--ease);
  }
  .site-nav.open {
    max-height: 80vh;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav > a { padding: 0.8rem 0.7rem; border-radius: 10px; }
  .site-nav .phone { padding: 0.8rem 0.7rem; }
  .site-nav .btn { margin: 0.5rem 0 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -10%, var(--green-100), transparent 60%),
    linear-gradient(180deg, #fbfdff, var(--cream));
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) 0;
}
.hero h1 { margin-bottom: 0.5rem; }
.hero h1 .accent { color: var(--blue-600); }
.hero .lede { margin-bottom: 1.5rem; max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; margin-bottom: 1.4rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem;
  list-style: none; padding: 0; margin: 0;
  color: var(--muted); font-weight: 700; font-size: 0.95rem;
}
.hero-trust li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--green-600); flex: none; }

/* Lead form card */
.lead-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(20px, 3vw, 30px);
}
.lead-card h2 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.lead-card .sub { color: var(--muted); margin-bottom: 1.1rem; font-size: 0.98rem; }
.lead-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--terra-100); color: var(--terra-700);
  font-weight: 800; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border-radius: 999px; margin-bottom: 0.9rem;
}
.form-microcopy { margin: 0.9rem 0 0; font-size: 0.85rem; color: var(--muted); text-align: center; }
.form-microcopy svg { width: 14px; height: 14px; vertical-align: -2px; color: var(--green-600); }


@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero .lede { max-width: none; }
  .hero-copy { text-align: center; }
  .hero-copy .hero-actions, .hero-copy .hero-trust { justify-content: center; }
}

/* ---------- Forms ---------- */
.form-row { display: grid; gap: 0.85rem; }
.form-grid-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .form-grid-2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.85rem; }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.field .req { color: var(--terra-700); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  width: 100%;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px var(--green-100);
}
.field input::placeholder, .field textarea::placeholder { color: #a9a094; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field .error-text { color: #b23120; font-size: 0.82rem; font-weight: 700; display: none; }
.field.invalid .error-text { display: block; }

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  background: var(--green-100); color: var(--green-700);
  border-radius: 50%; display: grid; place-items: center;
}
.form-success .check svg { width: 34px; height: 34px; }
.form-success h3 { color: var(--green-800); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--green-900); color: #ccd8e8; }
.trust-strip .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding-block: 26px; text-align: center;
}
.trust-strip .stat b {
  display: block; font-family: var(--font-display); font-size: 1.9rem; color: #fff; line-height: 1;
}
.trust-strip .stat b .stat-pre { display: block; font-family: var(--font-body); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em; opacity: 0.82; margin-bottom: 3px; }
.trust-strip .stat span { font-size: 0.9rem; color: #93a9c6; font-weight: 700; }
@media (max-width: 620px) { .trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1rem;
  background: var(--green-050); color: var(--green-700);
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.35rem; }
.card p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* ---------- How it works (steps) ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step .num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.4rem;
  display: grid; place-items: center; margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(34, 64, 106, 0.28);
}
.step h3 { margin-bottom: 0.35rem; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Situations ---------- */
.chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.chip {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 0.9rem 1rem;
  font-weight: 700; color: var(--ink); font-size: 0.97rem;
}
.chip svg { width: 22px; height: 22px; color: var(--green-600); flex: none; }
@media (max-width: 860px) { .chips { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .chips { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.quote .stars { color: var(--gold-500); display: flex; gap: 2px; margin-bottom: 0.8rem; }
.quote .stars svg { width: 20px; height: 20px; }
.quote blockquote { margin: 0 0 1.1rem; font-size: 1.06rem; color: var(--body); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.quote .avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--green-100); color: var(--green-800);
  display: grid; place-items: center; font-weight: 800; font-family: var(--font-display);
}
.quote .who b { display: block; color: var(--ink); font-size: 0.98rem; }
.quote .who span { color: var(--muted); font-size: 0.86rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); margin-bottom: 0.75rem; overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.1rem 1.25rem; font-weight: 800; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 22px; height: 22px; color: var(--green-700); transition: transform 0.2s var(--ease); }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .answer { padding: 0 1.25rem 1.2rem; color: var(--muted); }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cdd9e8; font-size: 1.15rem; }
.cta-band .btn { margin-top: 0.5rem; }

/* ---------- Split / feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.media-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line); background: var(--green-050);
}
.media-frame svg { width: 100%; height: auto; display: block; }
.media-frame img { width: 100%; height: auto; display: block; }

/* Photo placeholder (drop in your own real photos to replace) */
.img-placeholder {
  aspect-ratio: 52 / 40;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.6rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  background: repeating-linear-gradient(45deg, var(--green-050), var(--green-050) 14px, #e7eef7 14px, #e7eef7 28px);
}
.img-placeholder svg { width: 54px; height: 54px; color: var(--green-600); opacity: 0.75; }
.img-placeholder span { font-weight: 800; font-size: 0.95rem; }
.ticklist { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: 0.7rem; }
.ticklist li { display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 600; color: var(--body); }
.ticklist svg { width: 22px; height: 22px; color: var(--green-600); flex: none; margin-top: 2px; }

/* ---------- Values (about) ---------- */
.value .icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--green-050); color: var(--green-700);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.value .icon svg { width: 30px; height: 30px; }

/* ---------- Contact layout ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-list .ic {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--green-050); color: var(--green-700); display: grid; place-items: center;
}
.contact-list .ic svg { width: 24px; height: 24px; }
.contact-list b { color: var(--ink); display: block; }
.contact-list a { font-weight: 700; }
.contact-panel {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-md);
}

/* ---------- Page hero (about / contact) ---------- */
.page-hero {
  background:
    radial-gradient(900px 420px at 80% -30%, var(--green-100), transparent 60%),
    linear-gradient(180deg, #fbfdff, var(--cream));
  padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 6vw, 64px);
  text-align: center;
}
.page-hero .eyebrow { color: var(--terra-700); }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 620px; margin-inline: auto; }
.breadcrumb { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.5rem; }
.breadcrumb a { font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #b7c6d9; padding-top: clamp(48px, 7vw, 72px); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer h4 { color: #fff; font-family: var(--font-body); font-weight: 800; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #b7c6d9; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text strong { color: var(--gold-500); }
.footer-brand .brand-name { color: var(--terra-600); }
.footer-brand p { margin: 1rem 0 0; color: #93a3b8; max-width: 32ch; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; font-size: 0.97rem; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-500); flex: none; margin-top: 3px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between;
  padding-block: 1.5rem; font-size: 0.85rem; color: #7e8ca1;
}
.footer-bottom .disclaimer { max-width: 720px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal-on-scroll (only hides when JS is active, so the
   site is fully readable even if JavaScript fails to load) ---------- */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; } }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-muted { color: var(--muted); }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--green-800); color: #fff;
  padding: 0.7rem 1rem; border-radius: 0 0 10px 0; z-index: 100; font-weight: 800;
}
.skip-link:focus { left: 0; color: #fff; }
