/* ============================================================
   TREAT DAY SPA — website redesign v2
   Kalm-inspired: calm, generous whitespace, soft motion
   Palette: parchment / ink / gold / eucalyptus / velour
   Type: Fraunces (display) + system sans (body)
   ============================================================ */

:root {
  --parchment: #f6f3ee;
  --parchment-deep: #ece7de;
  --card: #fffdf9;
  --ink: #1c1b18;
  --gold: #b8962e;
  --gold-soft: #cdb268;
  --hairline: #e3dcd1;
  --eucalyptus: #3f6f4f;
  --stone: #8a8577;
  --velour: #211d18;
  --parchment-on-dark: #efe9df;
  --blush: #b0526a;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --maxw: 1120px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
  --shadow: 0 10px 40px rgba(33, 29, 24, 0.10);
  --shadow-soft: 0 4px 18px rgba(33, 29, 24, 0.07);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 74px; /* mobile tab bar */
}
@media (min-width: 880px) { body { padding-bottom: 0; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- type ---------- */
.display { font-family: var(--font-display); font-weight: 380; letter-spacing: -0.01em; line-height: 1.12; }
.display em { font-style: italic; color: var(--gold); }
h1.display { font-size: clamp(2.3rem, 6vw, 4.2rem); }
h2.display { font-size: clamp(1.8rem, 4.2vw, 2.9rem); }
h3.display { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }

.eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--stone);
}
.eyebrow--gold { color: var(--gold); }
.lede { font-size: clamp(1rem, 1.6vw, 1.15rem); color: #4c473e; max-width: 44em; }
.mins { font-size: 0.78rem; color: var(--stone); letter-spacing: 0.04em; white-space: nowrap; }
.price { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); white-space: nowrap; }
.price s { color: var(--stone); font-size: 0.85em; margin-right: 0.35em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.7rem; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid var(--ink); color: var(--ink);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  cursor: pointer; background: transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--gold:hover { background: #a5851f; }
.btn--ghost-light { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); }
.btn--whatsapp { background: #25d366; border-color: #25d366; color: #fff; }

/* ---------- topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246, 243, 238, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow 0.3s;
}
.topbar.is-scrolled { box-shadow: var(--shadow-soft); }
.topbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0.8rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.wordmark { font-family: var(--font-display); font-size: 1.45rem; font-style: italic; color: var(--ink); line-height: 1; display: inline-flex; align-items: center; gap: 0.65rem; }
.wordmark img { width: 54px; height: 54px; border-radius: 50%; flex: none; }
footer .wordmark img { width: 72px; height: 72px; }
.wordmark small { font-style: normal; font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.34em; text-transform: uppercase; display: block; color: var(--gold); margin-top: 2px; }
.topnav { display: none; align-items: center; gap: 1.6rem; font-size: 0.92rem; }
.topnav a:not(.btn) { position: relative; padding: 0.25rem 0; }
.topnav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.topnav a:not(.btn):hover::after, .topnav a[aria-current]::after { width: 100%; }
.topnav .btn { padding: 0.6rem 1.3rem; }
@media (min-width: 880px) { .topnav { display: flex; } }
.topbar .btn--mobilebook { padding: 0.55rem 1.15rem; font-size: 0.85rem; }
@media (min-width: 880px) { .topbar .btn--mobilebook { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(92svh, 820px); display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  animation: kenburns 22s var(--ease) both;
  transform-origin: 60% 40%;
}
@keyframes kenburns {
  from { transform: scale(1.14) translate(2%, -1%); }
  to   { transform: scale(1.0) translate(0, 0); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(20, 16, 11, 0.82) 0%, rgba(20, 16, 11, 0.35) 45%, rgba(20, 16, 11, 0.18) 100%);
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; width: 100%; padding: clamp(5rem, 12vh, 8rem) var(--pad) clamp(3rem, 7vh, 5rem); color: #fff; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .lede { color: rgba(255, 255, 255, 0.88); margin-top: 1.1rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; letter-spacing: 0.05em; color: #fff;
  border: 1px solid rgba(255,255,255,0.35); border-radius: 999px;
  padding: 0.4rem 0.9rem; backdrop-filter: blur(6px); background: rgba(255,255,255,0.08);
}
.chip svg { width: 13px; height: 13px; fill: var(--gold-soft); }

/* staggered fade-up */
.fade-up { opacity: 0; transform: translateY(26px); animation: fadeUp 0.9s var(--ease) forwards; }
.fade-up:nth-child(1) { animation-delay: 0.15s; }
.fade-up:nth-child(2) { animation-delay: 0.35s; }
.fade-up:nth-child(3) { animation-delay: 0.55s; }
.fade-up:nth-child(4) { animation-delay: 0.75s; }
.fade-up:nth-child(5) { animation-delay: 0.95s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%);
  color: rgba(255,255,255,0.75); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 34px; background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  animation: cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem, 8vw, 6rem) var(--pad); }
