/* =========================================================================
   genuinedisabledsingles.com — shared stylesheet (v5 "Dusk", rebuilt)

   Palette built from the logo:
     #f75801 orange + warm charcoal on a warm off-white.

   Type: Atkinson Hyperlegible (Braille Institute — built for low vision)
         for everything you read, Fraunces (warm serif) for display.
         Both self-hosted: no Google Fonts round-trip, no third-party
         request before first paint, nothing to disclose under GDPR.

   Reader controls (set on <html> by the accessibility toolbar):
     data-text     small | default | large | xlarge
     data-font     default | lexend | system      (dyslexia-friendly option)
     data-spacing  default | loose                (WCAG 1.4.12 text spacing)
     data-links    default | always               (always-underline links)
     .hc                                          (high contrast)
     .reduce-motion
   ========================================================================= */

/* ------------------------------------------------------------------ fonts */
@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("/assets/fonts/atkinson-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("/assets/fonts/atkinson-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("/assets/fonts/atkinson-bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-var.woff2") format("woff2-variations");
  font-weight: 400 650; font-style: normal; font-display: swap;
}
/* Loaded only when a reader picks the dyslexia-friendly option. */
@font-face {
  font-family: "Lexend";
  src: url("/assets/fonts/lexend-var.woff2") format("woff2-variations");
  font-weight: 300 700; font-style: normal; font-display: swap;
}

/* ------------------------------------------------------------------ tokens */
:root {
  --night:        #231c18;
  --night-2:      #2f2620;
  --grape:        #a53c00;
  --grape-2:      #8c3300;
  --iris:         #ff9a54;
  --lilac:        #ffd0ad;
  --apricot:      #f75801;
  --apricot-deep: #a53c00;   /* accent TEXT on light — darkened for AA */
  --apricot-btn:  #c04200;
  --apricot-soft: #ffe8d8;
  --blush:        #fde3d2;
  --paper:        #fbf7f4;
  --paper-2:      #f4ece5;
  --lilac-tint:   #f7ece4;
  --ink:          #1f1a17;
  --ink-soft:     #57504b;
  --white:        #ffffff;
  --line:         #eadfd7;
  --line-2:       #ded0c5;
  --line-dark:    rgba(255,255,255,.18);
  --focus:        #b34700;

  --radius:       10px;
  --radius-soft:  16px;
  --radius-lg:    24px;
  --shadow-sm:    0 1px 2px rgba(35,28,24,.05), 0 4px 16px rgba(35,28,24,.05);
  --shadow:       0 2px 6px rgba(35,28,24,.06), 0 28px 60px rgba(35,28,24,.14);
  --shadow-lift:  0 4px 10px rgba(35,28,24,.08), 0 22px 44px rgba(35,28,24,.14);

  --maxw:         1180px;
  --gutter:       24px;
  --sect:         clamp(64px, 8vw, 108px);

  --font:       "Atkinson Hyperlegible", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --lh:         1.75;
  --ls:         normal;
  --ws:         normal;
  --pspace:     1em;
}

html { font-size: 112.5%; }
html[data-text="small"]  { font-size: 100%; }
html[data-text="large"]  { font-size: 125%; }
html[data-text="xlarge"] { font-size: 140%; }

html[data-font="lexend"] {
  --font: "Lexend", "Atkinson Hyperlegible", system-ui, sans-serif;
  --font-serif: "Lexend", "Atkinson Hyperlegible", system-ui, sans-serif;
  --ls: .01em;
}
html[data-font="system"] {
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

html[data-spacing="loose"] {
  --lh: 2;
  --ls: .12em;
  --ws: .18em;
  --pspace: 2em;
}

html[data-links="always"] a { text-decoration: underline !important; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  font-size: 1rem;
  line-height: var(--lh);
  letter-spacing: var(--ls);
  word-spacing: var(--ws);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.14;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.008em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); margin: 0 0 .3em; }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.85rem); margin: 0 0 .35em; }
