/* ═══════════════════════════════════════════════════════════════
   SIWA OASIS AESTHETICS — Editorial Sanctuary Stylesheet
   The Transformation Sanctuary · Saddle Brook, NJ
   Image-free · typographic · editorial luxury · 2026
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* ── Brand Palette ── */
  --royal: #002366;
  --royal-deep: #00184D;
  --royal-mid: #1E3978;
  --royal-tint: #EEF1F8;
  --gold: #D4AF37;
  --gold-bright: #E5C158;
  --gold-deep: #A8881A;
  --gold-tint: #F8F2DC;
  --white: #FFFFFF;
  --paper: #FBFAF6;
  --cream: #F5F1E6;
  --line: #E8E2D2;
  --line-soft: #F1ECDC;

  /* ── Text ── */
  --ink: #0A1228;
  --ink-soft: #4A5468;
  --ink-mute: #9099AB;

  /* ── Typography ── */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* ── Layout ── */
  --max-width: 1680px;
  --max-narrow: 1240px;
  --container-pad: clamp(1.25rem, 4vw, 4rem);
  --gutter: clamp(1rem, 1.8vw, 1.65rem);
  --section-pad: clamp(4.5rem, 9vw, 9rem);

  /* ── Motion & Shape ── */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .2s var(--ease);
  --t-base: .35s var(--ease);
  --t-slow: .7s var(--ease-out);

  --shadow-sm: 0 2px 8px rgba(0, 35, 102, .04);
  --shadow: 0 16px 48px rgba(0, 35, 102, .07);
  --shadow-lg: 0 28px 72px rgba(0, 35, 102, .1);
  --shadow-gold: 0 14px 42px rgba(212, 175, 55, .22);

  --r-sm: 4px;
  --r: 8px;
  --r-lg: 14px;
  --r-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body {
  font-family: var(--font-sans); font-size: 16px; line-height: 1.65;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--t-base); }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }
::selection { background: var(--gold); color: var(--royal); }

/* ═════════════════════════ TYPOGRAPHY ═════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-serif); font-weight: 500; line-height: 1.04;
  color: var(--royal); letter-spacing: -.022em;
}
h1 { font-size: clamp(3rem, 7.8vw, 7rem); font-weight: 500; letter-spacing: -.038em; }
h2 { font-size: clamp(2.25rem, 5.2vw, 4.25rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 500; line-height: 1.25; }
h4 {
  font-size: .72rem; font-weight: 700; font-family: var(--font-sans);
  color: var(--royal); text-transform: uppercase; letter-spacing: .18em;
}

em { font-style: italic; color: var(--gold); font-weight: 500; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--font-sans); font-size: .68rem;
  text-transform: uppercase; letter-spacing: .25em; color: var(--gold-deep);
  font-weight: 700;
}
.eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.eyebrow--center::before { display: none; }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft);
  line-height: 1.7; max-width: 640px;
}

/* ═════════════════════════ CONTAINER ═════════════════════════ */
.container {
  max-width: var(--max-width); margin: 0 auto; padding: 0 var(--container-pad);
}
.container--narrow { max-width: var(--max-narrow); }
.container--wide { max-width: 1840px; }

