/* ============================================================================
   THE SCIENCE OF LIVING WELL — Design System
   Codified from design.md v1.0 (June 4, 2026). Single source of truth in CSS.
   Editorial · warm · calm · accessible (WCAG 2.2 AA, AAA body text).
   ============================================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Color — primary */
  --cream:       #F4F0E6;
  --paper:       #FBF8F1;
  --cream-deep:  #ECE3CC;
  --navy:        #1A2A3B;
  --navy-soft:   #2E4257;
  --gold:        #B8965A;
  --gold-soft:   #C9A971;
  --ink:         #2A2622;
  --slate:       #6A6A65;
  --hairline-c:  #D8D2C0;
  /* Color — functional */
  --success:     #6F8F4A;
  --warning:     #D4A02A;
  --error:       #B33A3A;

  /* Type families */
  --font-display: 'Cormorant Garamond', Garamond, 'Times New Roman', Georgia, serif;
  --font-body:    'Source Sans 3', 'Inter', system-ui, -apple-system, sans-serif;
  --font-eyebrow: 'Inter', 'Helvetica Neue', system-ui, sans-serif;

  /* Spacing scale */
  --xs:  4px;
  --sm:  8px;
  --md:  16px;
  --lg:  24px;
  --xl:  40px;
  --2xl: 64px;
  --3xl: 96px;
  --4xl: 128px;

  /* Structure */
  --radius: 0px;
  --hairline: 1px solid var(--hairline-c);
  --container: 1200px;
  --measure: 70ch;

  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(26,42,59,0.06);
  --shadow-md:   0 4px 12px rgba(26,42,59,0.08);
  --shadow-lift: 0 8px 24px rgba(26,42,59,0.10);

  /* Motion */
  --fast: 150ms;
  --base: 200ms;
  --slow: 300ms;
  --section: 600ms;
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 18px;              /* 18px floor — audience is 45–75 */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
::selection { background: var(--gold-soft); color: var(--navy); }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }

/* ---------- Typography ---------- */
.display-xl, .display-l, .display-m,
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--navy); letter-spacing: -0.005em; }

.display-xl { font-size: clamp(44px, 7vw, 72px); line-height: 1.02; font-weight: 500; }
.display-l  { font-size: clamp(36px, 5vw, 56px); line-height: 1.05; font-weight: 500; }
.display-m  { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.1; }
h1 { font-size: clamp(32px, 4.6vw, 48px); line-height: 1.1; }
h2 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15; }
h3 { font-size: clamp(22px, 2.4vw, 26px); line-height: 1.2; }
h4 { font-family: var(--font-body); font-weight: 700; font-size: 18px; line-height: 1.3; letter-spacing: 0.02em; }

/* The brand's signature move: italic gold inside a serif headline */
em, .gold-italic { font-style: italic; color: var(--gold); }
.display-xl em, .display-l em, h1 em, h2 em { font-weight: 500; }

