/* ============================================================
   VPC Design System v5
   ─────────────────────────────────────────────────────────────
   Colors — all-green palette (May 2026 rebrand):
     --lime       #99C72E  ← VPC brand green (lightest)
     --green-mid  #80A626  ← medium green
     --green-deep #4C6417  ← darkest green (replaces navy)

   Fonts: Source Serif 4 (headings) + Inter (body)
   No navy. No terracotta. No Newsreader. No Geist.
   ============================================================ */

/* font-display=swap prevents FOIT (invisible text while font loads) */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200;0,8..60,300;0,8..60,400;0,8..60,500;1,8..60,300;1,8..60,400;1,8..60,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  /* Brand — all-green palette */
  --lime:        #99C72E;   /* VPC brand green — primary */
  --lime-deep:   #80A626;   /* medium green — hover states */
  --lime-soft:   #EEF5D0;   /* very light green tint — backgrounds */
  --lime-mid:    #C8E68A;   /* tone-on-tone mid lime — tinted sections */

  --green-mid:   #80A626;   /* medium green */
  --green-deep:  #4C6417;   /* darkest green — replaces navy */

  /* Footer — light, warm, calm. Never dark. */
  --footer-bg:   #F2F5EA;   /* warm off-white with a breath of lime */
  --footer-mid:  #E6ECDA;   /* slightly deeper for dividers */

  /* Trust bar */
  --trust-bg:    #F4F2EA;

  /* Legacy aliases kept for compatibility */
  --navy:        #4C6417;   /* was dark blue, now dark green */
  --navy-mid:    #80A626;   /* was mid blue, now mid green */

  /* Neutrals */
  --white:      #FFFFFF;
  --snow:       #F5F7F1;   /* warm off-white with green tint */
  --ink:        #2A3010;   /* near-black with green undertone */
  --ink-2:      #445228;   /* dark green-grey for secondary text */
  --muted:      #6B7A50;   /* muted olive for tertiary text */
  --line:       #D9E0C4;   /* light green-grey for dividers */

  /* Typography */
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max:    1200px;
  --pad:    clamp(20px, 4vw, 48px);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--lime); color: var(--green-deep); }

/* ── LAYOUT ───────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--ink);
}
em { font-style: italic; }
p { line-height: 1.72; }

/* ── BUTTONS ──────────────────────────────────────────────── */

/* Primary — lime, dark text, scale on hover */
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 16.5px; font-weight: 600;
  color: #2A3010;
  background: var(--lime);
  padding: 15px 33px;
  border-radius: 100px;
  white-space: nowrap;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.btn-primary:hover {
  background: var(--lime-deep);
  transform: scale(1.10);
  box-shadow: 0 8px 28px rgba(153,199,46,0.45);
}
.btn-primary:active { transform: scale(0.98); }

/* Ghost — dark green border, fills dark green on hover */
.btn-ghost {
  display: inline-block;
  font-family: var(--sans);
  font-size: 16.5px; font-weight: 500;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
  padding: 14px 31px;
  border-radius: 100px;
  white-space: nowrap;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.btn-ghost:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: scale(1.10);
}

/* Ghost light — for dark sections */
.btn-ghost-light {
  display: inline-block;
  font-family: var(--sans);
  font-size: 16.5px; font-weight: 500;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  padding: 14px 31px;
  border-radius: 100px;
  white-space: nowrap;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  transform: scale(1.10);
}

/* Text link */
.btn-text {
  display: inline-block;
  font-family: var(--sans);
  font-size: 16.5px; font-weight: 500;
  color: var(--green-deep);
  border-bottom: 1.5px solid var(--green-deep);
  padding-bottom: 2px;
  transition: color .2s, letter-spacing .2s, border-color .2s;
}
.btn-text:hover {
  color: var(--lime-deep);
  border-color: var(--lime-deep);
  letter-spacing: 0.02em;
}

/* Text link for dark backgrounds */
.btn-text-light {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-text-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-row {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand img { height: 53px; width: auto; }
.menu {
  display: flex; align-items: center;
  gap: 32px; list-style: none;
}
.menu a {
  font-size: 15px; font-weight: 400;
  color: var(--ink-2);
  transition: color .2s;
}
.menu a:hover, .menu a.is-active { color: var(--green-deep); }
.menu a.cta {
  display: inline-block;
  font-size: 15px; font-weight: 600;
  color: #2A3010;
  background: var(--lime);
  padding: 10px 22px;
  border-radius: 100px;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.menu a.cta:hover {
  background: var(--lime-deep);
  transform: scale(1.10);
  box-shadow: 0 4px 16px rgba(153,199,46,0.4);
  color: #2A3010;
}

/* ── PAGE HERO (interior pages) ────────────────────────────── */
.page-hero {
  padding: 148px 0 80px;
  background: linear-gradient(160deg, var(--lime-soft) 0%, var(--snow) 60%);
  border-bottom: 1px solid var(--line);
}
.page-hero-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime-deep); margin-bottom: 28px;
}
.page-hero h1 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  color: var(--ink);
  max-width: 20ch; margin-bottom: 28px;
}
.page-hero .deck {
  font-size: 19px; line-height: 1.68;
  color: var(--muted); max-width: 52ch;
}

