/* ==========================================================================
   HWS by Danielle — Shared Stylesheet
   Used by every page. Edit this one file to change fonts, colors, or spacing
   site-wide.
   ========================================================================== */

:root {
  --gold: #C69A54;
  --gold-soft: #E4C98D;
  --gold-dim: #8A6E3F;
  --teal: #63B7AB;
  --teal-deep: #274944;
  --max: 1160px;

  /* Brand-dark sections (hero, transformations, final CTA) never change with theme */
  --brand-bg: #0E0E0F;
  --brand-ink: #17181A;
  --brand-ivory: #F4EFE6;
  --brand-muted: #A79E92;
}

/* ---------- Light theme (default): genuinely white ---------- */
[data-theme="light"] {
  --page-bg: #FFFFFF;
  --section-alt: #F7F5F1;
  --card-bg: #F2EEE7;
  --text-main: #17181A;
  --text-muted: #6B6F72;
  --line: rgba(198, 154, 84, 0.28);
  --line-soft: rgba(198, 154, 84, 0.16);
  /* Teal accent, readable on light surfaces (deeper than the hero teal) */
  --teal-accent: #3C8074;
}

/* ---------- Dark theme ---------- */
[data-theme="dark"] {
  --page-bg: #121213;
  --section-alt: #1B1B1D;
  --card-bg: #1F2020;
  --text-main: #F4EFE6;
  --text-muted: #A79E92;
  --line: rgba(198, 154, 84, 0.3);
  --line-soft: rgba(198, 154, 84, 0.18);
  /* On dark, the accent is the bright hero teal */
  --teal-accent: #63B7AB;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0; background: var(--page-bg); color: var(--text-main);
  font-family: 'Inter', -apple-system, sans-serif; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.35s ease, color 0.35s ease;
}

h1, h2, h3, .display { font-family: 'Fraunces', serif; font-weight: 450; letter-spacing: -0.012em; margin: 0; }
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }

.eyebrow {
  font-family: 'Inter', sans-serif; font-size: 0.68rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
}

.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.15; stroke-linecap: round; stroke-linejoin: round; }

.mono {
  width: 34px; height: 34px; border: 1px solid var(--gold-dim); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mono svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.2; }

/* ---------- Header / Nav ---------- */
header { position: sticky; top: 0; z-index: 50; background: rgba(14, 14, 15, 0.94); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(198,154,84,0.14); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 40px; max-width: var(--max); margin: 0 auto; color: var(--brand-ivory); gap: 20px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.wordmark { font-family: 'Fraunces', serif; font-size: 1rem; letter-spacing: 0.05em; line-height: 1.2; color: var(--brand-ivory); }
.wordmark small { display: block; font-family: 'Inter', sans-serif; font-size: 0.6rem; letter-spacing: 0.22em; color: var(--gold-soft); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 22px; font-size: 0.73rem; letter-spacing: 0.05em; list-style: none; margin: 0; padding: 0; text-transform: uppercase; flex: 1; justify-content: center; }
.nav-links a { text-decoration: none; color: var(--brand-muted); transition: color 0.25s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-soft); }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* Hamburger button — hidden on desktop, shown when the links collapse */
.nav-toggle {
  display: none; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold-dim);
  background: transparent; color: var(--gold-soft); align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: border-color 0.25s ease, background 0.25s ease;
}
.nav-toggle:hover { border-color: var(--gold); background: rgba(198,154,84,0.1); }
.nav-toggle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.nav-toggle .icon-close { display: none; }
.nav.open .nav-toggle .icon-menu { display: none; }
.nav.open .nav-toggle .icon-close { display: block; }
.nav-links .reserve-item { display: none; } /* shown only inside the mobile dropdown */

/* Tablet + mobile: links collapse into a dropdown panel under the header.
   Set above 1024 so tablet-landscape uses the menu instead of cramping the
   full nav (which otherwise wraps "The Experience" onto two lines). */