.eyebrow {
  font-family: var(--font-eyebrow);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--md);
  display: inline-block;
}
.lead { font-size: clamp(19px, 2.2vw, 22px); line-height: 1.55; color: var(--ink); }
.body-l { font-size: 20px; line-height: 1.6; }
.body-m { font-size: 18px; line-height: 1.55; }
.body-s { font-size: 16px; line-height: 1.5; }
.meta   { font-size: 16px; color: var(--slate); }
p { max-width: var(--measure); }
p + p { margin-top: var(--md); }
.muted { color: var(--slate); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--lg); }
.container-narrow { max-width: 760px; }
.section { padding-block: var(--3xl); }
.section--tight { padding-block: var(--2xl); }
@media (max-width: 640px) { .section { padding-block: var(--2xl); } }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-deep  { background: var(--cream-deep); }
.bg-navy  { background: var(--navy); color: var(--cream); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy .display-xl, .bg-navy .display-l { color: var(--paper); }
.bg-navy .eyebrow { color: var(--gold-soft); }
.bg-navy .muted { color: #B9C0C8; }

.stack > * + * { margin-top: var(--lg); }
.stack-sm > * + * { margin-top: var(--sm); }
.stack-lg > * + * { margin-top: var(--xl); }
.center { text-align: center; }
.center p { margin-inline: auto; }

/* Gold divider — 60px hero rule */
.rule-gold { width: 60px; height: 1px; background: var(--gold); border: 0; margin: var(--lg) 0; }
.center .rule-gold { margin-inline: auto; }
.rule-full { width: 100%; height: 1px; background: var(--hairline-c); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--sm);
  min-height: 48px; padding: 16px 32px;
  font-family: var(--font-eyebrow); font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  border: 1px solid transparent; border-radius: var(--radius);
  transition: background var(--base) var(--ease-out), color var(--base) var(--ease-out), border-color var(--base) var(--ease-out);
  white-space: nowrap;
}
.btn--primary { background: var(--navy); color: var(--cream); }
.btn--primary:hover { background: var(--navy-soft); }
.btn--primary .arrow { color: var(--gold-soft); }
.btn--secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--secondary:hover { background: var(--cream-deep); }
.bg-navy .btn--secondary { color: var(--cream); border-color: var(--gold-soft); }
.bg-navy .btn--secondary:hover { background: rgba(255,255,255,0.08); }
.btn--block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform var(--base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) { .btn:hover .arrow { transform: none; } }

.link {
  color: var(--navy); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 4px;
  transition: color var(--base) var(--ease-out);
}
.link:hover { color: var(--gold); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--base) var(--ease-out), box-shadow var(--base) var(--ease-out), background var(--base);
}
.nav.is-scrolled { border-bottom-color: var(--hairline-c); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--lg); min-height: 76px; }
.nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.nav__logo svg { width: 40px; height: 40px; }
.nav__logo .wordmark { font-family: var(--font-display); font-size: 21px; font-weight: 600; line-height: 1; letter-spacing: -0.01em; }
.nav__logo .wordmark small { display: block; font-family: var(--font-eyebrow); font-size: 9px; font-weight: 700; letter-spacing: 0.16em; color: var(--gold); text-transform: uppercase; margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: var(--xl); }
.nav__links a {
  font-family: var(--font-eyebrow); font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  text-decoration: none; color: var(--navy); padding: 6px 0; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--base) var(--ease-out);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: var(--md); }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; color: var(--navy); }
.nav__toggle svg { width: 28px; height: 28px; }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; pointer-events: none; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(26,42,59,0.4); opacity: 0; transition: opacity var(--slow) var(--ease-out); }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: var(--cream); padding: var(--lg); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--slow) var(--ease-out);
  box-shadow: var(--shadow-lift);
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--xl); }
.drawer__close { background: none; border: 0; padding: 8px; color: var(--navy); }
.drawer__close svg { width: 26px; height: 26px; }
.drawer__links { display: flex; flex-direction: column; gap: var(--lg); }
.drawer__links a { font-family: var(--font-display); font-size: 24px; text-decoration: none; color: var(--navy); }
.drawer__cta { margin-top: auto; }
@media (prefers-reduced-motion: reduce) {
  .drawer__scrim, .drawer__panel { transition: none; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--2xl); align-items: center; padding-block: var(--3xl); }
.hero__copy { max-width: 620px; }
.hero__media { position: relative; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--xl); padding-block: var(--2xl); }
  .hero__media { order: -1; }
  /* Landscape hero image: widen container on mobile so the face stays visible */
  .hero__media .photo--portrait { aspect-ratio: 4 / 3; }
  .hero__media .photo__img { object-position: center 15%; }
}

/* ---------- Photo placeholders (temporary, intentional-looking) ---------- */
.photo {
  position: relative; overflow: hidden; background: var(--navy);
  border-radius: var(--radius); aspect-ratio: 4 / 3;
}
.photo--portrait { aspect-ratio: 4 / 5; }
.photo--wide { aspect-ratio: 16 / 9; }
.photo--tall { aspect-ratio: 3 / 4; }
.photo--square { aspect-ratio: 1 / 1; }
/* Warm duotone gradient + grain so it reads as a placeholder by design, not a bug */
.photo__fill {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(201,169,113,0.55), transparent 55%),
    radial-gradient(140% 120% at 90% 100%, rgba(46,66,87,0.9), transparent 60%),
    linear-gradient(160deg, #23344A 0%, var(--navy) 100%);
  background-color: var(--navy);
}
.photo__noise { position: absolute; inset: 0; opacity: 0.10; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"); }
.photo__label {
  position: absolute; left: var(--md); bottom: var(--md); z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-eyebrow); font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cream);
  background: rgba(26,42,59,0.55); border: 1px solid rgba(244,240,230,0.25);
  padding: 6px 10px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.photo__label svg { width: 14px; height: 14px; }
