/* Enchanted Access with Tara. Shared stylesheet v3, 2026-09-14.
   Flow and rhythm follow the Gamma About sketch: one soft gradient ground, generous air between sections,
   open layouts. Palette and contrast pairings come from the verified spec. Do not re-derive. */

:root {
  --aubergine: #3B1F5C;
  --amethyst: #6A3FA0;
  --lilac: #D9CCEC;
  --silver: #B9BEC7;
  --moonlight: #F7F6FA;
  --white: #FFFFFF;

  /* Light theme roles */
  --bg: var(--moonlight);
  --page-gradient: linear-gradient(170deg, #F7F6FA 0%, #F1E9F8 35%, #FBEFF5 70%, #F3EBF9 100%);
  --bg-deep: var(--aubergine);
  --text: var(--aubergine);
  --text-on-deep: var(--moonlight);
  --link: var(--amethyst);
  --link-on-deep: var(--lilac);
  --btn-bg: var(--amethyst);
  --btn-text: var(--white);
  --btn-on-deep-bg: var(--lilac);
  --btn-on-deep-text: var(--aubergine);
  --focus: var(--amethyst);
  --card-bg: rgba(217, 204, 236, .55);
  --card-bg-solid: #EBE2F4;
  --card-border: rgba(106, 63, 160, .25);
  --panel-bg: rgba(255, 255, 255, .6);
  --stripe: var(--amethyst);
  --icon: var(--amethyst);
  --road: var(--lilac);
  --road-line: var(--amethyst);
  --pin: var(--amethyst);
  --pin-text: var(--white);

  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --measure: 78ch;
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 7.5rem;
}

[data-theme="dark"] {
  --bg: var(--aubergine);
  --page-gradient: linear-gradient(170deg, #3B1F5C 0%, #2E1848 45%, #24123A 100%);
  --bg-deep: #24123A;
  --text: var(--moonlight);
  --text-on-deep: var(--moonlight);
  --link: var(--lilac);
  --link-on-deep: var(--lilac);
  --btn-bg: var(--lilac);
  --btn-text: var(--aubergine);
  --btn-on-deep-bg: var(--moonlight);
  --btn-on-deep-text: var(--aubergine);
  --focus: var(--lilac);
  --card-bg: rgba(217, 204, 236, .12);
  --card-bg-solid: #4A2E6E;
  --card-border: rgba(217, 204, 236, .35);
  --panel-bg: rgba(255, 255, 255, .06);
  --stripe: var(--lilac);
  --icon: var(--lilac);
  --road: #4A2E6E;
  --road-line: var(--lilac);
  --pin: var(--lilac);
  --pin-text: var(--aubergine);
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--bg);
  background-image: var(--page-gradient);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 var(--space-2); max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-3);
  letter-spacing: .01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 5vw + .5rem, 3.75rem); }
h2 { font-size: clamp(1.875rem, 3vw + .75rem, 2.75rem); }
h3 { font-size: 1.5rem; }

a { color: var(--link); text-decoration: underline; text-underline-offset: .15em; text-decoration-thickness: .08em; }
a:hover { text-decoration-thickness: .14em; }

/* Focus: never removed. Ring color swaps per theme so it always clears 3:1. */
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 2px; }

/* Skip link */
.skip-link {
  position: absolute; left: var(--space-2); top: -100%;
  background: var(--btn-bg); color: var(--btn-text);
  padding: .75rem 1rem; font-weight: 700; z-index: 100; border-radius: 4px;
}
.skip-link:focus { top: var(--space-2); }

.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;
}

/* Layout: generous air between sections, like the sketch */
.wrap { width: min(100% - 2.5rem, 72rem); margin-inline: auto; }
.section { padding-block: var(--space-4); }
@media (min-width: 768px) { .section { padding-block: var(--space-5); } }
/* Alternate and deep sections sit on the same gradient ground. The classes stay for structure. */
.section-alt, .section-deep { background: transparent; color: var(--text); }
.section-deep a { color: var(--link); }
.section-deep h1, .section-deep h2, .section-deep h3 { color: var(--text); }
.section-deep .btn { color: var(--btn-text); background: var(--btn-bg); border-color: var(--btn-bg); }

