/* ===========================================================================
   SWAN SPA — STYLESHEET
   All colours, fonts and spacing live in the :root block below.
   Change a value there once and it updates everywhere on the site.
   =========================================================================== */

:root {
  /* --- Brand colours ---------------------------------------------------- */
  --bg:            #F6F1E8;   /* page background (warm cream)               */
  --card:          #FFFDF9;   /* card / panel background                    */
  --sand:          #F1EADC;   /* highlighted panel (gift certificate)       */
  --brown:         #775331;   /* primary brand brown                        */
  --brown-deep:    #6B4B2D;   /* footer bg — one step under --brown          */
  --brown-hover:   #8D663B;   /* brown hover — lightens on hover            */
  --gold:          #E2C79B;   /* accent gold                                */
  --gold-hover:    #C4A272;   /* gold hover state                           */
  --gold-soft:     #D8BE8E;   /* hero eyebrow gold                          */
  --olive:         #8A673A;   /* eyebrow / label text                       */
  --ink:           #33302B;   /* strongest body text                        */
  --muted:         #5F594F;   /* standard body text                         */
  --muted-2:       #6E675E;   /* secondary / note text                      */
  --line:          #E3DACA;   /* standard border                            */
  --line-2:        #E9E1D2;   /* inner border (price tiles)                 */
  --line-3:        #F0EADD;   /* faintest divider                           */
  --menu-hover:    #EFE8DA;   /* mobile menu row hover                      */
  --map-bg:        #EDE6D8;   /* map placeholder background                 */
  --light:         #FFFDF9;   /* text on dark backgrounds                   */

  /* --- Typography ------------------------------------------------------- */
  --serif: Spectral, Georgia, "Times New Roman", serif;
  --sans:  Karla, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- Layout ----------------------------------------------------------- */
  --page-x:   clamp(18px, 4.5vw, 48px);  /* horizontal page padding         */
  --sec-y:    clamp(52px, 9vw, 96px);    /* tall section vertical padding   */
  --band-y:   clamp(44px, 7vw, 72px);    /* medium section vertical padding */
  --wide:     1120px;                    /* widest container                */
  --mid:      1000px;
  --narrow:   900px;
  --prose:    660px;
  --radius:   2px;
  --tap:      44px;                      /* minimum touch target            */

  /* Hero darkening. A flat black layer over the hero photo, on top of the
     brown gradient, so white heading text stays readable on bright images.
     0 = no darkening, .18 = slight (default), .35 = strong.               */
  --hero-dim: .18;

  /* Colour of the hero gradient scrim, as an "r, g, b" triplet. Kept in
     step with the brand brown so the hero matches the rest of the site. */
  --hero-tint: 68, 45, 29;

  /* RGB triplets, so semi-transparent variants of these three colours
     derive from the palette instead of repeating the numbers.
     Keep each in step with its hex above. */
  --bg-rgb:    246, 241, 232;   /* = --bg    */
  --light-rgb: 255, 253, 249;   /* = --light */
  --gold-rgb:  226, 199, 155;   /* = --gold  */
}

/* --------------------------------------------------------------------------
   RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  /* `clip` prevents sideways scroll WITHOUT making body a scroll container.
     Plain `overflow-x: hidden` here silently breaks smooth scrolling
     (the Services sub-category jumps). `hidden` is the fallback for
     browsers that don't support `clip`. */
  overflow-x: hidden;
  overflow-x: clip;
}

img { max-width: 100%; }

a { color: var(--brown); text-decoration: none; }
a:hover { color: var(--olive); }

button { font-family: inherit; }

/* Visible keyboard focus everywhere (accessibility). */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Screen-reader-only text. */
.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;
}

@keyframes swanFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.screen { animation: swanFade .5s ease both; }

