/* ============================================================
   Catharsis Mobile Wellness — Design System
   ------------------------------------------------------------
   Palette sampled directly from the 2025 logo files:
     ink    #1e292c   deep green-black (the mark)
     slate  #2c3a3e   secondary dark
     sage   #7c8b85   muted green
     tan    #e6dccf   the logo's warm ground
     clay   #c87f4b   the center dot — the only accent color

   Layout language follows sage-sound.com: white ground, wide
   margins, flat full-bleed photography, sharp corners, small
   uppercase sans UI against a quiet serif for display.

   The treatment menus follow ivelements.net/treatment-menu:
   printed-menu panels on tan, ruled section heads with an index
   number, leader lines between item and price.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:        #1e292c;
  --ink-2:      #2c3a3e;
  --ink-soft:   #3d4b4e;
  --sage:       #7c8b85;
  --sage-deep:  #55625d;
  --sage-pale:  #aeb8b1;
  --tan:        #e6dccf;
  --tan-lt:     #f2ebe1;
  --tan-dk:     #d5c8b6;
  --clay:       #c87f4b;
  --clay-deep:  #8f552e;
  --clay-pale:  #e8c4a4;

  --paper:      #fcfaf8;
  --white:      #ffffff;
  --body:       #4c5654;
  --muted:      #646d6a;
  --line:       #e2dbd2;
  --line-dark:  rgba(230, 220, 207, .22);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-ui:      'Jost', 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1240px;
  --wrap-narrow: 720px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 88px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: var(--clay-deep); }
button { font: inherit; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }
::selection { background: var(--tan); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
  margin: 0 0 .55em;
}
h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.95rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 500; color: var(--ink); }

.eyebrow {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 400;
  color: var(--sage-deep);
  margin: 0 0 1.15rem;
}
.eyebrow.is-centered { text-align: center; }
.lede {
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  font-weight: 300;
  color: var(--body);
}
.muted   { color: var(--muted); }
.small   { font-size: .9rem; line-height: 1.66; }
.tiny    { font-size: .78rem; line-height: 1.6; }
.serif   { font-family: var(--font-display); }
.center  { text-align: center; }
.narrow  { max-width: var(--wrap-narrow); margin-inline: auto; }
.italic  { font-style: italic; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1560px; }
.wrap-narrow { width: 100%; max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: var(--gutter); }

.section    { padding-block: clamp(4rem, 8vw, 7.5rem); }
.section-sm { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section + .section { padding-top: 0; }

.bg-white { background: var(--white); }
.bg-paper { background: var(--paper); }
.bg-tan   { background: var(--tan-lt); }
.bg-sage  { background: var(--sage); color: #f3f5f3; }
.bg-ink   { background: var(--ink); color: rgba(240, 236, 230, .82); }

.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4, .bg-ink h5,
.bg-sage h1, .bg-sage h2, .bg-sage h3, .bg-sage h4, .bg-sage h5 { color: var(--tan); }
.bg-ink .eyebrow  { color: var(--clay-pale); }
.bg-sage .eyebrow { color: #eef1ee; }
.bg-ink .muted, .bg-sage .muted { color: rgba(240, 236, 230, .6); }
.bg-ink strong, .bg-sage strong { color: var(--tan); }
.bg-ink a:not(.btn), .bg-sage a:not(.btn) { color: var(--tan); }
.bg-ink a:not(.btn):hover, .bg-sage a:not(.btn):hover { color: var(--clay-pale); }

/* Section head: serif title left, optional action right */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
}
.section-head > div { max-width: 62ch; }
.section-head h2 { margin-bottom: .35em; }
.section-head p:last-child { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.02rem 1.9rem .92rem;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--tan-lt); border-color: var(--ink); }
.btn-primary:hover { background: var(--ink-2); color: var(--white); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--tan-lt); }

.btn-light { background: var(--tan-lt); color: var(--ink); border-color: var(--tan-lt); }
.btn-light:hover { background: var(--white); color: var(--ink); }

