/* =========================================================================
   Seranya — site.css
   Tokens → base → layout → components → pages → responsive
   ========================================================================= */

/* ---------------------------------------------------------------- tokens */
:root {
  /* surfaces — white and cream, matching the treatments section */
  --ivory: #ffffff;
  --shell: #f5efe6;
  --nude: #e8e0d4;
  --paper: #ffffff;

  /* ink — charcoal headings, grey supporting text */
  --ink: #1a1a1a;
  --ink-body: #666666;
  --ink-mute: #8a8a8a;

  /* accents — same charcoal family, no green or gold */
  --slate: #1a1a1a;
  --slate-2: #2a2a2a;
  --brass: #1a1a1a;
  --brass-deep: #1a1a1a;
  --brass-light: #c8c8c8;
  --rose: #8a8a8a;
  --rose-tint: #f5efe6;

  /* lines */
  --line: rgba(26, 26, 26, 0.12);
  --line-soft: rgba(26, 26, 26, 0.08);
  --line-invert: rgba(255, 255, 255, 0.2);

  /* type — Calibri is the brand face; Carlito is the licensed web fallback */
  --serif: Calibri, Carlito, "Segoe UI", sans-serif;
  --sans: Calibri, Carlito, "Segoe UI", sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1: clamp(1.18rem, 1.1rem + 0.4vw, 1.4rem);
  --step-2: clamp(1.42rem, 1.28rem + 0.7vw, 1.85rem);
  --step-3: clamp(1.7rem, 1.45rem + 1.25vw, 2.45rem);
  --step-4: clamp(2.05rem, 1.6rem + 2.2vw, 3.3rem);
  --step-5: clamp(2.4rem, 1.7rem + 3.4vw, 4.4rem);

  /* rhythm */
  --gap: clamp(1.25rem, 0.9rem + 1.6vw, 2.25rem);
  --pad-x: clamp(1rem, 0.45rem + 1.2vw, 1.75rem);
  --section-y: clamp(3.75rem, 2.5rem + 5vw, 7.5rem);
  --maxw: 1520px;
  --measure: 68ch;

  --radius: 2px;
  --radius-lg: 4px;
  --shadow: 0 18px 48px -32px rgba(26, 26, 26, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

figure, blockquote, dl, dd { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink-body);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
iframe { display: block; max-width: 100%; }

img { height: auto; background: var(--shell); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); line-height: 1.3; }

p { margin: 0 0 1.1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
a:hover { color: var(--ink-body); }

ul, ol { margin: 0 0 1.2em; padding-left: 1.1em; }
li { margin-bottom: 0.4em; }

strong { color: var(--ink); font-weight: 600; }

hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

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

::selection { background: var(--nude); color: var(--ink); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 200;
  background: var(--ink);
  color: var(--ivory);
  padding: 0.7rem 1.1rem;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--ivory); }

/* ---------------------------------------------------------------- layout */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.wrap-narrow { max-width: 860px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * 0.62); }
.section--shell { background: var(--shell); }
.section--paper { background: var(--paper); }

.section--dark {
  background: var(--slate);
  color: rgba(255, 255, 255, 0.78);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark strong { color: var(--ivory); }
.section--dark a { color: var(--ivory); }
.section--dark a:hover { color: var(--brass-light); }

.section-head { margin-bottom: clamp(2rem, 1.2rem + 2.4vw, 3.5rem); }
.section-head p { color: var(--ink-mute); font-size: var(--step-1); line-height: 1.5; max-width: 46ch; }
.section--dark .section-head p { color: rgba(255, 255, 255, 0.72); }

.section--scene {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background-color: #0b1c18;
}
.section--scene::before,
.section--scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.section--scene::before {
  background: var(--scene-img) center / cover no-repeat;
  filter: saturate(0.35) blur(1.2px);
  width: 108%;
  height: 108%;
  top: -4%;
  left: -4%;
  right: auto;
  bottom: auto;
}
.section--scene::after {
  background:
    linear-gradient(180deg, rgba(0, 44, 36, 0.86) 0%, rgba(8, 18, 16, 0.9) 100%);
}
.section--scene h1,
.section--scene h2,
.section--scene .feature h3,
.section--scene .split h2,
.section--scene .split h3,
.section--scene strong { color: var(--ivory); }
.section--scene .split a:not(.btn),
.section--scene .wrap-narrow a:not(.btn),
.section--scene .section-head a:not(.btn) { color: var(--ivory); }
.section--scene .section-head p,
.section--scene .split > div > p,
.section--scene .wrap-narrow > p,
.section--scene .feature p { color: rgba(255, 255, 255, 0.78); }
.section--scene .kicker { color: rgba(255, 255, 255, 0.62); }
.section--scene .rule { background: rgba(255, 255, 255, 0.55); }
.section--scene .split .check-list li::before { background: rgba(255, 255, 255, 0.7); }
.section--scene .feature--ruled { border-color: var(--line-invert); }
.scene--clinic { --scene-img: url("../img/1.jpg"); }
.scene--spa { --scene-img: url("../img/bg-spa.jpg"); }
.scene--longevity { --scene-img: url("../img/bg-redlight.jpg"); }
.scene--journey { --scene-img: url("../img/bg-spa.jpg"); }
.scene--spirit { --scene-img: url("../img/bg-spirit.jpg"); }
.scene--spirit { text-align: center; }
.scene--spirit .rule { margin-inline: auto; }
.scene--spirit p { margin-inline: auto; }

.trust-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-item .check-list { margin: 0.85rem 0 1rem; }
.trust-item .check-list li { font-size: 0.82rem; color: inherit; }
.trust-item .kicker { font-size: 0.78rem; margin-bottom: 0.45rem; }

.tx-shot img { transition: transform 0.7s var(--ease); }
.tx-shot:hover img { transform: scale(1.05); }
.tx-shot__blurb {
  margin: 0 0 0.95rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
  max-width: none;
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta-band::before {
  background: url("../img/bg-spa.jpg") center / cover no-repeat;
  filter: saturate(0.3) blur(1.4px);
  width: 108%;
  height: 108%;
  top: -4%;
  left: -4%;
  right: auto;
  bottom: auto;
}
.cta-band::after {
  background: linear-gradient(180deg, rgba(0, 44, 36, 0.88), rgba(10, 16, 14, 0.92));
}
.cta-band__inner { position: relative; z-index: 1; }

.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--gap);
  align-items: end;
}
.section-head--split h2 { margin-bottom: 0; }
.section-head--split .kicker { margin-bottom: 0.4rem; }

/* thin brass rule used as a structural marker */
.rule {
  display: block;
  width: 2.75rem;
  height: 1px;
  background: var(--brass);
  margin-bottom: 1.4rem;
}

.kicker {
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  margin-bottom: 0.9rem;
  display: block;
  font-weight: 500;
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 1rem 1.6rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--ivory);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { background: var(--slate); border-color: var(--slate); color: var(--ivory); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: transparent; border-color: var(--ink); color: var(--ink); }

.btn--light { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn--light:hover { background: var(--nude); border-color: var(--nude); color: var(--ink); }

.btn--outline-light { background: transparent; color: var(--ivory); border-color: var(--line-invert); }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.08); color: var(--ivory); border-color: rgba(255, 255, 255, 0.5); }

