/* ============================================================
   LUMA HOUSE AESTHETICS — Foley Web Systems
   Template: Premium Local Service (editorial / boutique)
   Plain CSS. No framework. Mobile-first.
   Colour, type and spacing are all driven by the custom
   properties in :root below. Change the brand there once.
   ============================================================ */

/* ---- 1. Design tokens -------------------------------------- */
:root {
  /* Palette — warm ivory base, espresso text, sage + clay accents */
  --ivory: #f6f1e8;
  --stone: #ece4d6;
  --stone-deep: #e0d6c4;
  --paper: #fbf8f2;
  --espresso: #2c2722;
  --espresso-soft: #4a423a;
  --sage: #7c8470;
  --sage-deep: #5f6656;
  --clay: #b06a4b;
  --clay-soft: #c98c6e;
  --line: rgba(44, 39, 34, 0.16);
  --line-soft: rgba(44, 39, 34, 0.08);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --wrap: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section: clamp(4.5rem, 11vw, 9rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --slow: 0.8s;
  --header-h: 78px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--espresso);
}

p {
  margin: 0 0 1.1em;
}

::selection {
  background: var(--clay);
  color: var(--paper);
}

/* ---- 3. Layout helpers ------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--espresso);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

/* ---- 4. Shared type pieces --------------------------------- */
.kicker {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--clay);
  display: inline-block;
}
.kicker.is-centered {
  justify-content: center;
}

.display-xl {
  font-size: clamp(2.6rem, 7vw, 5rem);
}
.display-lg {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
}
.display-md {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

.serif-italic {
  font-style: italic;
}

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  line-height: 1.6;
  color: var(--espresso-soft);
  max-width: 46ch;
}

.eyebrow-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--clay);
}

/* ---- 5. Buttons / links ------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 1.7rem;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--paper);
  transition: background var(--slow) var(--ease), color var(--slow) var(--ease),
    transform 0.4s var(--ease);
}
.btn:hover {
  background: transparent;
  color: var(--espresso);
}
.btn--ghost {
  background: transparent;
  color: var(--espresso);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--espresso);
  background: var(--espresso);
  color: var(--paper);
}
.btn--light {
  background: var(--paper);
  color: var(--espresso);
  border-color: var(--paper);
}
.btn--light:hover {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

/* Quiet text link with animated underline */
.link-under {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 3px;
}
.link-under::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.link-under:hover::after {
  transform: scaleX(1);
}
.link-under .arrow {
  transition: transform 0.5s var(--ease);
}
.link-under:hover .arrow {
  transform: translateX(5px);
}

/* ---- 6. Utility bar ---------------------------------------- */
.utility {
  background: var(--espresso);
  color: var(--stone);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}
.utility .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  padding-block: 0.4rem;
}
.utility a:hover {
  color: var(--paper);
}
.utility-mid {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clay-soft);
}
.utility-end {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
}
.utility .dot {
  opacity: 0.4;
}
@media (max-width: 760px) {
  .utility-mid {
    display: none;
  }
  .utility .wrap {
    justify-content: center;
    gap: 1.4rem;
  }
}

