/* ============================================================
   Align by Ami — main.css
   Warm editorial minimalism · espresso on cream
   ============================================================ */

:root {
  --cream: #EDE9E3;
  --cream-2: #E4DED4;
  --paper: #F4F1EB;
  --espresso: #6A2110;
  --espresso-deep: #471507;
  --ink: #3B2416;
  --muted: #6E5B4E;
  --line: #D5CCBE;
  --clay: #A25E38;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  /* headings: Acumin when installed / licensed; Archivo is the shipped fallback */
  --display: "Acumin Variable Concept", "Acumin Pro", "Archivo", "Helvetica Neue", Arial, sans-serif;

  --nav-h: 76px;
  --ease-out: cubic-bezier(.22, .61, .21, 1);
  --wrap: 1180px;
  --wrap-wide: 1360px;
  --gutter: clamp(1.75rem, 5vw, 5rem);        /* generous editorial side gap */
  --gutter-nav: clamp(1.5rem, 2.5vw, 3rem);   /* nav can sit a little wider */

  --z-nav: 50;
  --z-menu: 60;
  --z-skip: 70;
  --z-veil: 80;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1rem); -webkit-text-size-adjust: 100%; }
a, button { -webkit-tap-highlight-color: transparent; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
a { color: var(--espresso); text-decoration: none; }
ul, ol { padding: 0; list-style: none; }
::selection { background: var(--espresso); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--espresso);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: var(--z-skip);
  background: var(--espresso); color: var(--cream);
  padding: .6rem 1.2rem; border-radius: 999px;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 14px; }

/* ---------- typography ---------- */
h1, h2, h3, .serif {
  font-family: var(--display);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.1;
  letter-spacing: -.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 4.8vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.25; }
h1 em, h2 em, .serif em { font-style: italic; font-weight: 400; color: var(--clay); }

p { max-width: 62ch; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .9rem;
  font-size: .85rem; font-weight: 400;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--clay);
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--clay);
}
.eyebrow.no-rule::before { display: none; }

/* ---------- layout ---------- */
.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.wrap-wide { width: min(var(--wrap-wide), 100% - var(--gutter) * 2); margin-inline: auto; }
section { position: relative; }
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section-tint { background: var(--cream-2); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head h2 { margin-top: 1.1rem; }
.section-head p { margin-top: 1.2rem; }

.grid-2 {
  display: grid; gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* ---------- butterfly / ornaments ---------- */
.mark { color: var(--espresso); }
.mark-divider {
  width: 30px; margin: 2.2rem auto; opacity: .85; color: var(--clay);
}
.watermark {
  position: absolute; z-index: 0; pointer-events: none;
  color: var(--espresso); opacity: .05;
  width: clamp(320px, 42vw, 640px);
}
.hr { border: 0; border-top: 1px solid var(--line); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  padding: 1.02rem 2.1rem; border-radius: 999px;
  font-size: .78rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase;
  line-height: 1; cursor: pointer; white-space: nowrap;
  transition: background-color .25s var(--ease-out), color .25s var(--ease-out),
              border-color .25s var(--ease-out), transform .25s var(--ease-out),
              box-shadow .25s var(--ease-out);
}
.btn svg { width: 14px; height: 14px; transition: transform .25s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--espresso); color: var(--cream); border: 1px solid var(--espresso); }
.btn-primary:hover { background: var(--espresso-deep); border-color: var(--espresso-deep); transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(71, 21, 7, .45); }

.btn-ghost { background: transparent; color: var(--espresso); border: 1px solid var(--espresso); }
.btn-ghost:hover { background: var(--espresso); color: var(--cream); transform: translateY(-2px); }

.btn-light { background: var(--cream); color: var(--espresso); border: 1px solid var(--cream); }
.btn-light:hover { background: transparent; color: var(--cream); transform: translateY(-2px); }

.text-link {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--espresso); position: relative; padding-bottom: .35rem;
}
.text-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--espresso);
  transform: scaleX(.35); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.text-link:hover::after { transform: scaleX(1); }