.btn--sm { padding: 0.7rem 1.1rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn svg { width: 1em; height: 1em; flex: none; }

/* text link with a rule underneath rather than an arrow */
.link-rule {
  display: inline-block;
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--brass);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.link-rule:hover { color: var(--ink-body); border-color: var(--ink); }
.section--dark .link-rule { color: var(--ivory); border-color: var(--brass-light); }

/* ---------------------------------------------------------------- header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  min-height: 4.75rem;
}

.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand__logo {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  object-fit: cover;
  background: #0d4a3e;
  flex: none;
  box-shadow: 0 10px 22px -12px rgba(0, 50, 40, 0.4);
}
body.is-home .header .brand__logo {
  width: 5rem;
  height: 5rem;
  box-shadow:
    0 0 0 4px rgba(245, 239, 230, 0.95),
    0 14px 32px -12px rgba(0, 50, 40, 0.55);
}
body.is-home .header__inner { min-height: 5.65rem; }
.brand__wordmark,
header img.brand__wordmark,
body.is-home .header .brand__wordmark {
  display: block;
  height: 2.05rem;
  width: auto;
  max-width: min(14.75rem, 32vw);
  object-fit: contain;
  object-position: left center;
  flex: none;
  background: none;
}
body.is-home .header .brand__wordmark {
  height: 2.55rem;
  max-width: min(17.5rem, 34vw);
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.brand__sub {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  border-left: 1px solid var(--line);
  padding-left: 0.6rem;
  line-height: 1.2;
  max-width: 9.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.28rem;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}
.nav__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-body);
  text-decoration: none;
  padding: 0.5rem 0.68rem;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.nav__link:hover { color: var(--ink); background: var(--shell); }
.nav__link[aria-current="page"] { color: var(--ivory); background: var(--ink); }

.header__actions { display: flex; align-items: center; gap: 0.5rem; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem; height: 2.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--ivory);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.icon-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.icon-btn svg { width: 1.05rem; height: 1.05rem; }

.burger {
  display: none;
  width: 2.55rem; height: 2.55rem;
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 1.05rem; height: 1px;
  background: var(--ink);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.05rem; height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}
.burger span::before { top: -5px; }
.burger span::after { top: 5px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 4.75rem 0 0;
  background: #ffffff;
  z-index: 99;
  padding: 1.5rem var(--pad-x) 8.5rem;
  overflow-y: auto;
  display: none;
}
.drawer.is-open { display: flex; flex-direction: column; }
.drawer__kicker {
  font-family: var(--serif);
  font-size: 0.82rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  margin: 0 0 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line-soft);
}
.drawer__nav { display: grid; }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.drawer__link:hover { color: var(--ink-body); }
.drawer__link[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}
.drawer__link[aria-current="page"]::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--ink);
}
.drawer__actions {
  margin-top: 1.65rem;
  padding: 1.25rem;
  background: var(--shell);
  border-radius: 1.25rem;
}
.drawer__book {
  display: inline-flex;
  width: 100%;
  margin: 0;
  background: var(--ink);
  color: var(--ivory) !important;
  border-color: var(--ink);
  border-radius: 999px;
  padding: 0.55rem 0.55rem 0.55rem 1.35rem;
  justify-content: space-between;
  gap: 1rem;
}
.drawer__book:hover {
  background: var(--slate);
  color: var(--ivory) !important;
}
.drawer__book .btn--appoint__go {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--ink);
}
.drawer__book .btn--appoint__go svg { width: 1rem; height: 1rem; }
.drawer__reach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.drawer__reach .btn {
  display: inline-flex;
  margin: 0;
  width: 100%;
  color: var(--ink);
  background: var(--paper);
}
.drawer__place {
  margin: 0.9rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

/* ------------------------------------------------------------------ hero */
.hero { position: relative; overflow: hidden; background: var(--paper); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.5rem, 0.5rem + 3vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 1rem + 5vw, 5.5rem) clamp(2.5rem, 1rem + 4vw, 4.5rem);
}
.hero__title { margin-bottom: 1.4rem; }
.hero__support {
  font-family: var(--serif);
  font-size: var(--step-1);
  color: var(--ink-mute);
  margin-bottom: 1.2rem;
}
.hero__desc { font-size: var(--step-1); line-height: 1.55; max-width: 44ch; margin-bottom: 2rem; }
.hero .btn-row { margin-bottom: 0; }
.hero .btn.btn--appoint {
  background: var(--ink);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 1rem 1.6rem;
  gap: 0.55rem;
}
.hero .btn.btn--appoint .btn--appoint__go { display: none; }
.hero .btn.btn--appoint:hover {
  background: var(--slate);
  color: var(--ivory);
}

.hero__media { position: relative; width: 80%; justify-self: end; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero__compare,
.compare { --pos: 50%; position: relative; }
.hero__compare-frame,
.compare-frame {
  position: relative;
  display: grid;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.hero__compare-frame > img,
.hero__compare-after,
.compare-frame > img,
.compare-after { grid-area: 1 / 1; }
.hero__compare-frame img,
.compare-frame img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.hero__compare-after,
.compare-after {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  min-width: 0;
  clip-path: inset(0 0 0 var(--pos));
}
.hero__compare-after img,
.compare-after img {
  height: 100%;
}
.hero__compare-line,
.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 2;
  width: 2px;
  margin-left: -1px;
  background: var(--brass-light);
  box-shadow: 0 0 0 1px rgba(26, 26, 26, 0.18);
  pointer-events: none;
}
.hero__compare-handle,
.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--brass);
  box-shadow: 0 10px 28px -14px rgba(26, 26, 26, 0.7);
  display: grid;
  place-items: center;
}
.hero__compare-handle svg,
.compare-handle svg { width: 1.05rem; height: 1.05rem; }
.hero__compare-tag,
.compare-tag {
  position: absolute;
  top: 0.85rem;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4efe6;
  background: rgba(26, 26, 26, 0.52);
  padding: 0.35rem 0.6rem;
  pointer-events: none;
}
.hero__compare-tag--before,
.compare-tag--before { left: 0.85rem; }
.hero__compare-tag--after,
.compare-tag--after { right: 0.85rem; }
.hero__badge {
  position: absolute;
  left: clamp(-2.5rem, -3vw, -1rem);
  bottom: clamp(1.5rem, 3vw, 3rem);
  z-index: 3;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 2px solid var(--brass);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--shadow);
  max-width: 15.5rem;
}
.hero__badge strong { display: block; font-family: var(--serif); font-size: var(--step-1); margin-bottom: 0.2rem; }
.hero__badge span { font-size: 0.78rem; color: var(--ink-mute); line-height: 1.45; display: block; }

/* contact card beneath hero — same cream pill language as treatments */
.quickbar {
  background: var(--paper);
  padding-block: 1.5rem 2.75rem;
}
.quickbar__card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--shell);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.quickbar a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem clamp(0.85rem, 1.6vw, 1.75rem);
  text-decoration: none;
  color: var(--ink);
  border-left: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}