/* ---- 7. Header / nav --------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 130;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--line-soft), 0 18px 40px -34px rgba(44, 39, 34, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 0.45rem;
  padding-left: 0.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.4vw, 2.4rem);
}
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.4vw, 2.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding-block: 0.4rem;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--espresso);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav-list a[aria-current="page"] {
  color: var(--clay);
}
.nav-cta {
  white-space: nowrap;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  /* Self-contained contrast: a solid bg + explicit border + solid bars give
     the icon its own internal contrast, so it stays readable even when a
     force-dark browser extension rewrites the header colors (the old
     transparent bg + thin espresso bars relied on the light header and went
     near-invisible under forced dark). color-scheme keeps this control
     light-aware for UA-level auto-dark without forcing the whole site. */
  border: 1px solid var(--espresso);
  background: var(--stone);
  color-scheme: light;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-toggle:hover {
  border-color: var(--clay);
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--espresso);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile close button (injected by script.js) */
.nav-close {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--espresso);
  cursor: pointer;
  padding: 0.55rem;
  align-self: flex-end;
  flex-shrink: 0;
  line-height: 0;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: flex;
  }

  /* The header's backdrop-filter would otherwise become the containing
     block for the fixed drawer below, trapping it inside the header box.
     Drop the filter (and go fully opaque) at mobile so the drawer is a
     true viewport-level overlay. Desktop keeps its glassy header. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--ivory);
    /* Lift the header (and the drawer it contains) above the scrim.
       Without this, .nav's z-index:200 is trapped inside the header's
       z-index:130 stacking context, so the body-level scrim (190)
       paints over the drawer and swallows its link clicks. */
    z-index: 200;
  }

  /* Off-canvas drawer: fixed panel that slides in from the right,
     above the sticky header. body{overflow-x:hidden} keeps the
     parked panel from creating a horizontal scrollbar. */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 360px);
    height: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 1.25rem) var(--gutter) 2rem;
    overflow-y: auto;
    background: var(--paper);
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 60px -34px rgba(44, 39, 34, 0.55);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 200;
  }
  .nav.is-open {
    transform: translateX(0);
  }

  /* In-drawer close button (injected by script.js) */
  .nav-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    padding: 0;
    /* Solid bg + explicit (non-translucent) border + solid icon colour so the
       close control keeps its contrast under force-dark color rewriting. */
    border: 1px solid var(--espresso);
    background: var(--stone);
    color: var(--espresso);
    color-scheme: light;
  }
  .nav-close:hover {
    border-color: var(--clay);
    color: var(--clay);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-list a {
    display: block;
    padding: 1.05rem 0;
    font-size: 1.4rem;
    font-family: var(--display);
    letter-spacing: 0;
  }
  .nav-list a::after {
    display: none;
  }
  .nav-cta {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
  }

  /* Scrim: dims the entire page beneath the drawer */
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(20, 17, 14, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease);
    z-index: 190;
  }
  .nav-scrim.is-open {
    opacity: 1;
    visibility: visible;
  }
}

/* ---- 8. Hero ----------------------------------------------- */
.hero {
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: var(--section);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }
}
.hero-copy {
  max-width: 34rem;
}
.hero-title {
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  margin-bottom: 1.6rem;
}
.hero-title em {
  color: var(--clay);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.2rem;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso-soft);
}
.hero-meta b {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--espresso);
  margin-bottom: 0.2rem;
}

/* Hero image: offset editorial frame */
.hero-figure {
  position: relative;
  isolation: isolate;
}
.hero-figure .frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-figure::before {
  content: "";
  position: absolute;
  inset: auto -1.4rem -1.4rem auto;
  width: 58%;
  height: 58%;
  border: 1px solid var(--clay);
  z-index: -1;
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: -1.4rem auto auto -1.4rem;
  width: 40%;
  height: 40%;
  background: var(--stone);
  z-index: -1;
}
.hero-tag {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(4px);
  padding: 0.7rem 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso);
  border: 1px solid var(--line-soft);
}

/* ---- 9. Reveal-on-scroll animation ------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.3s;
}

/* Image mask reveal */
.mask-reveal {
  position: relative;
  overflow: hidden;
}
.mask-reveal img {
  transform: scale(1.12);
  transition: transform 1.4s var(--ease);
}
.mask-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ivory);
  transform-origin: right;
  transition: transform 1.1s var(--ease);
}
.mask-reveal.is-in img {
  transform: scale(1);
}
.mask-reveal.is-in::after {
  transform: scaleX(0);
}

/* ---- 10. Intro (quieter approach) -------------------------- */
.intro-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .intro-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .intro-grid .intro-figure {
    margin-right: clamp(1rem, 4vw, 3rem);
  }
}
.intro-figure {
  position: relative;
  aspect-ratio: 5 / 6;
}
.intro-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-figure .stamp {
  position: absolute;
  right: -1.2rem;
  bottom: 2rem;
  background: var(--sage);
  color: var(--paper);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  padding: 1.1rem 1.4rem;
  max-width: 12rem;
  line-height: 1.3;
}
.intro-copy {
  max-width: 38rem;
}
.intro-copy .signature {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--clay);
  margin-top: 1.5rem;
}
.rule {
  width: 46px;
  height: 1px;
  background: var(--espresso);
  margin: 1.8rem 0;
}

/* ---- 11. Treatments editorial index ------------------------ */
.section-head {
  display: grid;
  gap: 1.4rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 820px) {
  .section-head.is-split {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 2rem 3rem;
  }
  .section-head.is-split .section-head-aside {
    justify-self: end;
    text-align: right;
    max-width: 34ch;
  }
}