/* ═════════════════════════ BUTTONS ═════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1.05rem 2.1rem; font-size: .82rem; font-weight: 600;
  border-radius: var(--r-pill); transition: all var(--t-base);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  background: var(--royal); color: var(--white);
  letter-spacing: .04em; text-transform: uppercase; border: 1px solid var(--royal);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '→'; transition: transform var(--t-base); font-weight: 400;
  text-transform: none; letter-spacing: 0;
}
.btn:hover {
  background: var(--royal-deep); border-color: var(--royal-deep);
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.btn:hover::after { transform: translateX(4px); }
.btn--gold {
  background: var(--gold); color: var(--royal); border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-deep); border-color: var(--gold-deep);
  color: var(--white); box-shadow: var(--shadow-gold);
}
.btn--ghost {
  background: transparent; border-color: var(--line); color: var(--royal);
}
.btn--ghost:hover { background: var(--white); border-color: var(--royal); }
.btn--ghost-light {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.22); color: var(--white);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.13); border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: .75rem 1.5rem; font-size: .72rem; }
.btn--lg { padding: 1.2rem 2.6rem; font-size: .9rem; }
.btn--bare::after { display: none; }

/* ═════════════════════════ HEADER ═════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 246, .82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-base);
}
.header.scrolled {
  background: rgba(251, 250, 246, .94);
  border-bottom-color: var(--line-soft);
}
.header__inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 1.25rem var(--container-pad);
  display: flex; align-items: center; gap: 1.5rem;
}
.header__logo {
  display: inline-flex; flex-direction: column; line-height: 1;
  margin-right: auto;
}
.header__logo .wordmark {
  font-family: var(--font-serif); font-size: 1.55rem;
  letter-spacing: .04em; color: var(--royal); font-weight: 500;
}
.header__logo .wordmark em { color: var(--gold); font-weight: 500; }
.header__logo .sub {
  font-size: .56rem; color: var(--gold-deep);
  letter-spacing: .35em; text-transform: uppercase; font-weight: 600;
  margin-top: 5px;
}

.header__nav {
  display: flex; align-items: center; gap: .15rem;
  padding: .35rem; background: rgba(0, 35, 102, .045);
  border: 1px solid rgba(0, 35, 102, .04);
  border-radius: var(--r-pill);
}
.header__nav a {
  padding: .65rem 1.35rem;
  border-radius: var(--r-pill);
  font-size: .76rem; font-weight: 500; color: var(--ink);
  transition: all var(--t-fast); position: relative;
  letter-spacing: .04em;
}
.header__nav a:hover {
  background: var(--white); color: var(--royal);
  box-shadow: 0 2px 12px rgba(0, 35, 102, .08);
}
.header__nav a.active {
  background: var(--royal); color: var(--white);
}

.header__cta { display: flex; gap: .85rem; align-items: center; }
.header__phone {
  font-size: .78rem; font-weight: 500; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: .4rem;
  letter-spacing: .03em;
}
.header__phone::before {
  content: '✆'; color: var(--gold-deep); font-size: .9rem;
}
.header__phone:hover { color: var(--royal); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; width: 26px; padding: 0;
}
.hamburger span {
  width: 100%; height: 1.5px; background: var(--royal);
  transition: all var(--t-base); border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 1080px) {
  .header__nav, .header__phone { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .header__cta .btn { display: none; }
}

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99; background: var(--royal); padding: 6rem 2rem 2rem;
}
.mobile-menu.active { display: flex; flex-direction: column; animation: slideDown .35s var(--ease-out); }
.mobile-menu nav {
  display: flex; flex-direction: column; gap: .25rem;
  max-width: 480px; margin: 0 auto; width: 100%;
}
.mobile-menu a {
  font-family: var(--font-serif); font-size: 2.1rem; color: var(--white);
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all var(--t-base); display: flex; align-items: center;
  justify-content: space-between; font-weight: 400;
}
.mobile-menu a:hover { color: var(--gold); padding-left: .5rem; }
.mobile-menu a::after { content: '→'; opacity: .4; font-size: 1.5rem; }
.mobile-menu .btn {
  margin-top: 2rem; align-self: stretch; justify-content: center;
}
.mobile-menu .btn::after { opacity: 1; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═════════════════════════ HERO — TYPE + PANEL ═════════════════════════ */
.hero {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid; grid-template-columns: 1.25fr .85fr;
  gap: clamp(2rem, 5vw, 5.5rem); align-items: center;
  min-height: calc(100vh - 80px);
  position: relative;
}
.hero::before {
  content: ''; position: absolute; top: 50%; left: 35%;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.05) 0%, transparent 65%);
  transform: translate(-50%, -50%); pointer-events: none; z-index: -1;
}

.hero__content {
  padding: 4rem 0; max-width: 740px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: transparent; color: var(--gold-deep);
  padding: 0; border-radius: 0;
  font-size: .68rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero__badge::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.hero__content h1 {
  margin-bottom: 2rem; line-height: .92;
}
.hero__content p {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem); color: var(--ink-soft);
  line-height: 1.7; margin-bottom: 2.75rem; max-width: 580px;
}
.hero__actions {
  display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 3.5rem;
}
.hero__meta {
  display: flex; gap: 3rem; flex-wrap: wrap;
  padding-top: 2.75rem; border-top: 1px solid var(--line);
}
.hero__meta-item strong {
  display: block; font-family: var(--font-serif); font-size: 1.65rem;
  color: var(--royal); font-weight: 500; line-height: 1;
}
.hero__meta-item span {
  font-size: .68rem; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: .15em;
  font-weight: 600; margin-top: .5rem; display: block;
}

/* Right-side editorial info panel (replaces image) */
.hero__panel {
  background: linear-gradient(168deg, var(--royal) 0%, var(--royal-deep) 100%);
  color: var(--white); padding: clamp(2.5rem, 3.5vw, 3.75rem);
  border-radius: var(--r-lg); position: relative; overflow: hidden;
  min-height: clamp(480px, 70vh, 660px);
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.hero__panel::before {
  content: 'S'; position: absolute;
  bottom: -8rem; right: -3rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: 30rem; font-weight: 500;
  color: rgba(212,175,55,.06);
  line-height: 1; pointer-events: none;
}
.hero__panel::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 0% 0%, rgba(212,175,55,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero__panel-top { position: relative; z-index: 2; }
.hero__panel-top span {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .25em;
  color: var(--gold); font-weight: 600; display: block; margin-bottom: 1.25rem;
}
.hero__panel-top h3 {
  color: var(--white); font-family: var(--font-serif);
  font-size: clamp(1.45rem, 1.95vw, 1.85rem); font-style: italic;
  font-weight: 400; line-height: 1.35;
}
.hero__panel-rows {
  display: flex; flex-direction: column;
  position: relative; z-index: 2;
  margin-top: 2.5rem;
}
.hero__panel-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.09);
}
.hero__panel-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero__panel-row span:first-child {
  font-size: .64rem; text-transform: uppercase; letter-spacing: .18em;
  color: rgba(255,255,255,.5); font-weight: 600;
}
.hero__panel-row span:last-child {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--white); font-weight: 500; text-align: right;
}
.hero__panel-row strong {
  font-family: var(--font-serif); font-size: 1.05rem;
  color: var(--gold); font-weight: 500; font-style: italic;
}

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 2rem; padding-bottom: 4rem; gap: 3rem; }
  .hero__panel { min-height: 460px; }
  .hero__content { padding: 2rem 0 0; }
}