.section__head { max-width: 46em; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section__head .display { margin: 0.6rem 0 1rem; }
.rule { border: 0; height: 1px; background: var(--hairline); max-width: var(--maxw); margin: 0 auto; }

.section--dark { background: var(--velour); color: var(--parchment-on-dark); }
.section--dark .lede { color: rgba(239, 233, 223, 0.8); }
.band-dark { background: var(--velour); }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

/* ---------- why-us strip ---------- */
.why { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 880px) { .why { grid-template-columns: repeat(4, 1fr); } }
.why__item { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 1.4rem 1.3rem; box-shadow: var(--shadow-soft); }
.why__item svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.6; margin-bottom: 0.7rem; }
.why__item strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; margin-bottom: 0.25rem; }
.why__item span { font-size: 0.86rem; color: #56514a; }

/* ---------- signature experience cards ---------- */
.experiences { display: grid; gap: 1.6rem; }
@media (min-width: 880px) { .experiences { grid-template-columns: repeat(3, 1fr); } }
.exp-card {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.exp-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.exp-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.exp-card:hover .exp-card__media img { transform: scale(1.05); }
.exp-card__tag {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: rgba(33, 29, 24, 0.72); color: var(--gold-soft);
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.exp-card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.exp-card__pricing { font-size: 0.85rem; color: var(--stone); }
.exp-card__pricing b { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); font-weight: 500; }
.steps { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 0.2rem; }
.steps li { display: flex; gap: 0.7rem; font-size: 0.9rem; align-items: baseline; }
.steps li i {
  font-style: normal; flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--parchment-deep); color: var(--gold); border: 1px solid var(--gold-soft);
  font-size: 0.68rem; display: inline-flex; align-items: center; justify-content: center; transform: translateY(3px);
}
.steps li small { display: block; color: var(--stone); font-size: 0.8rem; }
.exp-card__cta { margin-top: auto; padding-top: 0.6rem; }
.exp-card__cta .btn { width: 100%; }

/* ---------- package cards ---------- */
.rituals { display: grid; gap: 1.6rem; }
@media (min-width: 880px) { .rituals { grid-template-columns: repeat(3, 1fr); } }
.ritual-card {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.ritual-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ritual-card__img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.ritual-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.ritual-card__meta { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.ritual-card__title-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.rail { display: flex; flex-direction: column; gap: 0.45rem; border-left: 1px solid var(--hairline); padding-left: 1rem; margin: 0.4rem 0 0.6rem; }
.rail li { display: flex; justify-content: space-between; gap: 0.8rem; font-size: 0.88rem; position: relative; }
.rail li::before {
  content: ""; position: absolute; left: calc(-1rem - 3.5px); top: 0.5em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--hairline);
}
.rail li.rail--peak::before { background: var(--gold); }
.ritual-card__cta { margin-top: auto; color: var(--gold); font-weight: 600; font-size: 0.9rem; }

/* ---------- training band ---------- */
.training { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 880px) { .training { grid-template-columns: 0.9fr 1.1fr; } }
.training__flyer { border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transform: rotate(-1.2deg); }
.training__flyer img { width: 100%; }
.training .display em { color: var(--gold-soft); }
.training__price { display: flex; align-items: baseline; gap: 0.8rem; margin: 1.1rem 0 0.3rem; }
.training__price b { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 500; color: var(--gold-soft); }
.training__price s { color: rgba(239,233,223,0.55); font-size: 1.1rem; }
.training__price .pill { background: var(--blush); color: #fff; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 999px; padding: 0.3rem 0.75rem; }
.ticks { display: grid; gap: 0.5rem; grid-template-columns: 1fr 1fr; margin: 1.2rem 0 1.6rem; }
.ticks li { display: flex; gap: 0.55rem; font-size: 0.9rem; align-items: baseline; }
.ticks li::before { content: "✓"; color: var(--gold-soft); font-weight: 700; }
.training__group { border: 1px solid rgba(239,233,223,0.25); border-radius: var(--radius); padding: 1.1rem 1.3rem; font-size: 0.92rem; margin-bottom: 1.6rem; background: rgba(255,255,255,0.04); }
.training__group b { color: var(--gold-soft); }

/* ---------- location ---------- */
.location { display: grid; gap: 1.6rem; }
@media (min-width: 880px) { .location { grid-template-columns: 1fr 1fr; } }
.loc-card { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-soft); }
.loc-card h3 { margin-bottom: 0.4rem; }
.loc-card p { font-size: 0.94rem; color: #56514a; margin-bottom: 1.1rem; }
.loc-card .btn { margin-right: 0.5rem; margin-top: 0.4rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 46em; }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; font-family: var(--font-display); font-size: 1.08rem; font-weight: 450;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 1.2rem; font-size: 0.94rem; color: #56514a; max-width: 40em; }

/* ---------- menu (treatments page) ---------- */
.menu-cols { display: grid; gap: 2.6rem; }
@media (min-width: 880px) { .menu-cols { grid-template-columns: 1fr 1fr; } }
.menu-cat h3 { margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); display: inline-block; }
.menu-item {
  display: flex; align-items: baseline; gap: 0.6rem; padding: 0.68rem 0.4rem;
  border-radius: 10px; transition: background 0.25s;
}
.menu-item:hover { background: var(--parchment-deep); }
.menu-item__name { font-size: 0.97rem; }
.menu-item__dots { flex: 1; border-bottom: 1px dotted var(--hairline); transform: translateY(-4px); }

.pay-note { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.9rem; color: #56514a; }
.pay-note svg { width: 22px; height: 22px; stroke: var(--eucalyptus); fill: none; stroke-width: 1.6; flex: none; }

/* ---------- footer ---------- */
footer { background: var(--velour); color: var(--parchment-on-dark); margin-top: clamp(2rem, 5vw, 4rem); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
  display: grid; gap: 2rem; font-size: 0.92rem;
}
@media (min-width: 880px) { .footer__inner { grid-template-columns: 1.2fr 1fr 1fr; } }
footer .wordmark { color: var(--parchment-on-dark); }
footer nav { display: flex; flex-direction: column; gap: 0.55rem; }
footer nav a:hover { color: var(--gold-soft); }
footer p { color: rgba(239,233,223,0.72); }

/* ---------- mobile tab bar ---------- */
.tabbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  display: flex; background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--hairline);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 880px) { .tabbar { display: none; } }
.tabbar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 0.55rem 0 0.5rem; font-size: 0.62rem; letter-spacing: 0.06em; color: var(--stone);
}
.tabbar a svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.tabbar a[aria-current], .tabbar a:active { color: var(--ink); }
.tabbar .tab--book { color: var(--gold); font-weight: 700; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 86px; z-index: 65;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; fill: #fff; }
@media (min-width: 880px) { .wa-float { bottom: 1.4rem; } }

/* ---------- PWA install banner ---------- */
.install-nudge {
  position: fixed; left: 50%; transform: translateX(-50%) translateY(140%);
  bottom: 84px; z-index: 80; width: min(94vw, 430px);
  background: var(--velour); color: var(--parchment-on-dark);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1rem 1.2rem; display: flex; gap: 1rem; align-items: center;
  transition: transform 0.5s var(--ease);
}
.install-nudge.is-shown { transform: translateX(-50%) translateY(0); }
.install-nudge p { font-size: 0.85rem; line-height: 1.4; flex: 1; }
.install-nudge .btn { padding: 0.5rem 1.05rem; font-size: 0.8rem; flex: none; }
.install-nudge .nudge-close { background: none; border: none; color: var(--stone); font-size: 1.1rem; cursor: pointer; }
@media (min-width: 880px) { .install-nudge { bottom: 1.4rem; } }

/* ============================================================
   v2.1 — video hero, reviews, treatment pages
   ============================================================ */

/* ---------- video hero ---------- */
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero__video.is-active { opacity: 1; }
.hero--video .hero__img { animation: none; transform: none; z-index: -3; } /* fallback poster BEHIND the videos */
.hero__mute-note { display: none; }

/* ---------- reviews ---------- */
.reviews { display: grid; gap: 1.4rem; }
@media (min-width: 880px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 0.9rem;
}
.review-card__stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.85rem; }
.review-card blockquote { font-family: var(--font-display); font-size: 1.02rem; line-height: 1.5; font-style: italic; color: #3c372e; }
.review-card figcaption { font-size: 0.82rem; color: var(--stone); }
.review-card figcaption b { color: var(--ink); font-weight: 600; display: block; font-style: normal; }

/* ---------- treatment pages ---------- */
.crumbs { font-size: 0.78rem; color: var(--stone); margin-bottom: 1rem; letter-spacing: 0.04em; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 0.4em; color: var(--hairline); }

.tp-hero { position: relative; min-height: 46svh; display: flex; align-items: flex-end; overflow: hidden; }
.tp-hero .hero__inner { padding-top: 4rem; padding-bottom: 2.5rem; }

.tp-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .tp-grid { grid-template-columns: 1.5fr 1fr; align-items: start; } }
.tp-aside { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 1.2rem; }
.tp-aside .loc-card { padding: 1.4rem; }
.tp-aside .btn { width: 100%; margin: 0 0 0.5rem; }

