/* Zen Soma — Ease Health structure (Refero e9f5e976) retinted to the burgundy mark */
:root {
  --ink: #5a1818;
  --ink-deep: #3d1010;
  --cream: #faf6f1;
  --paper: #fffdf9;
  --sand: #f3e8dc;
  --blush: #ead9c8;
  --taupe: #d4c4b4;
  --slate: #c9b8ae;
  --char: #2a2422;
  --mute: #5c534e;
  --line: #efe6dc;
  --radius: 14px;
  --font-display: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  --font-ui: Inter, "Suisse Intl", Helvetica Neue, sans-serif;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--char);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
button, input, select, textarea { font: inherit; }

.zen-root { min-height: 100vh; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
}
h1, h2, h3, .serif {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(48px, 8vw, 74px); line-height: 1.05; letter-spacing: -0.03em; margin: 0; }
h2 { font-size: clamp(36px, 5vw, 56px); line-height: 1.15; letter-spacing: -0.03em; margin: 0; }
h3 { font-size: clamp(28px, 3vw, 40px); line-height: 1.25; margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  padding: 14px 21px;
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: background .2s ease;
  font-size: 14px;
  font-weight: 400;
}
.btn:hover { background: var(--ink-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}
.btn-ghost:hover { background: var(--sand); }
.btn-lg { padding: 18px 28px; font-size: 15px; }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: #fff; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
}

/* nav */
#hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
#hdr .nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}
.brand strong {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.navlinks { display: flex; gap: 22px; font-size: 14px; }
.navlinks a { color: var(--char); }
.navlinks a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.burger {
  display: none;
  background: none;
  border: 0;
  padding: 6px;
  color: var(--ink);
  cursor: pointer;
}

/* hero */
.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: #1a1210;
}
.hero-shot {
  position: absolute;
  inset: 0;
}
.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transform: scale(1.04);
  animation: ken 28s ease-in-out infinite alternate;
}
@keyframes ken {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,18,16,.18) 0%, rgba(26,18,16,.25) 40%, rgba(26,18,16,.72) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
  color: var(--cream);
  max-width: 820px;
}
.hero-copy .eyebrow { color: #f3e8dc; }
.hero-copy h1 { color: #fffdf9; }
.hero-copy h1 em { font-style: italic; font-weight: 300; }
.hero-sub {
  margin: 18px 0 28px;
  max-width: 34rem;
  font-size: 17px;
  line-height: 1.6;
  color: #f4ebe3;
  font-weight: 300;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-meta span {
  border: 1px solid rgba(250,246,241,.28);
  color: #fffdf9;
  background: rgba(26,18,16,.22);
}

/* trust */
.trust { background: var(--sand); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.trust-item {
  background: var(--sand);
  padding: 28px 24px;
}
.trust-item b {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.trust-item span { color: var(--mute); font-size: 14px; }

/* sections */
.section { padding: 88px 0; }
.section.sand { background: var(--sand); }
.section.blush { background: var(--blush); }
.section.taupe { background: var(--taupe); }
.section.slate { background: var(--slate); }
.lede { max-width: 38rem; color: var(--mute); font-size: 16px; line-height: 1.65; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img {
  width: 100%;
  height: min(560px, 70vw);
  object-fit: cover;
  border-radius: var(--radius);
}
.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.story {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
}
.story img { height: 220px; width: 100%; object-fit: cover; }
.story-body { padding: 28px; }
.story h3 { font-size: 32px; margin: 0 0 10px; }
.story p { margin: 0; color: var(--mute); font-size: 14px; line-height: 1.6; }
.price-from {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink);
}

/* menu */
.menu {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 42px;
  margin-top: 42px;
}
.menu-nav { position: sticky; top: 96px; align-self: start; }
.menu-nav a {
  display: block;
  padding: 10px 0;
  color: var(--mute);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.menu-nav a:hover, .menu-nav a.on { color: var(--ink); }
.menu-group + .menu-group { margin-top: 36px; }
.row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.row b { font-weight: 400; color: var(--char); }
.row .mins { color: var(--mute); font-size: 14px; }
.row .amt {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
}

/* about */
.about-panel {
  background: var(--ink);
  color: #f4ebe3;
  border-radius: var(--radius);
  padding: 56px;
}
.about-panel h2, .about-panel .eyebrow { color: #faf6f1; }
.about-panel p { color: #ead9c8; max-width: 40rem; }
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.about-facts div {
  background: color-mix(in srgb, #fff 8%, transparent);
  border-radius: var(--radius);
  padding: 22px;
}
.about-facts strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  color: #fffdf9;
}

/* reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.review {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px;
}
.stars { color: var(--ink); letter-spacing: 3px; font-size: 12px; margin-bottom: 14px; }
.review q {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 300;
  quotes: none;
  display: block;
}
.review footer { margin-top: 18px; font-size: 13px; color: var(--mute); }

/* visit + book */
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 36px;
}
.card.sand { background: var(--sand); }
.card.blush { background: var(--blush); }
dl.hours { margin: 0; }
dl.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
form label { font-size: 12px; color: var(--mute); }
form input, form select, form textarea {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--char);
}
form textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 13px; color: var(--mute); margin-top: 10px; }
.form-ok { display: none; color: var(--ink); font-size: 14px; }

/* faq */
.faq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.faq-row h3 { font-size: 32px; }

footer.site {
  padding: 42px 0 56px;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 13px;
}
footer.site .rowish {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: end;
}

/* insights */
.insights-table { width: 100%; border-collapse: collapse; margin-top: 28px; }
.insights-table th, .insights-table td {
  text-align: left;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.insights-table th { color: var(--mute); font-weight: 400; }

@media (max-width: 900px) {
  .navlinks { display: none; }
  .navlinks.open,
  .nav:has(#nav-toggle:checked) .navlinks {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--cream);
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
  }
  .burger { display: block; }
  .trust-grid, .story-grid, .review-grid, .split, .menu, .two, .faq-row, .about-facts {
    grid-template-columns: 1fr;
  }
  .split.flip { direction: ltr; }
  .hero { min-height: 86vh; }
  .about-panel { padding: 32px 24px; }
  .row { grid-template-columns: 1fr auto; }
  .row .mins { display: none; }
}