/* ═════════════════════════ MARQUEE BAND ═════════════════════════ */
.marquee {
  background: var(--royal); color: var(--white);
  padding: 1.4rem 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: inline-flex; gap: 4rem;
  animation: marquee 38s linear infinite;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 4rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.4rem); color: rgba(255,255,255,.85);
}
.marquee__item::after {
  content: '✦'; color: var(--gold); font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═════════════════════════ SECTION ═════════════════════════ */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--royal); color: rgba(255,255,255,.85); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before { background: var(--gold); }

.section-head {
  display: grid; grid-template-columns: auto 1fr; gap: 4rem;
  align-items: end; margin-bottom: 4.5rem;
}
.section-head__title { max-width: 720px; }
.section-head__title h2 { margin-top: 1.25rem; }
.section-head__meta {
  text-align: right; max-width: 380px; margin-left: auto;
}
.section-head__meta p {
  color: var(--ink-soft); font-size: .96rem; line-height: 1.7;
}
.section--dark .section-head__meta p { color: rgba(255,255,255,.65); }
@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-head__meta { text-align: left; margin-left: 0; }
}

/* ═════════════════════════ MANIFESTO — REPLACES ABOUT IMAGE ═════════════════════════ */
.about {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5.5rem); align-items: stretch;
}
.manifesto {
  background: linear-gradient(168deg, var(--royal) 0%, var(--royal-deep) 100%);
  color: var(--white); padding: clamp(2.75rem, 4.5vw, 4.5rem);
  border-radius: var(--r-lg); position: relative; overflow: hidden;
  min-height: 560px; display: flex; flex-direction: column;
  justify-content: space-between; box-shadow: var(--shadow-lg);
}
.manifesto::before {
  content: '"'; position: absolute; top: 1.5rem; left: 2.5rem;
  font-family: var(--font-serif); font-size: 22rem;
  color: rgba(212,175,55,.07); line-height: .7;
  pointer-events: none;
}
.manifesto::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 100% 100%, rgba(212,175,55,.1) 0%, transparent 55%);
  pointer-events: none;
}
.manifesto__label {
  position: relative; z-index: 2;
  font-size: .68rem; text-transform: uppercase; letter-spacing: .25em;
  color: var(--gold); font-weight: 700;
  display: inline-flex; align-items: center; gap: .75rem;
}
.manifesto__label::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.manifesto__quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem); line-height: 1.4;
  color: var(--white); position: relative; z-index: 2;
  font-weight: 400; margin-top: 2rem;
}
.manifesto__quote em { color: var(--gold); font-style: italic; font-weight: 400; }
.manifesto__sig {
  display: flex; flex-direction: column; gap: .5rem;
  position: relative; z-index: 2; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2.5rem;
}
.manifesto__sig strong {
  font-family: var(--font-serif); font-size: 1.25rem;
  color: var(--gold); font-weight: 500; font-style: italic;
}
.manifesto__sig span {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .2em;
  color: rgba(255,255,255,.55); font-weight: 600;
}

.about__content { padding: 2rem 0; display: flex; flex-direction: column; justify-content: center; }
.about__content h2 { margin: 1.25rem 0 1.85rem; }
.about__content p {
  color: var(--ink-soft); line-height: 1.8; font-size: 1.02rem;
  margin-bottom: 1.25rem; max-width: 580px;
}
.about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2.75rem; padding-top: 2.75rem;
  border-top: 1px solid var(--line);
}
.about__stat strong {
  display: block; font-family: var(--font-serif); font-size: 2.1rem;
  color: var(--royal); font-weight: 500; line-height: 1;
}
.about__stat span {
  display: block; font-size: .68rem; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: .15em;
  font-weight: 600; margin-top: .65rem;
}

@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; }
  .manifesto { min-height: 440px; }
}

