/* Orchard Smiles — north star styles */
@font-face { font-family: 'Besley'; src: url(/assets/fonts/besley-var.woff2) format('woff2'); font-weight: 400 900; font-display: swap; }
@font-face { font-family: 'Besley'; src: url(/assets/fonts/besley-italic-var.woff2) format('woff2'); font-weight: 400 900; font-style: italic; font-display: swap; }
@font-face { font-family: 'Atkinson'; src: url(/assets/fonts/atkinson-next-var.woff2) format('woff2'); font-weight: 200 800; font-display: swap; }
@font-face { font-family: 'Atkinson'; src: url(/assets/fonts/atkinson-next-italic.woff2) format('woff2'); font-style: italic; font-display: swap; }

:root {
  --ink: #1f3230;
  --slate: #385050;
  --sage: #a8c098;
  --sage-soft: #dfe8d9;
  --paper: #fbfcfa;
  --mist: #e9efe6;
  --apple: #b3202a;
  --apple-deep: #8e1620;
  --blossom: #f6dde1;
  --bark: #4a3a31;
  --line: rgba(31, 50, 48, 0.14);
  --muted: #4d615e;

  --serif: 'Besley', Georgia, serif;
  --sans: 'Atkinson', system-ui, sans-serif;

  --t-h1: clamp(2.55rem, 1.5rem + 4.2vw, 4.6rem);
  --t-h2: clamp(2rem, 1.45rem + 2.3vw, 3.2rem);
  --t-h3: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  --t-body: clamp(1.0625rem, 1rem + 0.2vw, 1.1875rem);
  --t-small: 0.9375rem;

  --pad: clamp(1.25rem, 0.6rem + 3vw, 4rem);
  --max: 1240px;
  --r-chair: clamp(28px, 2vw + 20px, 48px);
  --r-soft: 18px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dock-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
@view-transition { navigation: auto; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font: 400 var(--t-body)/1.55 var(--sans);
  font-feature-settings: 'ss01';
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--apple); outline-offset: 3px; border-radius: 6px; }
.vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: var(--t-h1); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: var(--t-h2); line-height: 1.06; }
h3 { font-size: var(--t-h3); line-height: 1.2; }
p { margin: 0; text-wrap: pretty; }
.lede { font-size: clamp(1.125rem, 1rem + 0.45vw, 1.3125rem); line-height: 1.5; color: var(--muted); max-width: 36em; }
.wrap { width: min(100% - 2 * var(--pad), var(--max)); margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--apple); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  min-height: 52px; padding: 0 1.4em; border-radius: 999px; border: 0;
  background: var(--bg); color: var(--fg); font-weight: 700; font-size: 1.0625rem; text-decoration: none;
  cursor: pointer; transition: transform 0.18s var(--ease), background-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { --bg: var(--apple-deep); }