.photo__icon { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; }
.photo__icon svg { width: 88px; height: 88px; color: rgba(201,169,113,0.5); }
/* real photo fills the .photo box; place as first child so the label paints above it */
.photo__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media .photo__img { object-position: center 20%; }

/* ---------- Cards ---------- */
.card { background: var(--paper); border: var(--hairline); padding: var(--xl); }
.card--cream { background: var(--cream); border: 0; }

/* Event card */
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--lg); }
@media (max-width: 820px) { .events-grid { grid-template-columns: 1fr; } }
.event-card { display: flex; flex-direction: column; background: var(--paper); border: var(--hairline); padding: var(--xl); transition: box-shadow var(--base) var(--ease-out), transform var(--base) var(--ease-out); }
.event-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .event-card:hover { transform: none; } }
.event-card__date { font-family: var(--font-eyebrow); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.event-card__title { margin: var(--sm) 0 var(--xs); }
.event-card__loc { color: var(--slate); font-size: 16px; }
.event-card__desc { margin-top: var(--md); color: var(--ink); }
.event-card__footer { margin-top: auto; padding-top: var(--lg); }
.event-card__divider { height: 1px; background: var(--gold); width: 100%; margin: var(--lg) 0; opacity: 0.5; }
.event-card__meta { display: flex; flex-wrap: wrap; gap: var(--md); margin-top: var(--md); }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--ink); }
.chip svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* Pillar / feature */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--xl); }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; gap: var(--lg); } }
.pillar__icon { width: 56px; height: 56px; color: var(--gold); margin-bottom: var(--md); }
.pillar__icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.pillar h3 { margin-bottom: var(--sm); }

/* Host card */
.host-card { background: var(--paper); border: var(--hairline); overflow: hidden; }
.host-card__body { padding: var(--xl); }
.host-card__name { margin-bottom: 2px; }
.host-card__role { font-style: italic; color: var(--gold); font-size: 18px; }
.host-card__creds { color: var(--slate); font-size: 16px; margin-top: var(--xs); }

.host-feature { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--2xl); align-items: center; }
@media (max-width: 820px) { .host-feature { grid-template-columns: 1fr; gap: var(--xl); } }

/* ---------- Pull quote / testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--xl); }
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; gap: var(--lg); } }
.quote { }
.quote__mark { font-family: var(--font-display); font-size: 60px; line-height: 0.5; color: var(--gold); display: block; height: 34px; }
.quote__text { font-family: var(--font-display); font-style: italic; font-size: 24px; line-height: 1.3; color: var(--navy); margin: var(--md) 0; }
.bg-navy .quote__text { color: var(--paper); }
.quote__by { font-size: 16px; color: var(--slate); }
.bg-navy .quote__by { color: #B9C0C8; }

/* ---------- Checklist (gold checks) ---------- */
.checklist { display: grid; gap: var(--md); }
.checklist li { display: grid; grid-template-columns: 28px 1fr; gap: var(--sm); align-items: start; font-size: 18px; }
.checklist .check { width: 26px; height: 26px; color: var(--gold); margin-top: 2px; }
.checklist .check svg { width: 100%; height: 100%; stroke-width: 1.75; }

/* ---------- Forms ---------- */
.form { display: grid; gap: var(--lg); }
.field { display: grid; gap: var(--sm); }
.field label { font-family: var(--font-eyebrow); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; color: var(--ink); }
.field .opt { color: var(--slate); font-weight: 400; letter-spacing: 0; text-transform: none; }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 18px; color: var(--navy);
  background: var(--paper); border: 1px solid var(--hairline-c); border-radius: var(--radius);
  padding: 14px 16px; width: 100%; transition: border-color var(--fast) var(--ease-out);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: #A6A299; }
.field .error-text { font-size: 14px; color: var(--error); display: none; }
.field.has-error input, .field.has-error textarea { border-color: var(--error); }
.field.has-error .error-text { display: block; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; } /* honeypot */
.form__privacy { font-size: 16px; color: var(--slate); display: flex; gap: 8px; align-items: start; }
.form__privacy svg { width: 18px; height: 18px; color: var(--gold); margin-top: 3px; flex: none; }