.benefits { display: grid; gap: 0.9rem; grid-template-columns: 1fr; margin: 1.4rem 0; }
@media (min-width: 640px) { .benefits { grid-template-columns: 1fr 1fr; } }
.benefits li { display: flex; gap: 0.6rem; font-size: 0.94rem; align-items: baseline; background: var(--card); border: 1px solid var(--hairline); border-radius: 12px; padding: 0.8rem 1rem; }
.benefits li::before { content: "✦"; color: var(--gold); flex: none; }

.prose { max-width: 46em; }
.prose h2 { margin: 2.2rem 0 0.8rem; }
.prose p { margin-bottom: 1rem; color: #3c372e; }

.price-list { border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; margin: 1.4rem 0; background: var(--card); }
.price-list a { display: flex; align-items: baseline; gap: 0.7rem; padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--hairline); transition: background 0.2s; }
.price-list a:last-child { border-bottom: 0; }
.price-list a:hover { background: var(--parchment-deep); }

.next-treatments { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.next-treatments a {
  border: 1px solid var(--hairline); border-radius: 999px; padding: 0.5rem 1.1rem;
  font-size: 0.85rem; background: var(--card); transition: border-color 0.2s, color 0.2s;
}
.next-treatments a:hover { border-color: var(--gold); color: var(--gold); }

.cta-band { background: var(--velour); color: var(--parchment-on-dark); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 3rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; }
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); }

