/* ============================================
   Awaken The Body — Design tokens
   ============================================ */
:root {
  /* Warm earth palette — OKLCH for perceptual uniformity */
  --cream:          oklch(93.8% 0.019 75);
  --cream-soft:     oklch(90.4% 0.029 75);
  --cream-deep:     oklch(85.3% 0.038 76);
  --paper:          oklch(97.3% 0.012 80);
  --terracotta:     oklch(56.9% 0.131 42);
  --terracotta-deep:oklch(48.8% 0.124 42);
  --terracotta-glow:oklch(69.6% 0.089 51);
  --wood:           oklch(17.5% 0.031 54);
  --wood-soft:      oklch(34.6% 0.041 53);
  --wood-mute:      oklch(53.8% 0.034 54);
  --sage:           oklch(62.3% 0.050 141);
  --sage-deep:      oklch(51.1% 0.066 139);
  --ink:            oklch(11.9% 0.027 53);
  --ink-2:          oklch(14.7% 0.031 54);

  /* Opacity-derived line colors via color-mix */
  --line:           color-mix(in oklch, var(--wood) 14%, transparent);
  --line-soft:      color-mix(in oklch, var(--wood) 8%, transparent);
  --line-strong:    color-mix(in oklch, var(--wood) 22%, transparent);
  --line-dark:      color-mix(in oklch, var(--cream) 12%, transparent);

  /* Typography */
  --serif: "Gloock", "EB Garamond", Georgia, serif;
  --sans:  "Epilogue", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  /* Type scale — fluid headings */
  --text-display: clamp(44px, 5.6vw, 80px);
  --text-h1:      clamp(40px, 4.6vw, 64px);
  --text-h2:      clamp(36px, 4.2vw, 56px);
  --text-h3:      clamp(26px, 2.6vw, 36px);
  --text-h4:      clamp(20px, 1.8vw, 26px);

  /* Layout */
  --max:    1240px;
  --pad:    clamp(20px, 4vw, 56px);
  --gutter: clamp(28px, 5vw, 88px);

  /* Radius */
  --radius:      4px;
  --radius-lg:   12px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  height: 100%;
  overflow: hidden;
}
html {
  background: var(--cream);
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--wood);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
#root {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.scroll-content {
  flex: 1;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h, 72px);
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  color: var(--wood);
  text-wrap: balance;
}
em { font-style: italic; font-weight: inherit; }


.lede {
  font-size: clamp(17px, 1.35vw, 19.5px);
  line-height: 1.65;
  color: var(--wood-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

/* Section label — label-sm + decorative line */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
}
.section-label::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--sage);
}
.section-label.on-dark { color: var(--terracotta-glow); }
.section-label.on-dark::before { background: var(--terracotta-glow); }

.inline-link {
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.inline-link:hover { color: var(--terracotta-deep); }

.dotsep {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
}

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  position: relative;
  z-index: 2;
}
section { position: relative; z-index: 2; }

.section-pad {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.s-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: end;
  margin-bottom: clamp(56px, 6vw, 88px);
}
.s-head h2 {
  font-size: var(--text-h1);
  margin-top: 20px;
  letter-spacing: -0.02em;
  line-height: 1.06;
}
.s-head h2 em { color: var(--terracotta); }
.s-head .lede { margin-left: auto; }
@media (max-width: 860px) {
  .s-head { grid-template-columns: 1fr; gap: 24px; }
  .s-head .lede { margin-left: 0; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 17px 28px; font-size: 15.5px; }
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 1px 0 color-mix(in oklch, var(--terracotta-deep) 40%, transparent) inset,
              0 10px 26px -14px color-mix(in oklch, var(--terracotta-deep) 65%, transparent);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
}
.btn-primary .arrow { transition: transform 0.3s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  color: var(--wood);
  padding-left: 0; padding-right: 0;
  position: relative;
}
.btn-ghost::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 1px;
  background: var(--wood);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.btn-ghost:hover::after { transform: scaleX(0.6); }