/* ═════════════════════════ BENTO — IMAGE-FREE EDITORIAL ═════════════════════════ */
.bento {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--gutter);
}
.bento-card {
  position: relative; padding: clamp(1.85rem, 2.5vw, 2.5rem);
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); transition: all var(--t-base);
  display: flex; flex-direction: column; justify-content: space-between;
  text-decoration: none; color: inherit; overflow: hidden;
  min-height: 280px;
}
.bento-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.bento-card__index {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(2.75rem, 4.5vw, 4rem); color: var(--gold);
  line-height: .85; font-weight: 500;
  display: block;
}
.bento-card__tag {
  font-size: .62rem; text-transform: uppercase; letter-spacing: .22em;
  color: var(--gold-deep); font-weight: 700;
  margin-bottom: .85rem; display: block;
}
.bento-card__body {
  display: flex; flex-direction: column; gap: .85rem;
  margin-top: 1.85rem; position: relative; z-index: 2;
}
.bento-card__body h3 {
  color: var(--royal); font-size: clamp(1.2rem, 1.55vw, 1.5rem);
  font-weight: 500;
}
.bento-card__body p {
  font-size: .9rem; color: var(--ink-soft); line-height: 1.7;
}
.bento-card__arrow {
  position: absolute; top: clamp(1.85rem, 2.5vw, 2.5rem); right: clamp(1.85rem, 2.5vw, 2.5rem);
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--royal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all var(--t-base);
}
.bento-card:hover .bento-card__arrow {
  background: var(--gold); border-color: var(--gold); color: var(--royal);
  transform: rotate(-45deg);
}

/* Featured: dark royal background, large gold numeral */
.bento-card--featured {
  grid-column: span 4; grid-row: span 2;
  background: linear-gradient(168deg, var(--royal) 0%, var(--royal-deep) 100%);
  color: var(--white); border-color: var(--royal);
  min-height: 460px;
}
.bento-card--featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 100% 100%, rgba(212,175,55,.16) 0%, transparent 55%);
  pointer-events: none;
}
.bento-card--featured .bento-card__index {
  color: var(--gold); opacity: .85;
  font-size: clamp(5.5rem, 9vw, 8.5rem);
}
.bento-card--featured .bento-card__tag { color: var(--gold); }
.bento-card--featured .bento-card__body h3 {
  color: var(--white); font-size: clamp(2rem, 2.8vw, 2.85rem);
  font-weight: 500;
}
.bento-card--featured .bento-card__body p {
  color: rgba(255,255,255,.72); font-size: 1rem;
  max-width: 520px; line-height: 1.75;
}
.bento-card--featured .bento-card__arrow {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: var(--white);
}
.bento-card--featured:hover .bento-card__arrow {
  background: var(--gold); border-color: var(--gold); color: var(--royal);
}

/* Tall: cream background, gold accent */
.bento-card--tall {
  grid-column: span 2; grid-row: span 2;
  background: var(--cream); border-color: var(--line);
}
.bento-card--tall .bento-card__index { font-size: clamp(3.5rem, 5.5vw, 5rem); }

/* Sm */
.bento-card--sm { grid-column: span 2; grid-row: span 1; min-height: 220px; }
.bento-card--sm .bento-card__index { font-size: clamp(2.25rem, 3.5vw, 3rem); }

/* Horizontal */
.bento-card--horizontal {
  grid-column: span 3; grid-row: span 1;
  flex-direction: row; align-items: center; gap: 2rem;
  min-height: 220px;
}
.bento-card--horizontal .bento-card__index {
  font-size: clamp(3rem, 4.5vw, 4rem); flex: none;
}
.bento-card--horizontal .bento-card__body { margin-top: 0; flex: 1; }

.bento-card--wide { grid-column: span 6; }

@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento-card--featured { grid-column: span 4; grid-row: span 2; }
  .bento-card--tall { grid-column: span 2; grid-row: span 2; }
  .bento-card--sm { grid-column: span 2; }
  .bento-card--horizontal { grid-column: span 4; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card { grid-column: 1 !important; grid-row: auto !important; }
  .bento-card--horizontal { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ═════════════════════════ PROCESS ═════════════════════════ */
.process {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter); position: relative;
}
.process::before {
  content: ''; position: absolute; top: 32px; left: 8%; right: 8%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.process-step {
  background: var(--white); padding: 2.75rem 2.25rem;
  border-radius: var(--r); border: 1px solid var(--line);
  text-align: left; position: relative;
  transition: all var(--t-base);
}
.process-step:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.process-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--royal); color: var(--gold);
  font-family: var(--font-serif); font-size: 1.65rem; font-weight: 500;
  font-style: italic;
  margin-bottom: 1.75rem; position: relative; z-index: 2;
  box-shadow: 0 0 0 8px var(--paper);
}
.section--alt .process-step__num { box-shadow: 0 0 0 8px var(--cream); }
.process-step h3 { margin-bottom: .85rem; font-size: 1.4rem; }
.process-step p { font-size: .92rem; color: var(--ink-soft); line-height: 1.75; }

@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; }
  .process::before { display: none; }
}

