/* ============================================================
   Centered Body Wellness — global stylesheet
   Design thesis: the brand logo is a sun cresting a horizon,
   so the site enacts a sunrise. The homepage opens in a
   pre-dawn aubergine sky with breathing gold rays, dawns
   through a warm strip, and the body of every page is the
   full-daylight cream of the logo's ground.
   Display: Fraunces (variable, optical sizing). Text/UI: Inter.
   Motion (marquee, blur-fade reveals, shimmer CTA) is ported
   from Magic UI patterns into vanilla CSS/JS, and every
   animation is disabled under prefers-reduced-motion.
   ============================================================ */

:root {
  --night: #171020;         /* pre-dawn sky */
  --ink: #241B2F;           /* aubergine ink */
  --ink-deep: #1B1424;      /* footer / dark bands */
  --ink-soft: #5A5163;
  --bone: #F6F1E7;          /* daylight paper — the logo's ground */
  --bone-deep: #EFE7D7;
  --panel: #FCF9F1;
  --gold: #C9A227;          /* brand ray gold */
  --gold-deep: #94741F;     /* text-safe gold */
  --gold-pale: #EADFC0;
  --dawn: #E7B54A;          /* horizon glow */
  --violet: #6C4BC4;        /* dusk accent — sky gradients + focus only */
  --line: #E3D9C3;
  --line-dark: rgba(246,241,231,.16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-lg: 0 24px 60px rgba(23,16,32,.24);
  --ease-out: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
::selection { background: var(--gold-pale); }

:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 430;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -.015em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.7rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: 1.35rem; font-weight: 520; }
em, .accent-italic { font-style: italic; }
h1 em, h2 em { color: var(--gold-deep); font-weight: 380; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 800px; }

section { padding: 92px 0; }
section.tight { padding: 48px 0; }

/* Section heads: a horizon rule — hairline broken by a small rising ray tick */
.eyebrow {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase; color: var(--gold-deep);
  display: block; margin-bottom: 16px;
}
.rule-head {
  display: flex; align-items: baseline; gap: 18px;
  position: relative;
  border-top: 1px solid var(--line); padding-top: 20px; margin-bottom: 44px;
}
.rule-head::before {
  content: ""; position: absolute; top: -6px; left: 0;
  width: 11px; height: 11px;
  background:
    linear-gradient(var(--gold), var(--gold)) 50% 0 / 1.5px 11px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0 100% / 11px 1.5px no-repeat;
}
.rule-head .eyebrow { margin-bottom: 0; white-space: nowrap; }
.rule-head .sec-num { display: none; } /* decorative numbering retired */
.gold-rule { width: 56px; height: 2px; background: var(--gold); border: none; margin: 20px 0 26px; }
.center { text-align: center; }
.center .gold-rule { margin-left: auto; margin-right: auto; }
.lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 44em; line-height: 1.75; }
.center .lead { margin: 0 auto; }
p + p { margin-top: 1em; }
.mt { margin-top: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 15px 30px; border-radius: 3px;
  font-family: var(--sans); font-weight: 600; font-size: .8rem;
  letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: background .18s var(--ease-out), color .18s var(--ease-out), transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
  text-decoration: none !important;
}
.btn-primary { background: var(--ink); color: var(--bone); }
.btn-primary:hover { background: var(--night); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(23,16,32,.22); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bone); }
.btn-ghost { background: transparent; color: var(--bone); border: 1px solid rgba(246,241,231,.4); }
.btn-ghost:hover { border-color: var(--dawn); color: var(--dawn); }
.btn-light { background: var(--bone); color: var(--ink); }
.btn-light:hover { background: var(--panel); }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }
.btn-sm { padding: 10px 18px; font-size: .74rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Gold CTA with a slow shimmer sweep (ported from Magic UI shimmer-button) */
.btn-gold {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #B8942A, #96771F);
  color: #FFFDF6;
}
.btn-gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,244,210,.5) 50%, transparent 70%);
  transform: translateX(-110%);
  animation: cbw-shimmer 4.5s var(--ease-out) infinite;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(148,116,31,.35); }