.btn-on-dark {
  background: var(--cream);
  color: var(--ink);
}
.btn-on-dark:hover { background: oklch(99% 0.008 80); }

/* ============================================
   Nav
   ============================================ */
.nav {
  position: relative;
  flex-shrink: 0;
  z-index: 50;
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  background: rgba(244, 236, 224, 0.75);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: rgba(46, 32, 23, 0.14);
  background: rgba(244, 236, 224, 0.93);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--wood);
  line-height: 1.1;
}
.brand-mark {
  width: 48px; height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wood-mute);
  margin-top: 3px;
  font-weight: 600;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(80px, 9vw, 128px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--gutter);
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 10px;
  border: 1px solid color-mix(in oklch, var(--sage) 30%, transparent);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--sage-deep);
  background: color-mix(in oklch, var(--sage) 8%, transparent);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--sage) 22%, transparent);
}
.hero h1 {
  font-size: var(--text-display);
  margin-top: 28px;
  margin-bottom: 28px;
  letter-spacing: -0.022em;
  line-height: 1.06;
}
.hero h1 em { color: var(--terracotta); }
.hero .lede { font-size: clamp(17px, 1.35vw, 20px); }
.hero-cta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  color: var(--wood-soft);
  flex-wrap: wrap;
}
.hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--wood-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  overflow: visible;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hero-loc svg { overflow: visible; flex-shrink: 0; }
.hero-loc:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

/* Hero photo */
.hero-visual-wrap {
  position: relative;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 60px 90px -50px color-mix(in oklch, var(--wood) 35%, transparent),
              0 1px 0 color-mix(in oklch, oklch(99% 0 0) 12%, transparent) inset;
}
.hero-visual .photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0% 0 0 / 0) 55%, oklch(0% 0 0 / 0.5) 100%);
}
.hero-floating {
  position: absolute;
  left: 16px; bottom: 32px;
  background: var(--cream);
  border-radius: var(--radius-pill);
  padding: 14px 26px;
  box-shadow: 0 24px 44px -24px color-mix(in oklch, var(--wood) 40%, transparent);
  z-index: 3;
}
.hero-floating .hf-line {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
  color: var(--wood);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.hero-floating .hf-line em { color: var(--terracotta); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual-wrap { width: 100%; max-width: 520px; margin: 0 auto; }
  .hero-visual { aspect-ratio: 4 / 5; width: 100%; }
  .hero-floating {
    position: static;
    display: inline-block;
    margin-top: 12px;
    border-radius: var(--radius-lg);
  }
  .hero h1 { font-size: clamp(40px, 9vw, 60px); }
}
@media (max-width: 540px) {
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-meta .dotsep { display: none; }
}

/* ============================================
   Trust / Practitioner intro
   ============================================ */
.trust {
  background: var(--paper);
  padding-top: clamp(80px, 9vw, 128px);
  padding-bottom: clamp(80px, 9vw, 128px);
}
.trust-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: var(--gutter);
  align-items: center;
}
.trust-portrait { position: relative; }
.trust-portrait-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-color: var(--cream-deep);
  box-shadow: 0 50px 70px -50px color-mix(in oklch, var(--wood) 40%, transparent);
  position: relative;
  overflow: hidden;
}
.trust-portrait-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(2);
  transform-origin: 65% 25%;
}
.trust-portrait-cap {
  position: absolute;
  left: 18px; bottom: 18px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  box-shadow: 0 20px 36px -20px color-mix(in oklch, var(--wood) 30%, transparent);
}
.cap-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--wood);
  line-height: 1.1;
}
.cap-role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood-mute);
  margin-top: 4px;
  font-weight: 600;
}