.quickbar a:first-child { border-left: 0; }
.quickbar a:hover { background: var(--paper); }
.quickbar__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink-mute);
  border: 1px solid var(--line-soft);
  box-shadow: 0 10px 28px -16px rgba(26, 26, 26, 0.55);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.quickbar a:hover .quickbar__icon {
  color: var(--ink);
  border-color: var(--line);
}
.quickbar svg { width: 1.15rem; height: 1.15rem; }
.quickbar b { font-size: var(--step--1); font-weight: 600; display: block; line-height: 1.3; }
.quickbar small { font-size: 0.75rem; color: var(--ink-mute); display: block; }

/* ------------------------------------------------------------- trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 0.6rem + 1.2vw, 1.5rem);
}
.trust-item {
  background: var(--shell);
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2.15rem);
  border-radius: 1.25rem;
  box-shadow: 0 14px 32px -20px rgba(26, 26, 26, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -22px rgba(26, 26, 26, 0.32);
}
.trust-item__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  background: var(--paper);
  color: var(--ink-mute);
  border: 1px solid var(--line-soft);
  box-shadow: 0 10px 28px -16px rgba(26, 26, 26, 0.55);
}
.trust-item svg { width: 1.15rem; height: 1.15rem; }
.trust-item h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.trust-item p { font-size: 0.92rem; color: var(--ink-mute); }

/* --------------------------------------------------------------- split */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 1rem + 3vw, 4.5rem);
  align-items: center;
}
.split--media-first .split__media { order: -1; }
.split__media img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; border-radius: var(--radius-lg); }
.split__media--wide img { aspect-ratio: 4 / 3; }

.salon-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.35rem;
}
.salon-lockup__logo,
.pagehead__logo {
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  background: #004438;
}
.salon-lockup__text .rule { margin-bottom: 0.45rem; }
.salon-lockup h2 { margin: 0; }

.salon-menu { background: var(--shell); }
.salon-menu__head {
  margin-bottom: clamp(2rem, 1.2rem + 2.4vw, 3.5rem);
  max-width: 38rem;
}
.salon-menu__head h2 { margin-bottom: 0.7rem; }
.salon-menu__head p {
  color: var(--ink-body);
  font-size: var(--step-1);
  line-height: 1.5;
  margin: 0;
}
.salon-menu .tx-rail { margin-top: 0.25rem; }
.salon-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.salon-menu__item {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.85rem 1.1rem;
  margin: 0;
  padding: clamp(1.45rem, 1.1rem + 1vw, 2rem);
  background: var(--paper);
  border-radius: 1.35rem;
  box-shadow: 0 16px 36px -24px rgba(26, 26, 26, 0.38);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.salon-menu__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -22px rgba(26, 26, 26, 0.32);
}
.salon-menu__num {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.2;
  padding-top: 0.12rem;
}
.salon-menu__copy h3 {
  font-size: var(--step-2);
  margin: 0 0 0.45rem;
}
.salon-menu__copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-body);
  max-width: 46ch;
}

.pagehead__lockup {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.pagehead__logo {
  width: 5.5rem;
  height: 5.5rem;
}
.pagehead__lockup h1 { margin-bottom: 0.5rem; }
.pagehead__lockup p { margin: 0; }

.check-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 0.7rem; height: 1px;
  background: var(--brass);
}

/* ----------------------------------------------- treatments showcase */
.tx-showcase { text-align: center; }
.tx-showcase__badge {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.42rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}
.tx-showcase__title {
  margin: 0 auto 2.6rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.2rem, 0.7rem + 1.8vw, 1.85rem);
  color: var(--slate);
  letter-spacing: -0.03em;
  line-height: 1.25;
  white-space: nowrap;
}
.tx-showcase__stage {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
  gap: clamp(0.6rem, 0.3rem + 1.2vw, 1.35rem);
  align-items: center;
  text-align: left;
}
.tx-showcase__viewport {
  overflow: hidden;
  min-width: 0;
}
.tx-showcase__track {
  display: flex;
  will-change: transform;
}
.js .tx-showcase__track {
  transition: transform 0.75s var(--ease);
}
.tx-showcase__slide {
  flex: 0 0 100%;
  min-width: 0;
}
.tx-showcase__pill {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.98rem, 1.32rem + 2.86vw, 4.62rem);
  padding: 1.52rem 5.61rem 1.52rem 1.52rem;
  background: var(--shell);
  border-radius: 999px;
  box-shadow: 0 22px 48px -32px rgba(26, 26, 26, 0.4);
}
.tx-showcase__oval {
  width: min(31.7vw, 25.75rem);
  min-width: 19.15rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.tx-showcase__oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
  border-radius: 0;
}
.tx-showcase__copy { padding-right: 0.75rem; max-width: 34rem; }
.tx-showcase__copy h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.55rem, 0.95rem + 1.6vw, 2.35rem);
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 0.7rem;
}
.tx-showcase__copy p {
  font-size: clamp(0.92rem, 0.86rem + 0.2vw, 1.02rem);
  line-height: 1.72;
  color: var(--ink-body);
  max-width: 36ch;
  margin-bottom: 1.15rem;
}
.tx-showcase__nav {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: var(--paper);
  color: var(--ink-mute);
  box-shadow: 0 10px 28px -16px rgba(26, 26, 26, 0.55);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.tx-showcase__nav svg { width: 1.05rem; height: 1.05rem; }
.tx-showcase__nav:hover { color: var(--ink); border-color: var(--line); }
.tx-showcase__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.6rem;
}
.tx-showcase__dot {
  width: 0.48rem;
  height: 0.48rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cccccc;
  cursor: pointer;
}
.tx-showcase__dot[aria-current="true"] { background: var(--slate); }

html:not(.js) .tx-showcase__nav,
html:not(.js) .tx-showcase__dots,
html:not(.js) .tx-showcase__slide[aria-hidden="true"] { display: none; }
html:not(.js) .tx-showcase__viewport { overflow: visible; }
html:not(.js) .tx-showcase__track { display: grid; gap: 2.5rem; }

/* -------------------------------------------------------- treatment cards */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: var(--gap);
}
.cat-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.cat-card:hover { border-color: var(--nude); transform: translateY(-2px); }
.cat-card__media { overflow: hidden; }
.cat-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cat-card:hover .cat-card__media img { transform: scale(1.04); }
.cat-card__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.cat-card h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.cat-card p { font-size: 0.9rem; color: var(--ink-mute); margin-bottom: 1.1rem; }
.cat-card__count {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--brass-deep);
  border-top: 1px solid var(--line-soft);
  padding-top: 0.85rem;
}
.cat-card--lg { grid-column: span 2; }
.cat-card--lg .cat-card__media img { aspect-ratio: 16 / 9; }

/* index list used on category pages */
.tx-list { border-top: 1px solid var(--line); }
.tx-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: var(--gap);
  align-items: center;
  padding: clamp(1.2rem, 0.9rem + 0.8vw, 1.9rem) 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}
.tx-row h3 { font-size: var(--step-2); margin-bottom: 0.25rem; }
.tx-row__meta { font-size: 0.78rem; color: var(--brass-deep); }
.tx-row p { font-size: 0.95rem; color: var(--ink-mute); margin: 0; }