.text-link svg { width: 13px; height: 13px; }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .35s var(--ease-out), box-shadow .35s var(--ease-out),
              backdrop-filter .35s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(237, 233, 227, .88);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-bar {
  width: min(var(--wrap-wide), 100% - var(--gutter-nav) * 2);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand { display: inline-flex; align-items: center; color: var(--espresso); }
.brand svg { display: block; }
.brand .brand-mark { display: none; } /* wordmark-only header (markup removed in build.py too) */
.brand .brand-word { width: 168px; }

.nav-links { display: none; }
@media (min-width: 1080px) {
  .nav-links {
    display: flex; align-items: center; gap: 2rem;
    font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 400;
  }
  .nav-links > li { position: relative; }
  .nav-links a { color: var(--ink); padding: .4rem 0; position: relative; }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
    background: var(--espresso); transform: scaleX(0); transform-origin: left;
    transition: transform .3s var(--ease-out);
  }
  .nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
  .nav-links a[aria-current="page"] { color: var(--espresso); }

  .has-sub > button {
    display: inline-flex; align-items: center; gap: .45rem;
    font: inherit; letter-spacing: inherit; text-transform: inherit; color: var(--ink);
    padding: .4rem 0;
  }
  .has-sub > button svg { width: 10px; height: 10px; transition: transform .3s var(--ease-out); }
  .has-sub:hover > button svg, .has-sub:focus-within > button svg { transform: rotate(180deg); }
  .sub-menu {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, 8px);
    min-width: 230px; padding: 1.1rem 1.4rem;
    background: var(--paper); border: 1px solid var(--line); border-radius: 2px;
    box-shadow: 0 24px 48px -24px rgba(59, 36, 22, .28);
    display: grid; gap: .75rem;
    opacity: 0; visibility: hidden;
    transition: opacity .28s var(--ease-out), transform .28s var(--ease-out), visibility 0s .28s;
  }
  .sub-menu::before { /* hover bridge */
    content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
  }
  .has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu {
    opacity: 1; visibility: visible; transform: translate(-50%, 0); transition-delay: 0s;
  }
  .sub-menu a { display: block; white-space: nowrap; }
}
.nav-cta { display: none; }
@media (min-width: 1080px) { .nav-cta { display: inline-flex; padding: .85rem 1.7rem; } }

/* hamburger */
.menu-btn {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; align-items: center;
  z-index: calc(var(--z-menu) + 1); position: relative;
}
.menu-btn span {
  display: block; width: 26px; height: 1.5px; background: var(--espresso);
  transition: transform .35s var(--ease-out), opacity .25s var(--ease-out);
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 1080px) { .menu-btn { display: none; } }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--cream);
  overscroll-behavior: contain;
  padding: calc(var(--nav-h) + 1.5rem) var(--gutter) calc(3rem + env(safe-area-inset-bottom));
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease-out), visibility 0s .4s;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; visibility: visible; transition-delay: 0s; }
.mobile-menu nav { margin: auto 0; }
.mobile-menu .m-link, .mobile-menu .m-sub-toggle {
  font-family: var(--serif); font-size: clamp(1.9rem, 7vw, 2.6rem);
  color: var(--espresso); line-height: 1.3; letter-spacing: 0;
  display: flex; align-items: center; gap: 1rem; width: 100%; text-align: left;
  padding: .35rem 0;
}
.mobile-menu li {
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.mobile-menu.open li { opacity: 1; transform: none; }
.mobile-menu .m-sub-toggle svg { width: 18px; height: 18px; transition: transform .3s var(--ease-out); }
.mobile-menu .m-sub-toggle[aria-expanded="true"] svg { transform: rotate(45deg); }
.m-sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease-out); }
.m-sub > div { overflow: hidden; }
.m-sub.open { grid-template-rows: 1fr; }
.m-sub a {
  display: block; font-size: 1.05rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); padding: .5rem 0 .5rem 1.6rem; font-weight: 300;
}
.mobile-menu .m-foot {
  margin-top: 2.5rem; display: grid; gap: 1rem; justify-items: start;
}
body.menu-locked { overflow: hidden; }
/* keep brand + close button above the menu overlay, without the scrolled-bar chrome */
body.menu-locked .site-header {
  z-index: calc(var(--z-menu) + 1);
  background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  box-shadow: none;
}

