@font-face {
  font-family: "Velora Display";
  src: url("assets/fonts/libre-caslon-display.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --stone-50: #f8f6f0;
  --stone-100: #f1eee6;
  --stone-200: #e3ddd1;
  --stone-300: #d0c7b7;
  --surface-finder: #f4eee3;
  --surface-treatments: #e5eadf;
  --surface-place: #e0d6c8;
  --surface-visit: #efe7db;
  --surface-faq: #dbe3d8;
  --ink: #24352e;
  --ink-soft: #526159;
  --sage: #9eaa92;
  --sage-dark: #66735f;
  --sage-pale: #dfe4da;
  --brass: #a58758;
  --oak: #302a23;
  --danger: #8a463b;
  --line: rgba(36, 53, 46, 0.2);
  --serif: "Velora Display", "Iowan Old Style", Baskerville, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --page: min(1180px, calc(100vw - 48px));
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--stone-50);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
body.is-intro { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img { display: block; width: 100%; }
a { color: inherit; }
[hidden] { display: none !important; }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: 16px; padding: 10px 14px; background: var(--ink); color: white; transform: translateY(-200%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }

.intro-cover { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; overflow: hidden; background: var(--oak); color: var(--stone-50); transition: transform .9s var(--ease); }
.intro-cover::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.05), transparent 75%); transform: translateX(-100%); animation: intro-light 1.4s ease-out both; }
.intro-cover.is-leaving { transform: translateY(-100%); will-change: transform; }
.intro-mark { position: relative; display: grid; justify-items: center; gap: 24px; width: min(280px, 60vw); transition: opacity .35s ease, transform .55s var(--ease); }
.intro-mark > span:first-child { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); letter-spacing: .28em; line-height: 1; text-transform: uppercase; }
.intro-rule { width: 100%; height: 1px; overflow: hidden; background: rgba(248,246,240,.2); }
.intro-rule::after { content: ""; display: block; width: 100%; height: 100%; background: var(--brass); transform: scaleX(0); transform-origin: left; animation: intro-rule 1.1s var(--ease) forwards; }
.intro-cover.is-leaving .intro-mark { opacity: 0; transform: translateY(-20px); }

@keyframes intro-light { to { transform: translateX(100%); } }
@keyframes intro-rule { to { transform: scaleX(1); } }

.loading-bar { position: fixed; z-index: 120; inset: 0 0 auto; height: 3px; background: var(--sage-dark); transform: scaleX(0); transform-origin: left; opacity: 0; transition: transform .45s var(--ease), opacity .2s; }
.loading-bar.is-loading { transform: scaleX(.72); opacity: 1; }
.loading-bar.is-done { transform: scaleX(1); opacity: 0; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(32px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid rgba(36, 53, 46, .14);
  background: transparent;
  isolation: isolate;
  transition: background .55s var(--ease), box-shadow .55s var(--ease);
}
.site-header::before { content: ""; position: absolute; z-index: -1; inset: 0 54% 0 0; background: rgba(248, 246, 240, .94); transition: opacity .55s var(--ease); }
.site-header.is-sticky { background: rgba(248, 246, 240, .98); box-shadow: 0 12px 36px rgba(36, 53, 46, .08); }
.site-header.is-sticky::before { opacity: 0; }
.wordmark { z-index: 1; text-transform: uppercase; text-decoration: none; font-family: var(--serif); font-size: 1.25rem; letter-spacing: .26em; line-height: 1; }
.main-nav { position: absolute; inset: 0; display: grid; grid-template-columns: 46% 54%; pointer-events: none; }
.nav-links { display: flex; grid-column: 1; align-items: center; justify-content: flex-end; gap: clamp(12px, 1.45vw, 24px); min-width: 0; padding: 0 26px 0 172px; transition: transform .65s var(--ease); }
.site-header.is-sticky .nav-links { transform: translateX(calc(54vw - max(220px, calc((100vw - 1440px) / 2 + 130px)))); }
.nav-links > a, .nav-links .text-button { border: 0; background: none; padding: 10px 0; text-decoration: none; font-size: .79rem; white-space: nowrap; cursor: pointer; pointer-events: auto; }
.nav-links > a { position: relative; }
.nav-links > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 1px; background: currentColor; transition: right .35s var(--ease); }
.nav-links > a:hover::after { right: 0; }
.main-nav svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.main-nav > .button { grid-column: 2; align-self: center; justify-self: end; margin-right: max(32px, calc((100vw - 1440px) / 2)); pointer-events: auto; }
.menu-button { display: none; }

