/* ==========================================================================
   Gulf Alpha — stylesheet
   Single file, no build step. Design tokens live in :root — change a value
   there and it propagates everywhere.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* ------------------------------------------------------------------
     BRAND GREEN — #38761d, the exact value from the supplied logo.
     It is not stored as a fill in that file; it is applied by an
     feColorMatrix (0.21875, 0.4609375, 0.11328125) => rgb(56,118,29).

     The rest of the ramp is derived at the same hue (101.8deg) and then
     TUNED against measured contrast. Changing --brand alone will NOT
     update the others — re-derive if the brand hex ever moves.

     Why one brand color had to become several (measured, not guessed):
       · white on a mid green (#479429) = 3.79 -> too weak for a button,
         so CTAs on light use --brand-deep (white on it = 8.86)
       · the brand green on near-black = 3.6 -> unreadable, so anything
         on a dark surface uses --brand-light (10.93) or --brand-bright
     ------------------------------------------------------------------ */
  --brand:         #38761d;   /* THE logo green — accents on LIGHT (5.56 on white) */
  --brand-deep:    #285415;   /* CTA fill on light; white text = 8.86 */
  --brand-deeper:  #1a370e;   /* deepest — hero gradient top */
  --brand-bright:  #58ba2e;   /* CTA fill on dark; near-black text = 7.61 */
  --brand-light:   #89d965;   /* accent text/icons ON dark; = 10.93 */
  --brand-wash:    #e8f4e3;   /* tint behind trust blocks */
  --hero-bg:       #eef5e8;   /* LIGHT hero — pale green, dark text on it */
  --hero-line:     #dbe3d5;

  /* Near-black, from the logo's keyline. Replaces navy as the dark surface. */
  --ink-950: #0a0c0b;
  --ink-900: #0f1210;
  --ink-850: #171b18;

  /* Accent aliases. --accent is for LIGHT surfaces, --accent-dk for DARK. */
  --accent:      var(--brand);
  --accent-soft: var(--brand-bright);
  --accent-wash: var(--brand-wash);
  --accent-dk:   var(--brand-light);

  /* Legacy names kept as aliases: 37 inline styles in the HTML reference
     --navy-*. Repointing them here re-skins the markup with no HTML edits. */
  --navy-900: var(--ink-950);
  --navy-800: var(--ink-900);      /* headings */
  --navy-700: var(--brand-deep);   /* links, icons, outline buttons */
  --navy-600: var(--brand);        /* eyebrows, hovers */
  --navy-500: var(--brand-bright);

  /* Neutrals */
  --cream:     #f7f7f4;
  --white:     #ffffff;
  --ink:       #232824;
  --ink-muted: #5b625d;
  --line:      #e4e5e0;
  --line-dark: rgba(255, 255, 255, 0.14);

  /* Type */
  --font-head: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);

  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(12, 20, 12, 0.06), 0 2px 8px rgba(12, 20, 12, 0.04);
  --shadow-md: 0 4px 12px rgba(12, 20, 12, 0.08), 0 12px 32px rgba(12, 20, 12, 0.07);
  --shadow-lg: 0 8px 24px rgba(12, 20, 12, 0.1), 0 24px 56px rgba(12, 20, 12, 0.1);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* clears the sticky header on anchor jumps */
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--navy-800);
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 3.65rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy-600); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: 0.4em; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Screen-reader-only, but focusable (skip link) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -110%);
  z-index: 200; background: var(--brand-bright); color: var(--ink-900);
  padding: 0.7rem 1.2rem; font-weight: 700; border-radius: 0 0 var(--radius) var(--radius);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy-800); color: rgba(255, 255, 255, 0.82); }
.section--navy h2,
.section--navy h3 { color: var(--white); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-muted); font-size: 1.125rem; }
.section--navy .section-head p { color: rgba(255, 255, 255, 0.7); }

/* The all-caps label that sits above every section heading */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.section--cream .eyebrow,
.section:not(.section--navy) .eyebrow { color: var(--navy-600); }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(clamp(16rem, 40%, 24rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr)); }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background-color 0.15s var(--ease),
              box-shadow 0.15s var(--ease), border-color 0.15s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brand-deep);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--brand); color: var(--white); box-shadow: var(--shadow-md); }