/* ---------- hero (centered copy + full-bleed cinematic band) ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(3.5rem, 8vw, 6rem)) 0 0;
  overflow: clip;
}
.center-hero { text-align: center; }
.center-hero .eyebrow { justify-content: center; }
.center-hero .eyebrow::before { display: none; }
.center-hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  margin: 1.5rem auto 0;
  max-width: 17ch;
}
@media (max-width: 520px) {
  .center-hero h1 { font-size: clamp(2.05rem, 8vw, 2.4rem); }
}
.center-hero .lead { margin: 1.7rem auto 0; max-width: 52ch; }
.center-hero blockquote { margin-inline: auto; }
.center-hero .hero-actions { justify-content: center; margin-top: 2.5rem; }
.center-hero .hero-note { margin-top: 2.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-band { margin-top: clamp(2.8rem, 6.5vw, 5rem); overflow: hidden; }
.hero-band img {
  width: 100%; display: block; object-fit: cover;
  height: clamp(340px, 58vh, 620px);
}
.hero .hero-band img { animation: heroZoom 2.2s var(--ease-out) both; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
@media (max-width: 640px) {
  .hero-band img { height: clamp(260px, 46vh, 400px); }
}

.arch {
  border-radius: 999px 999px 2px 2px;
  overflow: hidden;
  position: relative;
}
.arch img { width: 100%; height: 100%; object-fit: cover; }

/* identical hero watermark placement on every page (fixed offsets, not %) */
.hero .watermark, .page-hero .watermark {
  top: -70px; right: -70px;
  width: min(40vw, 560px);
}