h3 { font-size: 1.4rem; margin: 0 0 .35em; }
h4 { font-size: 1.05rem; margin: 0 0 .4em; }
p  { margin: 0 0 var(--pspace); color: var(--ink-soft); }
a  { color: var(--grape); text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
a:hover { color: var(--apricot-deep); }
img, svg, video { max-width: 100%; }
img { display: block; height: auto; }
b, strong { font-weight: 700; color: var(--ink); }
::selection { background: var(--apricot); color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------- accessibility core */
.skip {
  position: absolute; left: 12px; top: 8px; z-index: 1200;
  background: var(--night); color: var(--apricot); padding: 14px 20px;
  transform: translateY(-150%); transition: transform .2s ease;
  font-weight: 700; text-decoration: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.skip:focus { transform: translateY(0); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
select:focus-visible, summary:focus-visible, details:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 3px;
  box-shadow: 0 0 0 6px rgba(179,71,0,.22);
}
.on-dark a:focus-visible, .on-dark button:focus-visible,
.site-footer a:focus-visible, .site-footer button:focus-visible {
  outline-color: var(--apricot);
  box-shadow: 0 0 0 6px rgba(247,88,1,.28);
}

@media (forced-colors: active) {
  .btn, .card, .step, .loc-card, .quote, .a11y-panel { border: 1px solid CanvasText; }
  .hero-scrim, .ico { forced-color-adjust: none; }
  a:focus-visible, button:focus-visible { outline: 3px solid Highlight; }
}

/* ------------------------------------------------------------------ eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: .95rem;
  color: var(--apricot-deep); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--apricot); display: inline-block; }
.on-dark .eyebrow { color: var(--apricot); }

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font); font-weight: 700; cursor: pointer;
  font-size: 1rem; min-height: 52px;
  padding: 14px 30px; border-radius: var(--radius);
  border: 2px solid transparent; text-decoration: none; text-align: center;
  transition: transform .15s ease, background .2s ease, color .2s ease,
              border-color .2s ease, box-shadow .2s ease;
}
.btn-primary {
  background: var(--apricot); color: var(--ink); border-color: var(--apricot);
  box-shadow: 0 2px 0 rgba(35,28,24,.12), 0 10px 24px rgba(247,88,1,.32);
}
.btn-primary:hover {
  background: var(--apricot-btn); border-color: var(--apricot-btn); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 3px 0 rgba(35,28,24,.14), 0 16px 32px rgba(192,66,0,.34);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--grape); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--grape); color: #fff; border-color: var(--grape); transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 1.06rem; min-height: 58px; }
.on-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.07); }
.on-dark .btn-ghost:hover { background: #fff; color: var(--night); border-color: #fff; }

/* ----------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,244,.94);
  border-bottom: 1px solid var(--line);
}
/* Desktop only: a backdrop-filter here would trap the fixed mobile menu
   inside the header box (see .nav-links below). */
@media (min-width: 1081px) {
  .site-header {
    background: rgba(251,247,244,.9);
    backdrop-filter: saturate(150%) blur(10px);
    -webkit-backdrop-filter: saturate(150%) blur(10px);
  }
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(35,28,24,.09); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 0; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none;
         font-family: var(--font-serif); font-weight: 600; font-size: 1.45rem; color: var(--ink); }
.brand .mark { width: 42px; height: 42px; flex: 0 0 auto; }
.brand b { color: var(--grape); font-weight: 600; }
.brand-logo { width: auto; height: 40px; }
@media (max-width: 400px) { .brand-logo { height: 32px; } }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: .98rem;
  padding: 12px 13px; border-radius: var(--radius); display: block;
}
.nav-links a:hover { background: var(--lilac-tint); color: var(--grape); }
.nav-links a[aria-current="page"] { color: var(--grape); box-shadow: inset 0 -3px 0 var(--apricot); }
.nav-cta { margin-left: 6px; }
.nav-cta a { padding: 12px 22px; }
.nav-cta .btn-ghost { border-color: var(--line-2); }

.nav-toggle {
  display: none; width: 52px; height: 52px; border: 2px solid var(--line-2);
  background: var(--white); border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center; color: var(--ink);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2.5px; background: currentColor;
  border-radius: 2px; transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after  { position: absolute; top:  8px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-8px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(35,28,24,.5); z-index: 99;
  opacity: 0; pointer-events: none; transition: opacity .22s ease;
}
.nav-backdrop.show { opacity: 1; pointer-events: auto; }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  /* The mobile menu is a fixed panel pinned to the right edge. It fades
     rather than slides: a closed panel parked off-screen with translateX
     would sit outside the viewport and create a horizontal scrollbar,
     and being fixed it escapes any clipping on <body>. */
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 88vw);
    background: var(--white); flex-direction: column; align-items: stretch;
    gap: 4px; padding: 88px 20px 32px; z-index: 100;
    opacity: 0; visibility: hidden;
    /* visibility flips instantly on open (so the first link is focusable
       straight away) and only after the fade on close. */
    transition: opacity .24s ease, visibility 0s linear .24s;
    overflow-y: auto; box-shadow: -12px 0 40px rgba(35,28,24,.18);
  }
  .nav-links.open {
    opacity: 1; visibility: visible;
    transition: opacity .24s ease, visibility 0s linear 0s;
  }
  .nav-links a { padding: 15px 14px; font-size: 1.05rem; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta a { width: 100%; }
}

/* -------------------------------------------------------------- photo hero */
.hero-photo {
  position: relative; display: flex; align-items: center;
  min-height: min(86vh, 760px); padding: 108px 0 96px;
  color: #fff; overflow: hidden; isolation: isolate;
  background: var(--night);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(24,19,16,.90) 0%, rgba(24,19,16,.74) 34%, rgba(24,19,16,.30) 62%, rgba(24,19,16,.12) 100%),
    linear-gradient(to top, rgba(24,19,16,.72) 0%, transparent 46%);
}
.hero-inner { position: relative; }
.hero-copy { max-width: 640px; }
.hero-photo h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero-photo .lead, .hero-copy .lead {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  color: rgba(255,255,255,.94); max-width: 52ch; margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 34px; }
.trust-row .t {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: .98rem; color: #fff;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  padding: 9px 16px; border-radius: 999px; backdrop-filter: blur(4px);
}
.trust-row .t svg { color: var(--apricot); flex: 0 0 auto; }
.hero-photo.center { text-align: center; }
.hero-photo.center .hero-copy { margin: 0 auto; max-width: 780px; }
.hero-photo.center .hero-cta, .hero-photo.center .trust-row { justify-content: center; }
.hero-photo.center .lead { margin-left: auto; margin-right: auto; }
.hero-photo.compact { min-height: 56vh; padding: 84px 0 76px; }
@media (max-width: 700px) {
  .hero-photo { min-height: 0; padding: 72px 0 64px; }
  .hero-scrim { background:
    linear-gradient(to bottom, rgba(24,19,16,.62) 0%, rgba(24,19,16,.86) 60%, rgba(24,19,16,.94) 100%); }
}