/* ═════════════════════════ MEMBERSHIP — WIDE HORIZONTAL ═════════════════════════ */
.membership-wide {
  display: grid; grid-template-columns: .85fr 1.15fr;
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.membership-wide__left {
  background: linear-gradient(168deg, var(--royal) 0%, var(--royal-deep) 100%);
  color: var(--white); padding: clamp(2.75rem, 4vw, 4.25rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.membership-wide__left::before {
  content: 'O'; position: absolute;
  bottom: -10rem; right: -4rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: 30rem; color: rgba(212,175,55,.07); line-height: .85;
  pointer-events: none;
}
.membership-wide__left::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 0% 0%, rgba(212,175,55,.1) 0%, transparent 55%);
  pointer-events: none;
}
.membership-wide__left .eyebrow { color: var(--gold); position: relative; z-index: 2; }
.membership-wide__left .eyebrow::before { background: var(--gold); }
.membership-wide__left h2 {
  color: var(--white); margin: 1.5rem 0 2rem; position: relative; z-index: 2;
}
.membership-wide__price {
  display: flex; align-items: baseline; gap: .75rem;
  margin-bottom: 1.75rem; position: relative; z-index: 2;
}
.membership-wide__price strong {
  font-family: var(--font-serif); font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--gold); font-weight: 500; line-height: 1;
}
.membership-wide__price span { font-size: 1.05rem; color: rgba(255,255,255,.7); }
.membership-wide__left p {
  color: rgba(255,255,255,.75); position: relative; z-index: 2;
  font-size: .94rem; line-height: 1.75; margin-bottom: 2.25rem;
  max-width: 380px;
}
.membership-wide__left .btn { position: relative; z-index: 2; align-self: flex-start; }

.membership-wide__right {
  padding: clamp(2.75rem, 4vw, 4.25rem);
}
.membership-wide__right h3 {
  margin-bottom: 2.25rem; font-size: .72rem; color: var(--royal);
  text-transform: uppercase; letter-spacing: .18em;
  font-family: var(--font-sans); font-weight: 700;
  display: inline-flex; align-items: center; gap: .75rem;
}
.membership-wide__right h3::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.membership-wide__benefits {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
}
.membership-wide__benefit {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: .25rem 0;
}
.membership-wide__benefit::before {
  content: '✦'; flex: none;
  color: var(--gold); font-size: 1rem;
  margin-top: 2px;
}
.membership-wide__benefit strong { display: block; color: var(--royal); font-size: .92rem; margin-bottom: .25rem; font-weight: 600; }
.membership-wide__benefit span { display: block; color: var(--ink-soft); font-size: .85rem; line-height: 1.6; }

@media (max-width: 1024px) {
  .membership-wide { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .membership-wide__benefits { grid-template-columns: 1fr; }
}

/* ═════════════════════════ LOCATION — WIDE SPLIT ═════════════════════════ */
.location {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: var(--gutter); align-items: stretch;
}
.location__info {
  background: var(--white); padding: clamp(2.25rem, 3vw, 3rem);
  border-radius: var(--r-lg); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.location__info h2 { margin-bottom: 2rem; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.location__info address {
  font-size: 1rem; line-height: 1.85; color: var(--ink); margin-bottom: 1.5rem;
}
.location__info address strong {
  display: block; font-family: var(--font-serif); font-size: 1.2rem;
  color: var(--royal); margin-bottom: .5rem; font-weight: 500;
}
.location__phone {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: 1.2rem; font-weight: 500; color: var(--gold-deep);
  font-family: var(--font-serif);
  padding: 1rem 0; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.85rem;
}
.location__phone::before { content: '✆'; }
.location__map {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); min-height: 540px;
}
.location__map iframe { width: 100%; height: 100%; min-height: 540px; border: 0; display: block; }

@media (max-width: 1024px) {
  .location { grid-template-columns: 1fr; }
  .location__map { min-height: 380px; }
  .location__map iframe { min-height: 380px; }
}

/* ═════════════════════════ HOURS TABLE ═════════════════════════ */
.hours-table { width: 100%; font-size: .9rem; }
.hours-table td { padding: .85rem 0; border-bottom: 1px solid var(--line-soft); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { color: var(--ink); font-weight: 500; letter-spacing: .02em; }
.hours-table td:last-child { color: var(--ink-soft); text-align: right; font-family: var(--font-serif); }
.hours-table tr.closed td:last-child { color: var(--ink-mute); font-style: italic; }
.hours-table tr.extended td:last-child { color: var(--gold-deep); font-weight: 600; }

/* ═════════════════════════ APPT NOTICE ═════════════════════════ */
.appt-notice {
  background: var(--gold-tint);
  border: 1px solid rgba(212, 175, 55, .25);
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem; border-radius: var(--r-sm);
  font-size: .9rem; color: var(--ink); line-height: 1.65;
  display: flex; gap: .85rem; align-items: flex-start;
}
.appt-notice::before {
  content: '✦'; flex: none; color: var(--gold);
  font-size: 1.1rem; margin-top: 1px;
}
.appt-notice strong { color: var(--royal); }

/* ═════════════════════════ PAGE HERO ═════════════════════════ */
.page-hero {
  background: linear-gradient(168deg, var(--royal) 0%, var(--royal-deep) 100%);
  color: var(--white); padding: clamp(5.5rem, 10vw, 10rem) 0 clamp(4rem, 7vw, 7rem);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.12) 0%, transparent 60%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.4), transparent);
}
.page-hero__inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 4rem; align-items: end; position: relative;
}
.page-hero__title h1 {
  color: var(--white); margin: 1.5rem 0 1.25rem; line-height: .95;
}
.page-hero__title h1 em { color: var(--gold); font-weight: 400; }
.page-hero__title p {
  color: rgba(255,255,255,.75); font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 560px; line-height: 1.7;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero__meta {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: flex-end; padding-bottom: .5rem;
}
.page-hero__breadcrumb {
  display: flex; gap: .65rem; align-items: center;
  font-size: .68rem; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .2em; font-weight: 600;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.55); }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb span { color: var(--gold); }
