/* =====================================================================
   Bonnie Roseman — bonnieroseman.com
   Shared stylesheet
   Editorial luxury: Palm Beach polish + Nantucket summer.
   Signature: Nantucket hydrangea blue + coastal navy, fine gold rules.
   Display: Fraunces  ·  Body: Source Sans 3
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Palette (from brief) */
  --sand:      #F6F1E8;   /* ivory / sand — page ground */
  --navy:      #1B2A4A;   /* deep navy — header, footer, strong type */
  --hydrangea: #6B8C9E;   /* Nantucket hydrangea blue — secondary accent */
  --gold:      #C4A574;   /* soft gold — hairline rules, flourishes */
  --ink:       #1A1A1A;   /* body text */
  --white:     #FFFCF7;   /* warm white — cards, panels */

  /* Derived / support */
  --navy-80:   rgba(27, 42, 74, 0.80);
  --navy-12:   rgba(27, 42, 74, 0.12);
  --hydrangea-14: rgba(107, 140, 158, 0.14);
  --gold-40:   rgba(196, 165, 116, 0.40);
  --gold-18:   rgba(196, 165, 116, 0.18);
  --ink-70:    rgba(26, 26, 26, 0.70);
  --shadow:    0 18px 44px -28px rgba(27, 42, 74, 0.45);
  --shadow-sm: 0 8px 24px -18px rgba(27, 42, 74, 0.5);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3.75rem, 8vw, 7rem);
  --radius: 4px;
}

/* ---------- Reset / base ---------- */
*, *::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;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 0.5em;
  font-optical-sizing: auto;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy); text-decoration-color: var(--gold-40); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--gold); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: 0.35em; }

hr { border: 0; height: 1px; background: var(--gold-40); margin: 2.5rem 0; }

::selection { background: var(--hydrangea); color: var(--white); }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--navy); color: var(--white);
  padding: 0.6rem 1rem; border-radius: var(--radius);
  z-index: 1200; transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--hydrangea);
  outline-offset: 2px;
  border-radius: 3px;
}

.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 primitives ---------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - (var(--gutter) * 2), var(--wrap-narrow)); margin-inline: auto; }

.section { padding-block: var(--section-y); }
.section--tint { background: var(--white); }
.section--navy { background: var(--navy); color: var(--sand); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy a { color: var(--sand); text-decoration-color: var(--gold); }

/* ---------- Eyebrow + section heads ---------- */
.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hydrangea);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.section--navy .eyebrow { color: var(--gold); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section-head p { color: var(--ink-70); font-size: 1.12rem; }
.section--navy .section-head p { color: rgba(246, 241, 232, 0.82); }

/* Fine gold rule used as a divider flourish */
.rule-gold { height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 2rem 0; border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: #24365c; }

.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #d1b585; }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy-12); }
.btn--ghost:hover { border-color: var(--gold); background: var(--gold-18); }

.section--navy .btn--ghost { color: var(--sand); border-color: rgba(246,241,232,0.35); }
.section--navy .btn--ghost:hover { border-color: var(--gold); background: rgba(196,165,116,0.16); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ---------- Header / navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(246, 241, 232, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-40);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}
.brand { text-decoration: none; line-height: 1; display: inline-flex; flex-direction: column; gap: 0.15rem; }
.brand__name { font-family: var(--display); font-size: 1.35rem; color: var(--navy); letter-spacing: 0.01em; }
.brand__place {
  font-family: var(--body); font-size: 0.62rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--hydrangea);
}

.nav__links { display: flex; align-items: center; gap: 0.35rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.28rem;
  height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s ease;
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--hydrangea); }

.nav__cta { margin-left: 0.4rem; padding: 0.6rem 1.15rem; }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--navy-12);
  background: transparent; border-radius: var(--radius);
  cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px;
  background: var(--navy); position: relative; transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav[data-open="true"] .nav__toggle span { background: transparent; }
.nav[data-open="true"] .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav[data-open="true"] .nav__toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--sand);
    border-bottom: 1px solid var(--gold-40);
    padding: 0.5rem var(--gutter) 1.25rem;
    box-shadow: var(--shadow-sm);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
  }
  .nav[data-open="true"] .nav__links { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__links a { padding: 0.85rem 0.4rem; border-bottom: 1px solid var(--gold-18); }
  .nav__links a::after { display: none; }
  .nav__cta { margin: 0.75rem 0 0; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.75rem, 6vw, 5rem); position: relative; overflow: hidden; }