/* Lead form panel */
.lead-form { background: var(--paper); border: var(--hairline); padding: var(--xl); box-shadow: var(--shadow-md); }
.lead-form__seats { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-eyebrow); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: var(--md); }
.lead-form__seats b { color: #9A6F12; } /* darkened amber — AA on paper, conveys scarcity */
.lead-form__seats .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--warning); animation: pulse 2.4s var(--ease-out) infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) { .lead-form__seats .dot { animation: none; } }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 0; border-top: var(--hairline); }
.faq__item { border-bottom: var(--hairline); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; padding: var(--lg) 0;
  display: flex; align-items: center; justify-content: space-between; gap: var(--md);
  font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 24px); color: var(--navy);
}
.faq__q .pm { width: 24px; height: 24px; flex: none; color: var(--gold); transition: transform var(--base) var(--ease-out); }
.faq__item[open] .pm, .faq__q[aria-expanded="true"] .pm { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height var(--slow) var(--ease-out); }
.faq__a-inner { padding-bottom: var(--lg); color: var(--ink); }
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } }

/* ---------- Logistics / detail strip ---------- */
.detail-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--lg); padding: var(--lg) 0; border-block: var(--hairline); }
@media (max-width: 700px) { .detail-strip { grid-template-columns: 1fr; gap: var(--md); } }
.detail-strip .item { display: flex; gap: var(--sm); align-items: start; }
.detail-strip svg { width: 24px; height: 24px; color: var(--gold); flex: none; }
.detail-strip .k { font-family: var(--font-eyebrow); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
.detail-strip .v { font-size: 17px; color: var(--navy); }

.map-embed { aspect-ratio: 16 / 7; background: var(--cream-deep); border: var(--hairline); position: relative; overflow: hidden; }
.map-embed__grid { position: absolute; inset: 0; opacity: 0.5;
  background-image: linear-gradient(var(--hairline-c) 1px, transparent 1px), linear-gradient(90deg, var(--hairline-c) 1px, transparent 1px);
  background-size: 40px 40px; }
.map-embed__pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-100%); color: var(--navy); }
.map-embed__pin svg { width: 44px; height: 44px; filter: drop-shadow(var(--shadow-md)); }
.map-embed__addr { position: absolute; left: var(--md); bottom: var(--md); background: var(--paper); border: var(--hairline); padding: 10px 14px; font-size: 15px; }