.trust-body { min-width: 0; }
.trust-body h2 {
  font-size: var(--text-h1);
  margin-top: 20px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.trust-body h2 em { color: var(--terracotta); }

.cred-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.cred-list li { min-width: 0; }
.cred-num {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1;
  color: var(--wood);
  letter-spacing: -0.02em;
}
.cred-num em {
  color: var(--sage-deep);
  font-size: 0.55em;
  margin-left: 2px;
  vertical-align: 0.2em;
}
.cred-lbl {
  margin-top: 10px;
  font-size: 13px;
  color: var(--wood-soft);
  line-height: 1.45;
  max-width: 22ch;
}

.lead-quote {
  margin: 40px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.lead-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--text-h4);
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--wood);
  letter-spacing: -0.005em;
}
.lead-quote figcaption {
  font-size: 13px;
  color: var(--wood-mute);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .trust-grid { grid-template-columns: 1fr; gap: 48px; }
  .trust-portrait-img { max-width: 460px; margin: 0 auto; }
  .trust-portrait-img img { transform: scale(2.2); transform-origin: 65% 30%; }
  .trust-portrait-cap {
    position: static;
    transform: none;
    margin: 12px auto 0;
    max-width: 460px;
    border-radius: var(--radius-lg);
  }
  .cred-list { grid-template-columns: 1fr; gap: 20px; }
  .cred-list li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; }
  .cred-lbl { margin-top: 0; max-width: none; }
}

/* ============================================
   Services / Pricing — Menu style
   ============================================ */
.services-sec { background: var(--cream); }

.menu-table {
  border-top: 1px solid var(--line);
}
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-hint {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood-mute);
  margin-right: 6px;
  white-space: nowrap;
}
.filter-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--wood-soft);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.filter-tag:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.filter-tag.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}
.filter-x {
  opacity: 0;
  transition: opacity 0.15s var(--ease);
}
.filter-tag.active .filter-x { opacity: 1; }

.menu-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  isolation: isolate;
  transition: opacity 0.35s var(--ease);
}
.menu-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    600px circle at var(--gx, 50%) var(--gy, 50%),
    color-mix(in oklch, var(--terracotta) 11%, transparent),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.menu-row:hover::after { opacity: 1; }
.menu-row.muted { opacity: 0.22; }
.menu-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.01em;
  color: var(--wood);
  line-height: 1.1;
  padding-top: 3px;
}
.popular-tag {
  display: inline-block;
  margin-left: 12px;
  padding: 3px 10px;
  background: color-mix(in oklch, var(--terracotta) 10%, transparent);
  color: var(--terracotta-deep);
  border: 1px solid color-mix(in oklch, var(--terracotta) 22%, transparent);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  vertical-align: middle;
  position: relative;
  top: -3px;
}
.menu-content { min-width: 0; }
.menu-desc {
  font-size: 15px;
  color: var(--wood-mute);
  margin: 0 0 20px;
  max-width: 58ch;
  line-height: 1.55;
}
.menu-durations {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dur-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--wood);
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.dur-pill:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}
.dur-pill .arrow {
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}
.dur-pill:hover .arrow { transform: translateX(2px); }
.dur-time {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wood-mute);
  transition: color 0.2s var(--ease);
}
.dur-pill:hover .dur-time { color: color-mix(in oklch, var(--cream) 75%, transparent); }
.dur-sep {
  font-size: 14px;
  color: var(--line-strong);
  transition: color 0.2s var(--ease);
  user-select: none;
}
.dur-pill:hover .dur-sep { color: color-mix(in oklch, var(--cream) 40%, transparent); }
.dur-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.menu-row-gift .menu-name { color: var(--terracotta-deep); }
.dur-pill-gift {
  border-color: color-mix(in oklch, var(--terracotta) 35%, transparent);
  background: color-mix(in oklch, var(--terracotta) 5%, transparent);
}

.booking-lead-time {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 12px;
}
.price-foot {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--wood-mute);
  text-align: center;
  max-width: 60ch;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

@media (hover: none) {
  .menu-row::after { display: none; }
}