.hero__grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1.05fr 0.95fr; align-items: center;
}
.hero__eyebrow { color: var(--hydrangea); }
.hero h1 {
  font-size: clamp(3rem, 9vw, 6rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.15em;
  font-optical-sizing: auto;
}
.hero__subhead {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  color: var(--hydrangea);
  margin-bottom: 1.1rem;
}
.hero__lede { font-size: 1.18rem; color: var(--ink-70); max-width: 34rem; margin-bottom: 1.75rem; }

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
}

/* ---------- Figure placeholders ---------- */
.figure { margin: 0; }
.ph {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, var(--hydrangea-14), transparent 60%),
    var(--white);
  border: 1px solid var(--gold-40);
  border-radius: var(--radius);
  color: var(--hydrangea);
  padding: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ph::after {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid var(--gold-40); border-radius: 2px; pointer-events: none;
}
.ph__note {
  position: relative; z-index: 1;
  font-family: var(--body); font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--navy-80); max-width: 22rem;
}
.ph__note strong { display: block; font-family: var(--display); font-size: 1.05rem; margin-bottom: 0.35rem; color: var(--navy); }
.ph--portrait { aspect-ratio: 4 / 5; }
.ph--wide { aspect-ratio: 16 / 10; }
.ph--square { aspect-ratio: 1 / 1; }
.figcaption, figcaption {
  font-family: var(--body); font-size: 0.82rem; color: var(--ink-70);
  margin-top: 0.6rem; font-style: italic;
}

/* ---------- Card grid ---------- */
.card-grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .card-grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .card-grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--gold-18);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-40); }
.card__kicker {
  font-family: var(--body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.75rem;
}
.card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.card p { color: var(--ink-70); font-size: 1rem; }
.card__link {
  margin-top: auto; padding-top: 1rem;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  color: var(--navy); display: inline-flex; align-items: center; gap: 0.4rem;
}
.card__link::after { content: "→"; color: var(--gold); transition: transform 0.2s ease; }
.card__link:hover::after { transform: translateX(4px); }

/* ---------- Press strip ---------- */
.press-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  padding: 1.75rem 0;
  border-top: 1px solid var(--gold-40);
  border-bottom: 1px solid var(--gold-40);
}
.press-strip__item {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--navy); opacity: 0.85;
  text-align: center;
}
.press-strip__item span { font-family: var(--body); font-style: normal; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hydrangea); display: block; text-align: center; }

/* ---------- BLT block ---------- */
.blt { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2rem); counter-reset: blt; }
@media (max-width: 820px) { .blt { grid-template-columns: 1fr; } }
.blt__item { padding-top: 1.5rem; border-top: 2px solid var(--gold); }
.blt__letter { font-family: var(--display); font-size: 2.6rem; color: var(--hydrangea); line-height: 1; margin-bottom: 0.4rem; }
.blt__item h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.blt__item p { color: var(--ink-70); font-size: 0.98rem; margin: 0; }
.section--navy .blt__letter { color: var(--gold); }
.section--navy .blt__item p { color: rgba(246,241,232,0.82); }

/* ---------- Buzz / article cards ---------- */
.buzz-card {
  background: var(--white);
  border: 1px solid var(--gold-18);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.buzz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.buzz-card .ph { border: 0; border-radius: 0; box-shadow: none; }
.buzz-card .ph::after { inset: 8px; }
.buzz-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.buzz-card__date {
  font-family: var(--body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--hydrangea); margin-bottom: 0.55rem;
}
.buzz-card h3 { font-size: 1.3rem; margin-bottom: 0.45rem; }
.buzz-card__dek { color: var(--ink-70); font-size: 0.98rem; margin-bottom: 1rem; }
.buzz-card__more { margin-top: auto; font-weight: 600; font-size: 0.9rem; text-decoration: none; display: inline-flex; gap: 0.35rem; align-items: center; }
.buzz-card__more::after { content: "↗"; color: var(--gold); }

/* ---------- Feature split (image + text) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.feature--flip .feature__media { order: 2; }
@media (max-width: 820px) {
  .feature, .feature--flip { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
}

/* Lifestyle chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; padding: 0; margin: 1.25rem 0 0; }
.chips li {
  font-family: var(--body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--navy); background: var(--hydrangea-14);
  border: 1px solid var(--gold-40); border-radius: 100px;
  padding: 0.4rem 1rem; margin: 0;
}

/* Definition-style list for "what a consultation looks like" */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps li {
  position: relative; padding: 0 0 1.5rem 3.25rem; margin: 0;
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -0.1rem;
  width: 2.3rem; height: 2.3rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 1.1rem; color: var(--navy);
  background: var(--gold-18); border: 1px solid var(--gold);
}
.steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 1.13rem; top: 2.3rem; bottom: 0.2rem;
  width: 1px; background: var(--gold-40);
}
.steps h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.steps p { margin: 0; color: var(--ink-70); font-size: 0.98rem; }