@keyframes cbw-shimmer {
  0%, 55% { transform: translateX(-110%); }
  85%, 100% { transform: translateX(110%); }
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,241,231,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; max-width: 1280px; margin: 0 auto; gap: 18px; }

.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none !important; }
.logo-img { height: 62px; width: auto; }
.logo-css { display: flex; flex-direction: column; align-items: center; line-height: 1.05; }
.logo-css .sunburst { height: 18px; margin-bottom: 4px; }
.logo-css .word-main { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; letter-spacing: .12em; color: var(--ink); }
.logo-css .word-sub { font-size: .55rem; font-weight: 600; letter-spacing: .46em; color: var(--gold-deep); text-transform: uppercase; margin-top: 2px; }
.logo-css .word-rule { width: 100%; height: 1px; background: var(--gold); margin-top: 5px; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  color: var(--ink); font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; padding: 4px 0; border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { border-bottom-color: var(--gold); }
.nav-cta {
  background: var(--ink); color: var(--bone) !important; padding: 11px 20px;
  border-radius: 3px; border-bottom: none !important; font-weight: 600;
  transition: background .18s ease;
}
.nav-cta:hover { background: var(--night); }

.cart-button { position: relative; background: none; border: none; cursor: pointer; padding: 6px; display: flex; align-items: center; color: var(--ink); }
.cart-count {
  position: absolute; top: -4px; right: -6px; background: var(--gold-deep); color: #fff;
  font-size: .68rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.cart-count[data-empty="true"] { display: none; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 6px 0; }

@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bone); flex-direction: column; align-items: flex-start;
    padding: 20px 26px 26px; gap: 16px; border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
}

/* ============================================================
   SIGNATURE — the dawn hero
   Pre-dawn aubergine sky, faint stars, a half-risen sun of
   breathing gold rays on the horizon. The section's bottom
   edge is the horizon; the page dawns from here.
   ============================================================ */
.hero-dawn {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 120% 70% at 50% 115%, rgba(108,75,196,.28), transparent 60%),
    /* faint stars: tiny radial dots, denser toward the top of the sky */
    radial-gradient(1px 1px at 12% 18%, rgba(246,241,231,.5), transparent 100%),
    radial-gradient(1px 1px at 78% 12%, rgba(246,241,231,.45), transparent 100%),
    radial-gradient(1.5px 1.5px at 88% 34%, rgba(246,241,231,.32), transparent 100%),
    radial-gradient(1px 1px at 33% 8%, rgba(246,241,231,.4), transparent 100%),
    radial-gradient(1px 1px at 62% 24%, rgba(246,241,231,.3), transparent 100%),
    radial-gradient(1.5px 1.5px at 8% 42%, rgba(246,241,231,.22), transparent 100%),
    radial-gradient(1px 1px at 47% 15%, rgba(246,241,231,.35), transparent 100%),
    radial-gradient(1px 1px at 93% 6%, rgba(246,241,231,.4), transparent 100%),
    var(--night);
  color: var(--bone);
  padding: 96px 0 120px;
}
.hero-sun { position: absolute; inset: auto 0 0 0; pointer-events: none; }
.hero-sun svg { display: block; width: 100%; height: auto; max-height: 78%; margin: 0 auto; }
.hero-sun .ray {
  transform-origin: 720px 548px;
  animation: cbw-ray-breathe 16s ease-in-out infinite;
  opacity: .55;
}
.hero-sun .rays-far .ray { opacity: .3; animation-duration: 22s; }
.hero-sun .ray:nth-child(2n) { animation-delay: -4s; }
.hero-sun .ray:nth-child(3n) { animation-delay: -8s; }
.hero-sun .ray:nth-child(5n) { animation-delay: -12s; }
@keyframes cbw-ray-breathe {
  0%, 100% { opacity: .3; transform: scale(.96); }
  50%      { opacity: .9; transform: scale(1); }
}