/* ---------------------------------------------- treatments catalogue */
.tx-page { padding-top: 0.5rem; }
.tx-page .wrap {
  max-width: 1440px;
  padding-inline: clamp(1.5rem, 4vw, 3.25rem);
}
.tx-page .crumbs { margin-bottom: 1.35rem; }
.tx-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  height: auto;
  aspect-ratio: 2.75 / 1;
  border-radius: 2.75rem;
  overflow: hidden;
  background: #1c1714;
  color: #d4c4a8;
}
.tx-banner__media {
  position: absolute;
  inset: 0;
  min-width: 0;
  min-height: 0;
}
.tx-banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(40, 36, 32, 0.22) 0%, transparent 46%);
  pointer-events: none;
}
.tx-banner__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: right center;
  aspect-ratio: auto;
  background: #2a2420;
  transform: none;
}
.tx-banner__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  max-width: 54%;
  padding: clamp(1.6rem, 1.2rem + 2vw, 3.2rem) clamp(1.9rem, 1.3rem + 2.6vw, 3.8rem);
  position: relative;
  z-index: 2;
}
.tx-banner__line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.38rem, 1.14rem + 1vw, 1.86rem);
  color: #d4c4a8;
  margin: 0;
  line-height: 1.2;
}
.tx-banner h1 {
  font-size: clamp(2.22rem, 1.5rem + 2.45vw, 3.54rem);
  color: #d4c4a8;
  font-weight: 500;
  line-height: 1.08;
  margin: 0.42rem 0 0.54rem;
  max-width: 12ch;
}
.tx-banner h1 em {
  font-style: italic;
  font-weight: 500;
}
.tx-banner .btn.btn--appoint {
  align-self: flex-start;
  margin-top: 1.35rem;
  background: transparent;
  color: #f4efe6;
  border-color: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.4rem 0.4rem 0.4rem 1.5rem;
  gap: 1.1rem;
}
.tx-banner .btn.btn--appoint:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.tx-banner .btn--appoint__go {
  background: #fff;
  color: var(--ink);
}
.tx-banner .btn.btn--appoint:hover .btn--appoint__go {
  background: #fff;
  color: var(--ink);
}

.tx-banner__media picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.salon-hero .tx-banner__media::after {
  background: linear-gradient(90deg, rgba(28, 23, 20, 0.48) 0%, rgba(28, 23, 20, 0.16) 42%, transparent 58%);
}
.salon-hero__logo {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  margin-bottom: 0.85rem;
  background: #004438;
}
.salon-hero h1 { max-width: 10ch; }

.tx-catalog { padding-top: clamp(3rem, 2rem + 3vw, 5rem); }
.tx-catalog__head { text-align: center; margin-bottom: 2.5rem; }
.tx-catalog__head h2 {
  font-size: var(--step-3);
  margin-bottom: 0.7rem;
}
.tx-catalog__head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: #c4ae86;
  font-size: 1.08em;
}
.tx-catalog__head p {
  color: var(--ink-mute);
  margin: 0 auto 1.5rem;
  max-width: 42ch;
  font-size: var(--step--1);
}
.tx-filter {
  display: inline-flex;
  margin-inline: auto;
}
.tx-filter select {
  font: inherit;
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.7rem 2.4rem 0.7rem 1.25rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%231a1a1a' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.7rem;
  cursor: pointer;
}
.tx-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.08rem;
  width: 100%;
}
.tx-rail {
  position: relative;
  min-width: 0;
}
.tx-cards--rail {
  display: flex;
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
}
.tx-cards--rail::-webkit-scrollbar { display: none; }
.tx-cards--rail .tx-shot {
  flex: 0 0 calc((100% - 2.16rem) / 3);
  scroll-snap-align: start;
  min-width: 0;
}
.tx-cards--rail .tx-shot[hidden] { display: none; }
.tx-rail__nav {
  position: absolute;
  top: 42%;
  z-index: 2;
  left: 0.4rem;
  transform: translateY(-50%);
}
.tx-rail__nav--next {
  left: auto;
  right: 0.4rem;
}
html:not(.js) .tx-rail__nav { display: none; }
.tx-shot {
  position: relative;
  border-radius: 1.12rem;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--shell);
}
.tx-shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.tx-shot__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3.6rem 1rem 1rem;
  background: linear-gradient(to top, rgba(18, 16, 14, 0.82) 12%, rgba(18, 16, 14, 0));
  color: #fff;
}
.tx-shot h3 {
  font-family: var(--serif);
  font-size: clamp(0.92rem, 0.78rem + 0.48vw, 1.22rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.45rem;
  line-height: 1.22;
}
.tx-shot__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.95rem;
}
.tx-shot__tags span {
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.tx-shot__go {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}

/* --------------------------------------------------------------- feature */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 1rem + 1.5vw, 2.75rem);
}
.feature h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.feature p { font-size: 0.92rem; color: var(--ink-mute); }
.feature--ruled { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.section--dark .feature--ruled { border-color: var(--line-invert); }
.section--dark .feature p { color: rgba(255, 255, 255, 0.72); }

/* pill list */
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 1.75rem 0; }
.pills li {
  font-size: 0.82rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.45rem 0.95rem;
  margin: 0;
  color: var(--ink-body);
  background: var(--paper);
}
.section--dark .pills li { border-color: var(--line-invert); background: transparent; color: rgba(255, 255, 255, 0.85); }

/* ---------------------------------------------------------------- bridal */
.bridal { background: var(--shell); }
.bridal .rule { background: var(--ink); }

.disclaimer {
  margin-top: 2rem;
  border-left: 2px solid var(--brass);
  padding: 0.9rem 0 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: var(--ink-mute);
  max-width: 60ch;
}
.section--dark .disclaimer { color: rgba(255, 255, 255, 0.7); border-color: var(--brass-light); }