.treat-index {
  border-top: 1px solid var(--line);
}
.treat-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem 1.8rem;
  padding: clamp(1.4rem, 3vw, 2.1rem) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.5s var(--ease), color 0.4s var(--ease);
}
.treat-row:hover {
  padding-left: clamp(0.4rem, 1.5vw, 1.2rem);
}
.treat-row .t-num {
  font-family: var(--display);
  font-style: italic;
  color: var(--clay);
  font-size: 1rem;
  width: 2.5rem;
}
.treat-row .t-body h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  transition: color 0.4s var(--ease);
}
.treat-row:hover .t-body h3 {
  color: var(--clay);
}
.treat-row .t-body p {
  margin: 0.4rem 0 0;
  color: var(--espresso-soft);
  font-size: 0.95rem;
  max-width: 52ch;
}
.treat-row .t-go {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
    border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.treat-row:hover .t-go {
  background: var(--espresso);
  color: var(--paper);
  border-color: var(--espresso);
  transform: rotate(-45deg);
}
@media (max-width: 620px) {
  .treat-row {
    grid-template-columns: auto 1fr;
  }
  .treat-row .t-go {
    display: none;
  }
}

/* Floating preview image that follows the hovered row (desktop only) */
.treat-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 230px;
  aspect-ratio: 4 / 5;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.94);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
  z-index: 80;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(44, 39, 34, 0.55);
}
.treat-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.treat-preview.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ---- 12. Signature ritual ---------------------------------- */
.signature-band {
  background: var(--stone);
}
.sig-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 880px) {
  .sig-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.sig-figure {
  position: relative;
  aspect-ratio: 3 / 4;
}
.sig-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sig-figure::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--clay);
  z-index: -1;
}
.sig-specs {
  display: flex;
  gap: 2.4rem;
  margin: 1.8rem 0;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sig-specs div span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.3rem;
}
.sig-specs div b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
}

/* ---- 13. Memberships --------------------------------------- */
.member-band {
  background: var(--espresso);
  color: var(--stone);
}
.member-band h2,
.member-band h3 {
  color: var(--paper);
}
.member-band .kicker {
  color: var(--clay-soft);
}
.member-band .kicker::before {
  background: var(--clay-soft);
}
.member-grid {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 760px) {
  .member-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.member-card {
  border: 1px solid rgba(246, 241, 232, 0.18);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  display: flex;
  flex-direction: column;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease);
}
.member-card:hover {
  background: rgba(246, 241, 232, 0.04);
  transform: translateY(-4px);
}
.member-card .m-name {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.4rem;
}
.member-card .m-rate {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-soft);
  margin-bottom: 1.4rem;
}
.member-card ul {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.member-card li {
  display: flex;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--stone);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(246, 241, 232, 0.1);
}
.member-card li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 0.55rem;
  background: var(--sage);
  transform: rotate(45deg);
}
.member-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---- 14. Founder ------------------------------------------- */
.founder-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .founder-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}
.founder-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 420px;
}
.founder-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-figure::after {
  content: "";
  position: absolute;
  inset: auto -1.2rem -1.2rem auto;
  width: 60%;
  height: 60%;
  border: 1px solid var(--sage);
  z-index: -1;
}
.founder-quote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.32;
  margin-bottom: 1.6rem;
}
.founder-sign {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
}
.founder-sign .name {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--clay);
}
.founder-sign .role {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso-soft);
}

/* ---- 15. Process ------------------------------------------- */
.process-band {
  background: var(--paper);
}
.process-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 820px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.process-step {
  padding: clamp(1.8rem, 3vw, 2.6rem) clamp(1.4rem, 2.5vw, 2.2rem)
    clamp(1.8rem, 3vw, 2.6rem) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
@media (min-width: 820px) {
  .process-step {
    border-bottom: none;
    border-left: 1px solid var(--line);
    padding-left: clamp(1.4rem, 2.5vw, 2.2rem);
  }
  .process-step:first-child {
    border-left: none;
    padding-left: 0;
  }
}
.process-step .p-num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--stone-deep);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: color 0.5s var(--ease);
}
.process-step:hover .p-num {
  color: var(--clay);
}
.process-step h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}
.process-step p {
  color: var(--espresso-soft);
  font-size: 0.95rem;
  margin: 0;
}