.hero-note {
  margin-top: 2.6rem; display: inline-flex; align-items: center; gap: 1rem;
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.hero-note svg { width: 20px; color: var(--clay); }

/* load-in sequence */
.hero [data-seq] { opacity: 0; transform: translateY(26px); animation: seqIn .9s var(--ease-out) forwards; }
.hero [data-seq="1"] { animation-delay: .1s; }
.hero [data-seq="2"] { animation-delay: .24s; }
.hero [data-seq="3"] { animation-delay: .38s; }
.hero [data-seq="4"] { animation-delay: .52s; }
.hero [data-seq="5"] { animation-delay: .66s; }
.hero [data-seq="6"] { animation-delay: .8s; }
@keyframes seqIn { to { opacity: 1; transform: none; } }

/* ---------- first-visit veil (once per session; see inline script in <head>) ---------- */
.veil { display: none; }
html.has-veil .veil {
  display: flex; position: fixed; inset: 0; z-index: var(--z-veil);
  background: var(--cream);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transition: transform .72s cubic-bezier(.65, 0, .3, 1), visibility 0s .72s;
  will-change: transform;
}
html.veil-lift .veil { transform: translateY(-101%); visibility: hidden; }
.veil .v-mark {
  width: clamp(56px, 7vw, 84px); color: var(--espresso);
  opacity: 0; transform: scale(.88);
  animation: veilIn .8s .15s var(--ease-out) forwards;
}
.veil .v-word {
  width: min(62vw, 380px); color: var(--espresso);
  opacity: 0; transform: translateY(16px);
  animation: veilIn .8s .42s var(--ease-out) forwards;
}
@keyframes veilIn { to { opacity: 1; transform: none; } }
/* hold the hero entrance until the veil lifts */
html.has-veil:not(.veil-done) .hero [data-seq] { animation-play-state: paused; }

/* inner-page hero */
.page-hero {
  padding: calc(var(--nav-h) + clamp(3.5rem, 8vw, 6rem)) 0 clamp(3rem, 7vw, 5.5rem);
  position: relative; overflow: clip;
}
.page-hero.has-band { padding-bottom: 0; }
.page-hero h1 { margin-top: 0; }  /* no eyebrow above inner-page titles */
.page-hero blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--clay);
  margin-top: 2rem; max-width: 46ch; line-height: 1.45;
}

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 1.15rem;
  overflow: hidden; position: relative;
  background: var(--cream);
}
.marquee-track {
  display: flex; gap: 3.5rem; width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee span {
  display: inline-flex; align-items: center; gap: 3.5rem;
  font-size: .78rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}
.marquee svg { width: 17px; color: var(--clay); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- service cards (home) ---------- */
.cards-4 {
  display: grid; gap: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}
.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  position: relative;
}
.svc-card:hover { box-shadow: 0 30px 50px -30px rgba(59, 36, 22, .35); border-color: #C9BEAD; }
.svc-card .thumb { aspect-ratio: 4 / 3; overflow: hidden; }
.svc-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.svc-card:hover .thumb img { transform: scale(1.05); }
.svc-card .body { padding: 1.7rem 1.6rem 1.9rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.svc-card h3 { text-transform: uppercase; font-size: 1.12rem; letter-spacing: .14em; font-weight: 400; }
.svc-card p { font-size: .95rem; color: var(--muted); flex: 1; }
.svc-card .text-link { margin-top: .4rem; }
.svc-card > a.cover { position: absolute; inset: 0; z-index: 1; }
.svc-card .text-link { position: relative; z-index: 2; }

/* ---------- philosophy / statement ---------- */
.statement {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.3; color: var(--espresso);
  max-width: 21em; text-wrap: balance;
}
.statement em { font-style: italic; font-weight: 400; color: var(--clay); }

/* equal-weight paragraph pairs (philosophy, about) — same size, same colour, no highlights */
.statement-duo {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.45; color: var(--espresso);
  max-width: 30em;
}

.nowrap { white-space: nowrap; }
.col-stack > * + * { margin-top: 2.6rem; }

/* ---------- pathway (wide) cards ---------- */
.pathways { display: grid; gap: 2.2rem; }
@media (min-width: 820px) { .pathways { grid-template-columns: 1fr 1fr; } }
.pathway {
  position: relative; overflow: hidden; border-radius: 2px;
  aspect-ratio: 16 / 10.5; display: flex; align-items: flex-end;
  color: var(--cream);
}
.pathway img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.pathway::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(11deg, rgba(43, 15, 5, .78) 8%, rgba(43, 15, 5, .12) 55%);
  transition: background .4s var(--ease-out);
}
.pathway:hover img { transform: scale(1.045); }
.pathway .body { position: relative; z-index: 2; padding: 2rem 2.2rem; width: 100%; }
.pathway h3 { color: var(--cream); text-transform: uppercase; letter-spacing: .16em; font-size: 1.15rem; font-weight: 400; }
.pathway p { color: rgba(237, 233, 227, .82); font-size: .95rem; margin-top: .5rem; max-width: 40ch; }
.pathway .text-link { color: var(--cream); margin-top: 1rem; }
.pathway .text-link::after { background: var(--cream); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--espresso-deep); color: var(--cream);
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  position: relative; overflow: clip; text-align: center;
}
.cta-band .watermark { color: var(--cream); opacity: .06; left: 50%; top: 50%; transform: translate(-50%, -50%); max-height: 100%; }
.cta-band h2 { color: var(--cream); max-width: 21em; margin-inline: auto; }
.cta-band h2 em { color: #D9A582; }
.cta-band .eyebrow { color: #D9A582; }
.cta-band .eyebrow::before { background: #D9A582; }
.cta-band p { margin: 1.4rem auto 0; color: rgba(237, 233, 227, .8); }
.cta-band .actions { margin-top: 2.6rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- split feature (image + copy) ---------- */
.feature-img {
  border-radius: 2px; overflow: hidden; position: relative;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-img.tall { aspect-ratio: 4 / 4.8; }
.feature-img.wide { aspect-ratio: 4 / 3; }
.frame-offset { position: relative; }
.frame-offset::before {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--clay); border-radius: 2px;
  transform: translate(14px, 14px); z-index: 0;
  opacity: .55;
}
.frame-offset > * { position: relative; z-index: 1; }

/* ---------- editorial lists ---------- */
.list-rules { border-top: 1px solid var(--line); }
.list-rules li {
  display: flex; gap: 1.2rem; align-items: baseline;
  padding: .95rem 0; border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.list-rules li::before {
  content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%;
  background: var(--clay); transform: translateY(-1px);
}
.list-cols { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 860px) { .list-cols.cols-2 { grid-template-columns: 1fr 1fr; } .list-cols.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.list-block h3 { margin-bottom: 1.1rem; }
.list-block .eyebrow { margin-bottom: .8rem; }

/* steps (unnumbered rule-topped blocks) */
.steps { display: grid; gap: 1.6rem; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  border-top: 1px solid var(--espresso);
  padding-top: 1.4rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.step p { font-size: .95rem; color: var(--muted); }

/* ---------- price elements ---------- */
.price-cards { display: grid; gap: 2rem; }
@media (min-width: 900px) { .price-cards { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 2px;
  padding: 2.4rem 2.1rem; display: flex; flex-direction: column; gap: 1.1rem;
  transition: box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  position: relative;
}
.price-card:hover { box-shadow: 0 30px 50px -30px rgba(59, 36, 22, .35); }
.price-card.featured { background: var(--espresso-deep); border-color: var(--espresso-deep); }
.price-card.featured, .price-card.featured h3 { color: var(--cream); }
.price-card.featured .muted { color: rgba(237, 233, 227, .72); }
.price-card.featured .price { color: var(--cream); }
.price-card .tag {
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--clay);
}
.price-card.featured .tag { color: #D9A582; }
.price-card h3 { font-size: 1.3rem; }
.price-card .price {
  font-family: var(--serif); font-size: 2.3rem; font-weight: 400; color: var(--espresso);
  line-height: 1;
}
.price-card .price small { font-size: .9rem; font-family: var(--sans); color: inherit; opacity: .75; letter-spacing: .05em; }
.price-card ul { display: grid; gap: .55rem; font-size: .95rem; }
.price-card ul li { display: flex; gap: .7rem; align-items: baseline; }
.price-card ul li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--clay); flex: none;
}
.price-card .btn { margin-top: auto; }

.rate-table { border-top: 1px solid var(--line); }
.rate-table li {
  display: flex; justify-content: space-between; gap: 2rem; align-items: baseline;
  padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1rem;
}
.rate-table .amt { font-family: var(--serif); font-size: 1.25rem; color: var(--espresso); white-space: nowrap; }

.price-note {
  display: inline-block; background: var(--cream-2); border: 1px solid var(--line);
  border-radius: 2px; padding: 1.2rem 1.6rem; font-size: .92rem; color: var(--muted);
}

/* highlight offer strip on service pages */
.offer {
  border: 1px solid var(--espresso); border-radius: 2px;
  padding: 2rem 2.2rem; display: flex; flex-wrap: wrap; gap: 1.6rem;
  align-items: center; justify-content: space-between;
  background: var(--paper);
}
.offer .o-name { font-size: .82rem; letter-spacing: .22em; text-transform: uppercase; color: var(--clay); }
.offer .o-main { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--espresso); }

/* ---------- therapy menu (recovery) ---------- */
.therapies { display: grid; gap: 1.6rem; }
@media (min-width: 720px) { .therapies { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .therapies { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; } }
.therapy {
  background: var(--paper); border: 1px solid var(--line); border-radius: 2px;
  padding: 1.9rem 1.8rem;
  display: flex; flex-direction: column; gap: .7rem;
  transition: box-shadow .35s var(--ease-out);
}
.therapy:hover { box-shadow: 0 24px 44px -28px rgba(59, 36, 22, .35); }
.therapy .t-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.therapy h3 { font-size: 1.28rem; }
.therapy .t-meta { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--clay); white-space: nowrap; }
.therapy p { font-size: .93rem; color: var(--muted); }

/* ---------- FAQ accordion ---------- */
.faq-group { max-width: 820px; }
.faq {
  border-bottom: 1px solid var(--line);
}
.faq:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.35rem .2rem; text-align: left;
  font-family: var(--display); font-size: clamp(1.05rem, 1.7vw, 1.25rem); font-weight: 400;
  color: var(--espresso); cursor: pointer;
  transition: color .25s var(--ease-out);
}
.faq-q:hover { color: var(--clay); }
.faq-q .ic { flex: none; width: 20px; height: 20px; position: relative; }
.faq-q .ic::before, .faq-q .ic::after {
  content: ""; position: absolute; background: currentColor; inset: 0; margin: auto;
  transition: transform .35s var(--ease-out);
}
.faq-q .ic::before { width: 100%; height: 1.5px; }
.faq-q .ic::after { width: 1.5px; height: 100%; }
.faq[data-open] .faq-q .ic::after { transform: rotate(90deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease-out);
}
.faq-a > div { overflow: hidden; }
.faq-a p, .faq-a ul { padding-bottom: 1.4rem; color: var(--muted); font-size: 1rem; max-width: 58ch; }
.faq-a ul { display: grid; gap: .35rem; }
.faq-a ul li { padding-left: 1.2rem; position: relative; }
.faq-a ul li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--clay);
}
.faq[data-open] .faq-a { grid-template-rows: 1fr; }

/* ---------- forms ---------- */
.form-grid { display: grid; gap: 1.4rem; }
.field label {
  display: block; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .55rem;
}
.field input, .field textarea {
  width: 100%; background: var(--paper); border: 1px solid var(--line); border-radius: 2px;
  padding: 1rem 1.1rem; font: inherit; color: var(--ink);
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--espresso);
  box-shadow: 0 0 0 3px rgba(106, 33, 16, .12);
}
.field textarea { min-height: 150px; resize: vertical; }
.form-status { font-size: .95rem; color: var(--espresso); min-height: 1.4em; }

/* ---------- info block (hours / location) ---------- */
.info-cols { display: grid; gap: 2.5rem; }
@media (min-width: 820px) { .info-cols { grid-template-columns: 1fr 1fr; } }
.info-item h3 { font-size: 1.2rem; margin-bottom: .9rem; }
.info-item .eyebrow { margin-bottom: .7rem; }
.info-item ul { display: grid; gap: .3rem; font-size: 1rem; }
.info-item .todo { color: var(--muted); font-style: italic; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--espresso-deep); color: rgba(237, 233, 227, .85);
  padding: clamp(4rem, 8vw, 6.5rem) 0 2.5rem;
  position: relative; overflow: clip;
  font-size: .95rem;
}
.footer-brand { color: var(--cream); }
.footer-brand .brand-word { width: min(420px, 72vw); color: var(--cream); }
.footer-tag {
  margin-top: 1.1rem; font-size: .74rem; letter-spacing: .3em; text-transform: uppercase;
  color: #D9A582;
}
.footer-grid {
  display: grid; gap: 2.8rem; margin-top: 3.5rem;
}
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }
.site-footer h3 {
  color: var(--cream); font-family: var(--sans); font-size: .85rem;
  letter-spacing: .24em; text-transform: uppercase; font-weight: 400; margin-bottom: 1.1rem;
}
.site-footer ul { display: grid; gap: .55rem; }
.site-footer a { color: rgba(237, 233, 227, .85); transition: color .2s; }
.site-footer a:hover { color: #D9A582; }
.footer-note { max-width: 34ch; line-height: 1.75; }
.footer-legal {
  margin-top: 3.5rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(237, 233, 227, .18);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .8rem; letter-spacing: .08em; color: rgba(237, 233, 227, .6);
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-img { overflow: hidden; }
.reveal-img img { transition: transform 1.3s var(--ease-out); }
.reveal-img:not(.in) img { transform: scale(1.06); }

/* ---------- parallax (transform is applied to the first child when the
   element itself is a .reveal, so the two transforms never conflict) ---------- */
[data-parallax] > :first-child { will-change: transform; }

/* ---------- utilities ---------- */
.center { text-align: center; }
.center .section-head { margin-inline: auto; }
.center .eyebrow { justify-content: center; }
.center p { margin-inline: auto; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.stack > * + * { margin-top: 1.2rem; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .hero [data-seq] { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .veil { display: none !important; }
}

/* ---------- small screens (phones) ---------- */
@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .brand .brand-word { width: 142px; }
  .hero { padding-top: calc(var(--nav-h) + 2.6rem); }

  /* calmer tracking so uppercase labels breathe instead of touching the gutters */
  .eyebrow { font-size: .78rem; letter-spacing: .15em; }
  .price-card .tag, .offer .o-name, .field label, .site-footer h3 { letter-spacing: .15em; }
  .marquee span { font-size: .72rem; letter-spacing: .22em; }

  /* hero: butterfly above the note, app-like full-width stacked buttons */
  .center-hero .hero-note {
    flex-direction: column; align-items: center; gap: .6rem;
    font-size: .72rem; letter-spacing: .15em; margin-top: 2.2rem;
  }
  .center-hero .hero-actions,
  .cta-band .actions {
    flex-direction: column; align-items: stretch;
    width: min(100%, 340px); margin-inline: auto;
  }
  .center-hero .hero-actions .btn,
  .cta-band .actions .btn { width: 100%; }
  .btn { padding: 1rem 1.6rem; letter-spacing: .18em; }

  .hero-band { margin-top: 2.2rem; }
  .hero-band img { height: clamp(300px, 52svh, 480px); }

  .section { padding-block: 3.6rem; }
  .offer { padding: 1.6rem; flex-direction: column; align-items: stretch; text-align: center; }
  .therapy .t-head { flex-wrap: wrap; }
  .therapy .t-meta { white-space: normal; }

  /* quicker, subtler reveals on touch screens */
  .reveal { transition-duration: .55s; transition-delay: calc(var(--d, 0s) * .5); }
  .reveal:not(.in) { transform: translateY(18px); }

  /* near-opaque scrolled bar so content never ghosts through on small screens */
  .site-header.scrolled { background: rgba(237, 233, 227, .97); }
}