/* ----------------------------------------------------------------- about */
.about-intro {
  background: var(--paper);
  padding-block: clamp(1.5rem, 1rem + 2vw, 2.75rem) 0;
  overflow: hidden;
}
.about-intro .crumbs { margin-bottom: 2.25rem; }
.about-intro__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-intro__copy {
  text-align: center;
  max-width: none;
  margin-inline: auto;
}
.about-intro__copy h1 {
  position: relative;
  display: inline-block;
  max-width: none;
  margin: 0 auto 1.6rem;
  font-size: clamp(0.95rem, 0.28rem + 3.15vw, 2.55rem);
  line-height: 1.15;
  white-space: nowrap;
}
.about-spark svg { width: 100%; height: 100%; }
.about-intro__copy h1 .about-spark {
  position: absolute;
  top: -0.15em;
  right: -0.7em;
  width: 0.7em;
  height: 0.7em;
  display: inline-flex;
  margin: 0;
  color: var(--ink);
}
.about-intro__copy p {
  color: var(--ink-body);
  max-width: 62ch;
  margin: 0 auto 1.15rem;
  line-height: 1.7;
}
.about-intro__visual {
  position: relative;
  width: 100%;
  margin-top: clamp(1.75rem, 0.5rem + 3vw, 3.25rem);
  padding: 2rem 0 3.5rem;
}
.about-orbs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
.about-orb {
  position: relative;
  flex: 0 0 auto;
  border-radius: 50%;
  box-sizing: border-box;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
}
.about-orb--ink {
  display: grid;
  place-items: center;
  width: min(21.5rem, 48vw);
  height: min(21.5rem, 48vw);
  padding: 2.4rem;
  background: var(--ink);
  color: var(--ivory);
  z-index: 1;
  text-align: center;
}
.about-orb--ink p {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 0.9rem + 1.8vw, 2.65rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ivory);
  margin: 0;
}
.about-orb--ink p span { display: block; }
.about-orb--cream {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(18.5rem, 42vw);
  height: min(18.5rem, 42vw);
  margin-left: clamp(-4.25rem, -12vw, -2.5rem);
  padding: 2.15rem 1.85rem;
  background: var(--shell);
  color: var(--ink);
  z-index: 2;
  text-align: center;
}
.about-orb--cream h2 {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 0.85rem + 0.7vw, 1.45rem);
  margin: 0 0 0.55rem;
  line-height: 1.15;
}
.about-orb--cream p {
  font-size: clamp(0.68rem, 0.58rem + 0.28vw, 0.82rem);
  line-height: 1.45;
  color: var(--ink-body);
  margin: 0;
  max-width: 22ch;
}
.about-spark {
  display: inline-flex;
  width: 0.72em;
  height: 0.72em;
  color: var(--ink);
}
.about-spark svg { width: 100%; height: 100%; display: block; }
.about-spark--ink-top,
.about-spark--foot {
  position: absolute;
}
.about-spark--ink-top {
  top: 22%;
  right: 22%;
  width: 0.85rem;
  height: 0.85rem;
  color: var(--ivory);
}
.about-spark--foot {
  right: 18%;
  bottom: 16%;
  width: 0.8rem;
  height: 0.8rem;
  color: var(--paper);
}

.about-founders__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}
.about-founders__head h2 { margin-bottom: 0.85rem; }
.about-founders__head p { color: var(--ink-mute); margin: 0; }

.about-team__media {
  max-width: 72rem;
  margin-inline: auto;
}
.about-team__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1.25rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 22rem);
  justify-content: center;
  gap: clamp(1.25rem, 0.6rem + 2vw, 2.5rem);
  align-items: end;
  padding-top: 8rem;
}
.founder {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 2.75rem;
  padding: 0 1.25rem 1.85rem;
  text-align: center;
}
.founder__oval {
  width: min(78%, 15rem);
  aspect-ratio: 3 / 4;
  margin: -7.75rem auto 1.15rem;
  border-radius: 999px;
  overflow: hidden;
  background: var(--nude);
}
.founder__oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  aspect-ratio: auto;
}
.founder h3 {
  font-size: var(--step-1);
  margin: 0 0 0.2rem;
  font-weight: 500;
}
.founder__role {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-mute);
}

.about-stats { background: var(--paper); }
.about-stats__grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}
.about-stats__copy {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  padding-right: clamp(0.5rem, 2vw, 2.5rem);
}
.about-stats__copy h2 {
  font-size: var(--step-3);
  margin-bottom: 0.9rem;
  max-width: 14ch;
}
.about-stats__copy p {
  color: var(--ink-mute);
  max-width: 36ch;
  margin-bottom: 1.6rem;
}
.about-stat {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 1.35rem;
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-height: 6.5rem;
}
.about-stat strong {
  font-family: var(--serif);
  font-size: var(--step-2);
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
}
.about-stat span {
  font-size: 0.82rem;
  color: var(--ink-mute);
  line-height: 1.4;
}
.about-stat:not(.about-stat--lg) {
  position: relative;
  padding-right: 3.25rem;
}
.about-stat:not(.about-stat--lg)::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--nude);
}
.about-stat--lg {
  min-height: 12.5rem;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
}
.about-stat--lg strong { font-size: var(--step-4); }
.about-stat--chart { justify-content: flex-end; align-items: stretch; }
.about-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.7rem;
  height: 7.5rem;
  padding: 0 1rem 0.4rem;
}
.about-bars i {
  display: block;
  width: 1.35rem;
  border-radius: 0.2rem 0.2rem 0 0;
  background: var(--nude);
}
.about-bars i:nth-child(1) { height: 42%; }
.about-bars i:nth-child(2) { height: 68%; }
.about-bars i:nth-child(3) { height: 52%; }
.about-bars i:nth-child(4) { height: 86%; }

/* -------------------------------------------------------------- accordion */
.acc { border-top: 1px solid var(--line); margin-top: 1.75rem; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  background: none;
  border: 0;
  font: inherit;
  font-family: var(--serif);
  font-size: var(--step-1);
  color: var(--ink);
  padding: 1.35rem 0;
  cursor: pointer;
}
.acc__icon { flex: none; width: 1rem; height: 1rem; margin-top: 0.35rem; position: relative; }
.acc__icon::before,
.acc__icon::after {
  content: "";
  position: absolute;
  background: var(--brass);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.acc__icon::before { left: 0; top: 50%; width: 100%; height: 1px; }
.acc__icon::after { top: 0; left: 50%; height: 100%; width: 1px; }
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: scaleY(0); }
.acc__panel { display: none; padding-bottom: 1.5rem; }
.acc__panel[data-open] { display: block; }
.acc__panel p { font-size: 0.95rem; color: var(--ink-mute); max-width: 62ch; }

/* ------------------------------------------------------------------ form */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; color: var(--ink); font-weight: 500; }
.field .hint { font-size: 0.75rem; color: var(--ink-mute); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  width: 100%;
  transition: border-color 0.2s var(--ease);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brass-deep); outline-offset: 1px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%236b736e' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 0.7rem; padding-right: 2.4rem; }