/* ============================================================
   v2.2 — richer footer, availability pills
   ============================================================ */

.footer__grid { display: grid; gap: 2.5rem; padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 880px) { .footer__grid { grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr; gap: 3rem; } }
.footer__brand p { margin-top: 1.1rem; max-width: 24em; font-size: 0.92rem; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(239, 233, 223, 0.3);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.footer__social a:hover { border-color: var(--gold-soft); background: rgba(205, 178, 104, 0.12); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; stroke: var(--parchment-on-dark); fill: none; stroke-width: 1.6; }
.footer__social a[aria-label="WhatsApp"] svg { fill: var(--parchment-on-dark); stroke: none; }
.footer__social a[aria-label="Facebook"] svg { fill: var(--parchment-on-dark); stroke: none; }

footer h4 {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 1rem;
}
footer nav a { padding: 0.22rem 0; font-size: 0.92rem; }
.footer__contact { display: flex; flex-direction: column; }
.footer__contact a:not(.btn) { padding: 0.22rem 0; font-size: 0.92rem; }
.footer__contact a:not(.btn):hover, footer nav a:hover { color: var(--gold-soft); }
.footer__hours { font-size: 0.85rem; margin: 0.9rem 0 1.1rem; color: rgba(239, 233, 223, 0.65); }
.footer__contact .btn { align-self: flex-start; }

.footer__bottom { border-top: 1px solid rgba(239, 233, 223, 0.14); }
.footer__bottom .footer__inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem;
  padding-top: 1.3rem; padding-bottom: 1.3rem; font-size: 0.8rem;
  color: rgba(239, 233, 223, 0.6);
}
.footer__bottom a:hover { color: var(--gold-soft); }

/* availability */
.soon-pill {
  flex: none; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blush); border: 1px solid currentColor; border-radius: 999px;
  padding: 0.12rem 0.5rem; transform: translateY(-2px);
}
.menu-item.is-soon .menu-item__name, .menu-item.is-soon .price { color: var(--stone); }
.open-pill {
  display: inline-block; font-family: var(--font-body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--eucalyptus);
  border-radius: 999px; padding: 0.2rem 0.65rem; vertical-align: middle; margin-left: 0.5rem;
}
.ritual-card--soon { position: relative; }
.soon-badge {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  background: rgba(33, 29, 24, 0.78); color: var(--gold-soft);
  font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.ritual-card--soon .ritual-card__img { filter: saturate(0.75); }
.loc-card--tease { background: var(--velour); color: var(--parchment-on-dark); border-color: var(--velour); }
.loc-card--tease p { color: rgba(239, 233, 223, 0.78); }