.page-hero__chips {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: flex-end;
}
.page-hero__chip {
  padding: .6rem 1.15rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,.06); color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
  font-size: .72rem; font-weight: 500; letter-spacing: .04em;
  transition: all var(--t-base);
}
.page-hero__chip:hover { background: var(--gold); color: var(--royal); border-color: var(--gold); }

@media (max-width: 900px) {
  .page-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero__meta { align-items: flex-start; }
  .page-hero__chips { justify-content: flex-start; }
}

/* ═════════════════════════ SERVICES — CATEGORY ROWS ═════════════════════════ */
.cat-row {
  display: grid; grid-template-columns: 300px 1fr;
  gap: clamp(2rem, 5vw, 5.5rem); align-items: start;
  margin-bottom: clamp(3rem, 6vw, 6.5rem);
}
.cat-row__title {
  position: sticky; top: 110px;
}
.cat-row__title .roman {
  font-family: var(--font-serif); font-style: italic;
  font-size: 4.5rem; color: var(--gold);
  font-weight: 500; line-height: 1;
  display: block; margin-bottom: 1.5rem;
}
.cat-row__title .eyebrow { display: inline-flex; }
.cat-row__title h2 {
  margin-top: 1rem; font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.05;
}
.cat-row__title p {
  margin-top: 1.5rem; font-size: .94rem; color: var(--ink-soft);
  line-height: 1.75;
}
.cat-row__cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter);
}
@media (max-width: 1024px) {
  .cat-row { grid-template-columns: 1fr; }
  .cat-row__title { position: static; }
}
@media (max-width: 640px) {
  .cat-row__cards { grid-template-columns: 1fr; }
}

/* Treatment card — image-free editorial */
.tcard {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: clamp(2rem, 2.5vw, 2.5rem);
  display: flex; flex-direction: column; position: relative;
  transition: all var(--t-base); min-height: 260px;
  overflow: hidden;
}
.tcard:hover {
  border-color: var(--gold); transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.tcard__index {
  font-family: var(--font-serif); font-style: italic;
  font-size: 2.65rem; color: var(--gold); line-height: .85;
  font-weight: 500; margin-bottom: 1.5rem; display: block;
}
.tcard__tag {
  font-size: .62rem; text-transform: uppercase; letter-spacing: .22em;
  color: var(--gold-deep); font-weight: 700;
  margin-bottom: .85rem; display: block;
}
.tcard__body { display: flex; flex-direction: column; flex: 1; }
.tcard__body h3 {
  margin-bottom: .85rem; font-size: 1.4rem; font-weight: 500;
}
.tcard__body p {
  font-size: .92rem; color: var(--ink-soft);
  line-height: 1.75; margin-bottom: 1.5rem; flex: 1;
}
.tcard__meta {
  padding-top: 1.25rem; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .68rem; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: .15em; font-weight: 600;
}
.tcard__meta strong { color: var(--gold-deep); font-weight: 700; }

/* Treatment card images */
.tcard__img {
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.tcard__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.tcard__img--placeholder {
  height: 120px;
  background: var(--royal-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
}
.tcard__img--placeholder span {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  opacity: .6;
}

/* ═════════════════════════ FAQ — STICKY SIDEBAR ═════════════════════════ */
.faq-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 5vw, 5.5rem); align-items: start;
}
.faq-sidebar {
  position: sticky; top: 110px; align-self: start;
}
.faq-sidebar h4 {
  margin-bottom: 1.25rem; font-size: .68rem; color: var(--gold-deep);
}
.faq-sidebar nav {
  display: flex; flex-direction: column; gap: .15rem;
}
.faq-sidebar a {
  padding: .85rem 1rem .85rem 1.25rem;
  font-size: .85rem; font-weight: 500; color: var(--ink-soft);
  border-left: 2px solid transparent;
  transition: all var(--t-fast);
  letter-spacing: .02em;
}
.faq-sidebar a:hover, .faq-sidebar a.active {
  color: var(--royal);
  border-left-color: var(--gold);
}
.faq-content { display: flex; flex-direction: column; gap: 4.5rem; }
.faq-section h2 {
  margin-bottom: 2rem; font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}
.faq-section .eyebrow { margin-bottom: .75rem; display: inline-flex; }

.faq-item {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--white); overflow: hidden; margin-bottom: .75rem;
  transition: all var(--t-base);
}
.faq-item:hover { border-color: rgba(212,175,55,.4); }
.faq-item[open] {
  border-color: var(--gold);
}
.faq-item summary {
  cursor: pointer; font-weight: 500; font-size: 1rem;
  color: var(--royal); padding: 1.35rem 1.65rem;
  list-style: none; position: relative; padding-right: 3.85rem;
  user-select: none; transition: color var(--t-base);
  font-family: var(--font-serif);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 1.65rem; top: 50%;
  transform: translateY(-50%); font-size: 1.3rem; color: var(--gold);
  font-weight: 300; transition: transform var(--t-base);
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.faq-item[open] summary::after { content: '−'; border-color: var(--gold); background: var(--gold-tint); }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item__body {
  padding: 0 1.65rem 1.65rem; font-size: .92rem;
  color: var(--ink-soft); line-height: 1.8;
}
.faq-item__body a { color: var(--gold-deep); font-weight: 600; }
.faq-item__body strong { color: var(--royal); }

@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .faq-sidebar nav {
    flex-direction: row; flex-wrap: wrap; gap: .5rem;
  }
  .faq-sidebar a { border-left: none; border: 1px solid var(--line); border-radius: var(--r-pill); padding: .55rem 1.1rem; }
  .faq-sidebar a.active { background: var(--royal); color: var(--white); border-color: var(--royal); }
}

