.skip-link {
    position: absolute; top: -40px; left: 1rem; z-index: 9999;
    background: var(--forest); color: white; padding: 0.5rem 1rem;
    border-radius: 0 0 var(--radius) var(--radius); font-size: 0.85rem; font-weight: 600;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 0; }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --forest: #1a3a1f;
    --forest-mid: #2d5c35;
    --moss: #4a7c59;
    --sage: #8ab89a;
    --mint: #c8e6d0;
    --cream: #f7f4ef;
    --warm-white: #fdfcfa;
    --ink: #1a1a18;
    --ink-mid: #3d3d38;
    --ink-light: #7a7a72;
    --gold: #c4943a;
    --gold-light: #f5e6c8;
    --radius: 6px;
    --radius-lg: 14px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--ink); font-size: 16px; line-height: 1.7; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* NAV */
  .site-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(253,252,250,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--mint);
    padding: 0 5vw;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .nav-logo { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--forest); letter-spacing: -0.01em; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--ink-mid); transition: color 0.2s; }
  .nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--forest); }
  .nav-cta {
    background: var(--forest); color: white; font-size: 0.875rem; font-weight: 500;
    padding: 0.55rem 1.25rem; border-radius: var(--radius); transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--forest-mid); }

  /* SECTION SHARED */
  .section-tag {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--moss); margin-bottom: 1rem; display: block;
  }
  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--forest);
    letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 1rem;
  }
  .section-lead { font-size: 1.05rem; color: var(--ink-mid); max-width: 580px; font-weight: 300; }
  .container { max-width: 1140px; margin: 0 auto; }

  /* PAGE HERO */
  .contact-hero {
    background: linear-gradient(160deg, var(--cream) 0%, var(--warm-white) 60%);
    padding: 5rem 5vw 4rem;
    position: relative; overflow: hidden;
  }
  .contact-hero::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--mint) 0%, transparent 70%);
    opacity: 0.4; pointer-events: none;
  }
  .contact-hero-inner { max-width: 620px; position: relative; }
  .contact-hero .hero-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold-light); color: var(--gold); border: 1px solid #e8c97a;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
    padding: 5px 14px; border-radius: 100px; margin-bottom: 1.5rem;
    text-transform: uppercase;
  }
  .contact-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--forest); margin-bottom: 1.2rem;
  }
  .contact-hero h1 em { color: var(--gold); font-style: italic; }
  .contact-hero p {
    font-size: 1.1rem; font-weight: 300; color: var(--ink-mid);
    max-width: 500px; line-height: 1.7; margin-bottom: 2rem;
  }
  .hero-trust {
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 500; color: var(--ink-mid);
  }
  .trust-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--sage);
  }

  /* MAIN CONTACT LAYOUT */
  .contact-main {
    padding: 5rem 5vw;
    background: var(--warm-white);
  }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start;
  }

  /* LEFT: INFO */
  
  .contact-info .section-lead { margin-bottom: 2.5rem; }

  .contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
  .contact-method {
    display: flex; align-items: center; gap: 16px;
    background: white; border: 1px solid var(--mint);
    border-radius: var(--radius-lg); padding: 1.1rem 1.4rem;
    transition: all 0.2s;
  }
  .contact-method:hover { border-color: var(--sage); box-shadow: 0 4px 16px rgba(26,58,31,0.06); transform: translateX(3px); }
  .contact-method-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--mint); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .contact-method-icon svg { width: 20px; height: 20px; stroke: var(--forest); fill: none; stroke-width: 1.8; }
  .contact-method-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 2px; }
  .contact-method-val { font-size: 0.95rem; font-weight: 500; color: var(--ink); }
  .contact-method-val a { color: var(--forest); }
  .contact-method-val a:hover { text-decoration: underline; }

  .response-box {
    background: var(--cream); border-radius: var(--radius-lg);
    padding: 1.5rem; border-left: 3px solid var(--sage);
    margin-bottom: 2.5rem;
  }
  .response-box p { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.6; }
  .response-box strong { color: var(--forest); }

  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item {
    border-bottom: 1px solid var(--mint); overflow: hidden;
  }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0; cursor: pointer; font-size: 0.9rem; font-weight: 600; color: var(--ink);
    gap: 1rem; background: none; border: none; width: 100%; text-align: left;
    font-family: 'DM Sans', sans-serif;
  }
  .faq-q:hover { color: var(--forest); }
  .faq-icon {
    width: 20px; height: 20px; border-radius: 50%; background: var(--mint);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background 0.2s, transform 0.25s;
  }
  .faq-icon svg { width: 10px; height: 10px; stroke: var(--forest); stroke-width: 2.5; fill: none; transition: transform 0.25s; }
  .faq-item.open .faq-icon { background: var(--forest); }
  .faq-item.open .faq-icon svg { stroke: white; transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 0.875rem; color: var(--ink-mid); line-height: 1.7;
    padding: 0;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 1rem; }

  /* RIGHT: FORM */
  .contact-form-wrap {
    background: white; border: 1px solid var(--mint);
    border-radius: var(--radius-lg); padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(26,58,31,0.06);
    position: sticky; top: 80px;
  }
  .form-header { margin-bottom: 2rem; }
  .form-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem; color: var(--forest); margin-bottom: 0.4rem;
  }
  .form-header p { font-size: 0.875rem; color: var(--ink-light); }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.1rem; }
  .form-group label { font-size: 0.8rem; font-weight: 600; color: var(--ink-mid); letter-spacing: 0.03em; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    border: 1.5px solid var(--mint); border-radius: var(--radius);
    padding: 0.7rem 0.9rem; font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
    color: var(--ink); background: var(--warm-white);
    transition: border-color 0.2s, box-shadow 0.2s; outline: none;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--moss);
    box-shadow: 0 0 0 3px rgba(74,124,89,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7a72' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; cursor: pointer; }

  .form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1.5rem; }
  .form-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--forest); }
  .form-consent label { font-size: 0.78rem; color: var(--ink-light); line-height: 1.5; }
  .form-consent a { color: var(--moss); text-decoration: underline; }

  .btn-submit {
    background: var(--forest); color: white; font-weight: 600; font-size: 1rem;
    padding: 0.9rem 2rem; border-radius: var(--radius); border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s;
  }
  .btn-submit:hover { background: var(--forest-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,58,31,0.2); }
  .btn-submit svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }

  .form-guarantee {
    text-align: center; margin-top: 1rem;
    font-size: 0.78rem; color: var(--ink-light);
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .form-guarantee svg { width: 13px; height: 13px; stroke: var(--sage); fill: none; stroke-width: 2; }

  /* SUCCESS STATE */
  .form-success {
    display: none; text-align: center; padding: 2rem 1rem;
  }
  .form-success.visible { display: block; }
  .success-icon {
    width: 64px; height: 64px; border-radius: 50%; background: var(--mint);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem;
  }
  .success-icon svg { width: 28px; height: 28px; stroke: var(--forest); fill: none; stroke-width: 2; }
  .form-success h3 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--forest); margin-bottom: 0.6rem; }
  .form-success p { font-size: 0.9rem; color: var(--ink-mid); }

  /* SOCIAL PROOF STRIP */
  .social-proof {
    background: var(--cream); padding: 3.5rem 5vw;
    border-top: 1px solid var(--mint);
  }
  .proof-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem; max-width: 1140px; margin: 0 auto;
  }
  .proof-item { text-align: center; }
  .proof-num {
    font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--forest);
    line-height: 1; margin-bottom: 0.3rem;
  }
  .proof-label { font-size: 0.82rem; color: var(--ink-light); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

  /* FOOTER */
  footer {
    background: var(--forest); color: rgba(255,255,255,0.6);
    padding: 4rem 5vw 2rem;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: white; margin-bottom: 0.8rem; }
  .footer-logo span { color: var(--gold); }
  .footer-brand p { font-size: 0.875rem; line-height: 1.7; }
  .footer-col h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col a,
  .footer-legal-link { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
  .footer-col a:hover,
  .footer-legal-link:hover { color: white; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
  .footer-bottom p { font-size: 0.8rem; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-form-wrap { position: static; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  }

.contact-info-lead { margin-bottom: 2.5rem; }
.faq-section-tag { margin-top: 0.5rem; }
.form-success-link { color: var(--moss); }
.footer-address { font-style: normal; }
.footer-legal-link { color: rgba(255,255,255,0.4); }
/* Shared nav and breadcrumb alignment */
:root {
  --site-shell-max: 1200px;
  --site-shell-gutter: max(24px, calc((100vw - var(--site-shell-max)) / 2));
}

.site-nav,
body > nav:not(.breadcrumb) {
  max-width: none;
  margin-inline: 0;
  padding-left: var(--site-shell-gutter);
  padding-right: var(--site-shell-gutter);
}

header .site-nav {
  max-width: none;
  margin-inline: 0;
}

.breadcrumb {
  padding-left: var(--site-shell-gutter);
  padding-right: var(--site-shell-gutter);
}

.breadcrumb > .container,
.breadcrumb ol,
.breadcrumb-list,
.breadcrumb-inner {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
/* Shared breadcrumb typography */
.breadcrumb,
.breadcrumb ol,
.breadcrumb-list,
.breadcrumb-inner,
.breadcrumb > .container {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-light, var(--text-light, #7a7a72));
}

.breadcrumb a,
.breadcrumb-current,
.breadcrumb [aria-current],
.breadcrumb li:last-child,
.breadcrumb > .container > span[aria-current="page"] {
  font-weight: 500;
}

.breadcrumb a {
  color: var(--moss, var(--brand-green, #4a7c59));
}

.breadcrumb-current,
.breadcrumb [aria-current],
.breadcrumb li:last-child,
.breadcrumb > .container > span[aria-current="page"] {
  color: var(--ink-mid, var(--text-muted, #3d3d38));
}

.breadcrumb li + li::before {
  content: '›';
  margin-right: 0.5rem;
  color: var(--sage, var(--brand-green-light, #8ab89a));
  font-weight: 400;
}

.breadcrumb .sep,
.breadcrumb-separator,
.breadcrumb-sep,
.breadcrumb > .container > span[aria-hidden="true"] {
  color: var(--sage, var(--brand-green-light, #8ab89a));
  font-weight: 400;
}
/* Shared breadcrumb dimensions */
.breadcrumb {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.breadcrumb > nav,
.breadcrumb > ol,
.breadcrumb > .container,
.breadcrumb-list,
.breadcrumb-inner {
  width: 100%;
}
/* Shared responsive navigation fit */
.site-nav,
body > nav:not(.breadcrumb),
header > nav,
.quiz-site-nav {
  min-width: 0;
  overflow: visible;
}

.nav-logo,
.logo,
.quiz-logo {
  flex-shrink: 0;
}

.nav-links,
.quiz-site-links {
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(0.75rem, 1.15vw, 1.35rem) !important;
}

.nav-links a,
.quiz-site-links a {
  white-space: nowrap;
  font-size: clamp(0.78rem, 0.86vw, 0.9rem) !important;
}

.nav-cta,
.quiz-site-links .nav-cta {
  flex-shrink: 0;
  white-space: nowrap;
  padding-inline: clamp(0.85rem, 1.1vw, 1.25rem) !important;
}

@media (max-width: 1180px) {
  .nav-links,
  .quiz-site-links {
    gap: 0.72rem !important;
  }

  .nav-links a,
  .quiz-site-links a,
  .nav-cta,
  .quiz-site-links .nav-cta {
    font-size: 0.8rem !important;
  }
}
/* Unified site layout and chrome */
:root {
  --site-shell-max: 1200px;
  --site-shell-pad: max(24px, calc((100vw - var(--site-shell-max)) / 2));
  --site-nav-height: 58px;
}

body {
  overflow-x: hidden;
}

header[role="banner"],
body > header,
.quiz-site-header {
  background: rgba(253,252,250,0.95);
  border-bottom: 1px solid var(--mint, var(--border2, #d8eadc));
}

.site-nav,
header > nav,
body > nav:not(.breadcrumb),
.quiz-site-nav {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: var(--site-shell-pad) !important;
  padding-right: var(--site-shell-pad) !important;
  height: var(--site-nav-height) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(12px, 1.4vw, 24px) !important;
}

.nav-logo,
.logo,
.quiz-logo {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  color: var(--forest, var(--brand-dark, #1a3a1f)) !important;
  letter-spacing: -0.01em !important;
  line-height: 1 !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

.nav-logo span,
.logo span,
.logo-vaxt,
.quiz-logo span {
  color: var(--gold, #c4943a) !important;
}

.nav-links,
.quiz-site-links,
header nav:not(.breadcrumb) > nav,
.header-inner nav {
  min-width: 0 !important;
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(10px, 1.2vw, 22px) !important;
  margin: 0 !important;
}

.nav-links a,
.quiz-site-links a,
.header-inner nav a,
body > nav:not(.breadcrumb) a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: clamp(0.78rem, 0.86vw, 0.9rem) !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}

.nav-cta,
.quiz-site-links .nav-cta,
.header-inner nav .nav-cta {
  flex: 0 0 auto !important;
  background: var(--forest, var(--brand-dark, #1a3a1f)) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 0.65rem 1.15rem !important;
  font-weight: 700 !important;
}

.container,
.page,
.page-hero-inner,
.hero-inner,
.about-hero-inner,
.contact-hero-inner,
.policy-layout,
.stats-inner,
.footer-grid,
.footer-bottom,
.ft,
.fbot {
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.breadcrumb {
  padding-left: var(--site-shell-pad) !important;
  padding-right: var(--site-shell-pad) !important;
}

.breadcrumb ol,
.breadcrumb > .container,
.breadcrumb-list,
.breadcrumb-inner {
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 1180px) {
  .nav-links,
  .quiz-site-links,
  .header-inner nav {
    gap: 10px !important;
  }

  .nav-links a,
  .quiz-site-links a,
  .header-inner nav a {
    font-size: 0.78rem !important;
  }
}

@media (max-width: 760px) {
  .site-nav,
  header > nav,
  body > nav:not(.breadcrumb),
  .quiz-site-nav {
    height: auto !important;
    min-height: var(--site-nav-height);
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    align-items: flex-start !important;
  }
}
/* Unified logo size */
.nav-logo,
.logo,
.quiz-logo,
.logo-nord,
.logo-vaxt {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
}

.nav-logo span,
.logo span,
.quiz-logo span,
.logo-vaxt {
  color: var(--gold, #c4943a) !important;
}