/* ── SECTION UTILITIES ────────────────────────────────────── */
.section      { padding: 96px 0; }
.section-white { background: var(--white); }
.section-snow  { background: var(--snow); }
.section-navy  { background: linear-gradient(160deg, var(--lime-soft) 0%, var(--snow) 60%); border-top: 1px solid var(--line); }

.section-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px; gap: 24px; flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(32px, 3.8vw, 52px); }
.section-aside {
  font-size: 18px; color: var(--ink-2);
  max-width: 34ch; line-height: 1.65; padding-bottom: 4px;
}

/* ── WHO WE HELP CARDS ────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.who-card {
  background: var(--snow);
  padding: 40px 36px;
  transition: background .2s;
  cursor: default;
}
.who-card:first-child { border-radius: 16px 0 0 16px; }
.who-card:last-child  { border-radius: 0 16px 16px 0; }
.who-card:hover { background: var(--lime-soft); }
.who-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--lime-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--green-deep);
  transition: background .2s;
}
.who-card:hover .who-icon { background: rgba(169,207,82,0.25); }
.who-card h3 { font-size: 24px; margin-bottom: 14px; }
.who-card p  { font-size: 15px; line-height: 1.72; color: var(--ink-2); }

/* ── TEAM GRID ────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  position: relative; border-radius: 14px;
  overflow: hidden; aspect-ratio: 3/4;
  background: var(--lime-soft); cursor: pointer;
}
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .4s ease;
}
.team-card:hover img { transform: scale(1.04); }
.team-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(76,100,23,0.92) 0%, transparent 100%);
  padding: 60px 20px 20px;
  transform: translateY(3px);
  transition: transform .25s ease;
}
.team-card:hover .team-overlay { transform: translateY(0); }
.team-name {
  font-family: var(--serif);
  font-size: 17px; font-style: italic;
  color: var(--white); line-height: 1.2;
}
.team-role { font-size: 11px; color: rgba(255,255,255,0.68); margin-top: 5px; }

/* ── APPROACH (dark navy section) ─────────────────────────── */
.approach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.approach-num {
  font-family: var(--serif);
  font-size: 13px; color: var(--lime); opacity: 0.75;
  margin-bottom: 14px;
}
.approach-grid h3 {
  font-size: 22px; color: var(--white); margin-bottom: 14px;
}
.approach-grid p { font-size: 15px; line-height: 1.72; color: rgba(255,255,255,0.6); }

/* ── SERVICES LIST ────────────────────────────────────────── */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px; cursor: pointer;
  transition: padding-left .2s;
}
.svc-row:hover { padding-left: 8px; }
.svc-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300; flex: 1;
  transition: color .2s;
}
.svc-row:hover .svc-title { color: var(--lime-deep); }
.svc-desc { font-size: 14px; color: var(--muted); max-width: 28ch; line-height: 1.5; }
.svc-arrow {
  font-size: 18px; color: var(--lime-deep); flex-shrink: 0;
  transition: transform .25s ease;
}
.svc-row:hover .svc-arrow { transform: translateX(6px); }

/* ── RATES CALLOUT ────────────────────────────────────────── */
.rates-callout {
  background: var(--lime-soft);
  border-radius: 18px;
  padding: 48px 56px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 40px; margin-top: 56px; flex-wrap: wrap;
}
.rates-callout h3 { font-size: 28px; margin-bottom: 12px; }
.rates-callout p  { font-size: 15px; color: var(--ink-2); max-width: 42ch; line-height: 1.68; }
.rates-cta { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; flex-shrink: 0; }