/* ---------- Included grid ---------- */
.included { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--lg); }
@media (max-width: 820px) { .included { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .included { grid-template-columns: 1fr; } }
.included .item { background: var(--paper); border: var(--hairline); padding: var(--lg); }
.included .item svg { width: 32px; height: 32px; color: var(--gold); margin-bottom: var(--sm); }
.included .item h4 { margin-bottom: 4px; }
.included .item p { font-size: 16px; color: var(--ink); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: var(--navy); color: var(--cream); display: none;
  align-items: center; justify-content: space-between; gap: var(--md);
  padding: 12px 16px; box-shadow: 0 -4px 16px rgba(26,42,59,0.18);
  transform: translateY(110%); transition: transform var(--slow) var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__text { font-size: 15px; line-height: 1.2; }
.sticky-cta__text strong { display: block; font-family: var(--font-display); font-size: 19px; }
.sticky-cta .btn { padding: 12px 20px; min-height: 44px; }
.sticky-cta__close { background: none; border: 0; color: var(--cream); padding: 6px; position: absolute; top: 4px; right: 6px; opacity: 0.7; }
.sticky-cta__close svg { width: 16px; height: 16px; }
@media (max-width: 760px) { .sticky-cta { display: flex; } }
@media (prefers-reduced-motion: reduce) { .sticky-cta { transition: none; } }

/* ---------- Countdown ---------- */
.countdown { display: inline-flex; gap: var(--md); }
.countdown .unit { text-align: center; min-width: 64px; }
.countdown .num { font-family: var(--font-display); font-size: 40px; line-height: 1; color: var(--navy); }
.bg-navy .countdown .num { color: var(--paper); }
.countdown .lab { font-family: var(--font-eyebrow); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-top: 6px; }
.bg-navy .countdown .lab { color: var(--gold-soft); }

/* ---------- Banner / notice ---------- */
.notice { background: var(--cream-deep); border-left: 3px solid var(--gold); padding: var(--md) var(--lg); font-size: 16px; }

/* ---------- Wreath ornament divider ---------- */
.ornament { display: flex; align-items: center; justify-content: center; gap: var(--md); color: var(--gold); padding-block: var(--lg); }
.ornament::before, .ornament::after { content: ""; height: 1px; width: min(90px, 14vw); background: var(--gold); opacity: 0.5; }
.ornament svg { width: 32px; height: 32px; }

/* ---------- Value stack (event merchandising) ---------- */
.value-stack { background: var(--paper); border: var(--hairline); border-top: 3px solid var(--gold); padding: var(--xl); }
.value-stack__row { display: grid; grid-template-columns: 1fr auto; gap: var(--md); align-items: center; padding: var(--md) 0; border-bottom: 1px dashed var(--hairline-c); }
.value-stack__row:last-of-type { border-bottom: 0; }
.value-stack__name { display: flex; gap: var(--sm); align-items: flex-start; }
.value-stack__name svg { width: 24px; height: 24px; color: var(--gold); flex: none; margin-top: 2px; }
.value-stack__name b { font-weight: 700; font-size: 18px; }
.value-stack__name span { display: block; font-size: 15px; color: var(--slate); }
.value-stack__price { font-family: var(--font-display); font-size: 24px; color: var(--navy); white-space: nowrap; }
.value-stack__price.is-included { font-family: var(--font-eyebrow); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--success); }
.value-stack__total { display: flex; justify-content: space-between; align-items: baseline; gap: var(--md); margin-top: var(--md); padding-top: var(--md); border-top: 1px solid var(--navy); }
.value-stack__total .k { font-family: var(--font-eyebrow); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
.value-stack__total .v { font-family: var(--font-display); font-size: clamp(28px, 4vw, 38px); color: var(--navy); line-height: 1; text-align: right; }
.value-stack__total .v s { color: var(--slate); font-size: 0.62em; margin-right: 8px; text-decoration-color: var(--gold); }
.value-stack__total .v em { color: var(--success); font-style: normal; }

/* ---------- Agenda timeline ---------- */
.agenda { display: grid; }
.agenda__row { display: grid; grid-template-columns: 132px 1fr; gap: var(--lg); padding: var(--lg) 0; border-bottom: var(--hairline); position: relative; }
.agenda__row:last-child { border-bottom: 0; }
.agenda__time { font-family: var(--font-eyebrow); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; color: var(--gold); padding-top: 3px; }
.agenda__what h4 { margin-bottom: 4px; }
.agenda__what p { color: var(--ink); font-size: 17px; max-width: 56ch; }
@media (max-width: 600px) { .agenda__row { grid-template-columns: 1fr; gap: var(--xs); } }

/* ---------- Credential chips ---------- */
.cred-chips { display: flex; flex-wrap: wrap; gap: var(--sm); margin-top: var(--md); }
.cred-chips .c { font-family: var(--font-eyebrow); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); border: var(--hairline); padding: 6px 12px; background: var(--paper); }
.bg-deep .cred-chips .c { background: var(--cream); }

/* ---------- Offer band (bring-a-friend) ---------- */
.offer-band { background: var(--navy); color: var(--cream); padding: var(--xl); display: grid; grid-template-columns: auto 1fr auto; gap: var(--lg); align-items: center; }
.offer-band__icon { width: 56px; height: 56px; color: var(--gold-soft); flex: none; }
.offer-band__icon svg { width: 100%; height: 100%; stroke-width: 1.4; }
.offer-band h3 { color: var(--paper); }
.offer-band p { color: #CDD3DA; margin-top: var(--xs); max-width: 52ch; }
.offer-band .btn--secondary { color: var(--cream); border-color: var(--gold-soft); }
.offer-band .btn--secondary:hover { background: rgba(255,255,255,0.08); }
@media (max-width: 720px) { .offer-band { grid-template-columns: 1fr; text-align: left; } }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: var(--cream); padding-block: var(--3xl) var(--xl); }
.footer a { color: var(--cream); text-decoration: none; }
.footer a:hover { color: var(--gold-soft); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--xl); }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--lg); } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand .wordmark { font-family: var(--font-display); font-size: 24px; }
.footer h5 { font-family: var(--font-eyebrow); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: var(--md); }
.footer ul { display: grid; gap: 10px; font-size: 16px; }
.footer__lockup { margin-top: var(--md); font-size: 15px; color: #B9C0C8; display: flex; align-items: center; gap: var(--sm); }
.footer__lockup .alloy { font-family: var(--font-eyebrow); font-weight: 800; letter-spacing: 0.04em; color: var(--cream); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--md); margin-top: var(--2xl); padding-top: var(--lg); border-top: 1px solid rgba(244,240,230,0.15); font-size: 14px; color: #B9C0C8; }

/* ---------- View Transitions (MPA cross-fade — on-brand "page transition") ---------- */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); z-index: 70; will-change: transform; }
@media (prefers-reduced-motion: reduce) { .scroll-progress { display: none; } }