/* ---------- Pull quotes ---------- */
.pullquote {
  border-left: 3px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.5rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.3;
}
.pullquote cite {
  display: block; margin-top: 0.8rem;
  font-family: var(--body); font-style: normal; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--hydrangea);
}

/* ---------- Prose (about, etc.) ---------- */
.prose { max-width: 44rem; }
.prose p { font-size: 1.1rem; }
.prose h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-top: 2.5rem; }
.prose h3 { font-size: 1.3rem; margin-top: 1.75rem; }
.prose .lede { font-size: 1.28rem; color: var(--navy); font-family: var(--display); line-height: 1.4; }

/* ---------- Video facade (lite YouTube) ---------- */
.video-facade {
  position: relative; display: block; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  border: 1px solid var(--gold-40); box-shadow: var(--shadow-sm);
  background:
    linear-gradient(135deg, rgba(27,42,74,0.55), rgba(107,140,158,0.35)),
    var(--navy);
  text-decoration: none;
}
.video-facade__label {
  position: absolute; left: 1.2rem; bottom: 1.1rem; right: 1.2rem;
  color: var(--white); font-family: var(--display); font-size: 1.2rem; z-index: 2;
}
.video-facade__play {
  position: absolute; inset: 0; margin: auto;
  width: 74px; height: 74px; border-radius: 50%;
  background: rgba(246,241,232,0.92); z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-facade__play::before {
  content: ""; width: 0; height: 0;
  border-left: 20px solid var(--navy);
  border-top: 12px solid transparent; border-bottom: 12px solid transparent;
  margin-left: 5px;
}
.video-facade:hover .video-facade__play { transform: scale(1.06); background: var(--gold); }
.video-facade img, .video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--navy); }
.field .req { color: var(--hydrangea); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--white);
  border: 1px solid var(--navy-12); border-radius: var(--radius);
  padding: 0.8rem 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--hydrangea);
  box-shadow: 0 0 0 3px var(--hydrangea-14);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--ink-70); margin-top: 0.75rem; }

.contact-detail { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-detail li { display: flex; gap: 0.8rem; margin-bottom: 1rem; align-items: baseline; }
.contact-detail dt, .contact-detail .k {
  font-family: var(--body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--hydrangea); min-width: 6.5rem;
}
.contact-detail a { font-size: 1.1rem; font-family: var(--display); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 0.5rem; }
.cta-band p { max-width: 40rem; margin-inline: auto; font-size: 1.15rem; }
.cta-band .btn-row { justify-content: center; margin-top: 1.75rem; }

/* Motto flourish */
.motto {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem); color: var(--navy);
  text-align: center; margin: 0;
}
.section--navy .motto { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(246,241,232,0.85); padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.75rem, 4vw, 3rem); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2, .site-footer h3 { color: var(--white); }
.footer-brand__name { font-family: var(--display); font-size: 1.6rem; color: var(--white); margin-bottom: 0.5rem; }
.footer-brand p { color: rgba(246,241,232,0.75); max-width: 26rem; font-size: 0.98rem; }
.footer-place {
  font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.75rem;
}
.footer-col h3 { font-family: var(--body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(246,241,232,0.85); text-decoration: none; font-size: 0.98rem; }
.footer-col a:hover { color: var(--white); text-decoration: underline; text-decoration-color: var(--gold); }
.footer-bottom {
  margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(196,165,116,0.35);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.82rem; color: rgba(246,241,232,0.6);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem); }
.page-hero h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }
.page-hero__lede { font-size: 1.2rem; color: var(--ink-70); max-width: 42rem; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding-block: clamp(4rem, 12vw, 9rem); }
.notfound__code { font-family: var(--display); font-size: clamp(5rem, 18vw, 11rem); color: var(--hydrangea); line-height: 0.9; margin-bottom: 0.5rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .card:hover, .buzz-card:hover { transform: none; }
}

/* ---------- Utility spacing ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.lead { font-size: 1.2rem; color: var(--ink-70); }