/* Header */
.site-header { background: var(--panel-bg); border-bottom: 1px solid var(--card-border); backdrop-filter: blur(6px); }
.site-header .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2) var(--space-3); padding-block: var(--space-2); }
.wordmark { font-family: var(--font-display); font-weight: 600; font-size: 1.375rem; color: var(--text); text-decoration: none; margin-right: auto; }
.wordmark:hover { text-decoration: none; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .25rem var(--space-2); }
.site-nav a { display: inline-block; padding: .625rem .5rem; min-height: 44px; text-decoration: none; font-weight: 700; color: var(--text); border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a[aria-current="page"] { border-bottom-color: var(--link); }
.site-nav a[aria-current="page"] { color: var(--link); }
.theme-toggle {
  min-width: 44px; min-height: 44px; padding: .5rem .875rem;
  font: inherit; font-weight: 700; color: var(--text);
  background: transparent; border: 2px solid var(--link); border-radius: 999px; cursor: pointer;
}
.theme-toggle:hover { background: var(--card-bg); }

/* Buttons: bigger and rounder, like the sketch */
.btn {
  display: inline-block; padding: 1rem 2rem; min-height: 44px;
  font-weight: 700; font-size: 1.125rem; text-decoration: none;
  color: var(--btn-text); background: var(--btn-bg); border: 2px solid var(--btn-bg); border-radius: 8px;
  transition: transform 150ms ease, background-color 150ms ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

/* Hero band: the one deep block on the page (Tara's call until photos arrive) */
.hero-band { background: var(--bg-deep); color: var(--text-on-deep); padding-block: var(--space-5); }
.hero-band h1 { color: var(--text-on-deep); margin-bottom: var(--space-2); }
.hero-band .subhead { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.25rem, 1.5vw + .75rem, 1.75rem); color: var(--lilac); margin: 0 0 var(--space-3); }
.hero-band p { font-size: 1.1875rem; }
.hero-band .lede { font-weight: 700; margin-top: var(--space-2); }
.hero-band .btn { margin-top: var(--space-3); color: var(--btn-on-deep-text); background: var(--btn-on-deep-bg); border-color: var(--btn-on-deep-bg); }
.hero-band a:not(.btn) { color: var(--link-on-deep); }
.hero-band .hero-split { display: grid; gap: var(--space-4); align-items: center; }
@media (min-width: 768px) { .hero-band .hero-split { grid-template-columns: 1.15fr .85fr; gap: var(--space-5); } }
.hero-band .tagline { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.25rem, 1.5vw + .75rem, 1.625rem); line-height: 1.35; color: var(--lilac); margin-block: var(--space-3); }
.hero-band .signature { font-size: 1rem; margin-top: var(--space-3); color: var(--silver); }
.lede { font-weight: 700; }

/* Portrait panel: soft lilac block with the photo inset, as in the sketch */
.portrait {
  background: var(--lilac); color: var(--aubergine);
  border-radius: 12px; padding: var(--space-3);
  display: grid; place-items: center; text-align: center; font-weight: 700;
  aspect-ratio: 4 / 5; overflow: hidden;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
figure { margin: 0; }
figcaption { font-size: .9375rem; margin-top: var(--space-1); font-style: italic; }

/* Two column: portrait beside prose */
.two-col { display: grid; gap: var(--space-4); align-items: start; }
@media (min-width: 768px) { .two-col { grid-template-columns: 2fr 3fr; gap: var(--space-5); } }

/* Statement block */
.statement p { font-size: clamp(1.375rem, 1.2vw + 1rem, 1.75rem); line-height: 1.45; max-width: 36em; font-family: var(--font-display); font-weight: 600; }

/* Solid tiles: pale lilac boxes with a hairline, roomy */
.tiles { list-style: none; margin: var(--space-4) 0 0; padding: 0; display: grid; gap: var(--space-3); }
@media (min-width: 640px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tiles { grid-template-columns: repeat(3, 1fr); } .tiles.four { grid-template-columns: repeat(4, 1fr); } }
.tile {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px;
  padding: var(--space-4) var(--space-3); display: flex; flex-direction: column; gap: .75rem;
}
.tile .icon { width: 2.5rem; height: 2.5rem; color: var(--icon); flex: none; }
.tile h3 { font-size: 1.375rem; margin: 0; }
.tile p { margin: 0; font-size: 1.0625rem; }
.tile.wide { grid-column: 1 / -1; }
.tile.plain { justify-content: center; }
.tile.plain p { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; }

/* Plan list: two columns, amethyst markers, display face */
.plan-list { list-style: none; margin: var(--space-4) 0 0; padding: 0; display: grid; gap: .75rem var(--space-5); max-width: 56rem; }
@media (min-width: 640px) { .plan-list { grid-template-columns: repeat(2, 1fr); } }
.plan-list li { position: relative; padding-left: 1.75rem; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; line-height: 1.4; }
.plan-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: .75rem; height: .75rem; border-radius: 50%; background: var(--icon); }

/* Open icon items: big icon, heading, line. No box. Two columns. */
.icon-items { list-style: none; margin: var(--space-4) 0 0; padding: 0; display: grid; gap: var(--space-4) var(--space-5); }
@media (min-width: 768px) { .icon-items { grid-template-columns: repeat(2, 1fr); } }
.icon-items li { display: flex; flex-direction: column; gap: .75rem; }
.icon-items .icon { width: 3.25rem; height: 3.25rem; color: var(--icon); }
.icon-items h3 { font-size: 1.5rem; margin: 0; }
.icon-items p { margin: 0; }

/* Stripe cards: white-ish panel, hairline, thick stripe on the left */
.stripe-cards { list-style: none; margin: var(--space-4) 0 0; padding: 0; display: grid; gap: var(--space-3); }
@media (min-width: 768px) { .stripe-cards { grid-template-columns: repeat(3, 1fr); } }
.stripe-card {
  background: var(--panel-bg); border: 1px solid var(--card-border); border-left: 8px solid var(--stripe);
  border-radius: 10px; padding: var(--space-3) var(--space-3) var(--space-4);
}
.stripe-card h3 { font-size: 1.375rem; margin: 0 0 .75rem; }
.stripe-card p { margin: 0; }