/* ---------- Stats band (kinetic count-up numbers) ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--xl); }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr; gap: var(--lg); text-align: center; } }
.stat-item .n { font-family: var(--font-display); font-weight: 500; font-size: clamp(48px, 7vw, 72px); line-height: 1; color: var(--gold); font-variant-numeric: oldstyle-nums; }
.bg-navy .stat-item .n, .bg-deep .stat-item .n { color: var(--gold); }
.stat-item .k { font-size: 18px; color: var(--ink); margin-top: var(--sm); }
.bg-navy .stat-item .k { color: #CDD3DA; }
.stats .stat-item + .stat-item { border-left: var(--hairline); padding-left: var(--xl); }
@media (max-width: 760px) { .stats .stat-item + .stat-item { border-left: 0; padding-left: 0; } }

/* ---------- Credibility kicker (hero trust strip) ---------- */
.kicker { display: flex; flex-wrap: wrap; gap: var(--md) var(--lg); align-items: center; margin-top: var(--xl); padding-top: var(--lg); border-top: var(--hairline); }
.kicker .item { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--ink); }
.kicker .item svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* ---------- Gold-frame photo treatment ---------- */
.framed { position: relative; z-index: 0; }
.framed::before { content: ""; position: absolute; inset: 0; transform: translate(16px, 16px); border: 1px solid var(--gold); z-index: -1; }
@media (max-width: 900px) { .framed::before { transform: translate(10px, 10px); } }

/* ---------- Editorial drop cap ---------- */
.dropcap::first-letter { font-family: var(--font-display); font-weight: 600; float: left; font-size: 3.4em; line-height: 0.82; padding: 6px 10px 0 0; color: var(--gold); }

/* ---------- Add-to-calendar dropdown ---------- */
.cal { position: relative; display: inline-block; }
.cal__menu { position: absolute; left: 0; top: calc(100% + 6px); min-width: 210px; background: var(--paper); border: var(--hairline); box-shadow: var(--shadow-lift); z-index: 20; display: none; }
.cal.is-open .cal__menu { display: block; }
.cal__menu a, .cal__menu button { display: flex; width: 100%; align-items: center; gap: 10px; padding: 12px 16px; text-decoration: none; color: var(--navy); font-family: var(--font-body); font-size: 16px; border: 0; border-bottom: var(--hairline); background: none; text-align: left; cursor: pointer; }
.cal__menu a:last-child, .cal__menu button:last-child { border-bottom: 0; }
.cal__menu a:hover, .cal__menu button:hover { background: var(--cream-deep); }
.cal__menu svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* ---------- Click-to-call under forms ---------- */
.call-line { display: flex; align-items: center; gap: 8px; font-size: 16px; color: var(--ink); margin-top: var(--md); }
.call-line svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.call-line a { color: var(--navy); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--gold); }

/* ---------- Trust line (medical credibility near form) ---------- */
.trust-line { display: flex; align-items: flex-start; gap: 10px; background: var(--cream-deep); padding: 12px 14px; font-size: 15px; color: var(--ink); margin-bottom: var(--lg); }
.trust-line svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 1px; }