@media (prefers-reduced-motion: reduce) {
  .screen { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* --------------------------------------------------------------------------
   SHARED PIECES
   -------------------------------------------------------------------------- */
.wrap        { max-width: var(--wide);   margin: 0 auto; }
.wrap-mid    { max-width: var(--mid);    margin: 0 auto; }
.wrap-narrow { max-width: var(--narrow); margin: 0 auto; }
.wrap-prose  { max-width: var(--prose);  margin: 0 auto; }

.eyebrow {
  font: 500 11px/1 var(--sans);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--olive);
}

/* Small uppercase label used on cards and in the footer. */
.label {
  font: 500 10px/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}

/* Section heading with a rule running to the right. */
.sec-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.sec-head h2 {
  font: 400 clamp(21px, 4.4vw, 28px)/1.2 var(--serif);
  color: var(--brown);
  margin: 0;
  white-space: nowrap;
}
.sec-head .rule { flex: 1; height: 1px; background: var(--line); min-width: 0; }

/* Wrapping variant, for headings too long to keep on one line. */
.sec-head--wrap { margin-bottom: 18px; }
.sec-head--wrap h2 { white-space: normal; }

/* Announcement / "coming soon" banner. */
.notice-wrap { padding: 0 var(--page-x) clamp(22px, 3.5vw, 32px); }
.notice {
  max-width: var(--narrow);
  margin: 0 auto;
  background: var(--sand);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px clamp(18px, 3vw, 26px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}
.notice-label {
  flex: 0 0 auto;
  background: var(--gold);
  color: var(--brown-deep);
  border-radius: var(--radius);
  padding: 7px 11px;
  font: 600 10px/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.notice-text {
  flex: 1 1 260px;
  font: 400 15px/1.7 var(--sans);
  color: var(--muted);
  margin: 0;
}

.tax-note {
  font: 400 13px/1.6 var(--sans);
  color: var(--muted-2);
  margin: 28px 0 0;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: 600 13px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  background: none;
  text-align: center;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn--gold          { background: var(--gold); color: var(--brown); }
.btn--gold:hover    { background: var(--gold-hover); color: var(--brown); }

.btn--brown         { background: var(--brown); color: var(--bg); }
.btn--brown:hover   { background: var(--brown-hover); color: var(--bg); }

.btn--outline-light       { background: rgba(var(--light-rgb),.12); border-color: rgba(var(--light-rgb),.5); color: var(--light); }
.btn--outline-light:hover { background: rgba(var(--light-rgb),.22); color: var(--light); }

.btn--ghost-light         { background: transparent; border-color: rgba(var(--light-rgb),.5); color: var(--light); }
.btn--ghost-light:hover   { background: rgba(var(--light-rgb),.1); border-color: var(--light); color: var(--light); }

/* Text button with a gold underline. */
.btn-underline {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 1px solid var(--gold);
  padding: 10px 2px;
  min-height: var(--tap);
  font: 600 12px/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brown);
  cursor: pointer;
  transition: color .18s ease;
}
.btn-underline:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(var(--bg-rgb), .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brandbar {
  background: var(--brown);
  padding: 16px clamp(16px, 4vw, 40px) 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.brand img { display: block; height: clamp(44px, 10vw, 60px); width: auto; }
.brand-sub {
  font: 500 9px/1 var(--sans);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Burger — visible on mobile only. */
.burger {
  position: absolute;
  right: clamp(10px, 3vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid rgba(var(--bg-rgb), .3);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color .18s ease;
}
.burger:hover { border-color: var(--gold); }
.burger span { display: block; width: 20px; height: 1px; background: var(--bg); }

/* Mobile drop-down menu. */
.mobile-menu {
  border-top: 1px solid rgba(var(--bg-rgb), .12);
  background: var(--bg);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu-inner { display: flex; flex-direction: column; padding: 6px 0 10px; }

.mobile-menu button {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line-2);
  text-align: left;
  padding: 0 var(--page-x);
  min-height: 56px;
  font: 500 13px/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brown);
  cursor: pointer;
  transition: background-color .15s ease;
}
.mobile-menu button:hover { background: var(--menu-hover); }
.mobile-menu button:last-of-type { border-bottom: none; }

.mobile-menu .btn {
  margin: 14px var(--page-x) 4px;
  display: flex;
}

/* Desktop nav bar. */
.navbar {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 clamp(8px, 2vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0 2px;
  padding-bottom: 4px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.nav::-webkit-scrollbar { display: none; }

.nav button {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px clamp(9px, 2.6vw, 14px);
  min-height: var(--tap);
  white-space: nowrap;
  font: 500 clamp(11px, 2.9vw, 12px)/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease;
}
.nav button:hover { color: var(--brown); }
.nav button.is-active {
  color: var(--brown);
  border-bottom-color: var(--gold);
  font-weight: 600;
}

/* Mobile / desktop switch. Below 900px the burger drives navigation;
   at 900px and up the horizontal nav bar takes over. */
.navbar { display: none; }
.burger { display: flex; }

@media (min-width: 900px) {
  .navbar { display: flex; }
  .burger { display: none; }
  .mobile-menu { display: none !important; }
}

/* --------------------------------------------------------------------------
   HOME — HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(78vh, 620px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-veil {
  position: absolute;
  inset: 0;
  /* Two stacked layers: a flat black scrim (first = on top) over the
     original brown gradient. Adjust --hero-dim above to taste. */
  background:
    linear-gradient(rgba(0, 0, 0, var(--hero-dim)),
                    rgba(0, 0, 0, var(--hero-dim))),
    linear-gradient(180deg,
              rgba(var(--hero-tint), .28)  0%,
              rgba(var(--hero-tint), .62) 62%,
              rgba(var(--hero-tint), .86) 100%);
}
.hero-inner {
  position: relative;
  padding: clamp(56px, 14vw, 110px) var(--page-x) clamp(40px, 7vw, 72px);
  max-width: var(--wide);
  margin: 0 auto;
  width: 100%;
}
.hero h1 {
  font: 300 clamp(34px, 8.4vw, 62px)/1.14 var(--serif);
  color: var(--light);
  margin: 0;
  letter-spacing: -.015em;
  max-width: 16em;
  text-wrap: balance;
}
.hero-eyebrow {
  font: 500 11px/1.6 var(--sans);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 22px 0 0;
}
.hero p {
  font: 400 clamp(15px, 3vw, 18px)/1.7 var(--sans);
  color: rgba(var(--light-rgb), .82);
  margin: 14px 0 30px;
  max-width: 34em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* --------------------------------------------------------------------------
   HOME — INTRO
   -------------------------------------------------------------------------- */
.intro {
  padding: var(--sec-y) var(--page-x);
  text-align: center;
}
.intro-inner { max-width: 640px; margin: 0 auto; }
.intro h2 {
  font: 300 clamp(25px, 5.4vw, 38px)/1.28 var(--serif);
  color: var(--brown);
  margin: 16px 0 0;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.intro-rule { width: 36px; height: 1px; background: var(--gold); margin: 26px auto; }
.intro p {
  font: 400 clamp(15px, 2.8vw, 17px)/1.8 var(--sans);
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}
.intro-quote {
  font: 400 15px/1.6 var(--sans);
  color: var(--brown);
  margin: 26px 0 0;
}
.intro-quote em {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}
.intro .btn-underline { margin-top: 26px; }

/* --------------------------------------------------------------------------
   HOME — FEATURE CARDS
   -------------------------------------------------------------------------- */
.cards {
  padding: 0 var(--page-x) var(--sec-y);
}
.cards-grid {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  /* 240px min lets all four boxes sit in one row on a laptop; they fall to
     2x2 on a tablet and stack on a phone. Raise the 240px to force fewer
     per row, lower it to fit more. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(16px, 3vw, 24px);
}
.card {
  cursor: pointer;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  transition: border-color .18s ease;
}
.card:hover { border-color: var(--gold); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.card-body { padding: 26px 24px 28px; }
.card h3 { font: 400 22px/1.3 var(--serif); color: var(--brown); margin: 0; }
.card p  { font: 400 15px/1.7 var(--sans); color: var(--muted); margin: 10px 0 0; }
.card-price {
  font: 600 12px/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 18px;
}

/* --------------------------------------------------------------------------
   HOME — INFO STRIP
   -------------------------------------------------------------------------- */
.info { padding: 0 var(--page-x) var(--sec-y); }
.info-box {
  max-width: var(--wide);
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(24px, 4vw, 36px);
}
.info .label {
  font-size: 10px;
  letter-spacing: .22em;
  margin-bottom: 12px;
}
.info-value { font: 400 17px/1.9 var(--sans); color: var(--ink); }
.info-note  { font: 400 14px/1.6 var(--sans); color: var(--muted-2); margin-top: 6px; }
.info-links { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.info-phone { font: 400 22px/1.5 var(--serif); color: var(--brown); }
.info-phone:hover { color: var(--gold); }
.info-email { font: 400 16px/1.6 var(--sans); color: var(--muted); }
.info-email:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   PAGE HEADERS
   -------------------------------------------------------------------------- */
.page-head {
  padding: clamp(40px, 7vw, 72px) var(--page-x) clamp(28px, 4vw, 40px);
  text-align: center;
}
.page-head--tall { padding-bottom: clamp(30px, 5vw, 48px); }
.page-head--mid  { padding-bottom: clamp(30px, 5vw, 44px); }

.page-head h1 {
  font: 300 clamp(30px, 6.6vw, 48px)/1.2 var(--serif);
  color: var(--brown);
  margin: 14px 0 0;
  letter-spacing: -.015em;
}
/* Longer headline (Products) wraps within a narrower measure. */
.page-head h1.h1--long {
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.22;
  margin: 14px auto 0;
  max-width: 22em;
  text-wrap: balance;
}
.page-head .subtitle {
  font: 400 clamp(14px, 2.6vw, 16px)/2 var(--sans);
  color: var(--muted-2);
  margin: 18px auto 0;
  max-width: 30em;
}
.page-head .lede {
  font: 400 clamp(15px, 2.8vw, 17px)/1.8 var(--sans);
  color: var(--muted);
  margin: 16px auto 0;
  max-width: 32em;
}
.page-head .lede--wide { margin-top: 18px; max-width: 36em; text-wrap: pretty; }
.page-head .lede--tight { max-width: 30em; }

/* --------------------------------------------------------------------------
   SUB-CATEGORY LINKS (Services)
   -------------------------------------------------------------------------- */
.subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 26px auto 0;
}
.subnav button {
  appearance: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 20px;
  min-height: var(--tap);
  font: 600 11px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown);
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.subnav button:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--bg);
}

/* Sections the sub-nav jumps to; the offset is also applied in JS, this is
   the fallback for any plain anchor navigation. */
#sec-core, #sec-specialty, #sec-couples { scroll-margin-top: 120px; }
@media (min-width: 900px) {
  #sec-core, #sec-specialty, #sec-couples { scroll-margin-top: 175px; }
}

/* --------------------------------------------------------------------------
   COMING-SOON MESSAGE (Promotion, when no deals are loaded)
   -------------------------------------------------------------------------- */
.coming-soon {
  margin: 0;
  padding: clamp(48px, 9vw, 88px) clamp(20px, 4vw, 36px);
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: 300 italic clamp(22px, 4.4vw, 30px)/1.5 var(--serif);
  color: var(--brown);
}

/* --------------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------------- */
.about-figure { padding: 0 var(--page-x); }
.about-figure img {
  display: block;
  width: 100%;
  max-width: var(--wide);
  margin: 0 auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-body { padding: clamp(44px, 8vw, 80px) var(--page-x); }
.about-body h2 {
  font: 300 clamp(24px, 5vw, 34px)/1.3 var(--serif);
  color: var(--brown);
  margin: 0 0 28px;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.about-body p {
  font: 400 clamp(15px, 2.8vw, 17px)/1.9 var(--sans);
  color: var(--muted);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.about-body p:last-of-type { margin-bottom: 0; }
.about-quote {
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 32px;
}
.about-quote p {
  font: 300 italic clamp(21px, 4.4vw, 28px)/1.5 var(--serif);
  color: var(--brown);
  margin: 0;
}
.about-body .btn { margin-top: 34px; }

/* --------------------------------------------------------------------------
   SERVICES — treatment cards and price tiles
   -------------------------------------------------------------------------- */
.svc-block { padding: 0 var(--page-x) var(--band-y); }

/* The Specialty band sits on a lighter panel spanning the full width. */
.svc-band {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--band-y) var(--page-x);
}
.svc-list { display: flex; flex-direction: column; gap: 14px; }

.treatment {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 30px);
}
/* Inside the light band the cards invert to the page background. */
.svc-band .treatment { background: var(--bg); }

.treatment h3 {
  font: 400 clamp(19px, 3.8vw, 23px)/1.3 var(--serif);
  color: var(--brown);
  margin: 0;
}
.treatment p {
  font: 400 15px/1.7 var(--sans);
  color: var(--muted);
  margin: 8px 0 18px;
  max-width: 46em;
}

/* Price tiles */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 8px;
}
.tiers--wide  { grid-template-columns: repeat(auto-fit, minmax(84px, 1fr)); }
.tiers--capped { max-width: 340px; }

.tier {
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.svc-band .tier:not(.tier--dark) { background: var(--card); }
.tier-dur {
  font: 500 11px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.tier-price { font: 600 17px/1 var(--sans); color: var(--brown); }

/* Gift-certificate strip */
.gift {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 30px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.gift-text { min-width: min(100%, 220px); }
.gift h3 {
  font: 400 clamp(18px, 3.6vw, 21px)/1.3 var(--serif);
  color: var(--brown);
  margin: 0;
}
.gift p { font: 400 14px/1.6 var(--sans); color: var(--muted-2); margin: 6px 0 0; }
.gift-price { text-align: right; }
.gift-price .tier-dur { margin-bottom: 5px; }
.gift-price .amount { font: 600 22px/1 var(--sans); color: var(--brown); }

/* Dark "Signature Ritual" card */
.ritual {
  background: var(--brown);
  border-radius: var(--radius);
  padding: clamp(22px, 4.4vw, 34px);
}
.ritual .label { color: var(--gold); margin-bottom: 12px; }
.ritual h3 {
  font: 400 clamp(20px, 4vw, 25px)/1.3 var(--serif);
  color: var(--bg);
  margin: 0;
}
.ritual p {
  font: 400 15px/1.8 var(--sans);
  color: rgba(var(--bg-rgb), .78);
  margin: 10px 0 20px;
  max-width: 46em;
}
.ritual ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 8px 20px;
}
.ritual li {
  font: 400 14px/1.6 var(--sans);
  color: var(--bg);
  padding-left: 16px;
  border-left: 1px solid rgba(var(--gold-rgb), .6);
}
.tier--dark {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(var(--gold-rgb), .5);
  border-radius: var(--radius);
  padding: 12px 26px;
  text-align: center;
  min-height: 64px;
  justify-content: center;
}
.tier--dark .tier-dur   { color: var(--gold); }
.tier--dark .tier-price { color: var(--bg); }

/* Couples retreat cards */
.couples { padding: var(--band-y) var(--page-x); }
.couples-intro {
  font: 400 clamp(15px, 2.8vw, 16px)/1.8 var(--sans);
  color: var(--muted);
  margin: 0 0 12px;
  max-width: 46em;
}
.couples-quote {
  font: 300 italic 19px/1.6 var(--serif);
  color: var(--brown);
  margin: 0 0 26px;
}
.couples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px;
}
.pkg {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 28px);
  display: flex;
  flex-direction: column;
}
.pkg .label { color: var(--olive); margin-bottom: 0; }
.pkg h3 { font: 400 22px/1.3 var(--serif); color: var(--brown); margin: 8px 0 0; }
.pkg p {
  font: 400 15px/1.7 var(--sans);
  color: var(--muted);
  margin: 10px 0 20px;
  flex: 1;
}

/* --------------------------------------------------------------------------
   PRODUCTS
   -------------------------------------------------------------------------- */
.prod-figure { padding: 0 var(--page-x); }
.prod-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
}
.addon {
  background: var(--brown);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.addon-text { font: 400 16px/1.6 var(--sans); color: var(--bg); }
.addon-price {
  font: 600 24px/1 var(--sans);
  color: var(--gold);
  white-space: nowrap;
}
.addon-price span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(var(--bg-rgb), .65);
  margin-left: 8px;
}
.scents {
  padding: clamp(36px, 6vw, 60px) var(--page-x) clamp(48px, 8vw, 84px);
}
.scents-grid {
  max-width: var(--narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
}
.scent {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 28px);
}
.scent h3 { font: 400 23px/1.3 var(--serif); color: var(--brown); margin: 0; }
.scent-tagline {
  font: 300 italic 16px/1.5 var(--serif);
  color: var(--olive);
  margin-top: 4px;
}
.scent p { font: 400 15px/1.7 var(--sans); color: var(--muted); margin: 14px 0 0; }
.scent-notes {
  border-top: 1px solid var(--line-2);
  margin-top: 18px;
  padding-top: 14px;
}
.scent-notes .label {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--muted);
  margin-bottom: 6px;
}
.scent-notes-body { font: 400 15px/1.6 var(--sans); color: var(--ink); }

/* --------------------------------------------------------------------------
   PROMOTION
   -------------------------------------------------------------------------- */
.promo { padding: 0 var(--page-x) clamp(48px, 8vw, 84px); }
.promo-list {
  max-width: var(--narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.promo-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 30px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 20px;
  align-items: start;
}
.promo-card .label { color: var(--olive); margin-bottom: 0; }
.promo-card h3 {
  font: 400 clamp(20px, 4vw, 24px)/1.3 var(--serif);
  color: var(--brown);
  margin: 8px 0 0;
}
.promo-card p { font: 400 15px/1.7 var(--sans); color: var(--muted); margin: 10px 0 0; }
.promo-tiers {
  max-width: 340px;
  align-self: center;
  justify-self: center;
  margin: 0 auto;
}
.bundle {
  background: var(--brown);
  border-radius: var(--radius);
  padding: clamp(24px, 4.4vw, 34px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.bundle-text { min-width: min(100%, 240px); }
.bundle .label { color: var(--gold); margin-bottom: 10px; }
.bundle h3 {
  font: 400 clamp(21px, 4vw, 26px)/1.3 var(--serif);
  color: var(--bg);
  margin: 0;
}
.bundle p {
  font: 400 15px/1.7 var(--sans);
  color: rgba(var(--bg-rgb), .75);
  margin: 8px 0 0;
}
.bundle-price {
  flex: 1;
  min-width: min(100%, 180px);
  display: flex;
  justify-content: center;
}
.bundle-price .tier--dark { padding: 12px 22px; min-width: 120px; }
.promo .tax-note { margin-top: 12px; }

/* --------------------------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------------------------- */
.quotes { padding: 0 var(--page-x) clamp(48px, 8vw, 84px); }
.quotes-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4.6vw, 38px);
  margin: 0;
}
.quote-mark {
  font: 300 34px/1 var(--serif);
  color: var(--gold);
  margin-bottom: 10px;
}
.quote p {
  font: 400 clamp(15px, 2.8vw, 17px)/1.9 var(--sans);
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}
.quote-by {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
  font: 500 13px/1.6 var(--sans);
  letter-spacing: .06em;
  color: var(--brown);
}
.quote-by span {
  display: block;
  font-weight: 400;
  color: var(--muted-2);
  letter-spacing: 0;
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   CONTACT
   -------------------------------------------------------------------------- */
.contact { padding: 0 var(--page-x) clamp(48px, 8vw, 84px); }
.contact-grid {
  max-width: var(--mid);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 3vw, 24px);
}
.contact-col { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: border-color .18s ease;
}
a.contact-card { display: block; }
a.contact-card:hover { border-color: var(--gold); }

.contact-card--phone {
  background: var(--brown);
  border-color: var(--brown);
  display: block;
  transition: background-color .18s ease;
}
.contact-card--phone:hover { background: var(--brown-hover); border-color: var(--brown-hover); }
.contact-card--phone .label { color: var(--gold); margin-bottom: 10px; }
.contact-phone {
  font: 400 clamp(24px, 5vw, 30px)/1.2 var(--serif);
  color: var(--bg);
}
.contact-card .label { margin-bottom: 10px; }
.contact-email {
  font: 400 clamp(17px, 3.4vw, 20px)/1.4 var(--sans);
  color: var(--brown);
  word-break: break-word;
}
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font: 400 16px/2 var(--sans);
  color: var(--ink);
  border-bottom: 1px solid var(--line-3);
}
.contact-hours-row:last-of-type { border-bottom: none; }
.contact-note { font: 400 14px/1.6 var(--sans); color: var(--muted-2); margin-top: 10px; }
.contact-address { font: 400 17px/1.7 var(--sans); color: var(--ink); }
.contact-card--hours .label { margin-bottom: 12px; }

.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap);
  height: var(--tap);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: 500 12px/1 var(--sans);
  letter-spacing: .1em;
  color: var(--brown);
  transition: border-color .18s ease, color .18s ease;
}
.social a:hover { border-color: var(--gold); }

.map {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--map-bg);
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

/* --------------------------------------------------------------------------
   LEGAL PAGES (privacy policy)
   -------------------------------------------------------------------------- */
.legal { padding: 0 var(--page-x) clamp(48px, 8vw, 84px); }
.legal-inner { max-width: var(--prose); margin: 0 auto; }
.legal-updated {
  font: 400 13px/1.6 var(--sans);
  color: var(--muted-2);
  margin: 0 0 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  font: 400 clamp(19px, 3.6vw, 23px)/1.3 var(--serif);
  color: var(--brown);
  margin: 34px 0 10px;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p {
  font: 400 clamp(15px, 2.8vw, 16px)/1.8 var(--sans);
  color: var(--muted);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.legal ul { margin: 0 0 14px; padding-left: 20px; }
.legal li {
  font: 400 clamp(15px, 2.8vw, 16px)/1.8 var(--sans);
  color: var(--muted);
  margin-bottom: 6px;
}
.legal a {
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:hover { color: var(--olive); }
.legal-contact { color: var(--ink); }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--brown-deep);
  padding: var(--band-y) var(--page-x) clamp(44px, 7vw, 64px);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(28px, 4vw, 40px);
}
.footer-logo {
  display: block;
  height: clamp(64px, 14vw, 84px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.footer-blurb {
  font: 400 15px/1.8 var(--sans);
  color: rgba(var(--bg-rgb), .62);
  margin: 16px 0 0;
  max-width: 26em;
}
.site-footer .label { color: var(--gold); margin-bottom: 14px; }
.footer-text { font: 400 15px/1.9 var(--sans); color: rgba(var(--bg-rgb), .82); }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  font: 400 15px/1.6 var(--sans);
}
.footer-links a.footer-phone { color: var(--bg); }
.footer-links a.footer-email { color: rgba(var(--bg-rgb), .82); }
.footer-links a:hover { color: var(--gold); }
.footer-links span { color: rgba(var(--bg-rgb), .62); }
.site-footer .social a {
  border-color: rgba(var(--bg-rgb), .28);
  color: var(--bg);
}
.site-footer .social a:hover { border-color: var(--gold); color: var(--gold); }
.site-footer .social { margin-top: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(var(--bg-rgb), .14);
  margin-top: 32px;
  padding-top: 16px;
  font: 400 11px/1.5 var(--sans);
  color: rgba(var(--bg-rgb), .45);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.footer-legal button {
  appearance: none;
  background: none;
  border: none;
  padding: 4px 0;
  font: 400 11px/1.5 var(--sans);
  letter-spacing: .06em;
  /* Kept more opaque than the copyright line so the link stays legible. */
  color: rgba(var(--bg-rgb), .8);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .18s ease;
}
.footer-legal button:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   STICKY BOOKING BAR
   -------------------------------------------------------------------------- */
.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 60;
  background: rgba(var(--bg-rgb), .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  gap: 10px;
}
.sticky-cta[hidden] { display: none; }
.sticky-cta .btn { flex: 1 1 0; padding: 0 12px; }
.sticky-cta .btn--call {
  background: var(--brown);
  color: var(--bg);
}
.sticky-cta .btn--call:hover { background: var(--brown-hover); }
.sticky-cta .btn--mail {
  border-color: var(--brown);
  color: var(--brown);
}
.sticky-cta .btn--mail:hover { background: var(--brown); color: var(--bg); }
.sticky-dismiss {
  appearance: none;
  flex: 0 0 auto;
  width: var(--tap);
  min-height: 52px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted-2);
  font: 400 18px/1 var(--sans);
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease;
}
.sticky-dismiss:hover { color: var(--brown); border-color: var(--gold); }