/* On DARK surfaces the deep green disappears into the background, so flip to the
   bright green with near-black text (7.15) — mirrors how gold-on-navy behaved. */
.mobile-bar .btn--primary,
.section--navy .btn--primary {
  background: var(--brand-bright);
  color: var(--ink-900);
}
.mobile-bar .btn--primary:hover,
.section--navy .btn--primary:hover {
  background: var(--brand-light);
  color: var(--ink-900);
}

/* Eyebrow label on dark sections needs the light green, not the brand green.
   Specificity is deliberate: `.section:not(.section--navy) .eyebrow` above scores
   0,3,0, so these have to match or beat it to take effect. */
.section.section--navy .eyebrow { color: var(--accent-dk); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.6); color: var(--white); }

/* The hero is light now, so its ghost button needs dark ink rather than white. */
.hero .btn--ghost { color: var(--brand-deep); border-color: rgba(56, 118, 29, 0.4); }
.hero .btn--ghost:hover {
  background: rgba(56, 118, 29, 0.07);
  border-color: var(--brand-deep);
  color: var(--brand-deep);
}

.btn--outline {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--navy-700);
}
.btn--outline:hover { background: var(--navy-700); color: var(--white); }

.btn--lg { padding: 1.05rem 2rem; font-size: 1.075rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

.btn svg { flex-shrink: 0; }

/* --------------------------------------------------------------------------
   5. NOTICE BAR + HEADER + NAV
   -------------------------------------------------------------------------- */

/* Top bar aimed at the visitor who was contacted by us and is checking us out.
   This is the primary audience — outbound, not inbound. */
.notice-bar {
  background: var(--brand);       /* the real logo green, not a derived tint */
  color: var(--white);
  text-align: center;
  font-size: 0.925rem;
  font-weight: 500;
  padding: 0.65rem var(--pad);
}
.notice-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.notice-bar a:hover { color: var(--brand-wash); }
.notice-bar .short { display: none; }

@media (max-width: 620px) {
  .notice-bar { font-size: 0.875rem; padding-block: 0.55rem; }
  .notice-bar .full { display: none; }
  .notice-bar .short { display: inline; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-800);
  border-bottom: 1px solid var(--line-dark);
}
/* Header content hugs the viewport edge more than body copy does — the logo was
   sitting a full body gutter in. Mobile is left alone: the clamp floor means the
   padding barely moves below ~600px, so the logo keeps its breathing room. */
.site-header .wrap { padding-inline: clamp(0.9rem, 2.2vw, 1.5rem); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo span { color: var(--accent-dk); }

/* Horizontal lockup: the real alpha mark plus the real outlined GULF / ALPHA
   letterforms from the supplied logo. The header and footer are both dark, so
   they use the REVERSE variant — official artwork, colors adapted for a dark
   ground, which is the standard reverse logo every brand keeps. The official
   green-on-black-on-grey version is logo-lockup.svg, for light backgrounds. */
.logo__lockup {
  height: 34px;          /* aspect is 5.5:1, so height drives a ~187px width */
  width: auto;
  display: block;
}
.logo__lockup--footer { height: 38px; }

/* Below ~430px the full lockup crowds the phone icon and burger, so drop to the
   mark alone via a background swap on the anchor. */
@media (max-width: 430px) {
  .logo__lockup { height: 30px; }
}

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;   /* six labels shrink and wrap internally otherwise */
  transition: color 0.15s var(--ease), background-color 0.15s var(--ease);
}
.nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.07); }
.nav a[aria-current="page"] { color: var(--white); font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--accent-dk); }
.header-phone svg { color: var(--accent-dk); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 0.5rem 0.7rem;
  color: var(--white);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 78% 0%, rgba(56, 118, 29, 0.07), transparent 64%),
    var(--hero-bg);
  color: var(--ink);
  border-bottom: 1px solid var(--hero-line);
  padding-block: clamp(3.25rem, 8vw, 5.75rem);
  overflow: hidden;
}
.hero::after {
  /* subtle top rule in the accent, echoing the reference site */
  content: "";
  position: absolute; inset-inline: 0; top: 0; height: 6px;
  background: linear-gradient(90deg, var(--brand), transparent 62%);
}
.hero__inner { position: relative; max-width: 44rem; }
.hero h1 { color: var(--ink-900); margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: var(--brand-deep); }  /* 7.80 on the hero ground */
/* The specialist claim, directly under the H1. Green rule rather than green text —
   the H1 already carries a green word, and two greens that close together fight. */