@media (max-width: 1080px) {
  .nav { position: relative; flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    flex: none; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #101012; box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid var(--line-soft); padding: 6px 0; margin: 0;
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height 0.38s cubic-bezier(0.16, 0.8, 0.24, 1), opacity 0.3s ease;
  }
  .nav-links a { display: block; width: 100%; padding: 15px 40px; font-size: 0.82rem; }
  .nav.open .nav-links { max-height: 80vh; opacity: 1; pointer-events: auto; }
  /* Reserve stays in reach inside the menu, emphasized */
  .nav-links .reserve-item { display: block; margin-top: 4px; border-top: 1px solid var(--line-soft); }
  .nav-links .reserve-item a { color: var(--gold-soft); font-weight: 600; letter-spacing: 0.08em; }
}
@media (max-width: 420px) {
  .nav { padding-left: 22px; padding-right: 22px; }
  .nav-cta { display: none; } /* the top-bar CTA gives way to the in-menu Reserve link */
}
.nav-cta {
  font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--gold);
  color: var(--gold-soft); padding: 11px 22px; text-decoration: none; font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--brand-ink); }

.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold-dim);
  background: transparent; color: var(--gold-soft); display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: border-color 0.25s ease, background 0.25s ease;
}
.theme-toggle:hover { border-color: var(--gold); background: rgba(198,154,84,0.1); }
.theme-toggle svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* ---------- Page header banner (used on every page except Home) ---------- */
.page-banner { background: var(--brand-bg); color: var(--brand-ivory); padding: 80px 24px 64px; text-align: center; }
.page-banner .eyebrow { display: block; margin-bottom: 18px; }
.page-banner h1 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 420; }
.page-banner h1 em { font-style: italic; color: var(--teal); font-weight: 400; }
.page-banner p { color: var(--brand-muted); max-width: 520px; margin: 18px auto 0; font-size: 1rem; }

/* ---------- Hero (Home page only, always brand-dark) ---------- */
.hero { position: relative; background: var(--brand-bg); color: var(--brand-ivory); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 10%, rgba(198,154,84,0.1), transparent 60%),
    radial-gradient(ellipse 60% 50% at 95% 95%, rgba(99,183,171,0.07), transparent 60%);
  pointer-events: none; z-index: 1;
}
.hero-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; position: relative; z-index: 2; min-height: 640px; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; min-height: 0; } }
.hero-copy { padding: 90px 48px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 600px) { .hero-copy { padding: 64px 24px 40px; } }
.hero .eyebrow { display: block; margin-bottom: 26px; }
.hero h1 { font-size: clamp(2.3rem, 4.2vw, 3.5rem); line-height: 1.12; font-weight: 400; }
.hero .script { display: block; font-style: italic; color: var(--teal); font-weight: 400; font-size: 0.55em; margin: 14px 0 4px; }
.hero .tagline { color: var(--brand-muted); font-size: 1.02rem; margin: 22px 0 36px; max-width: 420px; }
.hero-checks { list-style: none; margin: 0 0 42px; padding: 0; display: grid; gap: 15px; }
.hero-checks li { display: flex; align-items: center; gap: 13px; font-size: 0.9rem; color: var(--brand-ivory); letter-spacing: 0.01em; }
.check-dot { width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--gold-dim); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-dot svg { width: 9px; height: 9px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--gold); color: var(--brand-ink); text-decoration: none; padding: 17px 36px;
  font-size: 0.82rem; letter-spacing: 0.09em; text-transform: uppercase; font-weight: 600;
  transition: background 0.3s ease, letter-spacing 0.3s ease; display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-soft); letter-spacing: 0.12em; }
.btn-text {
  color: var(--brand-ivory); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding-bottom: 4px; border-bottom: 1px solid var(--gold-dim);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.btn-text:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn-text.on-light { color: var(--teal-deep); border-color: var(--teal-deep); }

.hero-photo { position: relative; min-height: 420px; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; position: absolute; inset: 0; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,14,15,0.55) 0%, rgba(14,14,15,0.05) 20%, transparent 45%);
}
@media (max-width: 900px) { .hero-photo { min-height: 460px; } .hero-photo::after { background: linear-gradient(180deg, rgba(14,14,15,0.5) 0%, transparent 30%); } }