.field .error { font-size: 0.75rem; color: #9b2c2c; display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #9b2c2c; }
.field.is-invalid .error { display: block; }

.form-note { font-size: 0.8rem; color: var(--ink-mute); margin-top: 1rem; }

.form-success {
  display: none;
  border: 1px solid var(--brass);
  border-left-width: 2px;
  background: var(--paper);
  padding: 1.5rem;
  border-radius: var(--radius);
}
.form-success[data-open] { display: block; }
.form-success h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.form-success p { font-size: 0.92rem; color: var(--ink-mute); }

.form-grid--stack { grid-template-columns: minmax(0, 1fr); }

/* ---------------------------------------------------------- book promo */
.book-promo {
  overflow: hidden;
}
.book-promo.section--scene {
  background-color: #14352e;
}
.book-promo.section--scene::before {
  filter: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.book-promo.section--scene::after {
  background:
    linear-gradient(90deg,
      rgba(10, 36, 30, 0.28) 0%,
      rgba(10, 36, 30, 0.38) 42%,
      rgba(8, 24, 20, 0.55) 100%);
}
.book-promo__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: clamp(1.75rem, 1rem + 3.2vw, 4.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.book-promo__visual {
  position: relative;
  padding: 2.25rem 16% 2.25rem 0;
  overflow: hidden;
}
.book-promo__wide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.85rem;
}
.book-promo__inset {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(48%, 21rem);
  z-index: 1;
  transform: translateY(-50%);
}
.book-promo__inset img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0.85rem;
  box-shadow: 0 22px 48px -18px rgba(26, 26, 26, 0.45);
}
.book-promo__copy { padding-block: 0.5rem; position: relative; z-index: 1; }
.book-promo.section--scene .book-promo__copy h2 { color: var(--ivory); }
.book-promo.section--scene .book-promo__hours { color: rgba(255, 255, 255, 0.78); }
.book-promo.section--scene .book-promo__hours b { color: var(--ivory); }
.book-promo.section--scene .book-promo__tag { color: rgba(255, 255, 255, 0.72); }
.book-promo.section--scene .btn.btn--appoint {
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.75);
}
.book-promo.section--scene .btn.btn--appoint:hover {
  color: var(--ivory);
  border-color: var(--ivory);
}
.book-promo.section--scene .btn--appoint__go {
  background: var(--ivory);
  color: var(--ink);
}
.book-promo.section--scene .btn.btn--appoint:hover .btn--appoint__go {
  background: var(--ivory);
  color: var(--ink);
}
.book-promo__copy h2 {
  font-size: clamp(2.15rem, 1.35rem + 2.6vw, 3.45rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  max-width: none;
  margin-bottom: 1.75rem;
  text-wrap: unset;
}
.book-promo__copy h2 span { display: block; }
.book-promo__hours {
  display: grid;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--ink-body);
  margin-bottom: 1rem;
}
.book-promo__hours b { color: var(--ink); font-weight: 600; }
.book-promo__tag {
  font-size: 1.02rem;
  color: var(--ink-mute);
  margin-bottom: 2.1rem;
  max-width: 36ch;
}
.btn.btn--appoint {
  gap: 1.15rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.45rem 0.45rem 1.65rem;
  font-size: 0.98rem;
  font-weight: 500;
}
.btn.btn--appoint:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--appoint__go {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  display: grid;
  place-items: center;
}
.btn--appoint__go svg { width: 1.15rem; height: 1.15rem; }
.btn.btn--appoint:hover .btn--appoint__go { background: var(--ink); color: var(--ivory); }

/* ---------------------------------------------------------- book modal */
.book-modal {
  padding: 0;
  border: 0;
  border-radius: 1.35rem;
  width: calc(100% - 2rem);
  max-width: 54rem;
  max-height: calc(100vh - 2rem);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 28px 64px -28px rgba(26, 26, 26, 0.5);
}
.book-modal::backdrop { background: rgba(26, 26, 26, 0.48); }
.book-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 32rem;
}
.book-modal__media {
  background: var(--shell);
  overflow: hidden;
  border-radius: 1.35rem 0 0 1.35rem;
}
.book-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
  min-height: 100%;
}
.book-modal__body {
  position: relative;
  padding: clamp(1.75rem, 1.2rem + 2vw, 2.6rem);
  overflow: auto;
}
.book-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}
.book-modal__close svg { width: 1.05rem; height: 1.05rem; }
.book-modal__body h2 { font-size: var(--step-2); margin-bottom: 0.45rem; }
.book-modal__body > p {
  font-size: 0.95rem;
  color: var(--ink-mute);
  margin-bottom: 1.4rem;
}
.book-modal .field label { color: var(--ink); }
.book-modal .field input {
  background: var(--shell);
  border-color: var(--line);
  border-radius: 0.7rem;
}
.book-modal .btn { border-radius: 999px; margin-top: 0.35rem; }

/* --------------------------------------------------------------- page top */
.pagehead { background: var(--shell); border-bottom: 1px solid var(--line); }
.pagehead--paper { background: var(--ivory); }
.pagehead__inner { padding-block: clamp(2.25rem, 1.5rem + 3vw, 4.5rem); }
.pagehead h1 { max-width: 28ch; margin-bottom: 0.8rem; }
.pagehead p { font-size: var(--step-1); color: var(--ink-mute); max-width: 55ch; }

.crumbs { font-size: 0.78rem; color: var(--ink-mute); margin-bottom: 1.5rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; padding: 0; margin: 0; }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: 0.45rem; color: var(--line); }
.crumbs a { color: var(--ink-mute); text-decoration: none; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }

/* ------------------------------------------------------- treatment detail */
.tx-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(1.5rem, 1rem + 2.5vw, 3.75rem); align-items: center; }
.tx-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }
.tx-facts { display: flex; flex-wrap: wrap; gap: 0 2.5rem; border-top: 1px solid var(--line); margin-top: 1.75rem; padding-top: 1.25rem; }
.tx-fact { padding-right: 1rem; }
.tx-fact dt { font-size: 0.72rem; color: var(--ink-mute); margin-bottom: 0.25rem; }
.tx-fact dd { margin: 0; font-family: var(--serif); font-size: var(--step-0); color: var(--ink); }

.tx-body { display: grid; grid-template-columns: minmax(0, 1fr) 17rem; gap: clamp(2rem, 1rem + 3vw, 4.5rem); align-items: start; }
.tx-aside { position: sticky; top: 7rem; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; background: var(--paper); }
.tx-aside h3 { font-size: var(--step-1); margin-bottom: 0.6rem; }
.tx-aside p { font-size: 0.87rem; color: var(--ink-mute); margin-bottom: 1.2rem; }
.tx-aside .btn { width: 100%; margin-bottom: 0.5rem; }
.tx-aside__links { list-style: none; padding: 0; margin: 1.35rem 0 0; border-top: 1px solid var(--line-soft); padding-top: 1.1rem; }
.tx-aside__links li { margin-bottom: 0.55rem; }
.tx-aside__links a { font-size: 0.87rem; color: var(--ink-body); text-decoration: none; border-bottom: 1px solid transparent; }
.tx-aside__links a:hover { color: var(--ink); border-bottom-color: var(--brass); }

.prose h2 { font-size: var(--step-3); margin-top: 2.75rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; }
.prose > *:first-child { margin-top: 0; }

.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr)); gap: 1.5rem 2rem; list-style: none; padding: 0; margin: 0; }
.benefit-grid li { margin: 0; }
.benefit-grid svg { width: 1.15rem; height: 1.15rem; color: var(--brass); margin-bottom: 0.6rem; }
.benefit-grid strong { display: block; font-family: var(--serif); font-weight: 400; font-size: var(--step-0); color: var(--ink); margin-bottom: 0.25rem; }
.benefit-grid span { font-size: 0.88rem; color: var(--ink-mute); }

.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  margin: 0;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: var(--step-1);
  color: var(--brass);
  line-height: 1.35;
  font-variant-numeric: lining-nums tabular-nums;
}
.steps li > div { padding-top: 0.1rem; }
.steps h3 { font-size: var(--step-0); margin-bottom: 0.25rem; }
.steps p { font-size: 0.9rem; color: var(--ink-mute); margin: 0; }