@media (max-width: 900px) {
  .menu-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-bottom: 28px;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-hint { display: none; }
  .menu-row.muted { display: none; }
  .services-sec .s-head { margin-bottom: 24px; }
  .services-sec .s-head .lede { display: none; }
}
@media (max-width: 540px) {
  .dur-pill { padding: 9px 14px; }
  .dur-price { font-size: 16px; }
}

/* ============================================
   Photo band
   ============================================ */
.photo-band {
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(64px, 8vw, 112px);
  background: var(--cream);
}
.photo-band-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.photo-band .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream-deep);
}
.photo-band .frame .photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease);
}
.photo-band .frame:hover .photo { transform: scale(1.04); }
.photo-band .frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0% 0 0 / 0) 50%, oklch(0% 0 0 / 0.6) 100%);
}
.photo-band .caption {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  z-index: 2;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.photo-band .caption .ttl {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-shadow: 0 1px 8px oklch(0% 0 0 / 0.45);
}
.photo-band .caption .tag {
  font-family: var(--sans);
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.01em;
  color: oklch(97% 0.01 80 / 0.88);
  line-height: 1.4;
  text-shadow: 0 1px 6px oklch(0% 0 0 / 0.5);
  max-width: 26ch;
}
@media (max-width: 720px) {
  .photo-band-grid { grid-template-columns: 1fr; }
  .photo-band .frame {
    aspect-ratio: unset;
    height: clamp(220px, 58vw, 300px);
    width: 100%;
  }
}

/* ============================================
   What to Expect (dark)
   ============================================ */
.expect {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.expect::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--terracotta) 16%, transparent), transparent 65%);
  pointer-events: none;
}
.expect h2 { color: var(--cream); }
.expect h2 em { color: var(--terracotta-glow); }
.expect .lede { color: color-mix(in oklch, var(--cream) 72%, transparent); }

.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.expect-card {
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
  position: relative;
}
.ex-icon {
  width: 32px; height: 32px;
  color: var(--sage);
  margin-bottom: 20px;
}
.ex-num {
  position: absolute;
  top: -10px;
  background: var(--ink);
  padding-right: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--sage);
}
.expect-card h4 {
  color: var(--cream);
  font-size: var(--text-h4);
  margin-bottom: 14px;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.expect-card h4 em { color: var(--terracotta-glow); }
.expect-card p {
  font-size: 14.5px;
  color: color-mix(in oklch, var(--cream) 72%, transparent);
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .expect-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
}
@media (max-width: 540px) {
  .expect-grid { grid-template-columns: 1fr; }
}

/* ============================================
   About — story + sidebar testimonials
   ============================================ */
.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--gutter);
  align-items: start;
}
.about-copy { min-width: 0; }
.about-copy h2 {
  font-size: var(--text-h1);
  margin-top: 20px;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
  line-height: 1.06;
}
.about-copy h2 em { color: var(--terracotta); }
.about-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--wood-soft);
  max-width: 60ch;
}
.about-body p { margin: 0; text-wrap: pretty; }
.about-sign {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.sig-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--terracotta);
  letter-spacing: -0.01em;
  line-height: 1;
}
.sig-cred {
  margin-top: 8px;
  font-size: 12px;
  color: var(--wood-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-side { position: sticky; top: 100px; }
.about-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.ac-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin-bottom: 22px;
}
.about-card figure {
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.about-card figure:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.review-slide {
  margin: 0;
  padding-bottom: 0;
  border-bottom: 0;
  transition: opacity 0.38s var(--ease);
  min-height: var(--slide-min-h, 0px);
}
.review-slide.out { opacity: 0; }
.review-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.review-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.review-pause {
  background: none;
  border: none;
  padding: 4px;
  color: var(--wood-mute);
  cursor: pointer;
  line-height: 0;
  border-radius: 3px;
  transition: color 0.2s var(--ease);
}
.review-pause:hover {
  color: var(--terracotta);
}
.review-pause:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  color: var(--terracotta);
}
.rdot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--line-strong);
  padding: 0;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.rdot.active {
  background: var(--terracotta);
  transform: scale(1.4);
}
.about-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  margin: 0 0 12px;
  color: var(--wood);
  letter-spacing: -0.005em;
}
.about-card figcaption {
  font-size: 12.5px;
  color: var(--wood-mute);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-side { position: static; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-sec { background: var(--cream); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--wood);
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--terracotta); }
.faq-q em { color: var(--terracotta); }
.faq-toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--wood);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}
.faq-toggle::before { width: 12px; height: 1.2px; }
.faq-toggle::after { height: 12px; width: 1.2px; }
.faq-item.open .faq-toggle {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.faq-item.open .faq-toggle::before,
.faq-item.open .faq-toggle::after { background: var(--cream); }
.faq-item.open .faq-toggle::after { transform: scaleY(0); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  margin: 0 0 28px;
  color: var(--wood-soft);
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.65;
  padding-right: 60px;
}

/* ============================================
   Contact (dark, with map strip)
   ============================================ */
.contact {
  background: var(--ink);
  color: var(--cream);
  padding-top: clamp(96px, 10vw, 144px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -100px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--terracotta) 14%, transparent), transparent 65%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  padding-bottom: clamp(72px, 8vw, 112px);
}
.contact-copy h2 {
  color: var(--cream);
  font-size: clamp(40px, 5vw, 68px);
  margin-top: 20px;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  line-height: 1.04;
}
.contact-copy h2 em { color: var(--terracotta-glow); }
.contact-lede {
  font-size: 17px;
  color: color-mix(in oklch, var(--cream) 78%, transparent);
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 48ch;
}