.hero-inner { position: relative; z-index: 2; max-width: 880px; }
.hero-kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: .72rem; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  color: var(--dawn); margin-bottom: 28px;
}
.hero-kicker::before { content: ""; width: 44px; height: 1px; background: var(--gold); }
.hero-title { color: var(--bone); max-width: 12em; text-wrap: balance; }
.hero-title em { color: var(--dawn); }
.hero-copy { margin-top: 28px; font-size: 1.13rem; color: rgba(246,241,231,.78); max-width: 36em; line-height: 1.75; }
.hero-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-smallprint { margin-top: 30px; font-size: .8rem; color: rgba(246,241,231,.5); }
.hero-cred {
  margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(246,241,231,.16);
  display: flex; gap: 40px; flex-wrap: wrap;
}
.hero-cred div { font-size: .78rem; color: rgba(246,241,231,.6); line-height: 1.5; }
.hero-cred strong { display: block; font-family: var(--serif); font-style: italic; font-weight: 440; font-size: 1.02rem; color: var(--bone); letter-spacing: 0; }
@media (max-width: 720px) {
  .hero-dawn { padding: 72px 0 150px; }
  .hero-sun svg { width: 160%; margin-left: -30%; }
}

/* ---------- Dawn strip: quiet marquee (ported from Magic UI marquee) ---------- */
.dawn-strip {
  background: linear-gradient(180deg, #2B1F33 0%, #57432E 34%, #B08A3A 68%, var(--bone-deep) 100%);
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--line);
}
.dawn-strip-label {
  display: block; text-align: center;
  font-size: .68rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(246,241,231,.75); margin-bottom: 14px;
}
.marquee { display: flex; overflow: hidden; gap: 3rem; user-select: none; }
.marquee-track {
  display: flex; align-items: center; gap: 3rem; flex-shrink: 0; min-width: 100%;
  justify-content: space-around;
  animation: cbw-marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-weight: 420;
  font-size: 1.18rem; color: #FBF6EA; white-space: nowrap;
  text-shadow: 0 1px 2px rgba(23,16,32,.25);
}
.marquee-track i { font-style: normal; color: rgba(251,246,234,.75); font-size: .8rem; }
@keyframes cbw-marquee { to { transform: translateX(calc(-100% - 3rem)); } }