/* Quote boxes: a big opening mark and a hairline */
.quote-boxes { list-style: none; margin: var(--space-4) 0 0; padding: 0; display: grid; gap: var(--space-3); }
@media (min-width: 768px) { .quote-boxes { grid-template-columns: repeat(3, 1fr); } }
.quote-box {
  position: relative; background: var(--panel-bg); border: 1px solid var(--card-border); border-radius: 10px;
  padding: var(--space-4) var(--space-3) var(--space-3); margin: 0; max-width: var(--measure);
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; line-height: 1.4;
}
.quote-box::before {
  content: "\201C"; position: absolute; top: -.35em; left: .5rem;
  font-family: Georgia, serif; font-size: 3.5rem; line-height: 1; color: var(--icon);
}
.quote-box p { margin: 0; }
.prose .quote-box { margin-top: var(--space-4); }

/* Numbered items: square lilac badge, heading beside, text below. No borders. */
.step-cards { list-style: none; counter-reset: step; margin: var(--space-4) 0 0; padding: 0; display: grid; gap: var(--space-4) var(--space-5); }
@media (min-width: 768px) { .step-cards { grid-template-columns: repeat(2, 1fr); } }
.step-card { counter-increment: step; display: grid; grid-template-columns: 3rem 1fr; column-gap: var(--space-2); align-items: start; }
.step-card::before {
  content: counter(step); width: 3rem; height: 3rem; border-radius: 6px;
  background: var(--card-bg-solid); color: var(--text);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem;
}
.step-card h3 { font-size: 1.5rem; margin: .375rem 0 .5rem; }
.step-card p { margin: 0; grid-column: 2; }

/* Card grid (Home). Whole card is one link. */
.grid { list-style: none; margin: var(--space-4) 0 0; padding: 0; display: grid; gap: var(--space-3); }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--card-bg); color: var(--text); border: 1px solid var(--card-border); border-radius: 12px;
  padding: var(--space-3); min-height: 9rem; display: flex; flex-direction: column; justify-content: flex-end; gap: .25rem;
  text-decoration: none; transition: transform 150ms ease, border-color 150ms ease;
}
a.card:hover { transform: translateY(-2px); border-color: var(--link); text-decoration: none; }
.card .card-title { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; line-height: 1.2; }
.card .card-sub { font-size: 1rem; }
.card.has-photo { padding: 0; overflow: hidden; }
.card.has-photo .photo-slot { background: var(--card-bg-solid); aspect-ratio: 16 / 10; display: grid; place-items: center; color: var(--text); font-weight: 700; }
.card.has-photo .card-body { padding: var(--space-3); }

/* Fee table. Real table with header cells on desktop; stacked cards on phones with the same semantics.
   The caption is the table's heading, so it carries the display face. */
.fee-table { width: 100%; max-width: 56rem; border-collapse: collapse; margin-top: var(--space-4); font-size: 1.0625rem; background: var(--panel-bg); border: 1px solid var(--card-border); border-radius: 10px; overflow: hidden; }
.fee-table caption { text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; line-height: 1.2; color: var(--text); padding-bottom: var(--space-3); caption-side: top; }
.fee-table th, .fee-table td { text-align: left; vertical-align: top; padding: 1rem 1.25rem; border-top: 1px solid var(--card-border); }
.fee-table thead th { border-top: 0; background: var(--card-bg); font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; }
.fee-table tbody th { font-weight: 400; }
.fee-table td { font-weight: 700; white-space: nowrap; }
@media (max-width: 639px) {
  .fee-table { background: transparent; border: 0; }
  .fee-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .fee-table, .fee-table caption, .fee-table tbody, .fee-table tr, .fee-table th, .fee-table td { display: block; }
  .fee-table caption { margin-bottom: var(--space-2); }
  .fee-table tr { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px; padding: var(--space-3); margin-bottom: var(--space-2); }
  .fee-table th, .fee-table td { border: 0; padding: 0; }
  .fee-table tbody th { margin-bottom: .375rem; }
  .fee-table td { white-space: normal; }
  .fee-table td::before { content: attr(data-label) ": "; font-weight: 400; }
}

/* Accessibility callout: Lilac Mist background, Aubergine text, no icon. Same in both themes on purpose. */
.callout {
  background: var(--lilac); color: var(--aubergine); border-left: 8px solid var(--aubergine); border-radius: 10px;
  padding: var(--space-3) var(--space-4); margin-top: var(--space-4); max-width: var(--measure);
  font-family: var(--font-display); font-weight: 600; font-size: 1.375rem; line-height: 1.35;
}
.callout p { margin: 0; color: inherit; }
.note { max-width: var(--measure); margin-top: var(--space-3); }