.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn-sm { padding: .78rem 1.35rem .7rem; font-size: .72rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.btn-row.is-centered { justify-content: center; }

/* Underlined text link, Sage + Sound style */
.link-ul {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  padding-bottom: .3rem;
  border-bottom: 1px solid currentColor;
  transition: opacity .25s var(--ease);
}
.link-ul:hover { opacity: .62; color: inherit; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: transparent;
  transition: background-color .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: var(--white);
  border-bottom-color: var(--line);
}
.header-inner {
  max-width: 1560px;
  margin-inline: auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand { flex: none; display: block; line-height: 0; }
.brand img { height: 54px; width: auto; transition: opacity .3s var(--ease); }
.brand .logo-light { filter: drop-shadow(0 1px 10px rgba(15, 22, 24, .55)); }
.brand .logo-light { display: block; }
.brand .logo-dark  { display: none; }
.site-header.is-solid .brand .logo-light { display: none; }
.site-header.is-solid .brand .logo-dark  { display: block; }

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.15rem);
}
.nav a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.nav a:hover { opacity: .68; color: var(--white); }
.nav a[aria-current="page"] { border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.site-header:not(.is-solid) .nav a,
.site-header:not(.is-solid) .nav-toggle span { text-shadow: 0 1px 8px rgba(15, 22, 24, .6); }
.site-header:not(.is-solid) .nav-toggle span { box-shadow: 0 1px 8px rgba(15, 22, 24, .5); }
.site-header.is-solid .nav a { color: var(--ink); }
.site-header.is-solid .brand .logo-dark { filter: none; }
.site-header.is-solid .nav a:hover { color: var(--clay-deep); opacity: 1; }
.nav .btn { margin-left: .6rem; }
.site-header.is-solid .nav .btn-ghost-light {
  background: var(--ink); color: var(--tan-lt); border-color: var(--ink);
}
.site-header.is-solid .nav .btn-ghost-light:hover { background: var(--ink-2); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block; height: 1px; width: 24px; margin-inline: auto;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-solid .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Pages without a photographic hero start with a solid header */
body[data-header-solid="always"] { padding-top: var(--header-h); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 84vh, 860px);
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--header-h) + clamp(2rem, 5vw, 4rem)) clamp(3rem, 9vw, 7rem);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(30,41,44,.78) 0%, rgba(30,41,44,.55) 38%, rgba(30,41,44,.28) 72%, rgba(30,41,44,.32) 100%),
    linear-gradient(180deg, rgba(30,41,44,.55) 0%, rgba(30,41,44,.3) 34%, rgba(30,41,44,.78) 100%);
}
/* Centered heroes have no safe side, so the wash is even */
.hero.is-centered::after {
  background:
    radial-gradient(120% 90% at 50% 50%, rgba(30,41,44,.42) 0%, rgba(30,41,44,.66) 100%),
    linear-gradient(180deg, rgba(30,41,44,.6) 0%, rgba(30,41,44,.4) 40%, rgba(30,41,44,.72) 100%);
}
.hero .wrap { position: relative; z-index: 3; }
.hero-inner { max-width: 46rem; color: rgba(255,255,255,.94); text-shadow: 0 1px 14px rgba(15, 22, 24, .45); }
.hero-inner h1 { color: var(--white); margin-bottom: .3em; max-width: 17ch; }
.hero-inner .eyebrow { color: var(--tan); }
.hero-inner .lede { color: rgba(255,255,255,.93); max-width: 40rem; }
.hero-inner .btn { text-shadow: none; }
.hero-note {
  margin-top: 1.6rem;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}
.hero-note a { color: inherit; }

/* Centred hero variant, for interior pages */
.hero.is-centered { align-items: center; text-align: center; min-height: clamp(420px, 58vh, 620px); }
.hero.is-centered .hero-inner { max-width: 52rem; margin-inline: auto; }
/* h1 and lede carry their own max-width, so they need centering too —
   otherwise the measure box hugs the left inside a centered hero. */
.hero.is-centered .hero-inner h1,
.hero.is-centered .lede { margin-inline: auto; }

/* Quiet page header, no photograph */
.page-head { padding-block: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 4vw, 3rem); }
.page-head h1 { max-width: 22ch; }
.page-head .lede { max-width: 50ch; }