/* ── PRESS STRIP ──────────────────────────────────────────── */
.press-strip {
  background: var(--snow);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.press-inner { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.press-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); flex-shrink: 0;
}
.press-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.press-logo {
  font-family: var(--serif);
  font-size: 15px; font-style: italic;
  color: var(--muted); opacity: 0.65;
  transition: opacity .2s; white-space: nowrap;
}
.press-logo:hover { opacity: 1; }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 17px;
  border-radius: 0;
  transition: border-color .2s;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lime);
}
.field select option { color: var(--ink); }
.field textarea { resize: vertical; min-height: 80px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--footer-bg); color: var(--ink-soft); padding: 80px 0 0; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid var(--footer-mid);
}
/* Logo shown directly — light background, no pill wrapper needed */
.footer-brand img {
  height: 38px; width: auto;
  display: block; margin-bottom: 20px;
}
.footer-brand p   { font-size: 14px; line-height: 1.72; color: var(--muted); max-width: 28ch; }
.footer-addr      { font-size: 13px; color: var(--muted); line-height: 1.7; margin-top: 18px; }
.footer-addr a    { color: var(--green-deep); border-bottom: 1px solid rgba(76,100,23,0.25); }
.footer-addr a:hover { color: var(--lime-deep); }
.fcol-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 12px; }
.footer-links a { font-size: 14px; color: var(--ink-soft); transition: color .2s; }
.footer-links a:hover { color: var(--lime-deep); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; font-size: 12px; color: var(--muted);
  flex-wrap: wrap; gap: 10px;
}
.crisis-bar {
  background: var(--footer-mid);
  border-top: 1px solid var(--line);
  padding: 16px 0;
  font-size: 12px; color: var(--muted);
  text-align: center; line-height: 1.7;
}
.crisis-bar a { color: var(--green-deep); font-weight: 600; border-bottom: 1px solid rgba(76,100,23,0.25); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; gap: 24px; cursor: pointer;
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  color: var(--ink); transition: color .2s;
}
.faq-q:hover { color: var(--green-deep); }
.faq-icon { font-size: 22px; color: var(--lime-deep); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 24px; font-size: 15px; line-height: 1.72; color: var(--ink-2); max-width: 72ch; }
.faq-item.open .faq-a { display: block; }

/* ── BLOG CARDS ───────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { cursor: pointer; }
.blog-thumb {
  aspect-ratio: 16/10; border-radius: 12px;
  overflow: hidden; background: var(--lime-soft); margin-bottom: 20px;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime-deep); margin-bottom: 10px;
}
.blog-card h3 { font-size: 22px; margin-bottom: 10px; transition: color .2s; }
.blog-card:hover h3 { color: var(--lime-deep); }
.blog-card p  { font-size: 14px; color: var(--ink-2); line-height: 1.65; }
.blog-meta    { font-size: 12px; color: var(--muted); margin-top: 14px; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-grid      { grid-template-columns: repeat(3, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .approach-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --pad: 18px; }

  /* ── LAYOUT ── */
  .section { padding: 56px 0; }
  .wrap { padding: 0 18px; }

  /* ── PAGE HERO (interior pages) ── */
  .page-hero { padding: 110px 0 52px; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 42px); margin-bottom: 16px; }
  .page-hero .deck { font-size: 16px; line-height: 1.62; }
  .page-hero-label { margin-bottom: 12px; }

  /* ── SECTION HEADS ── */
  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-head h2 { font-size: clamp(24px, 6.5vw, 36px); }
  .section-aside { font-size: 15px; }

  /* ── SELECTOR CARDS (landing hero) ── */
  .selector-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .selector-card { border-radius: 16px; min-height: 200px; }
  .selector-card-title { font-size: 20px; }
  .selector-card-sub { font-size: 13px; }
  .selector-card-cta { font-size: 13px; padding: 9px 16px; margin-top: 10px; }

  /* ── TRUST BAR ── */
  .trust-bar { gap: 0; }
  .t-item { padding: 18px 12px; }
  .t-num { font-size: clamp(22px, 5vw, 32px); }
  .t-label { font-size: 11px; }

  /* ── CLINICIAN STRIP ── */
  .strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .strip-card-photo { height: 140px; }
  .strip-card-name { font-size: 14px; }
  .strip-card-role { font-size: 11px; }

  /* ── WHO WE HELP ── */
  .who-grid    { grid-template-columns: 1fr; gap: 3px; }
  .who-card:first-child { border-radius: 16px 16px 0 0; }
  .who-card:last-child  { border-radius: 0 0 16px 16px; }

  /* ── TEAM GRID ── */
  .team-grid   { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }

  /* ── BLOG / APPROACH / FORMS ── */
  .blog-grid   { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { font-size: 14px; }
  .footer-bottom {
    flex-direction: column; gap: 6px;
    text-align: center; font-size: 12px;
  }
  .crisis-bar { font-size: 12px; padding: 10px 0; line-height: 1.8; text-align: center; }

  /* ── MISC ── */
  .rates-callout { padding: 28px 20px; }
  .btn-primary, .btn-ghost {
    width: 100%; text-align: center;
    padding: 16px 20px; font-size: 15px;
  }

  /* ── MOBILE NAV ── */
  .menu { display: none; }
  .nav-hamburger {
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    gap: 5px; width: 40px; height: 40px;
    background: none; border: none; cursor: pointer;
    padding: 4px; border-radius: 8px;
    transition: background .2s;
  }
  .nav-hamburger:hover { background: var(--lime-soft); }
  .nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--ink); border-radius: 2px;
    transition: transform .28s ease, opacity .2s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile drawer */
  .nav-drawer {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #fff; z-index: 199;
    display: flex; flex-direction: column;
    padding: 90px 28px 40px;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .nav-drawer.open { transform: translateX(0); }
  .nav-drawer ul {
    list-style: none; display: flex;
    flex-direction: column; gap: 0;
  }
  .nav-drawer ul li a {
    display: block; font-size: 22px;
    font-family: var(--serif); font-weight: 400;
    color: var(--ink); padding: 16px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: color .2s;
  }
  .nav-drawer ul li a:hover,
  .nav-drawer ul li a.is-active { color: var(--lime-deep); }
  .nav-drawer .drawer-cta {
    margin-top: 32px;
  }
  .nav-drawer .drawer-cta a {
    display: block; text-align: center;
    background: var(--lime); color: var(--green-deep);
    font-weight: 700; font-size: 16px;
    padding: 16px 24px; border-radius: 999px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
  }
  .nav-drawer .drawer-cta a:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(153,199,46,0.35);
  }
  .nav-drawer .drawer-contact {
    margin-top: 24px; font-size: 14px; color: var(--muted);
    line-height: 1.8;
  }
  .nav-drawer .drawer-contact a { color: var(--lime-deep); text-decoration: none; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Selector cards: stack full width on very small phones */
  .selector-grid { grid-template-columns: 1fr; gap: 10px; }
  .selector-card { min-height: 180px; }

  /* Strip: stack to 1 col on very small */
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .strip-card-photo { height: 120px; }

  /* Page hero tighter on small phones */
  .page-hero { padding: 96px 0 44px; }
  .page-hero h1 { font-size: clamp(26px, 8vw, 36px); }

  /* Footer brand logo smaller */
  .footer-brand img { height: 34px; }

  /* Popup tighter + readable on phones */
  #vpc-popup { padding: 0 0 28px; border-radius: 18px; max-width: 92vw; }
  #vpc-popup-inner { padding: 40px 22px 0; }
  .vpc-popup-title { font-size: 23px; line-height: 1.2; margin-bottom: 12px; }
  .vpc-popup-body { font-size: 14px; margin-bottom: 22px; }
  .vpc-popup-cta { padding: 15px 22px; font-size: 14.5px; }
  .vpc-popup-phone { font-size: 12.5px; line-height: 1.6; }
}