/* Jump pills (on the hero band) */
.jump { margin-top: var(--space-3); }
.jump ul { list-style: none; margin: var(--space-2) 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.jump a { display: inline-block; padding: .625rem 1rem; min-height: 44px; border: 2px solid var(--lilac); border-radius: 999px; font-weight: 700; text-decoration: none; color: var(--text-on-deep); }
.jump a:hover { background: var(--lilac); color: var(--aubergine); }

/* FAQ accordion: native details/summary, one control to open everything. */
.faq h2 { scroll-margin-top: var(--space-3); }
.faq-controls { display: flex; justify-content: flex-end; margin-top: var(--space-4); }
.expand-all { min-height: 44px; padding: .5rem 1.25rem; font: inherit; font-weight: 700; color: var(--text); background: var(--panel-bg); border: 2px solid var(--link); border-radius: 999px; cursor: pointer; }
.expand-all:hover { background: var(--card-bg); }
.faq-list { margin-top: var(--space-3); max-width: 56rem; }
.faq-item { background: var(--panel-bg); border: 1px solid var(--card-border); border-left: 8px solid var(--stripe); border-radius: 10px; margin-bottom: var(--space-2); }
.faq-item summary { list-style: none; cursor: pointer; padding: var(--space-2) var(--space-3); display: grid; grid-template-columns: 1fr 1.5rem; gap: var(--space-2); align-items: center; min-height: 44px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.125rem; margin: 0; line-height: 1.4; }
.faq-item summary::after { content: ""; width: .75rem; height: .75rem; border-right: 3px solid var(--link); border-bottom: 3px solid var(--link); transform: rotate(45deg); transition: transform 150ms ease; justify-self: center; }
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--card-border); }
.faq-item summary:hover { background: var(--card-bg); }
.faq-item summary:focus-visible { outline: 3px solid var(--focus); outline-offset: -3px; }
.faq-answer { padding: var(--space-2) var(--space-3) var(--space-3); }
.faq-answer ol { padding-left: 1.5rem; margin: 0; }
.faq-answer ol li { margin-bottom: .75rem; padding-left: .25rem; }
.faq .to-top { display: inline-block; margin-top: var(--space-3); font-weight: 700; }
@media print { .faq-item summary::after, .faq-controls, .theme-toggle, .skip-link { display: none; } }

/* Roadmap: a winding road with three pins. A real sequence (before, during, after). */
.roadmap { list-style: none; margin: var(--space-5) 0 0; padding: 0; position: relative; display: grid; gap: var(--space-4); }
.road { display: none; }
.stop { display: grid; grid-template-columns: 3.75rem 1fr; column-gap: var(--space-3); align-items: start; position: relative; }
.pin {
  width: 3.75rem; height: 3.75rem; background: var(--pin); color: var(--pin-text);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  display: grid; place-items: center; flex: none;
}
.pin svg { width: 1.75rem; height: 1.75rem; transform: rotate(45deg); }
.stop h3 { font-size: 1.375rem; margin: .5rem 0 .25rem; }
.stop p { margin: 0; }
@media (max-width: 767px) {
  .stop:not(:last-child)::after { content: ""; position: absolute; left: calc(1.875rem - 3px); top: 4rem; bottom: calc(-1 * var(--space-4)); width: 6px; border-left: 6px dashed var(--road); }
}
@media (min-width: 768px) {
  .roadmap { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); min-height: 24rem; align-items: start; }
  .road { display: block; position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
  .stop { grid-template-columns: 1fr; justify-items: center; text-align: center; z-index: 1; row-gap: .5rem; padding-inline: var(--space-2); }
  .stop .text { max-width: 22ch; }
  .stop h3 { margin: 0 0 .25rem; }
  /* Odd stops: text above the road, pin sits on it pointing down. Even stop: pin below, text under. */
  .stop:nth-child(odd) .text { min-height: 7rem; display: flex; flex-direction: column; justify-content: flex-end; }
  .stop:nth-child(odd) .pin { order: 2; margin-top: 0; }
  .stop:nth-child(even) { padding-top: 15rem; }
  .stop:nth-child(even) .pin { transform: rotate(135deg); }
  .stop:nth-child(even) .pin svg { transform: rotate(-135deg); }
  .stop:nth-child(even) .text { order: 2; margin-top: var(--space-2); }
}