/* ---------- Interactive event chooser ---------- */
.chooser { background: var(--paper); border: var(--hairline); border-top: 3px solid var(--gold); padding: var(--xl); }
.chooser__q { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 28px); color: var(--navy); margin-bottom: var(--lg); }
.chooser__opts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--md); }
@media (max-width: 600px) { .chooser__opts { grid-template-columns: 1fr; } }
.chooser__opt { text-align: left; background: var(--cream); border: var(--hairline); padding: var(--lg); cursor: pointer; transition: border-color var(--base) var(--ease-out), box-shadow var(--base) var(--ease-out), transform var(--base) var(--ease-out); }
.chooser__opt:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.chooser__opt[aria-pressed="true"] { border-color: var(--gold); box-shadow: var(--shadow-md); }
.chooser__opt .t { font-family: var(--font-body); font-weight: 700; font-size: 17px; color: var(--navy); }
.chooser__opt .d { font-size: 15px; color: var(--slate); margin-top: 4px; }
.chooser__result { margin-top: var(--lg); padding-top: var(--lg); border-top: var(--hairline); display: none; }
.chooser__result.is-shown { display: block; animation: revealup var(--section) var(--ease-out); }
@keyframes revealup { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .chooser__opt:hover { transform: none; } .chooser__result.is-shown { animation: none; } }

/* ---------- Speaker / expert roster ---------- */
.speakers { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--xl); }
@media (max-width: 820px) { .speakers { grid-template-columns: 1fr 1fr; gap: var(--lg); } }
@media (max-width: 460px) { .speakers { grid-template-columns: 1fr; } }
.speaker { text-align: center; }
.speaker__avatar { width: 104px; height: 104px; border-radius: 50%; margin: 0 auto var(--md); border: 1px solid var(--gold); display: grid; place-items: center; background: var(--paper); overflow: hidden; }
.bg-deep .speaker__avatar, .bg-navy .speaker__avatar { background: var(--cream); }
.speaker__avatar span { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--gold); letter-spacing: 0.02em; }
.speaker__avatar img { width: 100%; height: 100%; object-fit: cover; }
.speaker__name { font-family: var(--font-display); font-size: 22px; line-height: 1.15; color: var(--navy); }
.bg-navy .speaker__name { color: var(--paper); }
.speaker__cred { font-family: var(--font-eyebrow); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.speaker__role { font-size: 14px; color: var(--slate); margin-top: 4px; }
.bg-navy .speaker__role { color: #B9C0C8; }

/* ---------- Modal (exit-intent newsletter) ---------- */
.modal { position: fixed; inset: 0; z-index: 85; display: none; place-items: center; padding: var(--lg); }
.modal.is-open { display: grid; }
.modal__scrim { position: absolute; inset: 0; background: rgba(26,42,59,0.5); }
.modal__card { position: relative; background: var(--cream); max-width: 460px; width: 100%; padding: var(--2xl) var(--xl); text-align: center; box-shadow: var(--shadow-lift); animation: modalin var(--slow) var(--ease-out); }
@keyframes modalin { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .modal__card { animation: none; } }
.modal__close { position: absolute; top: 12px; right: 12px; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--slate); }
.modal__close svg { width: 22px; height: 22px; }

/* oldstyle figures on the countdown for editorial polish */
.countdown .num { font-variant-numeric: oldstyle-nums; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity var(--section) var(--ease-out), transform var(--section) var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Toast / form success ---------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(140%);
  background: var(--navy); color: var(--cream); padding: var(--md) var(--lg);
  display: flex; align-items: center; gap: var(--sm); box-shadow: var(--shadow-lift); z-index: 80;
  transition: transform var(--slow) var(--ease-out); max-width: calc(100vw - 32px);
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }
.toast svg { width: 22px; height: 22px; color: var(--success); flex: none; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: var(--md); top: -60px; z-index: 100;
  background: var(--navy); color: var(--cream); padding: 10px 16px; text-decoration: none;
  transition: top var(--base) var(--ease-out);
}
.skip-link:focus { top: var(--md); }

/* ---------- Utilities ---------- */
.text-gold { color: var(--gold); }
.maxw-720 { max-width: 720px; }
.mt-0 { margin-top: 0; }
.flex { display: flex; gap: var(--md); flex-wrap: wrap; align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--2xl); align-items: center; }
@media (max-width: 820px) { .grid-2 { grid-template-columns: 1fr; gap: var(--xl); } }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