/* ═════════════════════════ CONTACT LAYOUT ═════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: start;
}
.contact-info { padding-right: 2rem; }
.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3.5rem); margin: 1rem 0 1.85rem;
  line-height: 0.95;
}
.contact-info p { color: var(--ink-soft); margin-bottom: 2.5rem; max-width: 460px; line-height: 1.75; }
.contact-info__block {
  padding: 1.85rem 0; border-top: 1px solid var(--line);
}
.contact-info__block:last-child { border-bottom: 1px solid var(--line); }
.contact-info__block h4 { margin-bottom: .85rem; }
.contact-info__block address {
  font-size: 1.02rem; line-height: 1.85; color: var(--ink);
}
.contact-info__block address strong {
  display: block; color: var(--royal); font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 500; margin-bottom: .35rem;
}
.contact-info__phone {
  font-size: 1.55rem; color: var(--gold-deep);
  font-weight: 500; font-family: var(--font-serif);
  display: inline-flex; align-items: center; gap: .65rem;
}
.contact-info__phone::before { content: '✆'; }

.contact-form-wrap {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(2.25rem, 3.5vw, 3.5rem);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  margin-bottom: .65rem; font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}
.contact-form-wrap > p { color: var(--ink-soft); margin-bottom: 2rem; font-size: .94rem; }

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { padding-right: 0; }
}

/* ═════════════════════════ FORM ═════════════════════════ */
.form-field { margin-bottom: 1.35rem; }
.form-field label {
  display: block; font-size: .68rem; font-weight: 700;
  margin-bottom: .55rem; color: var(--royal);
  text-transform: uppercase; letter-spacing: .12em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 1rem 1.15rem;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: .94rem; color: var(--ink);
  background: var(--paper); transition: all var(--t-base);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .12);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-consent {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .82rem; color: var(--ink-soft);
  padding: 1.25rem 0;
}
.form-consent input { width: auto; margin-top: 3px; }
.form-consent label {
  text-transform: none; letter-spacing: 0; font-weight: 400;
  color: var(--ink-soft); margin: 0; font-size: .82rem; line-height: 1.65;
}
.form-consent label a { color: var(--gold-deep); font-weight: 600; }
.form-status {
  display: none; padding: 1.25rem 1.5rem; border-radius: var(--r-sm);
  font-size: .9rem; line-height: 1.65; margin-top: 1.35rem;
}
.form-status.success {
  display: block; background: var(--royal-tint);
  border-left: 2px solid var(--gold); color: var(--royal);
}