/* ---- 16. Journal ------------------------------------------- */
.journal-grid {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.6rem);
}
@media (min-width: 860px) {
  .journal-grid {
    grid-template-columns: 1.25fr 1fr;
    align-items: stretch;
  }
  .journal-feature {
    grid-row: span 2;
  }
}
.article {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.article a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article .a-figure {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.3rem;
}
.journal-feature .a-figure {
  aspect-ratio: 16 / 11;
}
.article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.article a:hover img {
  transform: scale(1.05);
}
.article .a-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.7rem;
}
.article h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  transition: color 0.4s var(--ease);
}
.journal-feature h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.article a:hover h3 {
  color: var(--clay);
}
.article p {
  color: var(--espresso-soft);
  font-size: 0.95rem;
  margin: 0.6rem 0 0;
}
/* Compact (non-feature) article rows on the home page */
.journal-side .article a {
  flex-direction: row;
  gap: 1.3rem;
}
.journal-side .article .a-figure {
  flex: none;
  width: 130px;
  aspect-ratio: 1 / 1;
  margin-bottom: 0;
}
@media (max-width: 520px) {
  .journal-side .article a {
    flex-direction: column;
  }
  .journal-side .article .a-figure {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 1rem;
  }
}

/* ---- 17. Reviews ------------------------------------------- */
.reviews-band {
  background: var(--sage);
  color: var(--paper);
}
.reviews-band h2 {
  color: var(--paper);
}
.reviews-band .kicker {
  color: rgba(251, 248, 242, 0.85);
}
.reviews-band .kicker::before {
  background: var(--paper);
}
.reviews-grid {
  display: grid;
  gap: 1px;
  background: rgba(251, 248, 242, 0.28);
  border: 1px solid rgba(251, 248, 242, 0.28);
}
@media (min-width: 820px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.review {
  background: var(--sage);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
}
.review .mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 2.8rem;
  line-height: 0.6;
  height: 1.4rem;
  color: rgba(251, 248, 242, 0.6);
}
.review blockquote {
  margin: 0 0 1.6rem;
  font-family: var(--display);
  font-size: 1.22rem;
  line-height: 1.45;
}
.review cite {
  font-style: normal;
  margin-top: auto;
}
.review cite b {
  display: block;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.review cite span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 248, 242, 0.75);
}

/* ---- 18. Contact / visit ----------------------------------- */
.visit-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 880px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.visit-details dl {
  margin: 0;
  display: grid;
  gap: 0;
}
.visit-details .row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.visit-details .row:first-child {
  border-top: 1px solid var(--line);
}
.visit-details dt {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  padding-top: 0.2rem;
}
.visit-details dd {
  margin: 0;
  font-size: 1rem;
}
.visit-details dd a:hover {
  color: var(--clay);
}
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
}
.hours-list li span:first-child {
  color: var(--espresso-soft);
}
.hours-list li.is-today {
  color: var(--clay);
}
.hours-list li.is-today span:first-child {
  color: var(--clay);
}
.hours-list li.is-today::after {
  content: "Today";
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-self: center;
  color: var(--clay);
}

/* Styled (keyless) map block */
.map-block {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--stone) 0%, var(--stone-deep) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-block svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-pin {
  position: absolute;
  top: 46%;
  left: 52%;
  transform: translate(-50%, -100%);
  text-align: center;
}
.map-pin .dot {
  width: 16px;
  height: 16px;
  background: var(--clay);
  border: 3px solid var(--paper);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 6px 16px -6px rgba(44, 39, 34, 0.7);
}
.map-pin .label {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--paper);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line-soft);
  display: inline-block;
}
.map-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  padding: 0.4rem 0.7rem;
}

/* ---- 19. Forms --------------------------------------------- */
.form {
  display: grid;
  gap: 1.3rem;
}
.field {
  display: grid;
  gap: 0.5rem;
}
.field label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.field input,
.field textarea,
.field select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--espresso);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0.1rem;
  transition: border-color 0.4s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--clay);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field-row {
  display: grid;
  gap: 1.3rem;
}
@media (min-width: 560px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--espresso-soft);
}
.form-consent input {
  margin-top: 0.3rem;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-note {
  font-size: 0.82rem;
  color: var(--espresso-soft);
}
.form-status {
  font-size: 0.95rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  display: none;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-ok {
  border-color: var(--sage);
  color: var(--sage-deep);
}
.form-status.is-err {
  border-color: var(--clay);
  color: var(--clay);
}

/* ---- 20. Page hero (inner pages) --------------------------- */
.page-hero {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero-grid {
  display: grid;
  gap: 1.5rem 3rem;
}
@media (min-width: 820px) {
  .page-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }
  .page-hero-aside {
    justify-self: end;
    text-align: right;
    max-width: 34ch;
  }
}
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}
.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  margin-bottom: 1.4rem;
}
.breadcrumb a:hover {
  color: var(--clay);
}