/* ---------- Section heading pattern ---------- */
.section-head { text-align: center; max-width: 560px; margin: 0 auto 60px; padding: 0 24px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 420; }
.section-head h2 em { font-style: italic; color: var(--teal-accent); font-weight: 400; }

/* ---------- Pain points (Home) ---------- */
.pain { padding: 100px 24px 84px; background: var(--page-bg); }
.pain-row { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
@media (max-width: 820px) { .pain-row { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }
.pain-item { text-align: center; padding: 0 16px; font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.01em; border-left: 1px solid var(--line-soft); }
.pain-row .pain-item:first-child { border-left: none; }
@media (max-width: 820px) { .pain-item { border-left: none; } }
.pain-icon { width: 50px; height: 50px; margin: 0 auto 18px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-dim); }

/* ---------- Why choose (Home + About) ---------- */
.why { background: var(--section-alt); padding: 100px 24px; }
.why-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; text-align: center; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-item { font-size: 0.79rem; color: var(--text-muted); line-height: 1.45; letter-spacing: 0.01em; }
.why-icon { width: 44px; height: 44px; margin: 0 auto 16px; color: var(--gold-dim); }

/* ---------- Experience gallery ---------- */
.experience { padding: 100px 24px; background: var(--page-bg); }
.exp-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 780px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-frame { position: relative; aspect-ratio: 4/3.4; background: linear-gradient(160deg, #201F1D, #221F1B); overflow: hidden; }
.exp-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.exp-caption { max-width: 700px; margin: 40px auto 0; text-align: center; font-size: 0.9rem; color: var(--text-muted); padding: 0 24px; }

/* ---------- Sew-in comparison (Home teaser + full Services page) ---------- */
.compare { padding: 100px 24px 120px; background: var(--page-bg); }
.compare-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; text-align: left; }
@media (max-width: 800px) { .compare-grid { grid-template-columns: 1fr; } }
.plan { padding: 48px 42px; display: flex; flex-direction: column; position: relative; border-left: 3px solid var(--teal-accent); }
.plan.dark-card { background: var(--brand-ink); color: var(--brand-ivory); }
.plan.light-card { background: var(--section-alt); color: var(--text-main); }
.plan-mark { width: 30px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.plan h3 { font-size: 1.15rem; letter-spacing: 0.06em; margin-bottom: 16px; text-transform: uppercase; font-weight: 500; }
.plan p.desc { font-size: 0.9rem; opacity: 0.78; margin: 0 0 28px; max-width: 340px; }
.plan .best-for { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.plan ul { list-style: none; margin: 0 0 34px; padding: 0; display: grid; gap: 12px; flex-grow: 1; }
.plan li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; }
.plan .btn-primary { text-align: center; align-self: flex-start; }
.plan.light-card .btn-primary { background: var(--teal-deep); color: var(--brand-ivory); }
.plan.light-card .btn-primary:hover { background: var(--teal); }
.plan.light-card .check-dot { border-color: var(--teal-deep); }

/* ---------- Service tier cards (Services page) ---------- */
.tiers { padding: 20px 24px 110px; background: var(--page-bg); }
.tier-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 800px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card { background: var(--section-alt); padding: 40px; border: 1px solid var(--line-soft); }
.tier-card h3 { font-size: 1.05rem; letter-spacing: 0.03em; margin-bottom: 12px; }
.tier-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.tier-lead { max-width: 640px; margin: -8px auto 32px; text-align: center; font-size: 0.95rem; color: var(--text-muted); padding: 0 24px; }
.tier-note { max-width: 700px; margin: 46px auto 0; text-align: center; font-size: 0.85rem; color: var(--text-muted); padding: 0 24px; }

/* ---------- Gallery page wrapper (light section holding the frames) ---------- */
.gallery-wrap { padding: 20px 24px 110px; background: var(--page-bg); }
.gallery-note { max-width: 640px; margin: 44px auto 0; text-align: center; font-size: 0.85rem; color: var(--text-muted); padding: 0 24px; }

/* ---------- Transformations gallery (always brand-dark) ---------- */
.transformations { background: var(--brand-bg); padding: 100px 24px; }
.transformations .section-head h2 { color: var(--brand-ivory); }
.transformations .section-head h2 em { color: var(--teal); }
.trans-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 780px) { .trans-grid { grid-template-columns: repeat(2, 1fr); } }
.trans-frame { position: relative; aspect-ratio: 3/4; background: linear-gradient(160deg, #201F1D, #121110); }
.trans-frame span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-style: italic; color: #5C5850; font-size: 0.76rem; text-align: center; padding: 0 12px; }

/* ==========================================================================
   Content-ready placeholder structures
   These three sections (About bio, Reviews, Gallery) are waiting on Danielle's
   real words and photos. The structure below is built so real content is a
   clean drop-in, not a redesign:
     - Gallery/Experience: replace a frame's <span class="ph-slot">…</span> with
       <img src="…" alt="…"> and the photo fills the frame automatically.
     - Reviews: replace the quote text and name; the card design stays.
     - About: replace the bracketed prompt lines with Danielle's paragraphs.
   ========================================================================== */

/* Photos fill their frame edge-to-edge on drop-in */
.trans-frame img, .exp-frame img, .bio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Empty photo slot — reads as an intentional "photo goes here", not a blank box */
.ph-slot { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 18px; text-align: center; }
.ph-slot::before { content: ""; position: absolute; inset: 16px; border: 1px dashed rgba(198, 154, 84, 0.32); transition: inset 0.6s var(--ease-out, ease), border-color 0.6s ease; }
.trans-frame:hover .ph-slot::before { inset: 12px; border-color: rgba(228, 201, 141, 0.5); }
.ph-slot .ph-icon { width: 30px; height: 30px; stroke: var(--gold-dim); fill: none; stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round; opacity: 0.85; position: relative; }
.ph-slot em { font-family: 'Fraunces', serif; font-style: italic; color: #706B61; font-size: 0.8rem; letter-spacing: 0.02em; position: relative; }

/* Thin gold corner marks for a framed portrait (editorial) */
.corner-frame::before, .corner-frame::after { content: ""; position: absolute; width: 20px; height: 20px; z-index: 2; pointer-events: none; }
.corner-frame::before { top: 14px; left: 14px; border-top: 1px solid var(--gold-soft); border-left: 1px solid var(--gold-soft); }
.corner-frame::after { bottom: 14px; right: 14px; border-bottom: 1px solid var(--gold-soft); border-right: 1px solid var(--gold-soft); }

/* Small "this is still a placeholder" chip */
.draft-tag { display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-accent); border: 1px solid var(--teal-accent); border-radius: 2px; padding: 4px 10px; margin-bottom: 22px; }

/* ---------- Reviews ---------- */
.reviews-wrap { padding: 20px 24px 110px; background: var(--page-bg); }
.reviews-rating { max-width: var(--max); margin: 0 auto 40px; display: flex; align-items: baseline; justify-content: center; flex-wrap: wrap; gap: 12px; text-align: center; }
.rr-score { font-family: 'Fraunces', serif; font-size: 3rem; line-height: 1; color: var(--text-main); font-weight: 500; }
.rr-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 3px; }
.rr-count { font-size: 0.85rem; letter-spacing: 0.04em; color: var(--text-muted); }
.rr-count a { color: var(--teal-accent); border-bottom: 1px solid currentColor; text-decoration: none; }
.rr-count a:hover { color: var(--gold); }
.review-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; max-width: 560px; } }
.review-card { background: var(--section-alt); padding: 32px 34px 34px; border: 1px solid var(--line-soft); position: relative; display: flex; flex-direction: column; }
.review-quotemark { font-family: 'Fraunces', serif; font-size: 2.6rem; line-height: 0.7; color: var(--teal-accent); height: 0.55em; margin-bottom: 6px; }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-quote { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.02rem; line-height: 1.55; margin: 0 0 18px; color: var(--text-main); flex-grow: 1; }
.review-name { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-dim); padding-top: 14px; border-top: 1px solid var(--line-soft); }
/* Placeholder state — clearly not a real quote yet */
.review-quote.is-placeholder { color: var(--text-muted); }
.review-name.is-placeholder { opacity: 0.7; }
.reviews-note { max-width: 640px; margin: 44px auto 0; text-align: center; font-size: 0.85rem; color: var(--text-muted); padding: 0 24px; }
.reviews-note a { color: var(--teal-accent); border-bottom: 1px solid currentColor; text-decoration: none; }
.reviews-note a:hover { color: var(--gold); }