/* ---------- Full-bleed tile grid (sage-sound "Wellness, Your Way") ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}
.tile {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.tile-media { aspect-ratio: 3 / 4; overflow: hidden; }
.tile-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.tile:hover .tile-media img { transform: scale(1.045); }
.tile-body { padding: 1.6rem 0 0; }
.tile-body h3 { margin-bottom: .35rem; }
.tile-body p { font-size: .95rem; color: var(--body); margin: 0; }
.tile-body .link-ul { margin-top: 1rem; }

/* Overlay caption variant, text sits on the image */
.tile.is-overlay .tile-body {
  position: absolute; inset: auto 0 0 0;
  padding: 2rem clamp(1.25rem, 2.5vw, 2.25rem);
  background: linear-gradient(180deg, transparent, rgba(30,41,44,.78));
  color: var(--white);
}
.tile.is-overlay h3 { color: var(--white); }
.tile.is-overlay p { color: rgba(255,255,255,.86); }
.tile.is-overlay .tile-media { aspect-ratio: 4 / 3; }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split.is-reversed .split-media { order: 2; }
.split.is-top { align-items: flex-start; }
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split-media.is-wide img { aspect-ratio: 5 / 4; }
.split-body { max-width: 34rem; }

/* Full-bleed split: image runs to the edge of the viewport */
.split-bleed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: stretch;
}
.split-bleed .sb-media img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.split-bleed .sb-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem);
}
.split-bleed .sb-body > div { max-width: 34rem; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
}
/* Bordered info card, no image */
.card-plain {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.bg-white .card-plain { background: var(--paper); }
.card-plain h3 { font-size: 1.4rem; }
.card-plain .price-tag { margin-top: 1rem; }

/* ---------- Trust / stat strip ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem clamp(1.5rem, 3vw, 3rem);
}
.strip-item { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.bg-ink .strip-item, .bg-sage .strip-item { border-top-color: var(--line-dark); }
.strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: .25rem;
}
.strip-item span {
  display: block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.bg-ink .strip-item span, .bg-sage .strip-item span { color: rgba(240,236,230,.62); }

/* ============================================================
   TREATMENT MENU
   Printed-menu panels, after ivelements.net/treatment-menu
   ============================================================ */
.menu-panel {
  background: var(--tan-lt);
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
}
.menu-panel.is-deep { background: var(--tan); }
.menu-panel.is-paper { background: var(--paper); }

/* Ruled section head with an index number on the right */
.menu-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1.15rem;
  margin-bottom: clamp(2.75rem, 5vw, 4.25rem);
}
.menu-head h2 {
  margin: 0;
  color: #8d7a63;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1;
}
.menu-panel.is-deep .menu-head h2 { color: #85735d; }
.menu-head .menu-index {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--ink);
  flex: none;
}

/* Centered sub-head with flanking hairlines */
.menu-subhead {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin: clamp(3.25rem, 6vw, 5rem) 0 2rem;
}
.menu-subhead::before, .menu-subhead::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--tan-dk);
}
.menu-subhead h3 {
  margin: 0;
  text-align: center;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  flex: none;
}
.menu-subhead:first-child { margin-top: 0; }

.menu-note {
  text-align: center;
  font-size: .86rem;
  letter-spacing: .09em;
  color: var(--sage-deep);
  max-width: 62ch;
  margin: 0 auto 3rem;
}
.menu-note em { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .04em; }