.button {
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.05rem;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.button:hover:not(:disabled) { transform: translateY(-2px); }
.button:disabled { cursor: not-allowed; opacity: .55; }
.button-small { min-height: 44px; padding: 9px 18px; font-family: var(--sans); font-size: .82rem; }
.button-primary { background: var(--sage-dark); color: white; }
.button-primary:hover { background: var(--ink); }
.button-outline { border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: white; }
.site-header:not(.is-sticky) .main-nav .button-outline { border-color: var(--brass); background: rgba(48, 42, 35, .62); color: white; }
.site-header:not(.is-sticky) .main-nav .button-outline:hover { background: var(--oak); }
.button-light { background: var(--stone-100); color: var(--ink); }
.button-light:hover { background: white; }
.button-ghost-light { border-color: rgba(255,255,255,.55); color: white; }
.button-ghost-light:hover { border-color: white; }
.text-button { display: inline-flex; align-items: center; gap: 8px; border: 0; padding: 8px 0; background: transparent; cursor: pointer; }
.text-button.danger { color: var(--danger); }
.icon-button { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.icon-button svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.site-header .menu-button { display: none; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding: 12px 0; text-decoration: none; border-bottom: 1px solid currentColor; line-height: 1; }
.text-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.4; transition: transform .3s var(--ease); }
.text-link:hover svg { transform: translateX(5px); }
.text-link-button { border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; font: inherit; }

.hero { min-height: 100vh; display: grid; grid-template-columns: 46% 54%; grid-template-rows: minmax(680px, 100vh); background: var(--stone-100); }
.hero-copy { position: relative; display: grid; align-items: center; padding: 132px clamp(36px, 7vw, 112px) 70px; overflow: hidden; }
.hero-copy::after { content: ""; position: absolute; left: -2%; bottom: -28px; width: min(78%, 520px); aspect-ratio: 3 / 2; background: url("assets/hero-ornament.png") left bottom / contain no-repeat; opacity: .32; pointer-events: none; }
.hero-copy-inner { position: relative; z-index: 1; max-width: 610px; }
.hero h1 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(4rem, 5.8vw, 5.4rem); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
.hero h1 span { display: block; white-space: nowrap; }
.hero-copy p { max-width: 500px; margin: 0; color: var(--ink-soft); font-size: 1.08rem; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; }
.hero-image { margin: 0; overflow: hidden; background: var(--stone-300); }
.hero-image img { height: 100%; object-fit: cover; object-position: 50% 55%; }
@keyframes hero-image-in { from { clip-path: inset(0 0 0 100%); } to { clip-path: inset(0); } }
@keyframes hero-image-settle { from { transform: scale(1.04); } to { transform: scale(1); } }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(24px); filter: blur(6px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes hero-ornament-in { from { opacity: 0; transform: translate(-18px, 18px); } to { opacity: .32; transform: none; } }
@keyframes header-in { from { opacity: 0; transform: translateY(-18px); } }

body.is-intro .site-header, body.is-intro .hero-copy-inner > * { opacity: 0; }
body.is-intro .hero-copy::after { opacity: 0; }
body.is-intro .hero-image { clip-path: inset(0 0 0 100%); }
body.is-intro .hero-image img { transform: scale(1.04); }
body.is-ready .site-header { animation: header-in .65s .05s var(--ease) both; }
body.is-ready .hero-copy-inner > * { animation: hero-copy-in .75s var(--ease) both; }
body.is-ready .hero-copy-inner > *:nth-child(1) { animation-delay: .12s; }
body.is-ready .hero-copy-inner > *:nth-child(2) { animation-delay: .24s; }
body.is-ready .hero-copy-inner > *:nth-child(3) { animation-delay: .36s; }
body.is-ready .hero-copy::after { animation: hero-ornament-in .9s .42s var(--ease) both; }
body.is-ready .hero-image { animation: hero-image-in 1.05s var(--ease) both; }
body.is-ready .hero-image img { animation: hero-image-settle 1.3s var(--ease) both; }
body.motion-ready [data-reveal="copy"] { opacity: 0; transform: translateY(42px); filter: blur(5px); transition: opacity .75s var(--ease), transform .75s var(--ease), filter .75s var(--ease); }
body.motion-ready [data-reveal="copy"].is-visible { opacity: 1; transform: none; filter: blur(0); }
body.motion-ready [data-reveal="image"] { clip-path: inset(0 0 18% 0); transition: clip-path 1s var(--ease); }
body.motion-ready [data-reveal="image"] img { transform: scale(1.045); transition: transform 1.2s var(--ease); }
body.motion-ready [data-reveal="image"].is-visible { clip-path: inset(0); }
body.motion-ready [data-reveal="image"].is-visible img { transform: scale(1); }
body.motion-ready [data-reveal="line"] { opacity: .35; clip-path: inset(0 100% 0 0); transition: opacity .7s var(--ease), clip-path .9s var(--ease); }
body.motion-ready [data-reveal="line"].is-visible { opacity: 1; clip-path: inset(0); }
body.motion-ready [data-reveal="list"] > * { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
body.motion-ready [data-reveal="list"].is-visible > * { opacity: 1; transform: none; }
body.motion-ready [data-reveal="list"].is-visible > *:nth-child(2) { transition-delay: .08s; }
body.motion-ready [data-reveal="list"].is-visible > *:nth-child(3) { transition-delay: .16s; }
body.motion-ready [data-reveal="list"].is-visible > *:nth-child(n+4) { transition-delay: .22s; }

.section { position: relative; z-index: 0; width: var(--page); margin-inline: auto; padding: 150px 0; }
.section::before { content: ""; position: absolute; z-index: -1; inset: 0; background: var(--section-surface); box-shadow: 0 0 0 100vmax var(--section-surface); clip-path: inset(0 -100vmax); }
.section-heading { max-width: 700px; }
.section-heading h2, .place h2, .closing h2 { margin: 0 0 26px; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 400; line-height: 1.04; letter-spacing: -.03em; text-wrap: balance; }
.section-heading p, .place-copy p { max-width: 65ch; margin: 0; color: var(--ink-soft); }

.finder { --section-surface: var(--surface-finder); display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr); gap: 24px 90px; }
.finder-heading { grid-row: span 2; }
.goal-selector { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.goal-selector button { min-height: 72px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease); }
.goal-selector button:nth-child(odd) { border-right: 1px solid var(--line); }
.goal-selector button:nth-child(even) { padding-left: 28px; }
.goal-selector button:hover, .goal-selector button.is-active { background: var(--sage-pale); color: var(--ink); }
.recommendation { min-height: 170px; padding: 26px 0 0; }
.recommendation.is-revealed { animation: recommendation-in .65s var(--ease) both; }
.recommendation h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.recommendation p { margin: 0 0 18px; color: var(--ink-soft); }
.recommendation-meta { display: flex; gap: 18px; margin-bottom: 20px; font-size: .82rem; }
@keyframes recommendation-in { from { clip-path: inset(0 0 100% 0); opacity: .4; } to { clip-path: inset(0); opacity: 1; } }

.treatments { --section-surface: var(--surface-treatments); display: grid; grid-template-rows: auto auto minmax(0, 1fr); height: clamp(780px, 100svh, 960px); padding-block: clamp(72px, 10svh, 110px); border-top: 1px solid var(--line); }
.treatments-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); gap: 80px; max-width: none; align-items: end; }
.treatments-heading p { padding-bottom: 14px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 6px 28px; margin: 36px 0 20px; border-bottom: 1px solid var(--line); }
.filter-button { min-height: 46px; padding: 0 0 10px; border: 0; border-bottom: 2px solid transparent; background: transparent; cursor: pointer; color: var(--ink-soft); }
.filter-button.is-active { color: var(--ink); border-color: var(--sage-dark); }
.treatment-list { min-height: 0; overflow-y: auto; padding-inline-end: 12px; border-top: 1px solid var(--line); scrollbar-gutter: stable; scroll-padding-block: 16px; }
.treatment-row { display: grid; grid-template-columns: minmax(220px, .8fr) minmax(280px, 1.25fr) 80px 80px 90px 44px; gap: 24px; align-items: center; min-height: 142px; border-bottom: 1px solid var(--line); }
.treatment-row h3 { margin: 0; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.treatment-row p { margin: 0; color: var(--ink-soft); }
.treatment-row .meta { font-size: .86rem; }
.favorite-button { grid-column: 6; grid-row: 1; width: 44px; height: 44px; justify-self: end; border: 0; background: transparent; cursor: pointer; }
.favorite-button svg { width: 21px; height: 21px; fill: transparent; stroke: currentColor; stroke-width: 1.4; }
.favorite-button.is-saved svg { fill: var(--sage); stroke: var(--sage-dark); }
.book-row-button { grid-column: 5; grid-row: 1; justify-self: end; min-height: 44px; padding: 8px 15px; font-family: var(--sans); font-size: .82rem; }
.treatment-skeleton { height: 142px; border-bottom: 1px solid var(--line); background: var(--stone-100); animation: skeleton 1.2s ease-in-out infinite alternate; }
@keyframes skeleton { to { background: var(--stone-200); } }
.empty-state { padding: 64px 0; color: var(--ink-soft); }

.place { --section-surface: var(--surface-place); display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: auto auto; gap: 36px 80px; align-items: center; }
.place-image-large { grid-row: 1 / span 2; height: 760px; overflow: hidden; }
.place-image-large img { height: 100%; object-fit: cover; }
.place-copy { align-self: end; padding: 54px 0 20px; }
.place-copy p + p { margin-top: 20px; }
.place-copy .text-link { margin-top: 26px; }
.place-image-detail { height: 300px; overflow: hidden; }
.place-image-detail img { height: 100%; object-fit: cover; }

.visit { --section-surface: var(--surface-visit); display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; border-top: 1px solid var(--line); }
.visit-heading { position: sticky; top: 120px; align-self: start; }
.visit-steps { margin: 0; padding: 0; list-style: none; counter-reset: visit; }
.visit-steps li { counter-increment: visit; display: grid; grid-template-columns: 56px 1fr; gap: 6px 20px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.visit-steps li::before { content: counter(visit, decimal-leading-zero); grid-row: span 2; font-family: var(--serif); font-size: 1.3rem; color: var(--sage-dark); }
.visit-steps strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.visit-steps span { color: var(--ink-soft); }

.faq { --section-surface: var(--surface-faq); display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 28px 44px 28px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.35rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 24px; font-family: var(--sans); font-weight: 300; transition: transform .3s var(--ease); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { max-width: 65ch; margin: -6px 0 30px; color: var(--ink-soft); }

.closing { padding: 130px max(24px, calc((100vw - 1180px) / 2)); background: var(--ink); color: white; text-align: center; }
.closing h2 { margin-inline: auto; max-width: 9ch; }
.closing p { margin: 0 auto; max-width: 54ch; color: #d5ddd8; }
.closing-actions { display: flex; justify-content: center; gap: 14px; margin-top: 36px; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding: 74px max(24px, calc((100vw - 1180px) / 2)) 32px; background: var(--stone-200); }
.site-footer > div > p { color: var(--ink-soft); }
.newsletter label { display: block; margin-bottom: 12px; font-family: var(--serif); font-size: 1.2rem; }
.newsletter > div { display: flex; border-bottom: 1px solid var(--ink); }
.newsletter input { flex: 1; min-width: 0; border: 0; padding: 14px 0; background: transparent; }
.newsletter button { width: 48px; border: 0; background: transparent; cursor: pointer; }
.newsletter svg { width: 20px; height: 20px; fill: none; stroke: currentColor; }
.form-message { min-height: 24px; margin: 8px 0 0; color: var(--ink-soft); font-size: .82rem; }

.dialog { width: min(720px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 0; border: 0; border-radius: 6px; background: var(--stone-50); color: var(--ink); box-shadow: 0 28px 90px rgba(24, 31, 27, .28); }
.dialog::backdrop { background: rgba(28, 34, 31, .64); }
.dialog-shell { min-height: 320px; max-height: calc(100vh - 32px); overflow-y: auto; }
.dialog-header { position: sticky; z-index: 2; top: 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 28px 34px 22px; border-bottom: 1px solid var(--line); background: rgba(248, 246, 240, .98); }
.dialog-header span { display: block; color: var(--ink-soft); font-size: .76rem; }
.dialog-header h2 { margin: 4px 0 0; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; line-height: 1.1; }
.booking-dialog form, .gift-dialog form, .account-panel { padding: 32px 34px 38px; }
.booking-step > label, .form-grid label { display: block; margin: 0 0 8px; font-size: .82rem; }
.booking-step > label:not(:first-child) { margin-top: 24px; }
input, select, textarea { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 2px; padding: 12px 14px; background: white; color: var(--ink); }
textarea { resize: vertical; }
label span { color: var(--ink-soft); }
.time-fieldset { margin: 24px 0 0; padding: 0; border: 0; }
.time-fieldset legend { margin-bottom: 10px; font-size: .82rem; }
.time-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; min-height: 56px; }
.time-slot { min-height: 46px; border: 1px solid var(--line); border-radius: 2px; background: transparent; cursor: pointer; }
.time-slot:hover:not(:disabled), .time-slot.is-selected { border-color: var(--ink); background: var(--sage-pale); }
.time-slot:disabled { color: #8b8f8c; text-decoration: line-through; cursor: not-allowed; }
.time-loading { grid-column: 1 / -1; display: grid; min-height: 46px; place-items: center; background: var(--stone-200); color: var(--ink-soft); font-size: .82rem; animation: skeleton 1s infinite alternate; }
.muted, .privacy-copy { color: var(--ink-soft); font-size: .82rem; }
.dialog-actions { display: flex; justify-content: flex-end; align-items: center; gap: 24px; margin-top: 30px; }
.form-error { min-height: 24px; margin: 12px 0 0; color: var(--danger); font-size: .82rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-full { grid-column: 1 / -1; }
.booking-summary { border-top: 1px solid var(--line); }
.summary-row { display: flex; justify-content: space-between; gap: 30px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.summary-row span { color: var(--ink-soft); }
.summary-row strong { text-align: right; font-weight: 500; }
.checkbox-row { display: grid; grid-template-columns: 20px 1fr; gap: 12px; margin-top: 24px; font-size: .82rem; color: var(--ink-soft); }
.checkbox-row input { width: 18px; height: 18px; min-height: 0; margin: 2px 0 0; accent-color: var(--sage-dark); }
.booking-success, .gift-success { padding: 54px 34px; text-align: center; }
.booking-success svg, .gift-success svg { width: 48px; height: 48px; fill: none; stroke: var(--sage-dark); stroke-width: 1.3; }
.booking-success h3, .gift-success h3 { margin: 18px 0 8px; font-family: var(--serif); font-size: 2.4rem; font-weight: 400; }
.confirmation-code { display: inline-block; margin: 16px 0 26px; padding: 10px 14px; border: 1px solid var(--line); font-family: var(--sans); letter-spacing: .12em; }

.account-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.account-tabs button { min-height: 54px; border: 0; border-bottom: 2px solid transparent; background: transparent; cursor: pointer; }
.account-tabs button.is-active { border-color: var(--sage-dark); background: var(--sage-pale); }
.appointments-loading { height: 180px; background: var(--stone-100); animation: skeleton 1s infinite alternate; }
.appointment { padding: 24px 0; border-bottom: 1px solid var(--line); }
.appointment:first-child { padding-top: 0; }
.appointment-head { display: flex; justify-content: space-between; gap: 24px; }
.appointment h3 { margin: 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.appointment-status { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--sage-dark); }
.appointment-status.cancelled { color: var(--danger); }
.appointment p { margin: 7px 0 0; color: var(--ink-soft); }
.appointment-actions { display: flex; gap: 22px; margin-top: 14px; }
.appointment-actions button { border: 0; padding: 4px 0; background: transparent; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.gift-success { padding-top: 34px; }

.toast { position: fixed; z-index: 150; left: 50%; bottom: 24px; max-width: min(460px, calc(100vw - 32px)); padding: 13px 18px; border-radius: 2px; background: var(--ink); color: white; opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1100px) {
  .site-header { height: 72px; padding: 0 20px; background: rgba(248, 246, 240, .98); }
  .site-header::before { display: none; }
  .site-header .menu-button { display: inline-grid; }
  .main-nav { position: fixed; inset: 72px 0 auto; display: grid; grid-template-columns: 1fr; gap: 0; padding: 20px; border-bottom: 1px solid var(--line); background: var(--stone-50); transform: translateY(-130%); opacity: 0; pointer-events: auto; transition: transform .4s var(--ease), opacity .25s; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; }
  .nav-links { display: grid; grid-column: 1; gap: 0; padding: 0; }
  .site-header.is-sticky .nav-links { transform: none; }
  .nav-links > a, .nav-links .text-button { min-height: 48px; justify-content: flex-start; border-bottom: 1px solid var(--line); }
  .main-nav > .button { grid-column: 1; justify-self: stretch; margin: 14px 0 0; }
  .site-header:not(.is-sticky) .main-nav .button-outline { border-color: var(--ink); background: transparent; color: var(--ink); }
  .site-header.is-sticky .main-nav { inset-block-start: 72px; }
}

@media (max-width: 980px) {
  :root { --page: min(100% - 36px, 760px); }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto minmax(430px, 58vh); }
  .hero-copy { min-height: 640px; padding: 130px max(24px, 7vw) 74px; }
  .hero-image { grid-row: 2; }
  .section { padding: 110px 0; }
  .finder, .treatments-heading, .place, .visit, .faq { grid-template-columns: 1fr; gap: 54px; }
  .finder-heading { grid-row: auto; }
  .treatment-row { grid-template-columns: 1fr 90px 80px 104px; gap: 18px; padding: 24px 0; }
  .treatment-row p { grid-column: 1 / -1; grid-row: 2; }
  .favorite-button { grid-column: 4; grid-row: 1; }
  .book-row-button { grid-column: 4; grid-row: 2; }
  .place-image-large { grid-row: auto; height: 560px; }
  .place-copy { padding-top: 18px; }
  .place-image-detail { height: 420px; }
  .visit-heading { position: static; }
  .faq { gap: 34px; }
}

@media (max-width: 640px) {
  :root { --page: calc(100% - 32px); }
  .hero-copy { min-height: 590px; padding-inline: 24px; }
  .hero h1 { font-size: clamp(3.35rem, 15vw, 4.25rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .section { padding: 86px 0; }
  .section-heading h2, .place h2, .closing h2 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .goal-selector { grid-template-columns: 1fr; }
  .goal-selector button:nth-child(odd) { border-right: 0; }
  .goal-selector button:nth-child(even) { padding-left: 0; }
  .goal-selector button:nth-child(even):hover, .goal-selector button:nth-child(even).is-active { padding-left: 18px; }
  .treatments { grid-template-rows: auto auto auto; height: auto; }
  .treatment-list { height: clamp(360px, 58svh, 540px); }
  .treatment-row { grid-template-columns: 1fr auto; gap: 12px 16px; }
  .treatment-row p { grid-column: 1 / -1; }
  .treatment-row .meta { grid-column: 1; }
  .favorite-button { grid-column: 2; grid-row: 1; }
  .book-row-button { grid-column: 2; grid-row: 3; }
  .place-image-large { height: 460px; }
  .place-image-detail { height: 300px; }
  .visit-steps li { grid-template-columns: 40px 1fr; }
  .closing { padding-block: 88px; }
  .closing-actions { flex-direction: column; align-items: stretch; }
  .site-footer { grid-template-columns: 1fr; padding-top: 58px; }
  .dialog { width: 100%; max-width: none; max-height: 100dvh; height: 100dvh; margin: 0; border-radius: 0; }
  .dialog-shell { max-height: 100dvh; min-height: 100dvh; }
  .dialog-header { padding: 22px 20px 18px; }
  .booking-dialog form, .gift-dialog form, .account-panel { padding: 26px 20px 34px; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: 1; }
  .dialog-actions { align-items: stretch; flex-direction: column-reverse; gap: 10px; }
  .dialog-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-image, [data-reveal] { clip-path: none !important; }
  [data-reveal], [data-reveal] > * { opacity: 1 !important; transform: none !important; filter: none !important; }
}