/* ---------- FAQ accordion ---------- */
.faq-wrap { padding: 20px 24px 110px; background: var(--page-bg); }
.faq-list { max-width: 680px; margin: 0 auto; display: grid; gap: 2px; }
.faq-item { background: var(--section-alt); border: 1px solid var(--line-soft); border-left: 3px solid transparent; transition: border-color 0.3s ease; }
.faq-item[open] { border-left-color: var(--teal-accent); }
.faq-item summary {
  padding: 22px 28px; cursor: pointer; font-family: 'Fraunces', serif; font-size: 1.02rem;
  font-weight: 500; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; font-family: 'Inter', sans-serif; flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 28px 24px; margin: 0; color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ---------- About page bio ---------- */
.bio-wrap { padding: 20px 24px 110px; background: var(--page-bg); }
.bio-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
@media (max-width: 820px) { .bio-grid { grid-template-columns: 1fr; } .bio-copy { max-width: 640px; } }
.bio-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; background: linear-gradient(160deg, #201F1D, #121110); }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.bio-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom: 20px; }
.bio-copy p { font-size: 0.96rem; color: var(--text-muted); margin: 0 0 18px; line-height: 1.75; }
.bio-copy .placeholder-note { font-size: 0.78rem; color: var(--gold-dim); font-style: italic; margin-top: 28px; padding-top: 20px; border-top: 1px dashed var(--line); }

/* ---------- Final CTA (every page, always brand-dark) ---------- */
.final-cta { background: var(--brand-ink); color: var(--brand-ivory); }
.final-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; }
@media (max-width: 820px) { .final-inner { grid-template-columns: 1fr; } }
.final-text { padding: 100px 24px; }
.final-text .eyebrow { display: block; margin-bottom: 20px; }
.final-text h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); line-height: 1.18; margin-bottom: 18px; font-weight: 420; }
.final-text h2 em { font-style: italic; color: var(--teal); font-weight: 400; }
.final-text p { color: var(--brand-muted); font-size: 0.98rem; max-width: 380px; margin: 0 0 36px; }
.final-photo { position: relative; aspect-ratio: 4/5; background: linear-gradient(160deg, #201F1D, #0F0E0D); overflow: hidden; }
.final-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }

/* ---------- Footer (every page) ---------- */
footer { background: var(--page-bg); padding: 76px 24px 40px; border-top: 1px solid var(--line-soft); }
.foot-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; }
@media (max-width: 700px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.foot-brand .mono { border-color: var(--gold-dim); }
.foot-word { font-family: 'Fraunces', serif; font-style: italic; color: var(--teal-deep); font-size: 1.05rem; }
[data-theme="dark"] .foot-word { color: var(--teal); }
.foot-blurb { color: var(--text-muted); font-size: 0.85rem; max-width: 340px; margin-bottom: 22px; }
.foot-social { display: flex; gap: 14px; }
.foot-social a { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--gold-dim); transition: border-color 0.25s ease, color 0.25s ease; }
.foot-social a:hover { border-color: var(--gold); color: var(--gold); }
.foot-social a svg { width: 16px; height: 16px; }
.foot-contact { font-size: 0.87rem; color: var(--text-muted); display: grid; gap: 14px; }
.foot-contact .lbl { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dim); display: block; margin-bottom: 4px; }
.foot-bottom { max-width: var(--max); margin: 52px auto 0; padding-top: 28px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.77rem; color: var(--text-muted); }
.foot-nav { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.foot-nav a { text-decoration: none; color: var(--text-muted); transition: color 0.25s ease; }
.foot-nav a:hover { color: var(--gold-dim); }

/* ---------- Bracketed "to be decided" values (visible, easy to spot) ---------- */
.tbd { color: var(--gold-dim); font-style: italic; font-weight: 500; white-space: nowrap; }
[data-theme="dark"] .tbd { color: var(--gold-soft); }

/* ---------- Policies page ---------- */
.policy-wrap { padding: 20px 24px 110px; background: var(--page-bg); }
.policy-intro { max-width: 720px; margin: 0 auto 46px; text-align: center; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.policy-list { max-width: 680px; margin: 0 auto; display: grid; gap: 18px; }
.policy-item { background: var(--section-alt); border: 1px solid var(--line-soft); border-left: 3px solid var(--teal-accent); padding: 28px 32px; }
.policy-item h2 { font-size: 1.12rem; letter-spacing: 0.01em; margin-bottom: 12px; }
.policy-item p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.72; margin: 0 0 12px; }
.policy-item p:last-child { margin-bottom: 0; }
.policy-note { max-width: 780px; margin: 40px auto 0; text-align: center; font-size: 0.85rem; color: var(--text-muted); padding: 0 24px; }

/* ---------- Referral page ---------- */
.referral-wrap { padding: 20px 24px 110px; background: var(--page-bg); }
.referral-lead { max-width: 640px; margin: 0 auto 46px; text-align: center; color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.referral-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .referral-grid { grid-template-columns: 1fr; max-width: 520px; } }
.referral-card { background: var(--section-alt); border: 1px solid var(--line-soft); border-left: 3px solid var(--teal-accent); padding: 40px; }
.referral-card .eyebrow { display: block; margin-bottom: 14px; color: var(--teal-accent); }
.referral-card h2 { font-size: 1.15rem; margin-bottom: 14px; }
.referral-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.referral-close { max-width: 640px; margin: 44px auto 0; text-align: center; font-family: 'Fraunces', serif; font-style: italic; font-size: 1.1rem; color: var(--text-main); }

/* ---------- Waitlist + Contact forms (shared) ---------- */
.waitlist-wrap, .contact-wrap { padding: 20px 24px 110px; background: var(--page-bg); }
.waitlist-lead, .contact-lead { max-width: 620px; margin: 0 auto 40px; text-align: center; color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.waitlist-card, .contact-card { max-width: 620px; margin: 0 auto; background: var(--section-alt); border: 1px solid var(--line-soft); padding: 44px 42px; }
.wl-field { margin-bottom: 18px; }
.wl-field label { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 8px; }
.wl-field input, .wl-field select, .wl-field textarea {
  width: 100%; padding: 13px 14px; background: var(--page-bg); border: 1px solid var(--line);
  color: var(--text-main); font-family: 'Inter', sans-serif; font-size: 0.92rem;
  border-radius: 0; transition: border-color 0.25s ease;
}
.wl-field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.wl-field input:focus, .wl-field select:focus, .wl-field textarea:focus { outline: none; border-color: var(--gold); }
.waitlist-card .btn-primary, .contact-card .btn-primary { width: 100%; text-align: center; margin-top: 6px; border: none; cursor: pointer; }
.wl-confirm { display: none; text-align: center; padding: 8px 0; }
.wl-confirm.show { display: block; }
.wl-confirm .mono { margin: 0 auto 20px; border-color: var(--gold); }
.wl-confirm p { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.15rem; color: var(--text-main); line-height: 1.5; margin: 0; }
.wl-privacy { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 16px 0 0; font-size: 0.76rem; color: var(--text-muted); text-align: center; line-height: 1.4; }
.wl-privacy svg { width: 14px; height: 14px; stroke: var(--teal-accent); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.waitlist-note, .contact-note { max-width: 620px; margin: 30px auto 0; text-align: center; font-size: 0.82rem; color: var(--text-muted); padding: 0 8px; }