/* Item list: name … price, with the description underneath */
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item { padding: 1.75rem 0; border-bottom: 1px solid var(--tan-dk); }
.menu-item:first-child { padding-top: 0; }
.menu-item:last-child { border-bottom: 0; }
.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: .9rem;
}
.menu-item-head h4 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  flex: none;
  max-width: 70%;
}
.menu-leader {
  flex: 1 1 auto;
  height: 1px;
  min-width: 1.5rem;
  border-bottom: 1px dotted var(--tan-dk);
  transform: translateY(-.28em);
}
.price {
  flex: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  color: var(--clay-deep);
  white-space: nowrap;
}
.price.is-quiet { color: var(--sage-deep); font-size: 1rem; letter-spacing: .04em; font-style: normal; }
.menu-item p { margin: .6rem 0 0; font-size: .96rem; max-width: 66ch; }
.menu-item .menu-meta {
  margin-top: .55rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

/* Two-column list for short add-on items */
.menu-list.is-two-col { column-count: 2; column-gap: clamp(2rem, 5vw, 4.5rem); }
.menu-list.is-two-col .menu-item { break-inside: avoid; }

/* Compact rows for add-ons: name … price on one line only */
.addon-list { list-style: none; margin: 0; padding: 0; }
.addon-list li {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .95rem 0;
  border-bottom: 1px solid var(--tan-dk);
  font-size: 1rem;
}
.addon-list li:last-child { border-bottom: 0; }
.addon-list .menu-leader { transform: translateY(-.25em); }
.addon-list .price { font-size: 1.08rem; }

/* Escalating tone blocks for tiers / packages */
.tier-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 2rem;
}
.tier {
  padding: clamp(1.75rem, 3vw, 2.5rem) 1.5rem;
  text-align: center;
  background: #f8f3ec;
  color: var(--ink);
}
.tier:nth-child(2) { background: #ece2d5; }
.tier:nth-child(3) { background: #ddd0be; }
.tier:nth-child(4) { background: #cbbba5; }
/* Equal-standing items: no tonal escalation, which would imply a ranking */
.tier-row.is-flat .tier { background: #f8f3ec; }
.tier h4 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  margin: 0 0 .35rem;
}
.tier .price { display: block; margin-bottom: .8rem; font-size: 1.7rem; }
.tier p { font-size: .9rem; margin: 0; color: var(--ink-soft); }

/* A single headline price, centered */
.price-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--clay-deep);
  line-height: 1.1;
}
.price-tag small {
  display: block;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .5rem;
}

/* Status chips: complimentary, pending, limited */
.chip {
  display: inline-block;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .34rem .7rem .28rem;
  border: 1px solid currentColor;
  border-radius: 2px;
  line-height: 1;
  vertical-align: middle;
}
.chip-clay  { color: var(--clay-deep); }
.chip-sage  { color: var(--sage-deep); }
.chip-solid { background: var(--ink); color: var(--tan-lt); border-color: var(--ink); }

/* Bulleted ingredient / inclusion lists */
.ticks { list-style: none; margin: 1rem 0 0; padding: 0; }
.ticks li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
  font-size: .96rem;
}
.ticks.is-two-col { column-count: 2; column-gap: 2.5rem; }
.ticks.is-two-col li { break-inside: avoid; }

/* ---------- Numbered process steps ---------- */
.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 2.25rem 4.25rem;
  margin-left: 1.1rem;
}
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: -.15rem;
  transform: translateX(-50%);
  width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center;
  background: var(--paper);
  color: var(--clay-deep);
  font-family: var(--font-display);
  font-size: .95rem;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.bg-white .steps li::before { background: var(--white); }
.bg-tan .steps li::before { background: var(--tan-lt); }
.steps h4 { margin-bottom: .3rem; }
.steps p { font-size: .96rem; margin: 0; max-width: 58ch; }

/* ---------- Quote ---------- */
.quote { max-width: 46rem; margin-inline: auto; text-align: center; }
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  line-height: 1.34;
  color: var(--ink);
}
.bg-ink .quote blockquote, .bg-sage .quote blockquote { color: var(--tan); }
.quote figcaption {
  margin-top: 1.6rem;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.bg-ink .quote figcaption, .bg-sage .quote figcaption { color: rgba(240,236,230,.6); }

.quote-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}
.quote-row figure { margin: 0; text-align: left; max-width: none; }
.quote-row blockquote { font-size: clamp(1.1rem, 1.6vw, 1.32rem); line-height: 1.5; }
.quote-row figcaption { margin-top: 1.1rem; }

/* ---------- Accordion ---------- */
.acc { border-top: 1px solid var(--line); }
.bg-ink .acc, .bg-tan .acc { border-top-color: var(--tan-dk); }
.acc-item { border-bottom: 1px solid var(--line); }
.bg-tan .acc-item { border-bottom-color: var(--tan-dk); }
.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.75rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
.acc-btn:hover { color: var(--clay-deep); }
.acc-btn::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform .3s var(--ease);
}
.acc-btn[aria-expanded="true"]::after { transform: rotate(225deg) translate(-3px, -3px); }
.acc-panel { display: none; padding: 0 0 2.25rem; max-width: 68ch; }
.acc-panel[data-open="true"] { display: block; }

/* ---------- Callout ---------- */
.callout-box {
  background: var(--tan-lt);
  border: 1px solid var(--tan-dk);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.bg-tan .callout-box { background: var(--white); border-color: var(--line); }

/* ---------- Banner CTA ---------- */
.banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(5rem, 11vw, 8.5rem);
  background: var(--ink);
}
.banner .wrap { position: relative; z-index: 3; }
.banner h2 { color: var(--tan); }
.banner p { color: rgba(240, 236, 230, .84); }
.banner .eyebrow { color: var(--clay-pale); }