/* --------------------------------------------------------------- contact */
.contact-page {
  background: var(--ivory);
  padding-block: clamp(1.5rem, 1rem + 2vw, 2.5rem) clamp(3.75rem, 2.5rem + 5vw, 7.5rem);
}
.contact-page .crumbs { margin-bottom: 2rem; }
.contact-page__intro { max-width: 40rem; margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4.25rem); }
.contact-page__intro h1 { margin-bottom: 0.85rem; }
.contact-page__intro p {
  font-size: var(--step-1);
  color: var(--ink-body);
  margin: 0;
  max-width: 52ch;
  line-height: 1.6;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 1.25rem + 3vw, 4.5rem);
  align-items: start;
}
.contact-reach h2,
.contact-form h2 {
  font-size: var(--step-3);
  margin: 0 0 1.15rem;
}
.contact-reach h3 {
  font-size: var(--step-1);
  margin: 1.85rem 0 0.2rem;
}
.contact-reach .btn-row { margin-top: 1.6rem; }
.contact-lines {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.contact-lines > div {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-lines dt {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  padding-top: 0.2rem;
}
.contact-lines dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
}
.contact-lines a {
  color: var(--ink);
  text-decoration: none;
}
.contact-lines a:hover { text-decoration: underline; }
.contact-reach .hours { max-width: 26rem; }
.contact-form {
  background: var(--shell);
  border-radius: 1.35rem;
  padding: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
}
.contact-form > p {
  color: var(--ink-body);
  margin: 0 0 1.5rem;
  max-width: 42ch;
}
.contact-form .field input,
.contact-form .field textarea {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-form .field input:focus,
.contact-form .field textarea:focus {
  border-color: var(--ink);
}
.contact-form .btn { width: auto; }

.contact-map {
  background: var(--ivory);
}
.contact-map .map-panel {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--shell);
}
.contact-map .map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  aspect-ratio: 4 / 3;
  border: 0;
  display: block;
}
.map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ivory);
}
.map-panel iframe { width: 100%; height: min(28rem, 62vw); border: 0; display: block; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(2rem, 1rem + 3vw, 4.5rem); align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: grid; grid-template-columns: 1.5rem 1fr; gap: 0.9rem; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); margin: 0; }
.info-list svg { width: 1.1rem; height: 1.1rem; color: var(--brass); margin-top: 0.25rem; }
.info-list b { display: block; font-size: 0.75rem; color: var(--ink-mute); font-weight: 500; margin-bottom: 0.15rem; }
.info-list a, .info-list span { font-size: 0.98rem; color: var(--ink); text-decoration: none; }
.info-list a:hover { color: var(--brass-deep); text-decoration: underline; }

.hours { list-style: none; padding: 0; margin: 0; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line-soft); margin: 0; }
.hours span { color: var(--ink); font-weight: 500; }
.map-fallback { padding: clamp(1.5rem, 1rem + 2vw, 3rem); display: grid; gap: 1rem; justify-items: start; background: var(--shell); }
.map-fallback img { width: 100%; border-radius: var(--radius); }

/* ------------------------------------------------------------------- cta */
.cta-band { background: #0b1c18; color: rgba(255, 255, 255, 0.8); }
.cta-band__inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: var(--gap); align-items: center; }
.cta-band h2 { color: var(--ivory); margin-bottom: 0.7rem; }
.cta-band p { color: rgba(255, 255, 255, 0.72); }

/* ---------------------------------------------------------------- footer */
.footer { background: var(--slate); color: rgba(255, 255, 255, 0.7); border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto minmax(16rem, 1.25fr);
  gap: clamp(2rem, 1.2rem + 3vw, 4.5rem);
  padding-block: clamp(3.25rem, 2.2rem + 3.5vw, 5rem);
}
.footer h3 { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; color: var(--ivory); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.15rem; }
.footer p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.55rem; }
.footer a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.footer a:hover { color: var(--ivory); }
.footer__brand .brand__name { color: var(--ivory); font-size: 1.05rem; letter-spacing: 0.08em; }
.footer__brand .brand { margin-bottom: 0.35rem; }
.footer__brand .brand__logo { width: 4.25rem; height: 4.25rem; }
.footer__nav a {
  display: inline-block;
  padding: 0.12rem 0;
  letter-spacing: 0.02em;
}
.footer__hours-title { margin-top: 1.85rem; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.35rem; height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
}
.footer__social a:hover { border-color: var(--ivory); color: var(--ivory); }
.footer__social svg { width: 1rem; height: 1rem; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* ------------------------------------------------------------ mobile bar */
.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -18px rgba(26, 26, 26, 0.5);
  padding-bottom: env(safe-area-inset-bottom);
}
.dock a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.7rem 0.4rem;
  font-size: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  border-left: 1px solid var(--line-soft);
}
.dock a:first-child { border-left: 0; }
.dock a:last-child { background: var(--ink); color: var(--ivory); }
.dock svg { width: 1.15rem; height: 1.15rem; }

/* ---------------------------------------------------------------- motion */
[data-reveal] { opacity: 0; transform: translateY(14px); }
.js [data-reveal].is-in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html:not(.js) [data-reveal] { opacity: 1; transform: none; }

.hero__anim > * { opacity: 0; }
.js .hero__anim > * { animation: rise 0.85s var(--ease) forwards; }
.js .hero__anim > *:nth-child(1) { animation-delay: 0.05s; }
.js .hero__anim > *:nth-child(2) { animation-delay: 0.15s; }
.js .hero__anim > *:nth-child(3) { animation-delay: 0.25s; }
.js .hero__anim > *:nth-child(4) { animation-delay: 0.35s; }
.js .hero__anim > *:nth-child(5) { animation-delay: 0.45s; }
.js .hero__media { animation: fade 1.1s var(--ease) 0.15s both; }
html:not(.js) .hero__anim > * { opacity: 1; }

@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], .hero__anim > * { opacity: 1 !important; transform: none !important; }
  .tx-shot:hover img { transform: none; }
}