/* ── HAMBURGER hidden on desktop ── */
@media (min-width: 769px) {
  .nav-hamburger { display: none; }
  .nav-drawer { display: none !important; }
}

/* ── TOUCH TARGETS (mobile a11y) ── */
@media (max-width: 768px) {
  /* All interactive elements: min 44px touch target */
  .btn-primary, .btn-ghost, button, .cta,
  .faq-q, .menu a, .footer-links a {
    min-height: 44px;
  }
  /* Buttons that use padding: ensure they clear 44px */
  .btn-primary, .btn-ghost {
    padding-top: 14px; padding-bottom: 14px;
  }
  /* Rates table: simplify on small screen */
  .rates-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .rates-n { display: none; }
  .rates-price { text-align: left; font-size: 18px; }

  /* Section padding tighter on phones */
  .section { padding: 48px 0; }

  /* Press outlets: smaller gap */
  .outlets-row { gap: 20px 28px; }
}

/* ══════════════════════════════════════════════
   SHARED ANIMATIONS - centralized to avoid duplication
   ══════════════════════════════════════════════ */

/* Fade-up scroll reveal — shared across ALL pages */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.fade-up.visible { opacity: 1; transform: translateY(0); will-change: auto; }
.fade-up-d1 { transition-delay: .10s; }
.fade-up-d2 { transition-delay: .20s; }
.fade-up-d3 { transition-delay: .30s; }

/* GPU-hint for animated elements — cleared after transition */
.selector-card,
.team-card,
.blog-thumb,
.blog-thumb img,
.strip-card-photo img { will-change: transform; }

/* ── SKIP TO CONTENT (accessibility) ── */
.skip-to-content {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 9999;
  background: var(--lime); color: var(--green-deep);
  font-weight: 700; font-size: 14px;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top .2s;
}
.skip-to-content:focus { top: 0; }

/* ── FOCUS RING (keyboard nav) ── */
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 3px;
}
button:focus-visible { border-radius: 6px; }