/* ═════════════════════════ CTA BANNER — SPLIT ═════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-deep) 100%);
  color: var(--white); padding: clamp(4rem, 7vw, 7rem) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; bottom: -200px; left: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.13) 0%, transparent 60%);
}
.cta-band::after {
  content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.4), transparent);
}
.cta-band__inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 4rem; align-items: center; position: relative;
}
.cta-band__title h2 {
  color: var(--white); margin: 1.25rem 0 0; font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1;
}
.cta-band__title h2 em { color: var(--gold); font-weight: 400; }
.cta-band .eyebrow { color: var(--gold); }
.cta-band .eyebrow::before { background: var(--gold); }
.cta-band__body {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.85rem;
}
.cta-band__body p {
  color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.75;
  max-width: 480px;
}
.cta-band__actions { display: flex; gap: .85rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .cta-band__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═════════════════════════ PROSE ═════════════════════════ */
.prose-layout {
  display: grid; grid-template-columns: 240px 1fr;
  gap: clamp(2rem, 5vw, 5.5rem); align-items: start;
}
.prose-toc {
  position: sticky; top: 110px; padding-right: 1rem;
}
.prose-toc h4 { margin-bottom: 1rem; font-size: .68rem; color: var(--gold-deep); }
.prose-toc nav { display: flex; flex-direction: column; gap: .15rem; }
.prose-toc a {
  padding: .6rem .85rem; font-size: .85rem; color: var(--ink-soft);
  border-left: 2px solid transparent; transition: all var(--t-fast);
  letter-spacing: .02em;
}
.prose-toc a:hover, .prose-toc a.active {
  color: var(--royal); border-left-color: var(--gold);
}
.prose { max-width: 760px; }
.prose h2 { margin-top: 3.5rem; margin-bottom: 1rem; font-size: clamp(1.5rem, 2.2vw, 1.85rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; margin-bottom: .75rem; font-size: 1.15rem; }
.prose p { margin-bottom: 1rem; color: var(--ink-soft); line-height: 1.85; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .55rem; color: var(--ink-soft); line-height: 1.75; }
.prose address { margin: 1rem 0; color: var(--ink); padding: 1.5rem; background: var(--cream); border-radius: var(--r-sm); border-left: 2px solid var(--gold); }
.prose a { color: var(--gold-deep); font-weight: 600; border-bottom: 1px solid transparent; transition: all var(--t-base); }
.prose a:hover { border-bottom-color: var(--gold); }
.prose strong { color: var(--royal); font-weight: 600; }

@media (max-width: 1024px) {
  .prose-layout { grid-template-columns: 1fr; }
  .prose-toc { position: static; padding-right: 0; }
  .prose-toc nav { flex-direction: row; flex-wrap: wrap; gap: .5rem; }
  .prose-toc a { border-left: none; border: 1px solid var(--line); border-radius: var(--r-pill); padding: .55rem 1.1rem; }
  .prose-toc a:hover, .prose-toc a.active { background: var(--royal); color: var(--white); border-color: var(--royal); }
}

/* ═════════════════════════ FOOTER ═════════════════════════ */
.footer {
  background: var(--royal); color: rgba(255, 255, 255, .7);
  padding: clamp(4.5rem, 8vw, 7rem) 0 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 50%; width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}
.footer::after {
  content: 'S'; position: absolute;
  bottom: -8rem; right: -2rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: 24rem; color: rgba(212,175,55,.04);
  line-height: .85; pointer-events: none;
}
.footer__top {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid; grid-template-columns: 1.5fr 2fr;
  gap: clamp(2.5rem, 6vw, 6rem); padding-bottom: 4.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem; position: relative; z-index: 2;
}
.footer__brand .wordmark {
  font-family: var(--font-serif); font-size: 1.85rem;
  color: var(--white); font-weight: 500;
  letter-spacing: .04em; display: block;
  margin-bottom: .4rem;
}
.footer__brand .wordmark em { color: var(--gold); font-weight: 500; }
.footer__brand .sub {
  display: block; font-size: .58rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: .35em;
  margin-bottom: 2rem; font-weight: 600;
}
.footer__statement {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.85rem); color: var(--white);
  line-height: 1.4; max-width: 480px; margin-bottom: 2.25rem;
  font-weight: 400;
}
.footer__cta {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.85rem; background: var(--gold);
  color: var(--royal); border-radius: var(--r-pill);
  font-weight: 600; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .08em;
  transition: all var(--t-base);
}
.footer__cta:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.footer__cta::after { content: '→'; }

.footer__columns {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  position: relative; z-index: 2;
}
.footer__col h4 {
  color: var(--gold); font-size: .68rem; margin-bottom: 1.35rem;
  letter-spacing: .2em;
}
.footer__col a, .footer__col p {
  display: block; font-size: .88rem; color: rgba(255,255,255,.65);
  margin-bottom: .65rem; transition: color var(--t-base);
  letter-spacing: .02em;
}
.footer__col a:hover { color: var(--gold); }
.footer__col address { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.85; }

.footer__bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative; z-index: 2;
}
.footer__areas {
  font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.75;
  text-align: center; padding: 1.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .72rem; color: rgba(255,255,255,.4); padding: 1.85rem 0 0;
  letter-spacing: .04em;
}

@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer__columns { grid-template-columns: 1fr 1fr; }
  .footer__legal { justify-content: center; text-align: center; }
}

/* ═════════════════════════ ANIMATIONS ═════════════════════════ */
.animate {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.animate.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: .08s; }
.animate-delay-2 { transition-delay: .16s; }
.animate-delay-3 { transition-delay: .24s; }

/* ═════════════════════════ UTILITY ═════════════════════════ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .marquee__track { animation: none; }
}