.btn:active { transform: scale(0.97); }
.btn.ghost { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn.ghost:hover { --bg: var(--mist); }
.btn.ink { --bg: var(--ink); }
.btn.ink:hover { --bg: #0f1f1d; }
.btn.light { --bg: #fff; --fg: var(--ink); }
.btn svg { width: 20px; height: 20px; flex: none; }
.textlink { color: var(--ink); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 0.2em; text-decoration-color: var(--sage); }
.textlink:hover { text-decoration-color: var(--apple); }

/* ---------- status chip (live hours) ---------- */
.status { display: inline-flex; align-items: center; gap: 0.5em; font-size: var(--t-small); font-weight: 600; white-space: nowrap; }
.status i { width: 9px; height: 9px; border-radius: 50%; background: var(--sage); flex: none; box-shadow: 0 0 0 3px rgba(168, 192, 152, 0.35); }
.status[data-state='open'] i, .status[data-state='closing'] i { background: #3f8a4a; box-shadow: 0 0 0 3px rgba(63, 138, 74, 0.2); animation: pulse 2.4s infinite; }
.status[data-state='closing'] i { background: #c98a1b; }
@keyframes pulse { 50% { opacity: 0.55; transform: scale(1.35); } }

/* ---------- header ---------- */
.top {
  position: fixed; inset: 0 0 auto; z-index: 40;
  padding: max(10px, env(safe-area-inset-top)) var(--pad) 10px;
  display: flex; align-items: center; gap: 1.5rem;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.top.solid { background: rgba(251, 252, 250, 0.9); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); box-shadow: 0 1px 0 var(--line); }
.top .logo img { width: clamp(132px, 10vw + 60px, 184px); height: auto; }
.top nav { display: none; margin-left: auto; gap: 0.25rem; }
.top nav a { text-decoration: none; font-weight: 600; padding: 0.6em 0.8em; border-radius: 999px; }
.top nav a:hover { background: rgba(31, 50, 48, 0.07); }
.top .status { margin-left: auto; background: rgba(255, 255, 255, 0.86); padding: 0.45em 0.85em; border-radius: 999px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.top .btn { display: none; min-height: 46px; }
@media (min-width: 1080px) {
  .top nav { display: flex; }
  .top .status { margin-left: 0; }
  .top .btn { display: inline-flex; }
}

/* ---------- mobile dock ---------- */
.dock {
  position: fixed; z-index: 45; left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom));
  display: grid; grid-template-columns: 64px 1fr 64px; gap: 6px; padding: 6px;
  background: rgba(31, 50, 48, 0.92); backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-radius: 26px; box-shadow: 0 12px 40px -10px rgba(15, 30, 28, 0.55);
  transition: transform 0.35s var(--ease);
}
.dock a, .dock button { display: grid; place-items: center; gap: 2px; min-height: 52px; border: 0; border-radius: 20px; background: transparent; color: #fff; text-decoration: none; font-size: 0.75rem; font-weight: 700; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.dock a:active, .dock button:active { transform: scale(0.95); }
.dock svg { width: 22px; height: 22px; }
.dock .book { background: var(--apple); font-size: 1.0625rem; grid-auto-flow: column; gap: 0.5em; }
.dock.away { transform: translateY(140%); }
@media (min-width: 1080px) { .dock { display: none; } }
body { padding-bottom: calc(var(--dock-h) + 24px + env(safe-area-inset-bottom)); }
@media (min-width: 1080px) { body { padding-bottom: 0; } }

/* ---------- hero: the orchard room ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; isolation: isolate; overflow: hidden; background: #cfd9c6; }
.hero-bg { position: absolute; inset: -40px; z-index: -3; background: center 40% / cover no-repeat; filter: blur(14px) saturate(0.9) brightness(1.12); transform: scale(1.05); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(236, 244, 250, 0.35), rgba(251, 252, 250, 0.1) 45%, rgba(251, 252, 250, 0.35)); }
.hero canvas.canopy { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; touch-action: pan-y; }
.hero-panel {
  position: relative; background: var(--paper);
  margin-top: 46svh;
  border-radius: var(--r-chair) var(--r-chair) 0 0;
  padding: 1.9rem var(--pad) 1.6rem;
  box-shadow: 0 -24px 60px -30px rgba(20, 40, 30, 0.35);
}
.hero-panel h1 { max-width: 12ch; }
.hero-panel .lede { margin-top: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.hero-actions .btn { flex: 1 1 auto; }
.hero-breathe { margin-top: 1.1rem; display: inline-flex; align-items: center; gap: 0.6em; background: none; border: 0; padding: 0.4em 0; cursor: pointer; font-weight: 700; }
.hero-breathe .bud { width: 28px; height: 28px; border-radius: 50%; background: radial-gradient(circle at 50% 50%, #f1c93b 0 14%, #fff 15% 45%, #f4c2cd 70%, #e28aa1); box-shadow: 0 0 0 4px var(--blossom); animation: breathe 10s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { transform: scale(0.82); } 40% { transform: scale(1.08); } }
.season-note { position: absolute; right: var(--pad); top: calc(46svh - 3.2rem); font-size: 0.8125rem; font-weight: 600; color: var(--ink); background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 0.35em 0.8em; border-radius: 999px; }
@media (min-width: 900px) {
  .hero { align-items: end; }
  .hero-panel {
    margin: 0 0 clamp(2rem, 5vh, 4rem) var(--pad); width: min(640px, 52vw);
    border-radius: var(--r-chair) var(--r-chair) var(--r-chair) 8px;
    padding: clamp(2rem, 3vw, 3rem);
    box-shadow: 0 40px 80px -40px rgba(20, 40, 30, 0.5);
  }
  .hero-actions .btn { flex: 0 0 auto; }
  .season-note { top: auto; bottom: clamp(2rem, 5vh, 4rem); }
}

/* ---------- sections ---------- */
section { position: relative; }
.band { padding-block: clamp(4rem, 3rem + 5vw, 8rem); }
.band.mist { background: var(--mist); }
.band.ink { background: var(--ink); color: #eef3ec; }
.band.ink .lede { color: #b9c8c2; }
.head { display: grid; gap: 1rem; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem); }

/* what brings you in */
.intents { display: grid; gap: clamp(2rem, 4vw, 5rem); }
@media (min-width: 900px) { .intents { grid-template-columns: 5fr 7fr; align-items: start; } .intents .head { position: sticky; top: 120px; } }
.rows { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.rows a, .rows button {
  display: grid; grid-template-columns: 44px 1fr 24px; align-items: center; gap: 1rem; width: 100%;
  padding: 1.15rem 0.25rem; min-height: 76px; border: 0; border-bottom: 1px solid var(--line); background: none;
  text-align: left; text-decoration: none; cursor: pointer; -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s, padding 0.25s var(--ease);
}
.rows a:hover, .rows button:hover { background: rgba(168, 192, 152, 0.16); padding-inline: 0.75rem; }
.rows a:active, .rows button:active { background: rgba(168, 192, 152, 0.3); }
.rows strong { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem); line-height: 1.2; }
.rows span.sub { display: block; color: var(--muted); font-size: var(--t-small); margin-top: 0.2rem; }
.rows .ico { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--sage-soft); color: var(--slate); }
.rows .ico svg { width: 22px; height: 22px; }
.rows .urgent .ico { background: var(--apple); color: #fff; }
.rows .chev { width: 20px; height: 20px; color: var(--slate); }

/* nervous */
.nervous { display: grid; gap: clamp(2rem, 4vw, 5rem); align-items: center; }
@media (min-width: 900px) { .nervous { grid-template-columns: 1fr 1fr; } }
.breath-card { position: relative; aspect-ratio: 1; max-width: 520px; width: 100%; justify-self: center; border-radius: 50%; background: radial-gradient(circle, #2c4441 0%, #1f3230 70%); }
.breath-card canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.breath-card .btn { position: absolute; left: 50%; bottom: 6%; transform: translateX(-50%); white-space: nowrap; }
.breath-card .btn:active { transform: translateX(-50%) scale(0.97); }
.ladder { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 0; }
.ladder li { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid rgba(238, 243, 236, 0.16); }
.ladder .depth { height: 44px; border-radius: 10px; border: 1.5px solid rgba(238, 243, 236, 0.35); position: relative; overflow: hidden; }
.ladder .depth::after { content: ''; position: absolute; inset: auto 0 0; height: var(--d); background: linear-gradient(#a8c098, #7c9c6e); }
.ladder strong { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; display: block; }
.ladder p { color: #b9c8c2; font-size: var(--t-small); margin-top: 0.15rem; }
.quote-inline { margin-top: 2rem; font-family: var(--serif); font-style: italic; font-size: 1.375rem; line-height: 1.35; }
.quote-inline cite { display: block; font-family: var(--sans); font-style: normal; font-size: var(--t-small); color: #b9c8c2; margin-top: 0.5rem; }
.band.ink .textlink { color: #fff; }

/* orchard room story */
.story { display: grid; gap: clamp(2rem, 4vw, 4rem); }
@media (min-width: 900px) { .story { grid-template-columns: 6fr 5fr; align-items: center; } }
.story-media { position: relative; padding-bottom: 18%; }
.story-media .orchard { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-chair) var(--r-chair) var(--r-chair) 8px; }
.story-media .room { position: absolute; right: -4%; bottom: 0; width: 54%; aspect-ratio: 550 / 425; object-fit: cover; border-radius: 22px 22px 22px 6px; border: 6px solid var(--paper); box-shadow: 0 30px 60px -30px rgba(20, 40, 30, 0.5); }
.story-media figcaption { position: absolute; left: 0; bottom: 0; width: 42%; font-size: 0.8125rem; color: var(--muted); }
.pull { font-family: var(--serif); font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem); line-height: 1.25; letter-spacing: -0.01em; margin-top: 1.75rem; }
.pull cite { display: block; font-family: var(--sans); font-size: var(--t-small); font-style: normal; color: var(--muted); margin-top: 0.75rem; letter-spacing: 0; }
.details { display: grid; grid-auto-flow: column; grid-auto-columns: min(78%, 320px); gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; margin-top: clamp(2.5rem, 4vw, 4rem); padding-bottom: 0.5rem; scrollbar-width: none; }
.details::-webkit-scrollbar { display: none; }
@media (min-width: 900px) { .details { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; } }
.details figure { margin: 0; scroll-snap-align: start; }
.details img { aspect-ratio: 5 / 4; width: 100%; object-fit: cover; border-radius: var(--r-soft); }
.details figcaption { margin-top: 0.75rem; font-size: var(--t-small); color: var(--muted); }
.details figcaption strong { display: block; color: var(--ink); font-size: 1rem; }

/* dentists */
.docs { display: grid; grid-auto-flow: column; grid-auto-columns: min(72%, 260px); gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0.5rem var(--pad) 1rem; margin-inline: calc(-1 * var(--pad)); scrollbar-width: none; }
.docs::-webkit-scrollbar { display: none; }
@media (min-width: 1080px) { .docs { grid-auto-flow: row; grid-template-columns: repeat(5, 1fr); overflow: visible; margin: 0; padding: 0; } }
.doc { scroll-snap-align: center; text-align: left; background: none; border: 0; padding: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.doc .ph { aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--mist); transition: transform 0.35s var(--ease); }
.doc .ph img { width: 100%; height: 100%; object-fit: cover; clip-path: circle(46.5%); transform: scale(1.06); }
.doc:hover .ph { transform: translateY(-4px); }
.doc strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.3125rem; margin-top: 1rem; }
.doc span { display: block; color: var(--muted); font-size: var(--t-small); margin-top: 0.2rem; }
.doc .more { color: var(--apple); font-weight: 700; margin-top: 0.4rem; }

/* reviews */
.rating { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.rating .big { font-family: var(--serif); font-size: clamp(4rem, 3rem + 5vw, 7.5rem); line-height: 0.9; letter-spacing: -0.03em; }
.rating .stars { color: var(--apple); letter-spacing: 0.1em; font-size: 1.25rem; }
.quotes { list-style: none; margin: clamp(2rem, 4vw, 3.5rem) 0 0; padding: 0; display: grid; gap: 0; }
.quotes li { padding: 1.4rem 0; border-top: 1px solid var(--line); display: grid; gap: 0.4rem; }
@media (min-width: 900px) { .quotes li { grid-template-columns: 1fr 240px; align-items: baseline; gap: 2rem; } }
.quotes q { font-family: var(--serif); font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem); line-height: 1.15; letter-spacing: -0.015em; quotes: '\201C' '\201D'; }
.quotes cite { font-style: normal; color: var(--muted); font-size: var(--t-small); }
.fineprint { font-size: 0.8125rem; color: var(--muted); margin-top: 1.25rem; }

/* same-day crowns */
.crown { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .crown { grid-template-columns: 5fr 6fr; } }
.crown img { border-radius: var(--r-chair) var(--r-chair) 8px var(--r-chair); aspect-ratio: 550 / 425; object-fit: cover; width: 100%; }
.steps { list-style: none; counter-reset: s; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.75rem; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 36px 1fr; gap: 0.75rem; align-items: baseline; }
.steps li::before { content: counter(s); font-family: var(--serif); font-size: 1.25rem; color: var(--apple); }

/* pay it forward */
.forward { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .forward { grid-template-columns: 6fr 5fr; } }
.forward img { border-radius: 22px; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.forward figcaption { font-size: 0.8125rem; color: #b9c8c2; margin-top: 0.6rem; }
.big-num { font-family: var(--serif); font-size: clamp(3rem, 2rem + 4vw, 5.5rem); line-height: 1; letter-spacing: -0.03em; color: #fff; }

/* visit */
.visit { display: grid; gap: clamp(2rem, 4vw, 4rem); }
@media (min-width: 900px) { .visit { grid-template-columns: 1fr 1fr; } }
.week { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.35rem; }
.week li { display: grid; grid-template-columns: 3.2em 1fr 7.2em; gap: 0.75rem; align-items: center; font-size: var(--t-small); padding: 0.35rem 0.5rem; border-radius: 10px; }
.week .bar { position: relative; height: 10px; border-radius: 99px; background: rgba(31, 50, 48, 0.07); }
.week .bar b { position: absolute; top: 0; bottom: 0; left: 0; width: var(--w); border-radius: 99px; background: var(--sage); }
.week .today { background: #fff; box-shadow: 0 0 0 1.5px var(--ink); font-weight: 700; }
.week .today .bar b { background: var(--apple); }
.week .t { text-align: right; font-variant-numeric: tabular-nums; }
.axis { display: grid; grid-template-columns: 3.2em 1fr 7.2em; gap: 0.75rem; padding: 0 0.5rem; font-size: 0.75rem; color: var(--muted); }
.axis span:nth-child(2) { display: flex; justify-content: space-between; }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.5rem; }
.contact-list a { display: grid; grid-template-columns: 44px 1fr; gap: 0.9rem; align-items: center; min-height: 64px; padding: 0.6rem 0.9rem 0.6rem 0.6rem; background: #fff; border-radius: 18px; text-decoration: none; box-shadow: 0 0 0 1px var(--line); }
.contact-list a:hover { box-shadow: 0 0 0 1.5px var(--ink); }
.contact-list .ico { width: 44px; height: 44px; border-radius: 14px; background: var(--mist); display: grid; place-items: center; }
.contact-list svg { width: 22px; height: 22px; }
.contact-list small { display: block; color: var(--muted); font-size: 0.8125rem; }
.visit-photo { border-radius: var(--r-chair) var(--r-chair) 8px var(--r-chair); aspect-ratio: 2 / 1; object-fit: cover; width: 100%; margin-top: 1.5rem; }

/* footer */
.foot { background: var(--ink); color: #cfdad4; padding: clamp(3rem, 6vw, 5rem) 0 2rem; font-size: var(--t-small); }
.foot .logo img { width: 180px; }
.foot-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.foot h3 { font-family: var(--sans); font-size: var(--t-small); font-weight: 700; color: #fff; margin-bottom: 0.75rem; letter-spacing: 0; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.1rem; }
.foot a { text-decoration: none; display: inline-block; padding: 0.35rem 0; }
.foot a:hover { color: #fff; text-decoration: underline; }
.foot .legal { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.12); color: #93a6a0; font-size: 0.8125rem; }

/* ---------- sheets (concierge, menu, dentist) ---------- */
.scrim { position: fixed; inset: 0; z-index: 60; background: rgba(15, 30, 28, 0.45); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.scrim.on { opacity: 1; pointer-events: auto; }
.sheet {
  position: fixed; z-index: 61; left: 0; right: 0; bottom: 0; max-height: min(92svh, calc(100dvh - 12px - env(safe-area-inset-top))); overflow: auto; overscroll-behavior: contain;
  background: var(--paper); border-radius: 28px 28px 0 0; padding: 0.5rem var(--pad) calc(1.5rem + env(safe-area-inset-bottom));
  transform: translateY(105%); transition: transform 0.42s var(--ease); visibility: hidden;
  box-shadow: 0 -20px 60px -20px rgba(15, 30, 28, 0.4);
}
.sheet.on { transform: none; visibility: visible; }
.sheet .grab { width: 44px; height: 5px; border-radius: 9px; background: rgba(31, 50, 48, 0.22); margin: 0.4rem auto 1rem; touch-action: none; }
.sheet .x { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--mist); cursor: pointer; display: grid; place-items: center; }
.sheet .x svg { width: 20px; height: 20px; }
@media (min-width: 900px) {
  .sheet { left: auto; top: 12px; bottom: 12px; right: 12px; width: 480px; max-height: none; border-radius: 28px; transform: translateX(110%); padding: 2rem 2.25rem; }
  .sheet .grab { display: none; }
}
.sheet h2 { font-size: clamp(1.75rem, 1.4rem + 1vw, 2.25rem); margin-right: 48px; }
.sheet .kicker { font-size: var(--t-small); color: var(--muted); margin: 0 0 0.35rem; }
.choices { display: grid; gap: 0.5rem; margin-top: 1.25rem; }
.choice { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 0.75rem; width: 100%; text-align: left; min-height: 64px; padding: 0.85rem 1rem; border-radius: 18px; border: 0; background: #fff; box-shadow: 0 0 0 1px var(--line); cursor: pointer; transition: box-shadow 0.2s, transform 0.15s; -webkit-tap-highlight-color: transparent; }
.choice:hover { box-shadow: 0 0 0 1.5px var(--ink); }
.choice:active { transform: scale(0.985); }
.choice strong { display: block; font-weight: 700; }
.choice small { display: block; color: var(--muted); font-size: 0.875rem; margin-top: 0.1rem; }
.choice .dur { font-size: 0.8125rem; color: var(--muted); white-space: nowrap; }
.choice.urgent { box-shadow: 0 0 0 1.5px var(--apple); }
.progress { display: flex; gap: 6px; margin: 0 0 1.25rem; }
.progress i { height: 4px; flex: 1; border-radius: 4px; background: rgba(31, 50, 48, 0.12); transition: background-color 0.3s; }
.progress i.on { background: var(--ink); }
.back { background: none; border: 0; padding: 0.5rem 0; min-height: 44px; font-weight: 700; cursor: pointer; color: var(--slate); }
.step { animation: stepIn 0.35s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px); } }
.ticket { margin-top: 1.25rem; background: #fff; border-radius: 22px; box-shadow: 0 0 0 1px var(--line); overflow: hidden; }
.ticket .top-t { background: var(--ink); color: #fff; padding: 1.1rem 1.25rem; }
.ticket .top-t small { color: #b9c8c2; display: block; font-size: 0.8125rem; }
.ticket .top-t strong { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; line-height: 1.15; display: block; margin-top: 0.2rem; }
.ticket .body-t { padding: 1.1rem 1.25rem; display: grid; gap: 0.6rem; font-size: 0.9375rem; border-top: 2px dashed var(--line); }
.ticket dl { display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 1rem; margin: 0; }
.ticket dt { color: var(--muted); }
.ticket dd { margin: 0; font-weight: 700; }
.sheet .actions { display: grid; gap: 0.5rem; margin-top: 1.25rem; }
.note { font-size: 0.875rem; color: var(--muted); margin-top: 1rem; }
.menu-status { width: fit-content; max-width: 100%; margin: 0.65rem 0 1rem; padding: 0.4rem 0.7rem; border-radius: 999px; background: var(--mist); font-size: 0.8125rem; }
.menu-links { list-style: none; margin: 0.5rem 0 0; padding: 0; }
.menu-links a { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; min-height: 58px; padding: 0.15rem 0.2rem; font-family: var(--serif); font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.375rem); line-height: 1.2; text-decoration: none; border-bottom: 1px solid var(--line); }
.menu-links a .chev { width: 18px; height: 18px; flex: 0 0 18px; color: var(--muted); }
.menu-contact { display: grid; gap: 0.2rem; margin: 1rem 0 0; padding-top: 0.75rem; border-top: 1px solid var(--line); font-weight: 600; }
.menu-contact a { display: flex; align-items: center; min-height: 44px; text-decoration: none; }
.bio-head { display: grid; grid-template-columns: 96px 1fr; gap: 1rem; align-items: center; margin-top: 0.5rem; }
.bio-head img { border-radius: 50%; clip-path: circle(46.5%); transform: scale(1.06); }
.bio p + p { margin-top: 0.8rem; }
.bio .tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0; padding: 0; list-style: none; }
.bio .tags li { background: var(--mist); border-radius: 99px; padding: 0.3em 0.8em; font-size: 0.875rem; font-weight: 600; }

/* ---------- breathe ---------- */
.breathe { position: fixed; inset: 0; z-index: 80; background: #182826; color: #eef3ec; display: none; }
.breathe.on { display: block; animation: fadeIn 0.6s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } }
.breathe .bg { position: absolute; inset: -40px; background: url(/assets/img/blossom-row-blur.webp) center / cover; filter: blur(20px) brightness(0.45) saturate(0.8); }
.breathe canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.breathe .ui { position: absolute; inset: 0; display: grid; grid-template-rows: auto 1fr auto; padding: max(16px, env(safe-area-inset-top)) var(--pad) max(24px, env(safe-area-inset-bottom)); }
.breathe .bar-top { display: flex; justify-content: space-between; align-items: center; }
.breathe .icon-btn { width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.12); color: #fff; display: grid; place-items: center; cursor: pointer; }
.breathe .icon-btn[aria-pressed='true'] { background: #fff; color: var(--ink); }
.breathe .icon-btn svg { width: 22px; height: 22px; }
.breathe .cue { align-self: end; text-align: center; display: grid; gap: 1rem; justify-items: center; }
.breathe .word { font-family: var(--serif); font-size: clamp(2.25rem, 1.5rem + 3vw, 3.75rem); line-height: 1.05; min-height: 1.1em; transition: opacity 0.6s; }
.breathe .sub { color: #b9c8c2; max-width: 30em; }
.breathe .dots { display: flex; gap: 8px; }
.breathe .dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); transition: background-color 0.4s; }
.breathe .dots i.on { background: var(--blossom); }
.breathe .end-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  @view-transition { navigation: none; }
}

/* ---------- page load: the one orchestrated moment ---------- */
.hero-panel > * { animation: rise 0.9s var(--ease) both; }
.hero-panel > :nth-child(2) { animation-delay: 0.08s; }
.hero-panel > :nth-child(3) { animation-delay: 0.16s; }
.hero-panel > :nth-child(4) { animation-delay: 0.24s; }
.hero-panel { animation: panelUp 1s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } }
@keyframes panelUp { from { transform: translateY(40px); opacity: 0; } }

/* legibility veil behind the header, over the canopy */
.hero::before { content: ''; position: absolute; inset: 0 0 auto; height: 150px; z-index: 0; pointer-events: none; background: linear-gradient(180deg, rgba(251, 252, 250, 0.92), rgba(251, 252, 250, 0.55) 55%, rgba(251, 252, 250, 0)); }
.hero-panel h1 { max-width: 14ch; }
@media (max-width: 1079px) {
  .hero-actions { display: none; } /* the mobile dock carries booking and calling actions */
  .hero-panel { margin-top: 42svh; }
  .season-note { top: calc(42svh - 3.2rem); }
}
[hidden] { display: none !important; }
[tabindex='-1']:focus { outline: none; }
.top .logo, .hero-breathe { min-height: 44px; display: inline-flex; align-items: center; }

/* ---------- interior pages (service template) ---------- */
button.textlink { background: none; border: 0; padding: 0; font: inherit; font-weight: 700; cursor: pointer; }
.page-top { position: relative; isolation: isolate; overflow: hidden; background: #dfe7d8; padding: calc(80px + 26svh) 0 clamp(2.5rem, 5vw, 4.5rem); }
.page-bg { position: absolute; inset: -40px; z-index: -3; background: center 40% / cover no-repeat; filter: blur(18px) saturate(0.85) brightness(1.2); opacity: 0.6; }
.page-top::after { content: ''; position: absolute; inset: auto 0 0; height: 55%; z-index: -2; background: linear-gradient(rgba(251, 252, 250, 0), var(--paper)); }
.page-top::before { content: ''; position: absolute; inset: 0 0 auto; height: 150px; z-index: 0; pointer-events: none; background: linear-gradient(180deg, rgba(251, 252, 250, 0.92), rgba(251, 252, 250, 0.55) 55%, rgba(251, 252, 250, 0)); }
.page-top canvas.canopy { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; touch-action: pan-y; }
.page-head > * { animation: rise 0.9s var(--ease) both; }
.page-head > :nth-child(2) { animation-delay: 0.06s; }
.page-head > :nth-child(3) { animation-delay: 0.12s; }
.page-head > :nth-child(4) { animation-delay: 0.18s; }
.page-head h1 { max-width: 13ch; }
.page-head .lede { margin-top: 1rem; color: var(--ink); }
.crumb { display: inline-flex; align-items: center; gap: 0.25em; min-height: 44px; margin-bottom: 0.25rem; font-weight: 700; text-decoration: none; color: var(--slate); }
.crumb svg { width: 18px; height: 18px; }
.page-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.page-actions .btn { flex: 1 1 auto; }
.hurts { margin-top: 1.1rem; font-size: var(--t-small); }
@media (min-width: 900px) {
  .page-top { padding: calc(88px + 6rem) 0 5rem; min-height: 640px; }
  .page-head > * { max-width: 36rem; }
  .page-actions .btn { flex: 0 0 auto; }
}
.article { display: grid; gap: clamp(3rem, 6vw, 4.5rem); padding-block: clamp(1.5rem, 3vw, 3rem) clamp(4rem, 8vw, 7rem); }
.prose { display: grid; gap: clamp(3rem, 6vw, 4.5rem); max-width: 44rem; }
.prose h2, .related h2 { font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem); }
.prose p { margin-top: 1rem; }
.steps.big { gap: 0; }
.steps.big li { grid-template-columns: 44px 1fr; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.steps.big li::before { font-size: 1.75rem; line-height: 1.2; }
.steps.big strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin-bottom: 0.2rem; }
.comfort { background: var(--ink); color: #eef3ec; border-radius: var(--r-chair) var(--r-chair) var(--r-soft) var(--r-soft); padding: clamp(1.5rem, 4vw, 2.75rem); }
.comfort p { color: #b9c8c2; }
.depths { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.depths li { display: grid; gap: 0.5rem; font-weight: 700; font-size: var(--t-small); }
.depths .depth { height: 56px; border-radius: 12px; border: 1.5px solid rgba(238, 243, 236, 0.35); position: relative; overflow: hidden; }
.depths .depth::after { content: ''; position: absolute; inset: auto 0 0; height: var(--d); background: linear-gradient(#a8c098, #7c9c6e); }
.comfort-actions { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center; margin-top: 1.75rem; }
.comfort .textlink { color: #fff; }
.who { display: grid; grid-template-columns: 96px 1fr; gap: 1.25rem; align-items: center; margin-top: 1.25rem; }
.who img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; clip-path: circle(46.5%); transform: scale(1.06); background: var(--mist); }
.who p { margin: 0 0 0.4rem; }
.book-aside .ticket { margin-top: 0; box-shadow: 0 0 0 1px var(--line), 0 24px 48px -28px rgba(31, 50, 48, 0.45); }
.book-aside h2 { font-size: var(--t-h3); margin-bottom: 1rem; }
.book-aside .body-t .btn { width: 100%; margin-top: 0.25rem; }
.book-aside .status { margin-top: 1rem; }
.related .quote-inline { margin-top: 0; font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem); line-height: 1.2; }
.related .quote-inline cite { color: var(--muted); }
.related h2 { margin: clamp(3rem, 6vw, 4.5rem) 0 1.25rem; }
@media (min-width: 1080px) {
  .article { grid-template-columns: minmax(0, 1fr) 360px; column-gap: clamp(3rem, 6vw, 6rem); align-items: start; }
  .book-aside { position: sticky; top: 104px; grid-column: 2; grid-row: 1 / span 2; }
  .related { grid-column: 1; }
}
.page-top canvas.canopy { -webkit-mask-image: linear-gradient(#000 70%, transparent); mask-image: linear-gradient(#000 70%, transparent); }
@media (max-width: 899px) {
  .page-top { padding-top: calc(80px + 30svh); }
  .page-top canvas.canopy { -webkit-mask-image: linear-gradient(#000 38%, transparent 49%); mask-image: linear-gradient(#000 38%, transparent 49%); }
}
@media (min-width: 900px) { .page-top canvas.canopy { left: 44%; width: 56%; } }
.depths li { align-content: start; }
.comfort .textlink, .who .textlink { min-height: 44px; display: inline-flex; align-items: center; }

/* Production routes and mobile-native additions */
.top nav a[aria-current='page'] { text-decoration: underline; text-decoration-color: var(--sage); text-decoration-thickness: 2px; text-underline-offset: 0.45em; }
html:not(.js) [data-breathe] { display: none !important; }
body.immersive { padding-bottom: 0; overflow: hidden; }
.breathe-standalone { display: block; }
.care-groups { display: grid; gap: 2.5rem; }
.care-group h3 { margin: 0 0 0.9rem; font-size: var(--t-h3); }
@media (min-width: 900px) { .care-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(3rem, 6vw, 6rem); row-gap: 3.5rem; } }
.finder-aside .top-t { min-height: 76px; display: flex; align-items: center; }
.finder-aside .body-t .btn { width: 100%; }
.first-visit-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); padding-block: clamp(2.5rem, 5vw, 5rem); }
.finder-inline { background: #fff; border-radius: var(--r-chair) var(--r-chair) var(--r-chair) 8px; padding: clamp(1.5rem, 4vw, 3rem); box-shadow: 0 12px 45px -32px rgba(31, 50, 48, 0.35), 0 0 0 1px var(--line); }
.finder-inline > p { color: var(--muted); margin-top: 0.8rem; }
.finder-inline > .btn { margin-top: 1.25rem; }
.finder-inline .step { margin-top: 0.75rem; }
.finder-inline .step h2 { font-size: clamp(1.75rem, 1.4rem + 1vw, 2.25rem); }
.finder-inline .step .kicker { margin-top: 1.3rem; }
.finder-inline .choice { box-shadow: 0 0 0 1px var(--line); }
.visit-aside { align-self: start; }
.visit-aside > h3 { margin-top: 2rem; font-size: var(--t-h3); }
.first-visit-copy .comfort { margin-top: 1rem; }
.profile-layout { display: grid; align-items: start; gap: clamp(2rem, 5vw, 4rem); padding-block: clamp(3rem, 6vw, 6rem); }
.profile-photo { width: min(100%, 300px); aspect-ratio: 1; object-fit: cover; border-radius: 50%; clip-path: circle(48%); justify-self: center; }
.profile-layout .prose { max-width: 52rem; }
.profile-layout .prose .tags { display: flex; flex-wrap: wrap; list-style: none; gap: 0.45rem; margin: 1rem 0 1.5rem; padding: 0; }
.profile-layout .prose .tags li { background: var(--mist); border-radius: 999px; padding: 0.35em 0.8em; font-size: var(--t-small); }
.quote-box { margin-bottom: 2rem; }
.next-event { display: grid; gap: 2rem; }
.next-event .actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.dock { view-transition-name: dock; }
@media (min-width: 900px) {
  .first-visit-grid { grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.8fr); align-items: start; }
  .finder-inline { grid-column: 1; grid-row: 1; }
  .first-visit-copy { grid-column: 1; grid-row: 2; }
  .visit-aside { grid-column: 2; grid-row: 1 / span 2; position: sticky; top: 110px; }
  .profile-layout { grid-template-columns: 280px minmax(0, 1fr); }
  .profile-photo { width: 240px; position: sticky; top: 110px; }
  .next-event { grid-template-columns: 1fr 1fr; align-items: center; }
}
@media (max-width: 899px) {
  .page-actions .btn { min-height: 52px; }
  .status-large { font-size: var(--t-h3); white-space: normal; }
}
.foot a { display: inline-flex; align-items: center; min-height: 44px; }
.textlink { min-height: 44px; display: inline-flex; align-items: center; }
.status[data-state='open'] i { background: var(--sage); box-shadow: 0 0 0 3px rgba(168, 192, 152, 0.28); animation: pulse 2.4s infinite; }
.status[data-state='closing'] i { background: #c98a1b; box-shadow: 0 0 0 3px rgba(201, 138, 27, 0.18); animation: none; }
.status[data-state='closed'] i { background: #8a9691; box-shadow: 0 0 0 3px rgba(138, 150, 145, 0.18); animation: none; }
.doc { display: block; min-height: 44px; color: inherit; text-decoration: none; }
.breath-noscript { max-width: 28rem; color: #b9c8c2; }
.band:not(.ink) .quote-inline cite { color: var(--muted); }