@media (max-width: 1280px) {
  .trust-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .tx-body { grid-template-columns: minmax(0, 1fr); }
  .tx-aside { position: static; }
  .hero { overflow: hidden; }
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
    gap: 1.75rem;
    padding-block: 1.15rem 2.5rem;
  }
  .hero__media {
    order: -1;
    width: min(80%, 22.4rem);
    justify-self: center;
  }
  .hero__media img { aspect-ratio: 4 / 5; }
  .hero .compare-frame { border-radius: 2rem; }
  .hero__anim { width: 100%; }
  .hero__title { margin-bottom: 1rem; }
  .hero__support { margin-bottom: 0.75rem; }
  .hero__desc {
    max-width: 42ch;
    margin-inline: auto;
    margin-bottom: 1.75rem;
  }
  .hero .btn-row {
    justify-content: center;
    margin-bottom: 0;
  }
  .hero .btn.btn--appoint {
    background: transparent;
    color: var(--ink);
    border-radius: 999px;
    padding: 0.45rem 0.45rem 0.45rem 1.65rem;
    gap: 1.15rem;
  }
  .hero .btn.btn--appoint .btn--appoint__go { display: grid; }
  .hero .btn.btn--appoint:hover {
    background: transparent;
    color: var(--ink);
  }
  .hero__cta-secondary,
  .hero__badge { display: none; }
  .about-intro__copy h1 {
    white-space: normal;
    max-width: 12.5em;
    font-size: clamp(1.65rem, 1.15rem + 2.1vw, 2.35rem);
    padding-inline: 0.5em;
  }
  .about-intro__visual {
    order: 0;
    margin-top: 1.35rem;
    padding: 1.25rem 0 3rem;
  }
  .about-orbs {
    flex-direction: column;
    gap: 1.85rem;
  }
  .about-orb--ink,
  .about-orb--cream {
    width: min(22.5rem, 86vw);
    height: min(22.5rem, 86vw);
    margin-left: 0;
    box-shadow: 0 16px 36px -20px rgba(26, 26, 26, 0.32);
  }
  .about-orb--ink p { font-size: clamp(1.85rem, 1.2rem + 2.4vw, 2.7rem); }
  .about-orb--cream { padding: 2.6rem 2.2rem; }
  .about-orb--cream h2 { font-size: clamp(1.25rem, 1rem + 1vw, 1.55rem); }
  .about-orb--cream p {
    font-size: clamp(0.8rem, 0.7rem + 0.4vw, 0.95rem);
    line-height: 1.5;
    max-width: 28ch;
  }
  .about-stats__grid { grid-template-columns: 1fr 1fr; }
  .about-stats__copy {
    order: 6;
    grid-column: 1 / -1;
    grid-row: auto;
    text-align: center;
    padding: 1.75rem 0 0;
  }
  .about-stats__copy h2 { max-width: none; margin-inline: auto; }
  .about-stats__copy p { margin-inline: auto; }
  .about-stats__copy .btn { margin-inline: auto; }
  .tx-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    aspect-ratio: 9 / 16;
    height: auto;
    min-height: 0;
    max-height: 86svh;
    border-radius: 2.25rem;
  }
  .tx-banner__copy {
    max-width: none;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(1.6rem, 4.5vw, 2.6rem) clamp(1.2rem, 4vw, 2rem) 1rem;
  }
  .tx-banner .btn.btn--appoint {
    align-self: center;
    margin-top: 1.15rem;
  }
  .tx-banner__media {
    position: absolute;
    inset: 0;
    height: auto;
    min-height: 0;
  }
  .tx-banner__media::after {
    background: linear-gradient(180deg, rgba(28, 23, 20, 0.45) 0%, rgba(28, 23, 20, 0.12) 32%, transparent 52%);
  }
  .tx-banner__media img {
    object-position: center bottom;
  }
  .salon-hero {
    aspect-ratio: 9 / 16;
    max-height: 86svh;
  }
  .salon-hero .tx-banner__copy {
    justify-content: flex-start;
    padding-top: clamp(1.5rem, 4.5vw, 2.6rem);
    padding-bottom: 1.25rem;
    color: #f7f1e8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 10px 28px rgba(0, 0, 0, 0.4);
  }
  .salon-hero .tx-banner__line,
  .salon-hero h1 {
    color: #f7f1e8;
  }
  .salon-hero .tx-banner__media::after {
    background:
      linear-gradient(180deg,
        rgba(12, 10, 8, 0.88) 0%,
        rgba(12, 10, 8, 0.72) 22%,
        rgba(12, 10, 8, 0.42) 42%,
        rgba(12, 10, 8, 0.12) 58%,
        transparent 72%);
  }
  .salon-hero .tx-banner__media img {
    object-position: center 28%;
  }
  .salon-hero__logo { width: 3.85rem; height: 3.85rem; }
  .tx-banner h1 {
    max-width: 11ch;
    font-size: clamp(1.85rem, 1.15rem + 2.2vw, 2.55rem);
  }
  .tx-banner__line {
    font-size: clamp(1.2rem, 1rem + 0.7vw, 1.5rem);
  }
  .tx-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tx-cards--rail .tx-shot { flex-basis: calc((100% - 1.08rem) / 2); }
}

@media (max-width: 900px) {
  .tx-showcase__stage { grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem; }
  .tx-showcase__title {
    white-space: normal;
    max-width: 22ch;
  }
  .tx-showcase__copy h3 {
    white-space: normal;
    font-size: clamp(1.3rem, 4vw, 1.75rem);
  }
  .tx-showcase__pill {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
    border-radius: 2.75rem;
    padding: 1.78rem 1.85rem 2.31rem;
  }
  .tx-showcase__oval {
    width: min(20.5rem, 70%);
    min-width: 0;
  }
  .tx-showcase__copy { padding: 0; }
  .tx-showcase__copy p { margin-inline: auto; }
  .split, .tx-hero, .contact-grid, .contact-layout, .cta-band__inner, .section-head--split, .book-promo__inner, .book-modal__grid { grid-template-columns: minmax(0, 1fr); }
  .contact-lines > div { grid-template-columns: minmax(0, 1fr); gap: 0.3rem; padding: 0.95rem 0; }
  .split--media-first .split__media { order: -1; }
  .cat-card--lg { grid-column: span 1; }
  .tx-row { grid-template-columns: minmax(0, 1fr); gap: 0.5rem; }
  .trust-grid, .feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .salon-menu__list { grid-template-columns: minmax(0, 1fr); }
  body { padding-bottom: 4.25rem; }
  .dock { display: grid; }
  .quickbar { padding-block: 1.15rem 2rem; }
  .book-promo__visual { padding: 1.25rem 0 0; }
  .book-promo__wide img { width: 92%; }
  .book-promo__inset { width: min(44%, 15.5rem); right: 0; }
  .book-modal__media { max-height: 14rem; border-radius: 1.35rem 1.35rem 0 0; }
  .book-modal__grid { min-height: 0; }
  .founder-grid {
    grid-template-columns: minmax(0, 22rem);
    justify-content: center;
    gap: 7.5rem;
    padding-top: 6.5rem;
  }
}

@media (max-width: 620px) {
  .quickbar__card {
    grid-template-columns: 1fr;
    border-radius: 2.75rem;
  }
  .quickbar a { border-left: 0; border-top: 1px solid var(--line); }
  .quickbar a:first-child { border-top: 0; }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .tx-facts { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0.9rem; }
  .trust-grid, .feature-list { grid-template-columns: minmax(0, 1fr); }
  .trust-grid--4 { grid-template-columns: minmax(0, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
  .brand__wordmark { display: none; }
  body.is-home .header .brand__logo {
    width: 4.15rem;
    height: 4.15rem;
  }
  body.is-home .header__inner { min-height: 4.85rem; }
  .steps li { grid-template-columns: 2.25rem 1fr; gap: 0.9rem; }
  .book-promo__inset { width: min(50%, 13.5rem); }
  .about-stats__grid { grid-template-columns: minmax(0, 1fr); }
  .about-stat--lg { min-height: 10.5rem; }
  .tx-cards { grid-template-columns: minmax(0, 1fr); }
  .tx-cards--rail .tx-shot { flex-basis: 78%; }
  .tx-banner { border-radius: 1.85rem; }
  .salon-lockup__logo { width: 3.75rem; height: 3.75rem; }
  .pagehead__logo { width: 4.25rem; height: 4.25rem; }
  .pagehead__lockup { gap: 0.9rem; }
  .salon-menu__item { grid-template-columns: 2.5rem minmax(0, 1fr); }
  .salon-menu__copy p { font-size: 1.02rem; color: #555555; }
}

@media print {
  .header, .dock, .footer, .cta-band, .quickbar, .book-modal { display: none; }
  body { background: #fff; }
}