.hero__claim {
  max-width: 34rem;
  margin: 0 0 1.3rem;
  padding-left: 1rem;
  border-left: 3px solid var(--brand);
  font-family: var(--font-head);
  font-size: clamp(1.14rem, 2.1vw, 1.42rem);
  line-height: 1.4;
  color: var(--ink-900);
}

.hero__lead {
  font-size: clamp(1.075rem, 1.9vw, 1.28rem);
  color: #4a524b;
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(56, 118, 29, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(56, 118, 29, 0.09);
  color: var(--brand-deep);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* The self-identify chip grid */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.chip {
  margin: 0;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--hero-line);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Trust strip under the hero */
/* Light, so the hero above it gets a real bottom edge instead of bleeding into
   a second dark band. */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-strip ul {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem clamp(1.5rem, 4vw, 3rem);
  list-style: none; margin: 0; padding-block: 1rem; padding-inline: 0;
}
.trust-strip li {
  display: flex; align-items: center; gap: 0.5rem; margin: 0;
  color: var(--ink); font-size: 0.9rem; font-weight: 500;
}
.trust-strip svg { color: var(--brand); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   7. CARDS
   -------------------------------------------------------------------------- */
.card {
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d6d8d2; }
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--ink-muted); font-size: 0.975rem; margin: 0; }

.card__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-bottom: 1rem;
  border-radius: var(--radius);
  background: var(--accent-wash);
  color: var(--navy-700);
}
.section--navy .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-dark);
  box-shadow: none;
}
.section--navy .card p { color: rgba(255, 255, 255, 0.68); }
.section--navy .card__icon { background: rgba(137, 217, 101, 0.14); color: var(--accent-dk); }

/* --------------------------------------------------------------------------
   8. "HOW IT WORKS" STEPS
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.step { position: relative; padding-left: 4.25rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute; left: 0; top: -0.15rem;
  font-family: var(--font-head);
  font-size: 1.75rem; font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.step h3 { margin-bottom: 0.35rem; }
.step p { color: var(--ink-muted); margin: 0; }
.section--navy .step p { color: rgba(255, 255, 255, 0.68); }

/* --------------------------------------------------------------------------
   8b. NUMBERED PROCESS ROW (5 across)
   Wide: one row of 5, hairline dividers between.
   Mid:  2 up. Narrow: number beside the text, not stacked above it.
   -------------------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.process__step {
  padding-inline: clamp(0.75rem, 1.6vw, 1.4rem);
  text-align: center;
  border-left: 1px solid var(--line);
}
.process__step:first-child { border-left: 0; }

.process__num {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--navy-700);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}
.process__step h3 {
  font-size: 1.075rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.process__step p {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

@media (max-width: 1040px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 0; }
  .process__step { border-left: 0; }
  .process__step:nth-child(even) { border-left: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .process { grid-template-columns: 1fr; gap: 1.75rem; }
  .process__step {
    border-left: 0;
    padding-inline: 0;
    text-align: left;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1.1rem;
    align-items: start;
  }
  .process__step:nth-child(even) { border-left: 0; }
  .process__num { margin: 0; }
}

/* --------------------------------------------------------------------------
   9. THE TRUST / "IS THIS REAL?" BLOCK
   -------------------------------------------------------------------------- */