/* ---- 21. Treatment detail blocks (Treatments page) --------- */
.treat-detail {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 860px) {
  .treat-detail {
    grid-template-columns: 1fr 1fr;
  }
  .treat-detail.is-flip .treat-detail-figure {
    order: 2;
  }
}
.treat-detail-figure {
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.treat-detail-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.treat-detail h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 1rem;
}
.treat-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.treat-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.treat-list li:first-child {
  border-top: 1px solid var(--line);
}
.treat-list .t-name {
  font-family: var(--display);
  font-size: 1.2rem;
}
.treat-list .t-desc {
  display: block;
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--espresso-soft);
  margin-top: 0.2rem;
  max-width: 40ch;
}
.treat-list .t-time {
  flex: none;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  white-space: nowrap;
}

/* ---- 22. Values (About) ------------------------------------ */
.values-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 1rem;
}
@media (min-width: 720px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.value {
  background: var(--ivory);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.value .v-num {
  font-family: var(--display);
  font-style: italic;
  color: var(--clay);
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}
.value h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.value p {
  font-size: 0.92rem;
  color: var(--espresso-soft);
  margin: 0;
}

/* Two-up imagery (About studio) */
.duo-figure {
  display: grid;
  gap: 1rem;
}
@media (min-width: 680px) {
  .duo-figure {
    grid-template-columns: 1fr 1fr;
  }
  .duo-figure .tall {
    aspect-ratio: 3 / 4;
  }
}
.duo-figure figure {
  margin: 0;
  overflow: hidden;
}
.duo-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.duo-figure .tall img {
  aspect-ratio: 3 / 4;
}

/* ---- 23. CTA band ------------------------------------------ */
.cta-band {
  background: var(--clay);
  color: var(--paper);
  text-align: center;
}
.cta-band h2 {
  color: var(--paper);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 18ch;
  margin: 0 auto 1.2rem;
}
.cta-band p {
  color: rgba(251, 248, 242, 0.88);
  max-width: 44ch;
  margin: 0 auto 2rem;
}
.cta-band .btn--light:hover {
  color: var(--paper);
}

/* ---- 24. Footer -------------------------------------------- */
.site-footer {
  background: var(--espresso);
  color: var(--stone);
  padding-block: clamp(3.5rem, 7vw, 6rem) 2rem;
}
.footer-top {
  display: grid;
  gap: 2.5rem 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(246, 241, 232, 0.14);
}
@media (min-width: 760px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.footer-brand .brand-name {
  color: var(--paper);
  font-size: 1.8rem;
}
.footer-brand .brand-sub {
  color: var(--clay-soft);
}
.footer-brand p {
  margin-top: 1.2rem;
  max-width: 34ch;
  color: rgba(246, 241, 232, 0.8);
  font-size: 0.95rem;
}
.footer-col h4 {
  color: var(--paper);
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-soft);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.footer-col a:hover {
  color: var(--paper);
}
.footer-col address {
  font-style: normal;
  line-height: 1.8;
  color: rgba(246, 241, 232, 0.8);
  font-size: 0.95rem;
}

/* Newsletter (visual only) */
.newsletter {
  margin-top: 1.6rem;
}
.newsletter form {
  display: flex;
  border: 1px solid rgba(246, 241, 232, 0.3);
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--paper);
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
}
.newsletter input::placeholder {
  color: rgba(246, 241, 232, 0.5);
}
.newsletter input:focus {
  outline: none;
}
.newsletter button {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(246, 241, 232, 0.3);
  color: var(--paper);
  padding: 0 1.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.newsletter button:hover {
  background: var(--paper);
  color: var(--espresso);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(246, 241, 232, 0.6);
  letter-spacing: 0.04em;
}
.footer-bottom a:hover {
  color: var(--paper);
}
.dev-note {
  font-size: 0.72rem;
  color: rgba(246, 241, 232, 0.45);
  letter-spacing: 0.06em;
}

/* ---- 25. Misc / utilities ---------------------------------- */
.center {
  text-align: center;
}
.mt-sm {
  margin-top: 1rem;
}
.mt-md {
  margin-top: 2rem;
}
.measure {
  max-width: 60ch;
}
.flow > * + * {
  margin-top: 1.1rem;
}

/* ---- 26. Reduced motion ------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .mask-reveal img {
    transform: none;
  }
  .mask-reveal::after {
    transform: scaleX(0);
  }
  .treat-preview {
    display: none;
  }
}