/* ---------- Page hero (interior pages): daylight with a horizon tick ---------- */
.page-hero {
  background: var(--bone);
  background-image: radial-gradient(ellipse 90% 130% at 50% -55%, rgba(231,181,74,.2), transparent 62%);
  padding: 70px 0 58px; border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero::after {
  content: ""; position: absolute; left: 50%; bottom: -1px; transform: translateX(-50%);
  width: 74px; height: 3px; background: var(--gold);
}
.page-hero h1 { max-width: 14em; text-wrap: balance; }
.page-hero .lead { margin-top: 18px; }
.page-hero .eyebrow { margin-bottom: 18px; }

/* ---------- Bands ---------- */
.band { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-deep { background: var(--bone-deep); }
.band-gradient { background: var(--bone-deep); border-top: 1px solid var(--line); }
.band-ink {
  background: var(--night); color: #D8D0C3;
  background-image:
    radial-gradient(ellipse 110% 80% at 50% 118%, rgba(231,181,74,.2), transparent 58%),
    radial-gradient(ellipse at 80% 0%, rgba(108,75,196,.25), transparent 55%);
}
.band-ink h2, .band-ink h3 { color: var(--bone); }
.band-ink h2 em { color: var(--dawn); }
.band-ink .lead { color: rgba(216,208,195,.85); }
.band-ink a { color: var(--dawn); }

/* ---------- Grids / cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel); border: 1px solid var(--line);
  padding: 34px 30px; position: relative;
  transition: border-color .2s ease, box-shadow .25s var(--ease-out);
}
.card:hover { border-color: var(--gold-pale); box-shadow: 0 14px 34px rgba(23,16,32,.08); }
.card h3 { margin-bottom: 12px; }

/* ---------- Modality ledger ---------- */
.ledger { border-top: 1px solid var(--ink); }
.ledger-row {
  display: grid; grid-template-columns: 90px minmax(0,4fr) minmax(0,7fr);
  gap: 30px; padding: 38px 0; border-bottom: 1px solid var(--line);
  align-items: baseline; position: relative;
  transition: background .25s ease;
}
.ledger-row::before {
  content: ""; position: absolute; left: -24px; top: 38px; bottom: 38px; width: 2px;
  background: var(--gold); transform: scaleY(0); transform-origin: top;
  transition: transform .3s var(--ease-out);
}
.ledger-row:hover::before { transform: scaleY(1); }
.ledger-num { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--gold-deep); }
.ledger-row h3 { font-size: 1.7rem; font-weight: 440; }
.ledger-row h3 small { display: block; font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }
.ledger-row p { color: var(--ink-soft); font-size: .98rem; }
.ledger-row .ledger-price { font-family: var(--serif); font-style: italic; color: var(--ink); margin-top: 10px; font-size: 1rem; }
@media (max-width: 860px) {
  .ledger-row { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .ledger-row::before { display: none; }
}

/* ---------- Format split ---------- */
.format-split { display: grid; grid-template-columns: minmax(0,7fr) minmax(0,5fr); gap: 28px; align-items: stretch; }
@media (max-width: 900px) { .format-split { grid-template-columns: 1fr; } }
.feature-panel {
  background: var(--night); color: #D8D0C3; padding: 46px 42px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 22px;
  background-image: radial-gradient(ellipse 100% 90% at 50% 120%, rgba(231,181,74,.22), transparent 60%);
}
.feature-panel h3 { color: var(--bone); font-size: 1.8rem; }
.feature-panel p { font-size: .98rem; }
.panel-stack { display: flex; flex-direction: column; gap: 28px; }
.panel-stack .card { flex: 1; }
.price-tag { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: .95rem; }
.feature-panel .price-tag { color: var(--dawn); }

/* ---------- Steps (a true sequence — numbering stays) ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--ink); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 28px 34px 0; border-bottom: 1px solid var(--line); margin-right: 36px; }
.step:last-child { margin-right: 0; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-family: var(--serif); font-style: italic;
  color: var(--gold-deep); font-size: 1.3rem; margin-bottom: 12px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.quote-wall { display: grid; grid-template-columns: repeat(12, 1fr); gap: 28px; }
.pullquote { position: relative; padding: 8px 0 0 40px; }
.pullquote::before {
  content: "\201C"; position: absolute; left: 0; top: -14px;
  font-family: var(--serif); font-size: 4.4rem; line-height: 1; color: var(--gold);
}
.pullquote p { font-family: var(--serif); font-weight: 400; font-size: 1.28rem; line-height: 1.55; color: var(--ink); }
.pullquote cite { display: block; margin-top: 20px; font-style: normal; font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.pullquote cite span { display: block; letter-spacing: .04em; text-transform: none; font-weight: 400; color: var(--ink-soft); margin-top: 3px; }
.quote-a { grid-column: 1 / span 6; }
.quote-b { grid-column: 8 / span 5; margin-top: 84px; }
@media (max-width: 860px) {
  .quote-a, .quote-b { grid-column: 1 / -1; margin-top: 0; }
  .quote-wall { gap: 48px; }
}
.testimonial { border-left: 2px solid var(--gold); padding: 6px 0 6px 26px; color: var(--ink-soft); }
.testimonial cite { display: block; margin-top: 14px; font-style: normal; font-weight: 600; color: var(--ink); font-size: .9rem; }
.testimonial cite span { display: block; font-weight: 400; color: var(--gold-deep); font-size: .8rem; }

/* ---------- Service catalog ---------- */
.service-card {
  background: var(--panel); border: 1px solid var(--line);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .2s ease, box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
}
.service-card:hover { border-color: var(--gold-pale); box-shadow: 0 18px 44px rgba(23,16,32,.1); transform: translateY(-2px); }
.service-card .service-head { padding: 28px 30px 22px; border-bottom: 1px solid var(--line); border-top: 3px solid var(--gold); }
.service-card .service-head h3 { font-size: 1.55rem; font-weight: 440; }
.service-card .service-head .tagline { font-size: .9rem; color: var(--ink-soft); margin-top: 8px; font-style: italic; font-family: var(--serif); }
.service-body { padding: 26px 30px 30px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.service-desc { font-size: .93rem; color: var(--ink-soft); }
.price-line { font-family: var(--serif); font-size: 1.9rem; font-weight: 440; }
.price-line .from { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-right: 8px; }
.opt-group label.opt-label, .opt-group .opt-label { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.opt-group select {
  width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 3px;
  font-family: var(--sans); font-size: .95rem; background: var(--panel); color: var(--ink);
}
.delivery-options { display: flex; flex-direction: column; gap: 8px; }
.delivery-options .radio-row {
  display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 3px; cursor: pointer; font-size: .92rem;
  transition: border-color .15s ease, background .15s ease;
}
.delivery-options .radio-row:has(input:checked) { border-color: var(--gold-deep); background: rgba(201,162,39,.08); }
.delivery-options input { margin-top: 4px; accent-color: var(--gold-deep); }
.local-note { font-size: .78rem; color: var(--gold-deep); display: block; font-weight: 600; }
.service-total { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 16px; }
.service-total .amount { font-family: var(--serif); font-size: 1.4rem; font-weight: 520; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(23,16,32,.55); z-index: 80;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 100vw); z-index: 90;
  background: var(--panel); box-shadow: var(--shadow-lg); transform: translateX(105%);
  transition: transform .28s var(--ease-out); display: flex; flex-direction: column;
  border-left: 1px solid var(--line);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.cart-drawer-head h3 { font-size: 1.3rem; }
.cart-close { background: none; border: none; font-size: 1.6rem; cursor: pointer; line-height: 1; color: var(--ink-soft); }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 26px; }
.cart-empty { color: var(--ink-soft); text-align: center; padding: 40px 0; font-style: italic; font-family: var(--serif); }
.cart-item { display: flex; justify-content: space-between; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item-name { font-weight: 600; font-size: .95rem; }
.cart-item-meta { font-size: .8rem; color: var(--ink-soft); }
.cart-item-price { font-weight: 600; white-space: nowrap; font-family: var(--serif); }
.cart-qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-qty button { width: 24px; height: 24px; border-radius: 3px; border: 1px solid var(--line); background: var(--panel); cursor: pointer; }
.cart-remove { background: none; border: none; color: #A0403C; font-size: .78rem; cursor: pointer; padding: 0; margin-top: 6px; text-decoration: underline; }
.cart-foot { padding: 22px 26px; border-top: 1px solid var(--line); background: var(--bone); }
.cart-subtotal { display: flex; justify-content: space-between; font-weight: 520; font-size: 1.15rem; margin-bottom: 12px; font-family: var(--serif); }
.cart-local-confirm { display: none; gap: 10px; font-size: .84rem; margin-bottom: 14px; align-items: flex-start; }
.cart-local-confirm.show { display: flex; }
.cart-local-confirm input { margin-top: 3px; accent-color: var(--gold-deep); }
.cart-error { color: #A0403C; font-size: .84rem; margin-bottom: 10px; display: none; }
.cart-note { font-size: .78rem; color: var(--ink-soft); margin-top: 10px; }

/* ---------- Forms ---------- */
.form-card { background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--gold); padding: 40px 38px; }
.form-card h2 { margin-bottom: 6px; font-size: 1.9rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 30px 22px; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  padding: 13px 14px; border: 1px solid var(--line); border-radius: 3px;
  font-family: var(--sans); font-size: .96rem; background: var(--panel); color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--violet); outline-offset: 1px; border-color: var(--violet); }
.field textarea { min-height: 130px; resize: vertical; }
.check-row { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; }
.check-row input { margin-top: 4px; accent-color: var(--gold-deep); width: auto; }
.form-status { margin-top: 16px; font-size: .92rem; display: none; padding: 12px 14px; border-radius: 3px; }
.form-status.ok { display: block; background: #EAF3EA; color: #23623A; }
.form-status.err { display: block; background: #F7ECEA; color: #A0403C; }
.form-done-badge { display: none; align-items: center; gap: 8px; color: #23623A; font-weight: 600; font-size: .95rem; font-family: var(--sans); }
.form-done-badge.show { display: inline-flex; }
fieldset { border: none; }
.consent-text {
  background: var(--bone); border: 1px solid var(--line);
  padding: 26px 28px; font-size: .9rem; color: var(--ink-soft);
  max-height: 380px; overflow-y: auto; line-height: 1.65;
}
.consent-text h3 { font-size: 1.05rem; letter-spacing: .1em; text-transform: uppercase; font-family: var(--sans); font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.consent-text ol { padding-left: 22px; margin-top: 8px; }
.consent-text ol li { margin-bottom: 12px; }
.consent-text ul { padding-left: 20px; margin-top: 8px; }
.consent-text li { margin-bottom: 6px; }
.consent-text .consent-practitioner { margin-top: 16px; font-weight: 600; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); background: transparent; }
.faq-item:first-of-type { border-top: 1px solid var(--ink); }
.faq-item summary {
  cursor: pointer; padding: 22px 6px; font-weight: 440; font-family: var(--serif);
  font-size: 1.18rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold-deep); font-size: 1.5rem; font-family: var(--serif); flex-shrink: 0; transition: transform .2s var(--ease-out); }
.faq-item[open] summary::after { content: "+"; transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 6px 24px; color: var(--ink-soft); max-width: 60em; }

/* ---------- Tables ---------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--panel); border: 1px solid var(--line); }
.price-table th, .price-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
.price-table th { background: var(--ink); color: var(--bone); font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.price-table td.num { font-weight: 600; white-space: nowrap; font-family: var(--serif); }

/* ---------- Callouts ---------- */
.callout {
  border-left: 2px solid var(--gold); background: var(--panel);
  border-top: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 20px 24px; font-size: .95rem; color: var(--ink-soft);
}
.callout strong { color: var(--ink); }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0,5fr) minmax(0,7fr); gap: 64px; align-items: start; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 44px; } }
.portrait-frame {
  position: relative; border-radius: 300px 300px 4px 4px; overflow: hidden;
  border: 1px solid var(--line); background: var(--bone-deep);
  aspect-ratio: 4 / 5; max-width: 400px;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.portrait-frame .portrait-fallback { position: absolute; inset: 0; display: none; }
.portrait-frame.no-photo img { display: none; }
.portrait-frame.no-photo .portrait-fallback { display: block; }
.portrait-caption { margin-top: 16px; font-size: .8rem; color: var(--ink-soft); max-width: 400px; }
.portrait-caption strong { display: block; font-family: var(--serif); font-style: italic; font-weight: 440; font-size: 1.05rem; color: var(--ink); }

.bio-quote { position: relative; padding-left: 42px; margin: 34px 0; }
.bio-quote::before {
  content: "\201C"; position: absolute; left: 0; top: -16px;
  font-family: var(--serif); font-size: 4.6rem; line-height: 1; color: var(--gold);
}
.bio-quote p { font-family: var(--serif); font-weight: 400; font-size: 1.32rem; line-height: 1.6; color: var(--ink); }
.bio-quote cite { display: block; margin-top: 18px; font-style: normal; font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }

.cert-list { border-top: 1px solid var(--ink); }
.cert-item { display: grid; grid-template-columns: 170px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.cert-item .cert-date { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: .98rem; }
.cert-item h4 { font-size: 1.15rem; font-weight: 520; }
.cert-item p { font-size: .88rem; color: var(--ink-soft); margin-top: 4px; }
@media (max-width: 640px) { .cert-item { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- Contact page ---------- */
.contact-rows { border-top: 1px solid var(--ink); }
.contact-row { display: grid; grid-template-columns: 200px 1fr; gap: 26px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.contact-row .contact-label { font-size: .72rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep); }
.contact-row .contact-value { font-family: var(--serif); font-size: 1.5rem; font-weight: 440; }
.contact-row .contact-value a { color: var(--ink); }
.contact-row .contact-value a:hover { color: var(--gold-deep); }
.contact-row p { font-size: .92rem; color: var(--ink-soft); margin-top: 6px; }
@media (max-width: 640px) { .contact-row { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- Footer: night again — the day closes ---------- */
.site-footer {
  background: var(--night); color: #B9B0C2; padding: 70px 0 36px; font-size: .9rem;
  background-image: radial-gradient(ellipse 90% 60% at 50% 130%, rgba(108,75,196,.2), transparent 60%);
}
.footer-grid { display: grid; grid-template-columns: 4fr 2fr 3fr; gap: 48px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.site-footer h4 { color: var(--bone); font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #B9B0C2; }
.site-footer a:hover { color: var(--dawn); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.footer-contact li { margin-bottom: 12px; }
.footer-contact .fc-label { display: block; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: #7E7490; }
.footer-contact a, .footer-contact span.fc-value { color: var(--bone); font-family: var(--serif); font-size: 1.08rem; }
.footer-disclaimer {
  border-top: 1px solid var(--line-dark); margin-top: 48px; padding-top: 26px;
  font-size: .79rem; color: #8A8096; line-height: 1.7;
}
.footer-logo { font-family: var(--serif); font-weight: 520; color: var(--bone); font-size: 1.35rem; letter-spacing: .1em; }
.footer-logo span { display: block; font-family: var(--sans); font-size: .58rem; letter-spacing: .42em; color: var(--gold); font-weight: 600; margin-top: 4px; }

/* ---------- Utility ---------- */
.badge-gold { display: inline-block; background: rgba(201,162,39,.15); color: var(--dawn); font-size: .72rem; font-weight: 600; padding: 4px 12px; letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; }
.band-ink .badge-gold, .feature-panel .badge-gold { color: var(--dawn); }
section .badge-gold { color: var(--gold-deep); }
.feature-panel .badge-gold { color: var(--dawn); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.checklist { list-style: none; }
.checklist li { padding-left: 30px; position: relative; margin-bottom: 10px; }
.checklist li::before { content: "\2726"; color: var(--gold-deep); position: absolute; left: 4px; }

/* ---------- Scroll reveal (ported from Magic UI blur-fade) ---------- */
.reveal {
  opacity: 0; transform: translateY(16px); filter: blur(5px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), filter .7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: none; filter: none; }
html.no-observer .reveal { opacity: 1; transform: none; filter: none; }

/* ---------- Reduced motion: everything settles instantly ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-sun .ray { animation: none; opacity: .75; }
  .btn-gold::after { animation: none; display: none; }
  .marquee-track { animation: none; }
  .marquee { flex-wrap: wrap; justify-content: center; }
  .marquee-track { min-width: 0; flex-wrap: wrap; justify-content: center; }
  .marquee-track[aria-hidden="true"] { display: none; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .card, .service-card, .btn { transition: none; }
}