.trust-block {
  background: var(--accent-wash);
  border: 1px solid rgba(56, 118, 29, 0.30);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
}
.trust-block h2 { margin-bottom: 0.75rem; }
.trust-block > p { color: #3f463e; }

.promise-list { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.promise-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0.85rem;
  align-items: start;
  margin: 0;
}
.promise-list svg { color: var(--navy-700); margin-top: 0.28rem; }
.promise-list strong { display: block; color: var(--navy-800); font-weight: 700; margin-bottom: 0.1rem; }
.promise-list span { color: var(--ink-muted); font-size: 0.975rem; }

/* --------------------------------------------------------------------------
   9b. "NUMBERS WE CALL FROM" — verification device
   Someone contacted from a number that isn't the one on the site will read the
   mismatch as a scam signal. Publishing the whole list closes that gap.
   -------------------------------------------------------------------------- */
.numbers-card {
  margin-top: 1.75rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.numbers-card h3 { margin-bottom: 0.4rem; }
.numbers-card > p { color: var(--ink-muted); font-size: 0.975rem; }

/* Sub-group inside the card: one for the line to CALL, one for the lines we
   call OUT from. They do different jobs and must not be presented as one list. */
.numbers-group { margin-top: 1.5rem; }
.numbers-group h4 {
  margin-bottom: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.735rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.numbers-group > p {
  margin: 0.85rem 0 0;
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* The one number to actually ring — tappable, prominent. */
.number-main {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.4rem;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent-wash);
  color: var(--navy-800);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.number-main:hover { background: var(--accent-soft); color: var(--navy-900); transform: translateY(-1px); }
.number-main svg { color: var(--navy-700); flex-shrink: 0; }

/* Outbound lines — all tappable. Every one of them forwards through to the same
   handset, so calling back the exact number that called you always works. That
   matters: calling back the number on your screen is the instinct, and a dead
   callback would read as a scam signal. */
.numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.numbers li { margin: 0; }
.numbers a {
  display: block;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--navy-800);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease),
              transform 0.15s var(--ease);
}
.numbers a:hover {
  border-color: var(--navy-600);
  background: var(--accent-wash);
  transform: translateY(-1px);
}

.numbers-warn {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-top: 1.3rem;
  padding: 0.9rem 1.05rem;
  background: #fdf1ee;
  border-left: 3px solid #c0492c;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.925rem;
  line-height: 1.55;
  color: #7d2d1a;
}
.numbers-warn svg { flex-shrink: 0; margin-top: 0.15rem; color: #c0492c; }

/* --------------------------------------------------------------------------
   9c. THE STACK — three layers, drawn as an actual stack so the metaphor lands
   -------------------------------------------------------------------------- */
.layers { display: grid; gap: 0.85rem; margin-top: 1.75rem; }
.layer {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.35rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy-600);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.layer > strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--navy-700);
  padding-top: 0.15rem;
}
.layer p { margin: 0; font-size: 0.975rem; color: var(--ink-muted); }

@media (max-width: 620px) {
  .layer { grid-template-columns: 1fr; gap: 0.45rem; }
}

/* --------------------------------------------------------------------------
   10. TESTIMONIALS
   -------------------------------------------------------------------------- */
.quote {
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.quote blockquote {
  margin: 0 0 1.1rem;
  font-family: var(--font-head);
  font-size: 1.075rem;
  line-height: 1.55;
  color: var(--navy-800);
}
.quote figcaption { margin-top: auto; font-size: 0.9rem; }
.quote cite { display: block; font-style: normal; font-weight: 700; color: var(--ink); }
.quote figcaption span { color: var(--ink-muted); font-size: 0.85rem; }

/* --------------------------------------------------------------------------
   11. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  font-family: var(--font-head);
  font-size: 1.115rem;
  font-weight: 600;
  color: var(--navy-800);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--navy-600); }
.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 12px; height: 12px;
  margin-top: 0.4rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > div { padding-bottom: 1.4rem; color: var(--ink-muted); max-width: 60ch; }

/* --------------------------------------------------------------------------
   11b. FAQ JUMP NAV + GROUPS
   -------------------------------------------------------------------------- */
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  padding: 0;
  list-style: none;
}
.jump-nav li { margin: 0; }
.jump-nav a {
  display: block;
  padding: 0.55rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--navy-700);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease);
}
.jump-nav a:hover { border-color: var(--navy-600); background: var(--accent-wash); }