/* ---------- Contact ---------- */
.contact-row {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child { border-bottom: 0; }
.contact-row dt {
  flex: none;
  width: 8.5rem;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: .3rem;
}
.contact-row dd { margin: 0; }
.contact-row dd a { font-family: var(--font-display); font-size: 1.35rem; text-decoration: none; }
.contact-row dd a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(240, 236, 230, .72); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2.5rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand img { height: 62px; width: auto; margin-bottom: 1.5rem; }
.footer-brand p { font-size: .93rem; max-width: 30ch; }
.footer-col h5 {
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.1rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: .93rem;
  color: rgba(240, 236, 230, .72);
  text-decoration: none;
  margin-bottom: .6rem;
}
.footer-col a:hover { color: var(--tan); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(240, 236, 230, .5);
}
.footer-bottom p { margin: 0; }

/* ---------- After Hours theme (aesthetics) ---------- */
.theme-afterhours { background: #f8f4ef; }
.theme-afterhours .bg-paper { background: #f8f4ef; }
.theme-afterhours .eyebrow { color: var(--clay-deep); }
.theme-afterhours .menu-panel { background: #f4ece2; }
.theme-afterhours .menu-panel.is-deep { background: var(--tan); }
.theme-afterhours .tier:nth-child(1) { background: #faf5ee; }

/* ---------- Scroll reveal ---------- */
.no-js .reveal { opacity: 1 !important; transform: none !important; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

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

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--tan-lt);
  padding: .8rem 1.2rem;
  font-size: .82rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 2rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s var(--ease), transform .28s var(--ease);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { color: var(--ink); padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .nav a:hover { color: var(--clay-deep); opacity: 1; }
  .nav a[aria-current="page"] { border-bottom: 1px solid var(--line); color: var(--clay-deep); }
  .nav .btn { margin: 1.4rem 0 0; }
  .site-header.is-solid .nav .btn-ghost-light,
  .nav .btn-ghost-light { background: var(--ink); color: var(--tan-lt); border-color: var(--ink); }

  .split.is-reversed .split-media { order: 0; }
  .menu-list.is-two-col, .ticks.is-two-col { column-count: 1; }
  .contact-row { flex-direction: column; gap: .4rem; }
  .contact-row dt { width: auto; padding-top: 0; }
}

@media (max-width: 620px) {
  .menu-item-head { flex-wrap: wrap; }
  .menu-item-head h4 { max-width: 100%; }
  .menu-leader { display: none; }
  .menu-item-head .price { margin-left: auto; }
  .addon-list li { flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1fr; }
  .steps li { padding-left: 3.25rem; }
  .btn { width: 100%; }
  .nav .btn { width: 100%; }
}

/* ============================================================
   BOTANICALS
   Marsha's brief: natural imagery should do the soothing rather
   than the copy saying it. Leaves are built from the same
   round-capped strokes as the logo mark, so they read as family.
   Everything here is decorative and hidden from assistive tech.
   ============================================================ */

/* Leaf bullets, tilted so a list reads as a stem rather than a grid */
.ticks li::before {
  content: "";
  position: absolute;
  left: -2px; top: .46em;
  width: 17px; height: 14px;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2042%2034%22%3E%3Cpath%20d%3D%22M21%202%20Q39%2017%2021%2032%20Q3%2017%2021%202%20Z%22%20fill%3D%22%238f552e%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  transform: rotate(-28deg);
  transform-origin: 50% 60%;
  transition: transform .5s var(--ease);
}
.ticks li:hover::before { transform: rotate(-12deg); }
.bg-ink .ticks li::before,
.bg-sage .ticks li::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2042%2034%22%3E%3Cpath%20d%3D%22M21%202%20Q39%2017%2021%2032%20Q3%2017%2021%202%20Z%22%20fill%3D%22%23e8c4a4%22%2F%3E%3C%2Fsvg%3E"); }

.tier-mark {
  width: 22px; height: 35px;
  margin: 0 auto .9rem;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2038%2060%22%3E%3Cpath%20d%3D%22M19%2058%20C19%2044%2019%2026%2019%206%22%20fill%3D%22none%22%20stroke%3D%22%238f552e%22%20stroke-width%3D%222.2%22%20stroke-linecap%3D%22round%22%2F%3E%3Cg%20fill%3D%22%238f552e%22%3E%3Cg%20transform%3D%22translate%2819%2C46%29%20rotate%28-48%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3Cg%20transform%3D%22translate%2819%2C38%29%20rotate%2848%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3Cg%20transform%3D%22translate%2819%2C29%29%20rotate%28-46%29%20scale%28.85%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3Cg%20transform%3D%22translate%2819%2C21%29%20rotate%2846%29%20scale%28.85%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3Cg%20transform%3D%22translate%2819%2C12%29%20scale%28.7%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") center / contain no-repeat;
  font-size: 0;
}

/* Sprig above every flanked sub-head */
.menu-subhead h3 { position: relative; padding-top: 3.1rem; }
.menu-subhead h3::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: 26px; height: 41px;
  margin-left: -13px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2038%2060%22%20fill%3D%22none%22%20stroke%3D%22%2355625d%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M19%2058%20C19%2044%2019%2026%2019%205%22%2F%3E%3Cg%20transform%3D%22translate%2819%2C46%29%20rotate%28-48%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3Cg%20transform%3D%22translate%2819%2C38%29%20rotate%2848%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3Cg%20transform%3D%22translate%2819%2C29%29%20rotate%28-46%29%20scale%28.85%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3Cg%20transform%3D%22translate%2819%2C21%29%20rotate%2846%29%20scale%28.85%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3Cg%20transform%3D%22translate%2819%2C12%29%20scale%28.7%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

/* Large ferns. Injected by main.js into heroes, banners and the footer.
   They sit behind everything and never take pointer events. */
.frond {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  color: currentColor;
  transform-origin: 50% 100%;
}
.hero .frond { z-index: 2; color: var(--tan); opacity: .5; }
.banner .frond { z-index: 1; color: var(--sage); opacity: .68; }
.banner .frond svg { overflow: visible; }
.banner .frond path { stroke-width: 2; }
.banner .frond-a { bottom: -18%; left: 2%;  width: clamp(150px, 22vw, 330px); }
.banner .frond-b { bottom: -14%; right: 2%; width: clamp(170px, 25vw, 370px); }
@media (max-width: 900px) {
  .banner .frond-a { left: -12%; }
  .banner .frond-b { right: -12%; }
}
.site-footer .frond { color: var(--tan); opacity: .2; }

.frond svg { width: 100%; height: 100%; overflow: visible; }
.frond path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.frond-a { bottom: -12%; left: -4%;  width: clamp(150px, 18vw, 280px); aspect-ratio: 1; transform: rotate(-14deg); }
.frond-b { bottom: -9%;  right: -3%; width: clamp(170px, 21vw, 320px); aspect-ratio: 1; transform: rotate(12deg); }

/* The fern draws itself, frond by frond, then breathes */
.frond path {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.frond.is-drawn path { stroke-dashoffset: 0; }
.hero .frond.is-drawn,
.banner .frond.is-drawn,
.site-footer .frond.is-drawn { animation: sway 15s ease-in-out infinite; }
.frond-b.is-drawn { animation-duration: 19s; animation-delay: -6s; }
.site-footer .frond.is-drawn { animation-duration: 24s; }

@keyframes sway {
  0%, 100% { transform: rotate(var(--tilt, 0deg)) translateY(0); }
  50%      { transform: rotate(calc(var(--tilt, 0deg) + 1.4deg)) translateY(-4px); }
}
.frond-a { --tilt: -14deg; }
.frond-b { --tilt: 12deg; }

/* The steps line grows downward like a stem instead of just being there */
.steps li { border-left: 0; }
.steps li::after {
  content: "";
  position: absolute;
  left: 0; top: 1.9rem; bottom: 0;
  width: 1px;
  background: var(--line);
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 1s var(--ease);
}
.bg-tan .steps li::after { background: var(--tan-dk); }
.steps li:last-child::after { display: none; }
.is-visible .steps li::after, .steps.is-visible li::after { transform: scaleY(1); }
.steps li:nth-child(2)::after { transition-delay: .18s; }
.steps li:nth-child(3)::after { transition-delay: .36s; }
.steps li:nth-child(4)::after { transition-delay: .54s; }
.steps li:nth-child(5)::after { transition-delay: .72s; }
.steps li:nth-child(6)::after { transition-delay: .90s; }

@media (prefers-reduced-motion: reduce) {
  .frond path { stroke-dashoffset: 0; transition: none; }
  .frond.is-drawn { animation: none; }
  .steps li::after { transform: scaleY(1); transition: none; }
  .ticks li::before { transition: none; }
}

/* Dividers: hairline — plant — hairline. The plant draws itself in. */
.bot-rule {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  margin-block: clamp(3rem, 7vw, 5.5rem);
  color: var(--sage-deep);
}
.bot-rule::before, .bot-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.bg-tan .bot-rule::before, .bg-tan .bot-rule::after,
.menu-panel .bot-rule::before, .menu-panel .bot-rule::after { background: var(--tan-dk); }
.bg-ink .bot-rule, .bg-sage .bot-rule { color: var(--tan); }
.bg-ink .bot-rule::before, .bg-ink .bot-rule::after { background: var(--line-dark); }

.bot-rule-plant {
  flex: none;
  width: clamp(64px, 7vw, 92px);
  aspect-ratio: 1;
}
.bot-rule-plant svg { width: 100%; height: 100%; overflow: visible; }
.bot-rule-plant path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.bot-rule-plant.is-drawn path { stroke-dashoffset: 0; }


@media (prefers-reduced-motion: reduce) {
  .bot-rule-plant path { stroke-dashoffset: 0; transition: none; }
}

/* ---------- Density: plants in the page margins ----------------------
   The content column caps at 1240px, so on a wide screen there is real
   empty space either side. Plants live there: present and countable,
   but never behind a price list. Below 1360px the margin is gone, so
   they are too — mobile keeps only the heroes, banner, footer and rules.
   -------------------------------------------------------------------- */
.frond-ml, .frond-mr {
  display: none;
  width: clamp(110px, calc((100vw - 1150px) / 2), 250px);
  aspect-ratio: 1;
  top: var(--y, 14%);
}
.frond-ml, .frond-mr { }
.frond-ml path, .frond-mr path { stroke-width: 1.9; }
.frond-ml { left: -1.5%;  --tilt: -9deg;  transform: rotate(-9deg); }
.frond-mr { right: -1.5%; --tilt: 8deg;   transform: rotate(8deg); }

@media (min-width: 1360px) {
  .frond-ml, .frond-mr { display: block; }
}

.section .frond, .page-head .frond { color: var(--sage); opacity: .42; z-index: 0; }
.split-bleed .frond { color: var(--tan); opacity: .3; z-index: 0; }
.split-bleed .sb-body { position: relative; z-index: 1; }
.section > .wrap, .page-head > .wrap { position: relative; z-index: 1; }
.menu-panel .frond { color: var(--sage-deep); opacity: .36; z-index: 0; }
.menu-panel > .wrap { position: relative; z-index: 1; }
.bg-ink .frond, .bg-sage .frond { color: var(--tan); opacity: .24; }
.bg-white .frond { opacity: .36; }

/* A sprig tucked into the corner of every bordered card */
.card-plain { position: relative; overflow: hidden; }
.card-plain::after {
  content: "";
  position: absolute;
  top: -6px; right: -10px;
  width: 46px; height: 72px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2038%2060%22%20fill%3D%22none%22%20stroke%3D%22%23c9bda9%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M19%2058%20C19%2044%2019%2026%2019%205%22%2F%3E%3Cg%20transform%3D%22translate%2819%2C46%29%20rotate%28-48%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3Cg%20transform%3D%22translate%2819%2C38%29%20rotate%2848%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3Cg%20transform%3D%22translate%2819%2C29%29%20rotate%28-46%29%20scale%28.85%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3Cg%20transform%3D%22translate%2819%2C21%29%20rotate%2846%29%20scale%28.85%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3Cg%20transform%3D%22translate%2819%2C12%29%20scale%28.7%29%22%3E%3Cpath%20d%3D%22M0%200%20Q11%20-8%200%20-17%20Q-11%20-8%200%200%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") center / contain no-repeat;
  transform: rotate(18deg);
  pointer-events: none;
}

/* Quotes get a drawn plant above them instead of a bare eyebrow */
.quote .bot-rule { margin-block: 0 2rem; }