.contact-info { min-width: 0; }
.ci-card {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 8px 32px;
}
.ci-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
}
.ci-row:last-child { border-bottom: 0; }
.ci-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-glow);
  font-weight: 600;
  padding-top: 2px;
}
.ci-val {
  font-size: 14.5px;
  line-height: 1.6;
  color: color-mix(in oklch, var(--cream) 85%, transparent);
}
.ci-link {
  color: var(--cream);
  border-bottom: 1px solid color-mix(in oklch, var(--cream) 35%, transparent);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.ci-link:hover { color: var(--terracotta-glow); border-bottom-color: var(--terracotta-glow); }
.ci-hours { display: flex; flex-direction: column; gap: 6px; }
.ci-hours > div {
  display: flex; justify-content: space-between;
  max-width: 240px;
  font-variant-numeric: tabular-nums;
}
.ci-hours > div span:last-child { color: var(--cream); }

/* Map strip */
.map-strip {
  position: relative;
  height: 220px;
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
}
.map-svg { width: 100%; height: 100%; display: block; }
.map-pin-label {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  background: var(--cream);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px -10px oklch(0% 0 0 / 0.5);
}
.map-pin-label svg { color: var(--terracotta); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .ci-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ink);
  color: color-mix(in oklch, var(--cream) 60%, transparent);
  padding: 40px 0 56px;
  border-top: 1px solid var(--line-dark);
}
.footer .brand { color: var(--cream); font-size: 18px; }
.footer .brand small { color: color-mix(in oklch, var(--cream) 50%, transparent); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-meta a {
  color: color-mix(in oklch, var(--cream) 85%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.footer-meta a:hover { color: var(--terracotta-glow); border-bottom-color: var(--terracotta-glow); }

/* ============================================
   Back to top
   ============================================ */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -8px color-mix(in oklch, var(--terracotta-deep) 60%, transparent);
  z-index: 40;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: background 0.25s var(--ease), opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.back-top--show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top--show:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
}
@media (max-width: 540px) {
  .back-top { right: 20px; }
  .footer { padding-bottom: 88px; }
}

/* ============================================
   Scroll reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.18s; }
.reveal.d4 { transition-delay: 0.24s; }
.reveal.d5 { transition-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