/* --------------------------------------------------------- inner page hero */
.page-hero {
  padding: 84px 0 72px; text-align: center; position: relative; overflow: hidden;
  background: var(--night); color: #fff;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 120% at 50% -10%, rgba(140,51,0,.75), transparent 60%),
    radial-gradient(40% 80% at 88% 10%, rgba(247,88,1,.16), transparent 70%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero p { max-width: 58ch; margin: 0 auto; font-size: 1.16rem; color: rgba(255,255,255,.88); }
.page-hero .hero-cta { justify-content: center; margin-top: 28px; }
.page-hero .trust-row { justify-content: center; }

.breadcrumbs { font-size: .92rem; color: rgba(255,255,255,.75); margin-bottom: 16px; }
.breadcrumbs a { color: var(--apricot); text-decoration: underline; display: inline-block; padding: 3px 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "\203A"; margin-right: 8px; opacity: .7; }

/* ---------------------------------------------------------------- sections */
.section { padding: var(--sect) 0; }
.section + .section { padding-top: 0; }
.section.tint  { background: var(--paper-2); }
.section.alt   { background: var(--white); }
.section.tint + .section, .section.alt + .section { padding-top: var(--sect); }
.section.dark  { background: var(--night); color: #fff; }
.section:nth-of-type(n+4) { content-visibility: auto; contain-intrinsic-size: auto 700px; }

.section-head { max-width: 62ch; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lede, .lede { font-size: 1.14rem; color: var(--ink-soft); margin: 0; }
.section-head p:last-child { margin-bottom: 0; }
.section.dark .section-head h2, .section.dark h2, .section.dark h3 { color: #fff; }
.section.dark p { color: rgba(255,255,255,.82); }

.prose { max-width: 72ch; }
.prose p { font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }
.two-col { display: grid; grid-template-columns: 1.15fr 1fr; gap: 52px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 34px; } }

/* ------------------------------------------------------------------- cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-soft); padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--line-2); }
.card p:last-child { margin-bottom: 0; }
.ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--lilac-tint); color: var(--grape); margin-bottom: 20px;
}
.ico.apricot { background: var(--apricot-soft); color: var(--apricot-deep); }
.ico.violet, .ico.teal { background: var(--lilac-tint); color: var(--grape); }
.ico.coral, .ico.gold { background: var(--blush); color: #a5442a; }

/* --------------------------------------------------------------- checklist */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px;
}
.checklist svg { color: var(--apricot-deep); flex: 0 0 auto; margin-top: 4px; }
.checklist b { font-weight: 700; color: var(--ink); }
.checklist span { line-height: 1.6; }
.section.alt .checklist li { background: var(--paper); }

/* ------------------------------------------------------------------- steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-soft); padding: 30px 26px; position: relative;
}
.step .num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--night); color: var(--apricot);
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; margin-bottom: 18px;
}
.step p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------- stats / stat band */
.statband { background: var(--night); color: #fff; position: relative; overflow: hidden; }
.statband::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 20% 0%, rgba(140,51,0,.7), transparent 62%);
}
.statband .wrap { position: relative; }
.statband h2 { color: #fff; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 20px; }
.stat .big { display: block; font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3rem);
             color: var(--apricot); font-weight: 600; line-height: 1; margin-bottom: 8px; }
.stat .lbl { color: rgba(255,255,255,.82); font-size: 1rem; }

/* ------------------------------------------------------------- testimonial */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-soft);
  padding: 32px 30px; box-shadow: var(--shadow-sm); position: relative;
}
.quote::before {
  content: "\201C"; font-family: var(--font-serif); font-size: 4.5rem; line-height: 1;
  color: var(--apricot); opacity: .5; position: absolute; top: 10px; right: 22px;
}
.quote p { font-size: 1.06rem; color: var(--ink); position: relative; }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.quote .avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--lilac-tint); color: var(--grape);
  font-family: var(--font-serif); font-weight: 600; font-size: 1.2rem; flex: 0 0 auto;
}
.quote .meta { font-size: .95rem; color: var(--ink-soft); }
.quote .stars { color: var(--apricot-deep); letter-spacing: .12em; margin-bottom: 12px; }