.faq-group { margin-bottom: clamp(2.5rem, 5vw, 4rem); scroll-margin-top: 100px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group > h2 { font-size: clamp(1.45rem, 2.6vw, 1.9rem); margin-bottom: 0.35rem; }
.faq-group > p { color: var(--ink-muted); margin-bottom: 1.4rem; }

/* --------------------------------------------------------------------------
   11b2. FACTS LIST — a real <dl>. It was <strong>+<span>, which looked right but
   ran together as "Legal entityGulf Alpha LLC" for anything reading the text
   rather than the layout (screen readers, Google, copy-paste, reader mode).
   -------------------------------------------------------------------------- */
.facts { margin: 0; display: grid; gap: 1.1rem; }
.facts dt { font-weight: 700; color: var(--navy-800); }
.facts dd { margin: 0.2rem 0 0; color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   11c. LEGAL PAGES
   Readable rather than impenetrable — for this audience a policy you can
   actually follow is itself a trust signal.
   -------------------------------------------------------------------------- */
.legal { max-width: 44rem; }
.legal .updated {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.legal h2 {
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { font-size: 1.05rem; margin-top: 1.75rem; margin-bottom: 0.35rem; }
.legal ul, .legal ol { margin-bottom: 1.2rem; }
.legal li { margin-bottom: 0.5rem; }
.legal li > strong { color: var(--navy-800); }

/* --------------------------------------------------------------------------
   12. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(ellipse 80% 90% at 50% 0%, rgba(56, 118, 29, 0.09), transparent 68%),
    var(--hero-bg);
  border-top: 1px solid var(--hero-line);
  text-align: center;
}
/* Same 6px accent the hero carries, so the page opens and closes the same way —
   and so the dark footer below gets a hard top edge instead of the CTA bleeding
   straight into it. */
.cta-band::after {
  content: "";
  position: absolute; inset-inline: 0; top: 0; height: 6px;
  background: linear-gradient(90deg, var(--brand), transparent 62%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--ink-900); }
.cta-band p { color: #4a524b; font-size: 1.125rem; max-width: 40rem; margin-inline: auto; }
.cta-band .btn--ghost { color: var(--brand-deep); border-color: rgba(56, 118, 29, 0.4); }
.cta-band .btn--ghost:hover {
  background: rgba(56, 118, 29, 0.07);
  border-color: var(--brand-deep);
  color: var(--brand-deep);
}
.cta-band .btn-row { justify-content: center; margin-top: 1.85rem; }

/* --------------------------------------------------------------------------
   13. FORM
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 1rem;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(56, 118, 29, 0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-note { font-size: 0.85rem; color: var(--ink-muted); margin-top: 1rem; }

/* Honeypot — hidden from humans, catches naive spam bots */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.6);
  padding-block: clamp(2.5rem, 5vw, 3.75rem) 2rem;
  font-size: 0.925rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 2rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.5rem; }

.footer-disclaimer {
  margin-top: 2rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--brand-bright);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.865rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  justify-content: space-between; align-items: center;
  margin-top: 1.75rem; font-size: 0.865rem;
}

/* --------------------------------------------------------------------------
   15. STICKY MOBILE CALL BAR
   -------------------------------------------------------------------------- */
.mobile-bar {
  display: none;
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 120;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(15, 18, 16, 0.97);   /* was still the pre-green navy */
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-dark);
  gap: 0.6rem;
}
.mobile-bar .btn { flex: 1; padding: 0.85rem 0.75rem; font-size: 0.975rem; }

/* --------------------------------------------------------------------------
   16. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1020px) {
  .nav {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--pad) 1rem;
    background: var(--navy-800);
    border-bottom: 1px solid var(--line-dark);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 0.8rem 0.5rem;
    border-radius: 0;
    border-bottom: 1px solid var(--line-dark);
    white-space: normal;   /* inside the dropdown wrapping is fine */
  }
  .site-header__inner { position: relative; }
  .nav-toggle { display: block; order: 3; }
}

/* Keep the phone NUMBER visible far longer than the nav — it's the primary CTA.
   Only drop to the bare icon when the header genuinely runs out of room. */
@media (max-width: 560px) {
  .header-phone span { display: none; }
}

@media (max-width: 620px) {
  body { padding-bottom: 74px; } /* room for the sticky bar */
  .mobile-bar { display: flex; }
  .btn-row .btn { width: 100%; }
  .step { padding-left: 0; padding-top: 2.5rem; }
  .step::before { top: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   17. MOTION / PRINT
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header, .mobile-bar, .cta-band, .nav-toggle { display: none !important; }
  body { padding-bottom: 0; }
  .hero { background: none !important; color: #000; }
  .hero h1, .hero__lead { color: #000 !important; }
}