/* ASL slot */
.asl { background: var(--panel-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: var(--space-4); max-width: 36rem; }
.asl h2 { font-size: 1.5rem; margin-bottom: var(--space-2); }
.asl p { margin: 0; }

/* Sign-off block */
.signoff { text-align: center; padding-block: var(--space-6); }
.signoff h2 { font-size: clamp(2rem, 3.5vw + .5rem, 3rem); max-width: 20ch; margin-inline: auto; }
.signoff .btn { margin-top: var(--space-4); }

/* Review cards: static grid, all visible, no motion. Left rule, no box, like the sketch. */
.reviews { list-style: none; margin: var(--space-4) 0 0; padding: 0; display: grid; gap: var(--space-4); }
@media (min-width: 768px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { border-left: 4px solid var(--stripe); padding-left: var(--space-3); display: flex; flex-direction: column; gap: var(--space-2); }
.review blockquote { margin: 0; font-size: 1.0625rem; }
.review .who { font-weight: 700; margin-top: auto; }

/* Footer */
.site-footer { background: var(--aubergine); color: var(--moonlight); padding-block: var(--space-5); font-size: 1rem; }
.site-footer a { color: var(--lilac); }
.site-footer .wrap { display: grid; gap: var(--space-3); }
@media (min-width: 768px) { .site-footer .wrap { grid-template-columns: 1fr 1fr 1fr; } }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer .muted { color: var(--silver); }
.footer-signature { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; margin-bottom: var(--space-1); }

/* Prose sections */
.prose h2 + p { margin-top: 0; }

/* Motion off when asked */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .btn:hover, a.card:hover { transform: none; }
}

/* ==== v4 premium pass, 2026-09-14. Editorial photography, stacked depth, one signature flourish. ==== */

:root {
  --shadow-1: 0 1px 2px rgba(59, 31, 92, .06), 0 8px 24px rgba(59, 31, 92, .08);
  --shadow-2: 0 2px 4px rgba(59, 31, 92, .08), 0 18px 40px rgba(59, 31, 92, .14);
  --glow: radial-gradient(60% 80% at 80% 0%, rgba(217, 204, 236, .35), transparent 70%);
  --flourish: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 24'%3E%3Cpath d='M0 12h44M76 12h44' stroke='%236A3FA0' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M60 2c1.2 5.6 4.4 8.8 10 10-5.6 1.2-8.8 4.4-10 10-1.2-5.6-4.4-8.8-10-10 5.6-1.2 8.8-4.4 10-10z' fill='%236A3FA0'/%3E%3C/svg%3E");
  --sparkle-mark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1c1.4 6.6 5.2 10.4 11 11-5.8.6-9.6 4.4-11 11-1.4-6.6-5.2-10.4-11-11 5.8-.6 9.6-4.4 11-11z' fill='%236A3FA0'/%3E%3C/svg%3E");
}
[data-theme="dark"] {
  --shadow-1: 0 1px 2px rgba(0, 0, 0, .25), 0 8px 24px rgba(0, 0, 0, .3);
  --shadow-2: 0 2px 4px rgba(0, 0, 0, .3), 0 18px 40px rgba(0, 0, 0, .4);
  --glow: radial-gradient(60% 80% at 80% 0%, rgba(217, 204, 236, .14), transparent 70%);
  --flourish: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 24'%3E%3Cpath d='M0 12h44M76 12h44' stroke='%23D9CCEC' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M60 2c1.2 5.6 4.4 8.8 10 10-5.6 1.2-8.8 4.4-10 10-1.2-5.6-4.4-8.8-10-10 5.6-1.2 8.8-4.4 10-10z' fill='%23D9CCEC'/%3E%3C/svg%3E");
  --sparkle-mark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1c1.4 6.6 5.2 10.4 11 11-5.8.6-9.6 4.4-11 11-1.4-6.6-5.2-10.4-11-11 5.8-.6 9.6-4.4 11-11z' fill='%23D9CCEC'/%3E%3C/svg%3E");
}

/* Signature flourish under every section heading. Decorative: a background, not content. */
.section > .wrap > h2::after, .section > .wrap > .two-col + h2::after {
  content: ""; display: block; width: 7.5rem; height: 1.5rem; margin-top: var(--space-2);
  background: var(--flourish) no-repeat left center / contain;
}
.signoff h2::after { margin-inline: auto; background-position: center; }

/* Header: emblem beside the wordmark. Swap the sparkle for images/logo.png when it lands. */
.wordmark { display: inline-flex; align-items: center; gap: .625rem; }
.wordmark::before { content: ""; width: 1.5rem; height: 1.5rem; background: var(--sparkle-mark) no-repeat center / contain; }
.wordmark img { width: 2.25rem; height: 2.25rem; object-fit: contain; }
.wordmark.has-logo::before { display: none; }

/* Hero band: glow, hairline top, and a photo-ready variant */
.hero-band { position: relative; overflow: hidden; border-top: 1px solid rgba(217, 204, 236, .35); }
.hero-band::before { content: ""; position: absolute; inset: 0; background: var(--glow); pointer-events: none; }
.hero-band > .wrap { position: relative; }
.hero-band.has-photo { min-height: 26rem; display: grid; align-items: end; }
.hero-band.has-photo .hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-band.has-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36, 18, 58, .35) 0%, rgba(36, 18, 58, .85) 100%); }
.hero-band.has-photo > .wrap { z-index: 1; padding-block: var(--space-5) var(--space-4); }

/* Depth: cards and panels with shadow */
.tile, .card, .stripe-card, .quote-box, .faq-item, .asl, .fee-table, .portrait { box-shadow: var(--shadow-1); }
.tile, .card, .stripe-card, .quote-box, .faq-item, .asl, .portrait { border-color: rgba(255, 255, 255, .7); }
[data-theme="dark"] .tile, [data-theme="dark"] .card, [data-theme="dark"] .stripe-card, [data-theme="dark"] .quote-box, [data-theme="dark"] .faq-item, [data-theme="dark"] .asl { border-color: rgba(217, 204, 236, .22); }
.tile, .stripe-card, .quote-box, .faq-item { transition: transform 200ms ease, box-shadow 200ms ease; }
.tile:hover, .stripe-card:hover, .quote-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
a.card:hover { box-shadow: var(--shadow-2); }
.faq-item[open] { box-shadow: var(--shadow-2); }