/* ------------------------------------------------------------------ story */
.story {
  display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: center;
  background: var(--white); border: 1px solid var(--line);
  padding: 32px; margin-bottom: 24px; border-radius: var(--radius-soft);
  box-shadow: var(--shadow-sm);
}
.story .pic {
  aspect-ratio: 1; display: grid; place-items: center; color: var(--apricot-deep);
  font-family: var(--font-serif); font-weight: 600; font-size: 2.8rem;
  background: var(--apricot-soft); border-radius: var(--radius);
}
.story h3 { margin-bottom: 6px; font-size: 1.65rem; }
.story .meta { color: var(--apricot-deep); font-weight: 700; font-size: .95rem; margin-bottom: 14px; }
@media (max-width: 720px) {
  .story { grid-template-columns: 1fr; text-align: center; }
  .story .pic { max-width: 190px; margin: 0 auto; }
}

/* --------------------------------------------------------------------- FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); margin-bottom: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-family: var(--font-serif); font-size: 1.24rem; font-weight: 600;
  color: var(--ink); padding: 22px 24px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  min-height: 48px; border-radius: var(--radius);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: 0 0 auto; width: 13px; height: 13px;
  border-right: 2.5px solid var(--apricot-deep); border-bottom: 2.5px solid var(--apricot-deep);
  transform: rotate(45deg) translate(-3px, -3px); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq summary:hover { color: var(--grape); }
.faq details p { padding: 0 24px 22px; margin: 0; max-width: 70ch; }

/* ------------------------------------------------------------- locations */
.country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .country-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .country-grid { grid-template-columns: 1fr; } }
.country {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; color: var(--ink); font-weight: 700; min-height: 68px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.country:hover { transform: translateY(-3px); border-color: var(--grape); color: var(--grape); box-shadow: var(--shadow-sm); }
.country .flag { font-size: 1.7rem; line-height: 1; }

.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.loc-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; text-decoration: none; color: var(--ink); font-weight: 700;
  min-height: 56px; height: 100%;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.loc-card:hover { border-color: var(--grape); color: var(--grape); transform: translateY(-2px); background: var(--paper); }
.loc-card .flag { font-size: 1.5rem; line-height: 1; }
.loc-card h2 { font-size: 1.3rem; margin: 0; color: inherit; }
.loc-card p {
  margin: 0; font-weight: 400; font-size: .97rem; line-height: 1.6; color: var(--ink-soft);
}
.loc-card .loc-go { margin-top: auto; padding-top: 4px; color: var(--apricot-deep); font-weight: 700; font-size: .95rem; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  background: var(--lilac-tint); color: var(--grape); border: 1px solid transparent;
  border-radius: 999px; padding: 10px 18px; font-weight: 700; font-size: .96rem; min-height: 44px;
}
.tag:hover { background: var(--grape); color: #fff; }

/* ---------------------------------------------------------------- CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--night) 0%, var(--grape) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 76px) clamp(24px, 5vw, 64px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 120% at 82% 0%, rgba(247,88,1,.24), transparent 62%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 58ch; margin: 0 auto 30px; font-size: 1.1rem; }

/* ------------------------------------------------------------------ footer */
.site-footer { background: var(--night); color: rgba(255,255,255,.76); padding: 74px 0 32px; }
.site-footer a { color: rgba(255,255,255,.76); text-decoration: none; }
.site-footer b, .site-footer strong { color: inherit; }
.site-footer a:hover { color: var(--apricot); text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; } }
@media (max-width: 560px)  { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h3, .footer-grid h4 { font-family: var(--font); color: #fff; font-size: 1rem; margin-bottom: 16px; font-weight: 700; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 1rem; }
.footer-grid ul a { display: inline-block; padding: 4px 0; min-height: 30px; }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand .brand b { color: var(--apricot); }
.footer-brand .brand-logo { height: 46px; }
.footer-brand p { color: rgba(255,255,255,.68); max-width: 36ch; }
.footer-bottom {
  border-top: 1px solid var(--line-dark); margin-top: 52px; padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: .93rem; color: rgba(255,255,255,.6);
}
.footer-legal a { text-decoration: underline; display: inline-block; padding: 3px 0; }

/* ------------------------------------------------------- sticky mobile CTA */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251,247,244,.97); border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transform: translateY(110%); transition: transform .28s ease;
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { flex: 1; min-height: 50px; padding: 12px 16px; font-size: 1rem; }
@media (max-width: 760px) {
  .mobile-cta { display: flex; }
  body.has-mobile-cta { padding-bottom: 76px; }
}

/* ------------------------------------------------------- accessibility UI */
.a11y-launch {
  position: fixed; right: 18px; bottom: 18px; z-index: 120;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--night); color: #fff; border: 2px solid var(--apricot);
  border-radius: 999px; padding: 12px 20px; min-height: 52px;
  font-family: var(--font); font-weight: 700; font-size: .98rem; cursor: pointer;
  box-shadow: 0 10px 28px rgba(35,28,24,.32);
}
.a11y-launch:hover { background: var(--grape); }
.a11y-launch svg { color: var(--apricot); }
@media (max-width: 760px) {
  .a11y-launch { bottom: 84px; right: 12px; padding: 12px 16px; }
  .a11y-launch span { display: none; }
}
.a11y-panel {
  position: fixed; right: 18px; bottom: 84px; z-index: 130;
  width: min(360px, calc(100vw - 24px));
  background: var(--white); border: 1px solid var(--line-2);
  border-radius: var(--radius-soft); box-shadow: var(--shadow);
  padding: 26px 24px 24px; max-height: min(80vh, 620px); overflow-y: auto;
}
@media (max-width: 760px) { .a11y-panel { bottom: 148px; right: 12px; } }
.a11y-panel h2 { font-size: 1.4rem; margin: 0 0 6px; }
.a11y-panel .sub { font-size: .95rem; margin: 0 0 20px; }
.a11y-close {
  position: absolute; top: 10px; right: 10px; width: 44px; height: 44px;
  border: 0; background: transparent; font-size: 1.7rem; line-height: 1;
  color: var(--ink-soft); cursor: pointer; border-radius: var(--radius);
}
.a11y-close:hover { background: var(--paper-2); color: var(--ink); }
.a11y-row { margin-bottom: 16px; }
.a11y-row .label { display: block; font-weight: 700; font-size: .95rem; margin-bottom: 8px; }
.a11y-seg { display: flex; gap: 6px; }
.a11y-seg button {
  flex: 1; min-height: 48px; border: 1.5px solid var(--line-2); background: var(--white);
  border-radius: var(--radius); cursor: pointer; font-family: var(--font); font-weight: 700;
  color: var(--ink); padding: 6px 4px;
}
.a11y-seg button:hover { border-color: var(--grape); }
.a11y-seg button[aria-pressed="true"] { background: var(--grape); border-color: var(--grape); color: #fff; }
.a11y-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  min-height: 52px; padding: 10px 16px; border: 1.5px solid var(--line-2); background: var(--white);
  border-radius: var(--radius); cursor: pointer; font-family: var(--font); font-weight: 700;
  font-size: 1rem; color: var(--ink); text-align: left;
}
.a11y-toggle:hover { border-color: var(--grape); }
.a11y-toggle .pill {
  width: 48px; height: 28px; border-radius: 999px; background: var(--line-2);
  position: relative; flex: 0 0 auto; transition: background .2s ease;
}
.a11y-toggle .pill::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px;
  border-radius: 50%; background: #fff; transition: transform .2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.a11y-toggle[aria-pressed="true"] .pill { background: var(--grape); }
.a11y-toggle[aria-pressed="true"] .pill::after { transform: translateX(20px); }
.a11y-reset {
  width: 100%; min-height: 48px; margin-top: 6px; border: 0; background: var(--paper-2);
  border-radius: var(--radius); cursor: pointer; font-family: var(--font); font-weight: 700;
  color: var(--grape);
}
.a11y-reset:hover { background: var(--lilac-tint); }

/* ------------------------------------------------------------ cookie bar */
.cookie-banner {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 140;
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius-soft);
  box-shadow: var(--shadow); padding: 20px 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
  max-width: 900px; margin: 0 auto;
}
.cookie-banner__text { margin: 0; flex: 1 1 340px; font-size: .98rem; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions .btn { min-height: 48px; padding: 12px 24px; }
body.cookie-open .a11y-launch { bottom: 130px; }
@media (max-width: 760px) { body.cookie-open .a11y-launch { bottom: 210px; } }

/* ----------------------------------------------------------- high contrast */
html.hc {
  --paper: #ffffff; --paper-2: #ffffff; --white: #ffffff;
  --ink: #000000; --ink-soft: #1a1a1a;
  --grape: #5c1f00; --apricot-deep: #7a3d00;
  --line: #000000; --line-2: #000000; --lilac-tint: #fbeee4;
  --shadow-sm: none; --shadow: 0 0 0 1px #000; --shadow-lift: none;
}
html.hc body { background: #fff; }
html.hc .card, html.hc .step, html.hc .quote, html.hc .loc-card,
html.hc .country, html.hc .checklist li, html.hc .faq details { border: 2px solid #000; box-shadow: none; }
html.hc a { text-decoration: underline; }
html.hc .btn-primary { background: #7a3d00; color: #fff; border-color: #000; box-shadow: none; }
html.hc .btn-ghost { border-color: #000; color: #000; }
html.hc .hero-scrim { background: rgba(0,0,0,.86); }
html.hc .site-header { background: #fff; }
html.hc .trust-row .t { background: rgba(0,0,0,.5); border-color: #fff; }

/* ---------------------------------------------------------------- motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}
html.reduce-motion { scroll-behavior: auto; }
html.reduce-motion *, html.reduce-motion *::before, html.reduce-motion *::after {
  animation-duration: .001ms !important; animation-iteration-count: 1 !important;
  transition-duration: .001ms !important;
}
html.reduce-motion .card:hover, html.reduce-motion .btn:hover,
html.reduce-motion .country:hover, html.reduce-motion .loc-card:hover { transform: none; }

/* ----------------------------------------------------------------- print */
@media print {
  .site-header, .site-footer, .a11y-launch, .a11y-panel,
  .cookie-banner, .mobile-cta, .hero-cta, .skip { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .hero-photo { min-height: 0; padding: 0; color: #000; background: #fff; }
  .hero-media, .hero-scrim { display: none; }
  .hero-photo h1 { color: #000; text-shadow: none; }
  .section { padding: 18pt 0; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; word-break: break-all; }
}