/* Buttons: gradient and lift */
.btn { background: linear-gradient(135deg, var(--amethyst), #5A3390); border-color: transparent; box-shadow: 0 6px 18px rgba(106, 63, 160, .3); }
.btn:hover { box-shadow: 0 10px 26px rgba(106, 63, 160, .38); }
[data-theme="dark"] .btn { background: linear-gradient(135deg, #E6DCF2, var(--lilac)); color: var(--aubergine); box-shadow: 0 6px 18px rgba(0, 0, 0, .35); }
.hero-band .btn { background: linear-gradient(135deg, #EEE6F6, var(--lilac)); color: var(--aubergine); box-shadow: 0 8px 22px rgba(0, 0, 0, .3); }

/* Portrait: photo-ready with an inset frame */
.portrait { position: relative; }
.portrait::after { content: ""; position: absolute; inset: .75rem; border: 1px solid rgba(255, 255, 255, .6); border-radius: 8px; pointer-events: none; }
.portrait img { border-radius: 8px; }

/* Photo slots on cards: gradient shimmer placeholder until a photo lands */
.card.has-photo .photo-slot { background: linear-gradient(135deg, #E6DCF2, #D9CCEC 55%, #EFE5F7); }
[data-theme="dark"] .card.has-photo .photo-slot { background: linear-gradient(135deg, #4A2E6E, #3B1F5C 55%, #52367A); }
.card.has-photo .photo-slot img { width: 100%; height: 100%; object-fit: cover; }

/* Statement: pull quote treatment with the sparkle */
.statement .wrap { position: relative; padding-left: 2.5rem; }
.statement .wrap::before { content: ""; position: absolute; left: 0; top: .25rem; width: 1.75rem; height: 1.75rem; background: var(--sparkle-mark) no-repeat center / contain; }

/* Footer: watermark emblem and hairline */
.site-footer { position: relative; overflow: hidden; border-top: 1px solid rgba(217, 204, 236, .35); }
.site-footer::before { content: ""; position: absolute; right: -3rem; bottom: -3rem; width: 16rem; height: 16rem; opacity: .08; background: var(--sparkle-mark) no-repeat center / contain; filter: brightness(3); pointer-events: none; }
.site-footer .wrap { position: relative; }

/* FAQ: group cards with icons replace the hero jump pills; controls sit with the first group */
.faq-groups { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); }
@media (min-width: 640px) { .faq-groups { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .faq-groups { grid-template-columns: repeat(4, 1fr); } }
.faq-groups a {
  display: flex; flex-direction: column; gap: .5rem; text-decoration: none; color: var(--text);
  background: var(--card-bg); border: 1px solid rgba(255, 255, 255, .7); border-radius: 12px; padding: var(--space-3);
  box-shadow: var(--shadow-1); transition: transform 200ms ease, box-shadow 200ms ease;
}
[data-theme="dark"] .faq-groups a { border-color: rgba(217, 204, 236, .22); }
.faq-groups a:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.faq-groups .icon { width: 2.25rem; height: 2.25rem; color: var(--icon); }
.faq-groups .g-title { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.faq-groups .g-count { font-size: .9375rem; }
.faq-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-2); margin-top: var(--space-4); }
.faq-head .expand-all { margin: 0; }
.faq h2 { display: flex; align-items: center; gap: .75rem; }
.faq h2 .icon { width: 2rem; height: 2rem; color: var(--icon); flex: none; }
.faq h2::after { display: none !important; }
.faq-item summary::after { border-color: var(--icon); }
.faq-item { border-left-width: 6px; }

/* Motion: sections settle in on scroll. Only when JS adds .js and the visitor allows motion. Content is visible by default. */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 280ms ease, transform 280ms ease; }
  .js .reveal.in { opacity: 1; transform: none; }
}

/* ==== v5 review pass, 2026-09-14. Footer, hero tagline, statement, trip cards, step alignment. ==== */

/* Hero tagline: two lines, each with its own mark, framed by hairlines. Display face stays short. */
.hero-band .tagline { display: grid; gap: .5rem; margin-block: var(--space-3); padding-block: var(--space-2); border-top: 1px solid rgba(217, 204, 236, .4); border-bottom: 1px solid rgba(217, 204, 236, .4); max-width: 30rem; font-size: clamp(1.25rem, 1.4vw + .8rem, 1.75rem); letter-spacing: .02em; }
.hero-band .tagline span { display: flex; align-items: center; gap: .75rem; }
.hero-band .tagline span::before { content: ""; flex: none; width: 1.125rem; height: 1.125rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1c1.4 6.6 5.2 10.4 11 11-5.8.6-9.6 4.4-11 11-1.4-6.6-5.2-10.4-11-11 5.8-.6 9.6-4.4 11-11z' fill='%23D9CCEC'/%3E%3C/svg%3E") no-repeat center / contain; }
.hero-band .tagline span:last-child { color: var(--moonlight); }

/* Statement: a short display line, then body text at reading size. No wall of capitals. */
.statement .wrap { border-left: 6px solid var(--icon); padding-left: var(--space-3); }
.statement .wrap::before { display: none; }
.statement .lead { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 1.6vw + 1rem, 2.125rem); line-height: 1.25; max-width: 22ch; margin-bottom: var(--space-2); }
.statement .lead::after { content: ""; display: block; width: 7.5rem; height: 1.5rem; margin-top: var(--space-2); background: var(--flourish) no-repeat left center / contain; }
.statement p:not(.lead) { font-family: var(--font-body); font-weight: 400; font-size: clamp(1.1875rem, .6vw + 1rem, 1.375rem); line-height: 1.6; max-width: 48ch; }

/* Trip cards (Home, What I'm planning): icon, trip type, destination, season */
.trips { list-style: none; margin: var(--space-4) 0 0; padding: 0; display: grid; gap: var(--space-3); }
@media (min-width: 640px) { .trips { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trips { grid-template-columns: repeat(3, 1fr); } }
.trip {
  position: relative; overflow: hidden; background: var(--panel-bg); border: 1px solid rgba(255, 255, 255, .7); border-radius: 12px;
  padding: var(--space-3) var(--space-3) var(--space-3) calc(var(--space-3) + .5rem); display: grid; grid-template-columns: 2.75rem 1fr; column-gap: var(--space-2); row-gap: .125rem; align-items: start;
  box-shadow: var(--shadow-1); transition: transform 200ms ease, box-shadow 200ms ease;
}
.trip::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: .5rem; background: linear-gradient(180deg, var(--amethyst), var(--lilac)); }
[data-theme="dark"] .trip { border-color: rgba(217, 204, 236, .22); }
[data-theme="dark"] .trip::before { background: linear-gradient(180deg, var(--lilac), rgba(217, 204, 236, .3)); }
.trip:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.trip .icon { width: 2.75rem; height: 2.75rem; color: var(--icon); grid-row: 1 / 4; }
.trip .kicker { font-size: .875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.trip .dest { font-family: var(--font-display); font-weight: 600; font-size: 1.375rem; line-height: 1.2; }
.trip .when { font-size: 1rem; font-style: italic; }

/* Step cards: badge, heading, and text share one column so the text always sits under the heading, never lower. */
.step-card { grid-template-columns: 3rem 1fr; grid-template-rows: auto auto; row-gap: 0; }
.step-card::before { grid-row: 1 / 3; }
.step-card h3 { text-wrap: pretty; margin: .375rem 0 .5rem; align-self: start; }
.step-card p { grid-column: 2; grid-row: 2; }

/* Plan list inside an FAQ answer: body face, tighter */
.plan-list.compact { margin-top: var(--space-2); gap: .5rem var(--space-4); }
.plan-list.compact li { font-family: var(--font-body); font-weight: 700; font-size: 1.0625rem; }

/* Footer: emblem row, three tidy columns, icon links, one-line base. */
.site-footer { padding-block: var(--space-5) var(--space-3); }
.site-footer .wrap { display: grid; gap: var(--space-4); }
@media (min-width: 768px) { .site-footer .wrap { grid-template-columns: 1fr 1fr 1fr; } }
.site-footer .footer-brand { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2) var(--space-3); padding-bottom: var(--space-3); border-bottom: 1px solid rgba(217, 204, 236, .25); }
.site-footer .footer-brand .footer-signature { font-size: 1.5rem; margin: 0; display: inline-flex; align-items: center; gap: .625rem; }
.site-footer .footer-brand .footer-signature::before { content: ""; width: 1.5rem; height: 1.5rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1c1.4 6.6 5.2 10.4 11 11-5.8.6-9.6 4.4-11 11-1.4-6.6-5.2-10.4-11-11 5.8-.6 9.6-4.4 11-11z' fill='%23D9CCEC'/%3E%3C/svg%3E") no-repeat center / contain; }
.site-footer .footer-brand img { width: 2.5rem; height: 2.5rem; object-fit: contain; }
.site-footer .footer-brand.has-logo .footer-signature::before { display: none; }
.site-footer .footer-brand .tag { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; color: var(--lilac); letter-spacing: .02em; }
.site-footer h2 { font-size: .875rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--lilac); margin: 0 0 var(--space-2); }
.site-footer .contact li { display: flex; align-items: flex-start; gap: .625rem; margin-bottom: .75rem; }
.site-footer .contact .icon { width: 1.25rem; height: 1.25rem; flex: none; margin-top: .25rem; color: var(--lilac); }
.site-footer .contact a { overflow-wrap: anywhere; }
.site-footer .social { display: flex; flex-wrap: wrap; gap: .625rem; }
.site-footer .social li { margin: 0; }
.site-footer .social a {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; padding: .5rem .875rem;
  border: 1px solid rgba(217, 204, 236, .4); border-radius: 999px; text-decoration: none; color: var(--moonlight); font-weight: 700; font-size: .9375rem;
  transition: background-color 150ms ease, border-color 150ms ease;
}
.site-footer .social a:hover { background: rgba(217, 204, 236, .15); border-color: var(--lilac); text-decoration: underline; }
.site-footer .social img { width: 1.25rem; height: 1.25rem; }
.site-footer .policies li { margin-bottom: .5rem; }
.site-footer .footer-base { grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem var(--space-3); padding-top: var(--space-3); border-top: 1px solid rgba(217, 204, 236, .25); font-size: .9375rem; color: var(--silver); }
.site-footer .footer-base p { margin: 0; }
.site-footer .social.pending img { display: none; }
.hero-band .tagline { max-width: 34rem; }
.hero-band .tagline span { align-items: flex-start; }
.hero-band .tagline span::before { margin-top: .45em; }
.step-card { align-content: start; }
.plan-list.compact { margin-bottom: var(--space-3); }
.note + .note { margin-top: var(--space-1); }

/* ==== v5.2 logo pass, 2026-09-14. The Heirloom key as a masked mark: recolors per theme, one asset (images/logo-key.png). ==== */

@supports (mask: url("x.png")) or (-webkit-mask: url("x.png")) {
  .logo-mark { display: inline-block; width: 1.5rem; height: 2.75rem; flex: none; background: var(--icon);
    -webkit-mask: url("images/logo-key.png") no-repeat center / contain; mask: url("images/logo-key.png") no-repeat center / contain; }
  .wordmark.has-logo::before { display: none; }
  .site-footer .footer-brand.has-logo .footer-signature::before { display: none; }
  .site-footer .logo-mark { background: var(--lilac); width: 1.75rem; height: 3.25rem; }
  /* Hero watermark: the key, faint, tilted, off the right edge. Decorative only. */
  .hero-mark { position: absolute; right: -18%; top: 50%; height: 150%; aspect-ratio: 398 / 737; transform: translateY(-50%) rotate(-14deg);
    background: var(--lilac); opacity: .07; pointer-events: none;
    -webkit-mask: url("images/logo-key.png") no-repeat center / contain; mask: url("images/logo-key.png") no-repeat center / contain; }
  @media (min-width: 768px) { .hero-mark { right: 4%; height: 165%; opacity: .12; } }
  .hero-band .hero-split ~ .hero-mark { opacity: .09; }
  /* Footer watermark: swap the sparkle for the key */
  .site-footer::before { width: 11rem; height: 20rem; right: 2rem; bottom: -4rem; opacity: .10; filter: none; background: var(--lilac); transform: rotate(-14deg);
    -webkit-mask: url("images/logo-key.png") no-repeat center / contain; mask: url("images/logo-key.png") no-repeat center / contain; }
}
@supports not ((mask: url("x.png")) or (-webkit-mask: url("x.png"))) { .logo-mark, .hero-mark { display: none; } }
.hero-mark { top: -6%; transform: rotate(-14deg); height: 118%; }
@media (min-width: 768px) { .hero-mark { top: -10%; height: 125%; } }
.hero-mark { z-index: 0; }
.hero-band > .wrap { z-index: 1; }

/* ==== v5.3 sign-off key, 2026-09-15. The key sits under the closing line, where the sparkle rule used to. ==== */

/* Closing line breaks into two lines, always. */
.signoff h2 { max-width: 30ch; }
.signoff h2 .so-line { display: block; }

/* Kill the sparkle rule under the closing heading. Needs .section.signoff to outrank
   the .section > .wrap > h2::after rule above, which is why the plain .signoff selector did not take. */
.section.signoff > .wrap > h2::after { display: none; }

/* Order: key, closing line, button. Done with flex order so the markup keeps the
   heading first for screen readers and the key stays decorative. */
.signoff > .wrap { display: flex; flex-direction: column; align-items: center; }
.signoff-key {
  order: -1; display: block; width: min(200px, 56%); height: auto;
  margin: 0 auto var(--space-3);
}
@media (min-width: 768px) { .signoff-key { width: 240px; } }

/* Fee section subheadings (Services). */
.fee-sub { font-size: 1.5rem; margin: var(--space-5) 0 var(--space-2); }
/* A second fee table directly under the first needs its own air. */
.fee-table + .fee-table { margin-top: var(--space-5); }
/* Fee cells default to nowrap; this variant lets a longer value wrap instead of overflowing. */
.fee-table.fees-wrap td { white-space: normal; }
/* ==== v5.4, 2026-09-16. Footer policy links clear the 24px target minimum.
   Home card photo slots hidden until real photographs land. ==== */

/* WCAG 2.2 AA 2.5.8 Target Size (Minimum). The two footer policy links sat at 19px. */
.site-footer .policies a {
  display: inline-block;
  min-height: 24px;
  padding-block: .25rem;
}

/* Home card photographs landed 2026-09-17, so the slots are visible again. */
