:root {
  --cream: #f7f5f1;
  --cream-deep: #ebe6df;
  --paper: #ffffff;
  --ink: #2c2825;
  --ink-soft: #4a453f;
  --ink-faint: #6f6860;
  --gold: #9c8b6e;
  --gold-deep: #85755a;
  --gold-soft: #b5a68c;
  --charcoal: #3a3531;
  --white: #ffffff;
  --line: rgba(58, 53, 49, 0.1);
  --shadow: 0 18px 48px rgba(58, 53, 49, 0.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
  --announce-h: 0px;
  --max: 100%;
  --content: min(1680px, 100%);
  --gutter: clamp(1.5rem, 4vw, 5rem);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --surface-light:
    linear-gradient(180deg, #ffffff 0%, #f7f5f1 100%);
  --surface-light-sheen:
    linear-gradient(120deg, transparent 0%, rgba(156, 139, 110, 0.04) 45%, transparent 70%);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.92rem, 0.88rem + 0.15vw, 1rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

p {
  font-weight: 400;
}

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

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

.announce {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(58, 53, 49, 0.08);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(58, 53, 49, 0.1);
  box-shadow: 0 10px 40px rgba(31, 28, 25, 0.06);
}

.header-inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0.85rem max(var(--gutter), env(safe-area-inset-right)) 0.85rem max(var(--gutter), env(safe-area-inset-left));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem 2rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: auto;
  width: auto;
  max-width: min(220px, 46vw);
  max-height: 52px;
  object-fit: contain;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: uppercase;
  border: 1px solid rgba(168, 132, 79, 0.5);
  background: linear-gradient(160deg, rgba(216, 193, 154, 0.2), transparent 70%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.1rem + 0.4vw, 1.55rem);
  font-weight: 500;
  letter-spacing: normal;
  text-transform: uppercase;
}

.brand-tag {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.68rem + 0.15vw, 0.82rem);
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.28rem;
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 1.8vw, 1.85rem);
}

.nav a {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 0.74rem + 0.1vw, 0.86rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 0.45rem 0;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15rem;
  width: 100%;
  height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  justify-self: end;
}

.nav-book {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.65rem 1.4rem;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: none;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.nav-book::after {
  content: "→";
  font-size: 0.95em;
  transition: transform 0.35s var(--ease);
}

.nav-book:hover,
.nav-book:focus-visible {
  background: var(--gold-deep);
  color: var(--white);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(58, 53, 49, 0.14);
  outline: none;
}

.nav-book:hover::after,
.nav-book:focus-visible::after {
  transform: translateX(3px);
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  white-space: nowrap;
  color: var(--ink);
  line-height: 1.1;
  transition: color 0.25s var(--ease);
}

.header-phone-num {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.header-phone-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}

.header-phone:hover {
  color: var(--gold-deep);
}

.nav-book-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 6px auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.7rem 1.35rem;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 0.78rem + 0.08vw, 0.88rem);
  letter-spacing: 0.03em;
  text-transform: none;
  font-weight: 500;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    filter 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  box-shadow: none;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transform: none;
  transition: none;
  pointer-events: none;
  z-index: 0;
}

.btn-primary::after {
  content: "→";
  position: relative;
  z-index: 1;
  font-size: 1em;
  line-height: 1;
  transition: transform 0.35s var(--ease);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-deep);
  color: var(--white);
  border-color: var(--gold-deep);
  box-shadow: 0 10px 24px rgba(58, 53, 49, 0.12);
  outline: none;
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
  transform: translateX(130%);
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  transform: translateX(4px);
}

.btn-ghost {
  background: rgba(246, 241, 234, 0.08);
  color: var(--cream);
  border: 1px solid rgba(216, 193, 154, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 26px rgba(0, 0, 0, 0.12);
}

.btn-ghost::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  opacity: 0.85;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(246, 241, 234, 0.96);
  color: var(--ink);
  border-color: rgba(246, 241, 234, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 16px 34px rgba(29, 24, 21, 0.18);
  outline: none;
}

.btn-ghost:hover::after,
.btn-ghost:focus-visible::after {
  transform: translateX(4px);
  opacity: 1;
}

.btn-ghost.light {
  background: rgba(246, 241, 234, 0.1);
  color: var(--cream);
  border-color: rgba(216, 193, 154, 0.55);
}

.btn-ghost.light:hover,
.btn-ghost.light:focus-visible {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-text {
  background: transparent;
  color: var(--ink);
  padding-left: 0;
  padding-right: 0;
  min-height: auto;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
}

.btn-text::after {
  content: "→";
  opacity: 0.7;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), color 0.3s var(--ease);
}

.btn-text:hover {
  color: var(--gold-deep);
  transform: none;
  box-shadow: none;
}

.btn-text:hover::after {
  transform: translateX(4px);
  opacity: 1;
  color: var(--gold-deep);
}

.hero,
.page-hero {
  position: relative;
  min-height: calc(100vh - var(--announce-h) - var(--header-h));
  min-height: calc(100svh - var(--announce-h) - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}

.page-hero {
  min-height: 62vh;
  min-height: 62svh;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.05);
  animation: heroDrift 20s var(--ease) infinite alternate;
}

.hero-veil,
.page-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(58, 53, 49, 0.28) 0%, rgba(58, 53, 49, 0.38) 45%, rgba(58, 53, 49, 0.55) 100%),
    linear-gradient(95deg, rgba(58, 53, 49, 0.35) 0%, rgba(58, 53, 49, 0.12) 55%, transparent 100%);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 5rem) var(--gutter);
}

.hero-content {
  max-width: var(--content);
}

.page-hero-content {
  max-width: none;
}

.eyebrow,
.section-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.7rem + 0.08vw, 0.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.9);
  font-weight: 600;
}

.section-label {
  color: var(--gold-deep);
}

.section-label.light {
  color: rgba(247, 245, 241, 0.85);
}

.hero h1,
.page-hero h1 {
  margin: 0;
}

.hero-brand {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.hero-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 42ch;
  color: rgba(247, 245, 241, 0.95);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  max-width: none;
}

.hero-lead {
  margin: 1.1rem 0 0;
  max-width: 40rem;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 0.88rem + 0.12vw, 1.02rem);
  color: rgba(247, 245, 241, 0.88);
  font-weight: 400;
  line-height: 1.65;
}

.hero-lead + .hero-lead {
  margin-top: 0.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.about,
.treatments,
.studio,
.results,
.reviews,
.contact {
  padding: clamp(4.5rem, 4vw, 7.5rem) 0;
}

.about-grid,
.section-head {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.about-grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
}

.about h2,
.treatments h2,
.academy h2,
.studio h2,
.results h2,
.contact h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.3;
  color: var(--ink);
}

.about-copy > p,
.section-intro,
.academy-content > p,
.contact-copy > p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 0.9rem + 0.1vw, 1.02rem);
  font-weight: 400;
  line-height: 1.7;
}

.inline-link {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(168, 132, 79, 0.35);
}

.inline-link:hover {
  border-bottom-color: var(--gold-deep);
}

.about-jenny {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0;
  padding: 1rem 1.15rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(246, 241, 234, 0.5));
  border: 1px solid rgba(168, 132, 79, 0.28);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(29, 24, 21, 0.08);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

a.about-jenny:hover {
  border-color: rgba(168, 132, 79, 0.55);
  box-shadow: 0 14px 34px rgba(29, 24, 21, 0.12);
  transform: translateY(-2px);
}

.about-team {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.about-team .about-jenny {
  margin-top: 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin-top: 1.75rem;
}

.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 2.25rem;
  padding: 0 var(--gutter);
}

.about-jenny-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(168, 132, 79, 0.45);
  box-shadow: 0 8px 20px rgba(29, 24, 21, 0.12);
}

.about-jenny-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.about-jenny-text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-jenny-text strong a {
  color: inherit;
  text-decoration: none;
}

.about-jenny-text strong a:hover {
  color: var(--gold-deep);
}

.about-jenny-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.about-jenny-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.about-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.about-visual::before {
  display: none;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 620px;
  border-radius: 18px;
  transition: transform 1.2s var(--ease);
}

.about-visual:hover img {
  transform: scale(1.045);
}

.section-head {
  max-width: var(--content);
  margin: 0 auto 3.2rem;
}

.section-head.centered {
  text-align: center;
}

.section-head.centered .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  max-width: none;
}

.section-head.centered h2 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.treatments {
  position: relative;
  background:
    linear-gradient(180deg, rgba(196, 178, 164, 0.92), rgba(196, 178, 164, 0.96)),
    url("../assets/services/anti-wrinkle.jpg") center / cover;
  overflow: hidden;
}

.treatments::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(196, 178, 164, 0.88) 0%, rgba(196, 178, 164, 0.55) 45%, rgba(196, 178, 164, 0.9) 100%),
    url("../assets/services/facials.jpg") 12% 40% / 38% auto no-repeat,
    url("../assets/services/microneedling.jpg") 88% 60% / 34% auto no-repeat,
    url("../assets/services/polynucleotides.jpg") 50% 100% / 42% auto no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.treatments .section-head,
.treatments .carousel {
  position: relative;
  z-index: 1;
}

.treatments .section-head {
  text-align: center;
  /* max-width: min(1100px, 100%); */
}

.treatments .section-head h2 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.85rem;
}

.treatments .section-intro {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink);
}

.carousel {
  max-width: var(--content);
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-left: calc(var(--gutter) + 1.25rem);
  padding-right: calc(var(--gutter) + 1.25rem);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(29, 24, 21, 0.72);
  color: #fff;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  padding: 0;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.carousel-btn-prev { left: 0.35rem; }
.carousel-btn-next { right: 0.35rem; }

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: var(--gold-deep);
  border-color: var(--gold-soft);
  color: #fff;
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.carousel-track {
  --carousel-gap: 1.15rem;
  --carousel-visible: 4;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--carousel-visible) - 1) * var(--carousel-gap)) / var(--carousel-visible));
  gap: var(--carousel-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0 0.75rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 6px;
}

.service-card {
  position: relative;
  display: block;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(168, 132, 79, 0.28);
  background:
    radial-gradient(ellipse 90% 70% at 12% 10%, rgba(160, 137, 98, 0.18), transparent 52%),
    radial-gradient(ellipse 80% 55% at 95% 90%, rgba(160, 137, 98, 0.1), transparent 48%),
    linear-gradient(165deg, #fffcf8 0%, #f6f1ea 55%, #efe8de 100%);
  color: var(--ink);
  transition: transform 0.4s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 10px 24px rgba(31, 28, 25, 0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(160, 137, 98, 0.5);
  box-shadow: 0 14px 32px rgba(31, 28, 25, 0.1);
}

.service-card img {
  display: none;
}

.service-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 45%, rgba(160, 137, 98, 0.06) 100%);
  pointer-events: none;
}

.service-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.5rem;
  text-align: center;
}

.service-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ink);
  text-shadow: none;
}

.service-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.7rem 1.5rem;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(58, 53, 49, 0.12);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.service-cta::after {
  content: "→";
  font-size: 1.05em;
  transition: transform 0.3s var(--ease);
}

.service-cta:hover,
.service-cta:focus-visible {
  background: var(--gold-deep);
  color: #fff;
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(58, 53, 49, 0.16);
  outline: none;
}

.service-cta:hover::after,
.service-cta:focus-visible::after {
  transform: translateX(3px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
  padding: 0 0.5rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(75, 57, 50, 0.28);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), width 0.25s var(--ease);
}

.carousel-dot:hover {
  background: rgba(75, 57, 50, 0.5);
}

.carousel-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--gold-deep);
}

.treatments .carousel-dot {
  background: rgba(255, 255, 255, 0.45);
}

.treatments .carousel-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.treatments .carousel-dot.is-active {
  background: var(--charcoal);
}

.treatments-cta {
  max-width: var(--content);
  margin: 2.4rem auto 0;
  padding-inline: var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.6rem;
}

.menu-grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.menu-block {
  background: rgba(255, 255, 255, 0.48);
  border-top: 2px solid var(--gold);
  padding: 1.55rem 1.4rem 1.3rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.menu-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(29, 24, 21, 0.08);
}

.menu-head h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: normal;
  text-transform: uppercase;
  font-weight: 500;
}

.menu-head p {
  margin: 0 0 1.1rem;
  color: var(--ink-faint);
  font-size: 0.82rem;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list li span {
  flex: 1;
}

.price-list li em {
  font-style: normal;
  color: var(--ink-faint);
  font-size: 0.78rem;
}

.price-list li strong {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.page-menu {
  padding-top: 5rem;
}

.academy {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}

.academy-media {
  position: absolute;
  inset: 0;
}

.academy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.academy-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(58, 53, 49, 0.72) 0%, rgba(58, 53, 49, 0.55) 40%, rgba(58, 53, 49, 0.28) 100%);
}

.academy-content {
  position: relative;
  z-index: 2;
  max-width: var(--content);
  width: 100%;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 4rem) var(--gutter);
  text-align: center;
}

.academy h2 {
  color: var(--cream);
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

.academy-content > p {
  color: rgba(246, 241, 234, 0.92);
  max-width: 75ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.academy-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.studio-head {
  margin-bottom: 2rem;
}

.studio-head h2 {
  margin-bottom: 0;
}

.marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: marqueeScroll 48s linear infinite;
}

.marquee:hover .marquee-track,
.marquee.is-paused .marquee-track {
  animation-play-state: paused;
}

.studio-slide {
  margin: 0;
  flex: 0 0 auto;
  width: min(320px, 72vw);
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  background: #3d3229;
  cursor: pointer;
  padding: 0;
  border: 0;
  display: block;
  position: relative;
}

.studio-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 24, 21, 0);
  transition: background 0.3s var(--ease);
  pointer-events: none;
}

.studio-slide:hover::after,
.studio-slide:focus-visible::after {
  background: rgba(29, 24, 21, 0.18);
}

.studio-slide:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.studio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.studio-slide:hover img {
  transform: scale(1.04);
}

/* Before & After carousel */
.results {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f5f1 55%, #ffffff 100%);
}

.results-carousel .carousel-track {
  --carousel-visible: 3.3;
  --carousel-gap: 1.1rem;
  align-items: stretch;
}

.results-slide {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.results-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  flex: 1;
}

.results-shot {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #3d3229;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}

.results-slide-pair .results-shot {
  aspect-ratio: 3 / 4;
  height: 100%;
}

.results-card {
  aspect-ratio: 3 / 4;
}

.results-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.results-shot:hover img,
.results-shot:focus-visible img {
  transform: scale(1.04);
}

.results-shot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.results-tag {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  background: rgba(44, 40, 37, 0.78);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.results-caption {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}

.results .carousel-btn {
  border-color: rgba(44, 40, 37, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(44, 40, 37, 0.12);
}

.results .carousel-btn:hover,
.results .carousel-btn:focus-visible {
  background: var(--gold-deep);
  border-color: var(--gold-soft);
  color: #fff;
}

.results .carousel-dot {
  background: rgba(44, 40, 37, 0.2);
}

.results .carousel-dot.is-active {
  background: var(--gold-deep);
}

/* Trust bar */
.trust-bar {
  padding: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

.trust-bar-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 1.5rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(168, 132, 79, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(247, 245, 241, 0.72));
  box-shadow: 0 10px 28px rgba(44, 40, 37, 0.04);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 132, 79, 0.45);
  box-shadow: 0 14px 32px rgba(44, 40, 37, 0.08);
}

.trust-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(156, 139, 110, 0.12);
  color: var(--gold-deep);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.trust-text strong {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.25;
}

.trust-text span {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* Treatment chips + perks */
.treatment-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.35rem auto 0;
  max-width: 48rem;
}

.treatment-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(168, 132, 79, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.treatment-chip:hover,
.treatment-chip:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  outline: none;
}

.treatment-perks {
  max-width: var(--content);
  margin: 2rem auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.treatment-perk {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  text-align: center;
  border-top: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.55);
}

.treatment-perk strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.treatment-perk span {
  font-size: 0.84rem;
  color: var(--ink-soft);
}

/* Academy split layout */
.academy.academy-split {
  min-height: 0;
  display: block;
  overflow: visible;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f5f1 0%, #ffffff 45%, #faf8f5 100%);
  padding: clamp(4.5rem, 6vw, 7rem) 0;
}

.academy-split-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.academy-split-visual {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: min(560px, 70vh);
  box-shadow: var(--shadow);
}

.academy-split-visual img {
  width: 100%;
  height: 100%;
  min-height: min(560px, 70vh);
  object-fit: cover;
  display: block;
}

.academy-split-copy {
  position: relative;
  z-index: 1;
  text-align: left;
}

.academy-split-copy .section-label {
  color: var(--gold-deep);
}

.academy-split .academy h2,
.academy.academy-split h2 {
  color: var(--ink);
  max-width: 22ch;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.academy-split-copy > p {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
  max-width: 38rem;
  font-size: clamp(0.92rem, 0.9rem + 0.1vw, 1.02rem);
  line-height: 1.7;
}

.academy-points {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.academy-points li {
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem 1rem;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.72);
}

.academy-points strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.academy-points span {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.academy-split .academy-actions {
  justify-content: flex-start;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(16, 12, 10, 0.88);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: min(86vh, 900px);
  display: grid;
  place-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: min(82vh, 860px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  background: #1d1815;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 241, 234, 0.35);
  background: rgba(29, 24, 21, 0.75);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 2;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: var(--gold-deep);
  border-color: var(--gold-soft);
  outline: none;
}

body.lightbox-open {
  overflow: hidden;
}

body.lightbox-open .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reviews {
  position: relative;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: var(--cream);
  color: var(--ink);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews::before {
  content: none;
}

.reviews-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.reviews-top {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.reviews .section-label {
  color: var(--gold-deep);
}

.reviews-intro h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ink);
}

.reviews-intro h2 em {
  font-style: normal;
  color: var(--gold-deep);
}

.reviews-intro .section-intro {
  margin: 0;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 0.88rem + 0.1vw, 0.98rem);
  line-height: 1.65;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.reviews-score-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 0.9;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
}

.reviews-score-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.reviews-score-meta .stars {
  margin: 0 0 0.15rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.reviews-score-meta strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.reviews-score-meta span {
  font-size: 0.75rem;
  color: var(--ink-faint);
}

.reviews-feature {
  position: relative;
  margin: 0 0 clamp(1.25rem, 2vw, 1.75rem);
  padding: clamp(1.35rem, 2.5vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.reviews-feature-mark {
  position: absolute;
  top: -0.35rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;
  color: rgba(156, 139, 110, 0.15);
  pointer-events: none;
  user-select: none;
}

.reviews-feature blockquote {
  position: relative;
  margin: 0;
}

.reviews-feature p {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-transform: none;
  color: var(--ink);
}

.reviews-feature footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  flex-shrink: 0;
}

.review-person {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.review-person strong {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.review-person span {
  font-size: 0.75rem;
  color: var(--ink-faint);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reviews-carousel {
  position: relative;
}

.reviews-carousel-btn,
.reviews-carousel-dots {
  display: none;
}

.review-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.15rem 1.1rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: none;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(156, 139, 110, 0.45);
  background: var(--white);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.review-source {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.22rem 0.5rem;
  border-radius: 2px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 0;
  font-size: 0.85rem;
  text-shadow: none;
}

.review-card p {
  margin: 0 0 1rem;
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.55;
  text-transform: none;
  color: var(--ink-soft);
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.review-card .review-avatar {
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
}

.reviews-ticker {
  margin: clamp(1.5rem, 2.5vw, 2rem) calc(var(--gutter) * -1) 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-ticker-track {
  display: flex;
  width: max-content;
  gap: 0.65rem;
  animation: reviewTicker 42s linear infinite;
}

.reviews-ticker-track span {
  flex: 0 0 auto;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.78rem;
  white-space: nowrap;
}

@keyframes reviewTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.reviews-more {
  position: relative;
  z-index: 1;
  margin: 1.5rem 0 0;
  text-align: center;
}

.about-reviews {
  padding: clamp(3rem, 5vw, 4.75rem) 0;
}

.about-reviews .reviews-ticker {
  display: none;
}

.about,
.get-touch,
.contact,
.menu-page,
.about-page {
  position: relative;
  background: var(--surface-light);
  overflow-x: clip;
}

.about::before,
.get-touch::before,
.contact::before,
.menu-page::before,
.about-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--surface-light-sheen);
  pointer-events: none;
}

.about-grid,
.get-touch-shell,
.contact-shell,
.menu-page-inner,
.about-page-grid,
.jenny-gallery,
.jenny-highlight,
.about-info-grid,
.about-creds,
.about-academy-banner {
  position: relative;
  z-index: 1;
}

.get-touch {
  padding: clamp(4rem, 5vw, 6.5rem) 0;
}

.get-touch-shell {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.get-touch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}

.get-touch-eyebrow span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold-deep);
}

.get-touch-left h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ink);
}

.get-touch-left h2 em {
  font-style: normal;
  color: var(--gold-deep);
}

.get-touch-lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1rem + 0.2vw, 1.15rem);
  line-height: 1.7;
}

.get-touch-call {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.9rem 1.15rem;
  background: var(--white);
  border: 1px solid rgba(176, 141, 79, 0.3);
  border-radius: 2px;
  box-shadow: 0 14px 34px rgba(29, 24, 21, 0.06);
  margin-bottom: 2rem;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.get-touch-call:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 132, 79, 0.45);
}

.get-touch-call-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: linear-gradient(155deg, var(--gold-soft), var(--gold-deep));
  color: var(--charcoal);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.get-touch-call-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.get-touch-call-text span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.get-touch-call-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.faq h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.faq-list {
  border-top: 1px solid rgba(75, 57, 50, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(75, 57, 50, 0.12);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}

.faq-icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold-deep);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.faq-icon::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.faq-panel {
  padding: 0 0 1.05rem;
}

.faq-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 36rem;
}

.get-touch-form,
.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(176, 141, 79, 0.28);
  border-radius: 4px;
  padding: clamp(1.75rem, 3.2vw, 2.6rem);
  box-shadow: 0 20px 48px rgba(29, 24, 21, 0.07);
  overflow: hidden;
}

.get-touch-form::before,
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.get-touch-form-head,
.contact-form-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(176, 141, 79, 0.18);
}

.get-touch-form-head h3,
.get-touch-form h3,
.contact-form-head h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.get-touch-form-head p,
.contact-form-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.get-touch-form .field select {
  width: 100%;
}

.get-touch-submit,
.contact-submit {
  width: 100%;
  margin-top: 0.5rem;
  border-radius: 2px;
  min-height: 54px;
  justify-content: center;
}

.get-touch-form .btn {
  align-self: stretch;
}

.form-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-location-option {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(176, 141, 79, 0.28);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.form-location-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.form-location-option:has(input:checked) {
  background: linear-gradient(155deg, rgba(224, 201, 152, 0.4), rgba(201, 169, 110, 0.22));
  border-color: var(--gold-deep);
  color: var(--ink);
}

.form-location-option:has(input:focus-visible) {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .get-touch-shell {
    grid-template-columns: 1fr;
  }
}

.contact {
  padding-bottom: clamp(5rem, 8vw, 7rem);
}

.contact-page {
  padding-top: clamp(3.25rem, 5vw, 5rem);
}

.contact-hero {
  min-height: 48vh;
  min-height: 48svh;
}

.contact-hero h1 {
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}

.contact-shell {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.contact-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.contact-intro > p:not(.section-label) {
  margin: 0 0 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1rem + 0.15vw, 1.12rem);
  line-height: 1.7;
}

.contact-details {
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid rgba(75, 57, 50, 0.14);
}

.contact-details > div {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(75, 57, 50, 0.12);
}

@media (max-width: 640px) {
  .contact-details > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.contact-details dt {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
  padding-top: 0.15rem;
}

.contact-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 400;
}

.contact-details a {
  color: var(--ink);
  border-bottom: 1px solid rgba(168, 132, 79, 0.35);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.contact-details a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}

.contact-inline {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: var(--gold-deep) !important;
}

.contact-hours {
  padding-top: 0.25rem;
}

.contact-hours h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.contact-hours .about-hours {
  max-width: 22rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label,
.field-label-text {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(176, 141, 79, 0.28);
  border-radius: 2px;
  background: var(--white);
  padding: 0.9rem 1rem;
  outline: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  resize: vertical;
}

.field select {
  appearance: none;
  background-color: var(--white);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-deep) 50%),
    linear-gradient(135deg, var(--gold-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 3px),
    calc(100% - 10px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: rgba(176, 141, 79, 0.5);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  background: #fffcf7;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
}

.form-note {
  margin: 1rem 0 0;
  color: var(--gold-deep);
  font-size: 0.98rem;
}

.contact-hours-card {
  margin-top: 1.25rem;
  padding: 1.25rem 1.2rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(168, 132, 79, 0.22);
  border-radius: 14px;
}

.contact-hours-card h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.contact-quick {
  display: none;
}

.site-footer {
  background: var(--cream);
  color: var(--ink-soft);
  padding: clamp(2.75rem, 5vw, 4rem) max(var(--gutter), env(safe-area-inset-right)) max(1.75rem, env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-left));
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: var(--content);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1.05fr 0.95fr;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand .brand-logo {
  height: auto;
  max-width: min(250px, 48vw);
  max-height: 68px;
  filter: none;
}

.footer-brand .brand-mark {
  color: var(--gold-deep);
  border-color: rgba(156, 139, 110, 0.4);
  background: transparent;
}

.footer-brand .brand-name {
  color: var(--ink);
  display: block;
}

.footer-brand .brand-tag {
  color: var(--ink-faint);
}

.footer-blurb {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.footer-blurb + .footer-blurb {
  margin-top: 0.75rem;
}

.footer-col h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.footer-nav a:hover {
  color: var(--gold-deep);
}

.footer-address,
.footer-hours {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.footer-address-secondary {
  margin-top: 0.85rem;
}

.footer-hours {
  margin-top: 0.85rem;
  color: var(--ink-faint);
}

.footer-maps {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.82rem;
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(156, 139, 110, 0.35);
}

.footer-maps:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.footer-hours-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer-hours-list > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.footer-hours-list dt {
  margin: 0;
  color: var(--ink-faint);
  font-weight: 400;
}

.footer-hours-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

.footer-follow-note {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-faint);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--gold-deep);
}

.footer-ig-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold-deep);
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}

.footer-cta .btn {
  width: 100%;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
}

.footer-cta-call {
  background: transparent;
  color: var(--ink);
  border-color: rgba(58, 53, 49, 0.22);
}

.footer-cta-call:hover,
.footer-cta-call:focus-visible {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.footer-nav-inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1.15rem;
}

.book-cta {
  position: relative;
  background:
    linear-gradient(120deg, rgba(247, 245, 241, 0.94), rgba(255, 255, 255, 0.9)),
    url("../assets/banner.jpeg") center / cover;
  color: var(--ink);
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.book-cta-about {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background:
    linear-gradient(145deg, rgba(247, 245, 241, 0.92), rgba(255, 255, 255, 0.88) 55%, rgba(247, 245, 241, 0.94)),
    url("../assets/jenny-2.jpeg") center 30% / cover;
}

.book-cta-veil {
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.book-cta-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.book-cta-inner-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
}

.book-cta-inner-center .book-cta-copy {
  max-width: 36rem;
}

.book-cta-inner-center .book-cta-copy h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
}

.book-cta-inner-center .book-cta-actions {
  justify-content: center;
}

.book-cta-copy {
  flex: initial;
  max-width: 36rem;
}

.book-cta-copy h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}

.book-cta-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.book-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.book-cta-actions .btn-primary,
.book-cta-actions .btn-ghost {
  min-height: 46px;
}

.book-cta .section-label.light {
  color: var(--gold-deep);
}

.book-cta .btn-ghost.light {
  background: transparent;
  color: var(--ink);
  border-color: rgba(58, 53, 49, 0.25);
}

.book-cta .btn-ghost.light:hover,
.book-cta .btn-ghost.light:focus-visible {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.reviews .btn-ghost.light {
  background: transparent;
  color: var(--ink);
  border-color: rgba(58, 53, 49, 0.25);
}

.reviews .btn-ghost.light:hover,
.reviews .btn-ghost.light:focus-visible {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1.5rem;
  padding-top: 1.5rem;
}

.footer-meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-faint);
  line-height: 1.6;
}

.footer-phone {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
}

.footer-phone:hover {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes heroDrift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.4%, -1%, 0); }
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .review-grid,
  .about-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-track {
    --carousel-visible: 3;
  }
}

@media (max-width: 980px) {
  :root {
    --gutter: clamp(1.15rem, 4vw, 2rem);
    --header-h: 76px;
    --announce-h: 0px;
  }

  .announce {
    display: none !important;
  }

  .results-carousel .carousel-track {
    --carousel-visible: 2.2;
  }

  .about-grid,
  .contact-shell,
  .reviews-top {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .review-grid,
  .about-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-track {
    --carousel-visible: 2;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-visual,
  .about-visual img {
    min-height: min(380px, 58vw);
  }

  .hero,
  .page-hero {
    min-height: min(100svh - var(--header-h), 720px);
  }

  .page-hero,
  .about-hero,
  .treatments-hero,
  .contact-hero {
    min-height: 48svh;
  }

  .academy {
    min-height: 58svh;
  }

  .academy.academy-split {
    min-height: 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    overflow: visible;
    /* backdrop-filter traps position:fixed nav inside the header */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.97);
  }

  body.nav-open .site-header {
    z-index: 220;
    background: #fff;
  }

  .header-inner {
    position: relative;
    overflow: visible;
  }

  .header-actions {
    display: none;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .brand-logo {
    height: auto;
    max-width: min(250px, 48vw);
    max-height: 56px;
  }

  .nav-book-mobile {
    position: relative;
    display: inline-flex;
    margin-top: 1.15rem;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 52px;
    padding: 0.85rem 1.5rem;
    overflow: hidden;
    isolation: isolate;
    background: var(--white);
    color: var(--ink) !important;
    border: 1px solid var(--gold);
    border-radius: 2px;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    text-transform: none;
    font-weight: 500;
    box-shadow: none;
  }

  .nav-book-mobile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    transform: none;
    transition: none;
    pointer-events: none;
    z-index: 0;
  }

  .nav-book-mobile::after {
    content: "→" !important;
    position: relative !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    background: none !important;
    transform: none !important;
    opacity: 1 !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 1;
    font-size: 1.05em;
    transition: transform 0.35s var(--ease);
  }

  .nav-book-mobile:hover,
  .nav-book-mobile:focus-visible {
    background: var(--gold);
    color: var(--white) !important;
    border-color: var(--gold);
  }

  .nav-book-mobile:hover::before,
  .nav-book-mobile:focus-visible::before {
    transform: translateX(130%);
  }

  .nav-book-mobile:hover::after,
  .nav-book-mobile:focus-visible::after {
    transform: translateX(3px) !important;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 230;
  }

  .nav {
    position: fixed;
    top: var(--header-h, 76px);
    left: 0;
    right: 0;
    bottom: auto;
    margin: 0;
    padding: 1.5rem max(1.35rem, env(safe-area-inset-right)) 1.75rem max(1.35rem, env(safe-area-inset-left));
    background:
      radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201, 169, 110, 0.14), transparent 55%),
      linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
    border-bottom: 1px solid rgba(176, 141, 79, 0.22);
    box-shadow: 0 24px 50px rgba(29, 24, 21, 0.16);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
    transform: translateY(-0.65rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), visibility 0.35s var(--ease);
    z-index: 210;
    max-height: calc(100dvh - var(--header-h, 76px) - env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav::before {
    content: "Menu";
    display: block;
    margin: 0 0 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(168, 132, 79, 0.28);
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
  }

  .nav a:not(.nav-book-mobile) {
    width: 100%;
    padding: 0.75rem 0.35rem;
    color: var(--ink);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(75, 57, 50, 0.08);
  }

  .nav a:not(.nav-book-mobile)::after {
    content: "→";
    position: static;
    width: auto;
    height: auto;
    background: none;
    transform: none;
    color: var(--gold-deep);
    opacity: 0.55;
    font-size: 1rem;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  .nav a:not(.nav-book-mobile):hover,
  .nav a:not(.nav-book-mobile):focus-visible,
  .nav a:not(.nav-book-mobile)[aria-current="page"] {
    color: var(--gold-deep);
  }

  .nav a:not(.nav-book-mobile):hover::after,
  .nav a:not(.nav-book-mobile):focus-visible::after,
  .nav a:not(.nav-book-mobile)[aria-current="page"]::after {
    transform: translateX(4px);
    opacity: 1;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
  }

  html.nav-lock,
  html.nav-lock body {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }

  html.nav-lock .nav {
    touch-action: pan-y;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 205;
    background: rgba(29, 24, 21, 0.42);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .book-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.35rem;
  }

  .book-cta-copy {
    flex: initial;
  }

  .book-cta-actions {
    width: 100%;
  }

  .treatments .section-head h2 {
    margin-bottom: 1.5rem;
  }

  .reviews-carousel-btn,
  .reviews-carousel-dots {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content,
  .page-hero-content {
    padding-block: clamp(2.5rem, 8vw, 4rem);
  }

  .section-head {
    margin-bottom: 2.25rem;
  }

  .treatments .section-head h2 {
    margin-bottom: 1.75rem;
  }

  .reviews-score {
    padding: 1.05rem 1.15rem;
  }

  .reviews-score-num {
    font-size: clamp(1.85rem, 6vw, 2.4rem);
  }

  .get-touch-call {
    width: 100%;
  }

  .about-creds {
    grid-template-columns: 1fr 1fr;
  }

  .jenny-gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(140px, 38vw);
  }

  .footer-hours-list > div {
    display: block;
  }

  .footer-hours-list dt {
    margin-bottom: 0.15rem;
  }

  .footer-hours-list dd {
    margin-bottom: 0.55rem;
  }

  .field input,
  .field textarea,
  .field select {
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    min-height: 44px;
  }

  .field textarea {
    min-height: 110px;
  }

  .get-touch-form .field select {
    padding: 0.65rem 0.85rem;
    min-height: 44px;
  }

  .reviews-carousel {
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    grid-template-areas:
      "prev track next"
      ". dots .";
    align-items: center;
    column-gap: 0.45rem;
    row-gap: 0.85rem;
  }

  .reviews-carousel-btn,
  .reviews-carousel-dots {
    display: grid;
  }

  .reviews-carousel .carousel-btn-prev {
    grid-area: prev;
    left: auto;
    right: auto;
  }

  .reviews-carousel .carousel-btn-next {
    grid-area: next;
    left: auto;
    right: auto;
  }

  .reviews-carousel .reviews-carousel-dots {
    grid-area: dots;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
    gap: 0.4rem;
  }

  .reviews-carousel-btn {
    position: static;
    top: auto;
    transform: none !important;
    width: 42px;
    height: 42px;
    min-width: 42px;
    place-items: center;
    border: 1px solid rgba(216, 193, 154, 0.65);
    background: rgba(29, 24, 21, 0.92);
    color: var(--gold-soft);
    font-size: 1.55rem;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  }

  .reviews-carousel-btn:hover,
  .reviews-carousel-btn:focus-visible,
  .reviews-carousel-btn:active {
    background: var(--gold-deep);
    border-color: var(--gold-soft);
    color: #fff;
    transform: none !important;
    outline: none;
  }

  .reviews-carousel .review-grid,
  .reviews-carousel .about-review-grid {
    grid-area: track;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.15rem 0 0.35rem;
    grid-template-columns: unset;
    grid-auto-flow: unset;
    grid-auto-columns: unset;
  }

  .reviews-carousel .review-grid::-webkit-scrollbar,
  .reviews-carousel .about-review-grid::-webkit-scrollbar {
    display: none;
  }

  .reviews-carousel .review-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: auto;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    opacity: 1 !important;
    transform: none !important;
    transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
  }

  .reviews-carousel .review-card:hover {
    transform: none;
  }

  .reviews-carousel-dots .carousel-dot {
    background: rgba(246, 241, 234, 0.35);
  }

  .reviews-carousel-dots .carousel-dot.is-active {
    background: var(--gold-soft);
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: clamp(1rem, 4.5vw, 1.35rem);
  }

  body {
    font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.2rem);
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .review-grid,
  .about-review-grid,
  .about-creds {
    grid-template-columns: 1fr;
  }

  .reviews-carousel .review-grid,
  .reviews-carousel .about-review-grid {
    display: flex;
    width: 100%;
  }

  .reviews-carousel .review-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .treatments .section-head h2 {
    margin-bottom: 1.85rem;
  }

  .book-cta-copy {
    flex: initial;
  }

  .about,
  .treatments,
  .studio,
  .reviews,
  .contact,
  .get-touch,
  .about-page,
  .menu-page {
    padding-block: 3.25rem;
  }

  .about-grid,
  .section-head {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .hero,
  .page-hero {
    min-height: auto;
    align-items: end;
  }

  .hero {
    min-height: min(88svh, 620px);
  }

  .page-hero,
  .about-hero,
  .treatments-hero,
  .contact-hero {
    min-height: 42svh;
  }

  .academy {
    min-height: 52svh;
  }

  .academy.academy-split {
    min-height: 0;
  }

  .hero-content,
  .page-hero-content,
  .academy-content {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-bottom: clamp(2rem, 7vw, 3rem);
  }

  .hero-brand {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .hero-line {
    font-size: clamp(1.2rem, 5.2vw, 1.65rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .header-inner {
    gap: 0.75rem;
    padding-block: 0.75rem;
  }

  .brand-tag {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 0.92rem;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-logo {
    height: auto;
    max-width: min(250px, 48vw);
    max-height: 48px;
  }

  .about-visual,
  .about-visual img {
    min-height: min(240px, 62vw);
    border-radius: 14px;
  }

  .about-page-frame,
  .about-page-frame img {
    min-height: min(260px, 68vw);
  }

  .about-page-stack {
    padding-right: 0.85rem;
    padding-bottom: 1.35rem;
  }

  .about-page-accent {
    width: min(38%, 120px);
    border-width: 3px;
  }

  .about-page-frame::before {
    inset: 10px;
  }

  .about-academy-banner {
    min-height: 0;
  }

  .about-academy-content {
    padding-block: 2.75rem;
  }

  .jenny-gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(120px, 42vw);
    gap: 0.55rem;
  }

  .jenny-shot span {
    opacity: 1;
    transform: none;
    font-size: 0.68rem;
    padding: 0.28rem 0.55rem;
    left: 0.55rem;
    bottom: 0.55rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    width: 100%;
    align-self: stretch;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-jenny {
    align-items: flex-start;
  }

  .about-jenny-thumb {
    width: 64px;
    height: 64px;
  }

  .book-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .book-cta-actions {
    width: 100%;
  }

  .book-cta-actions .btn {
    flex: 1 1 auto;
  }

  .book-cta-copy h2 {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .hero-actions,
  .academy-actions,
  .treatments-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .btn-text {
    width: auto;
    justify-content: flex-start;
  }

  .carousel {
    padding-left: calc(var(--gutter) + 1.75rem);
    padding-right: calc(var(--gutter) + 1.75rem);
  }

  .carousel-track {
    --carousel-visible: 1;
    --carousel-gap: 0.9rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.45rem;
  }

  .carousel-btn-prev { left: 0.15rem; }
  .carousel-btn-next { right: 0.15rem; }

  .carousel-dots {
    gap: 0.35rem;
    padding-inline: 0;
  }

  .service-card {
    aspect-ratio: 3 / 4;
  }

  .service-card,
  .studio-slide {
    border-radius: 16px;
  }

  .studio-slide {
    width: min(240px, 70vw);
  }

  .results-carousel .carousel-track {
    --carousel-visible: 1.25;
    --carousel-gap: 0.85rem;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .treatment-perks {
    grid-template-columns: 1fr;
  }

  .academy-split-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .academy-split-visual,
  .academy-split-visual img {
    min-height: min(320px, 58vw);
  }

  .academy.academy-split {
    min-height: 0;
    padding: 3.5rem 0;
  }

  .academy-split .academy-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .section-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .marquee {
    mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  }

  .marquee-track {
    gap: 0.7rem;
  }

  .reviews-feature {
    padding: 1.35rem 1.2rem;
  }

  .reviews-feature p {
    font-size: clamp(1.15rem, 4.5vw, 1.45rem);
  }

  .reviews-feature-mark {
    font-size: 4.5rem;
  }

  .reviews-score {
    width: 100%;
  }

  .get-touch-call {
    width: 100%;
    box-sizing: border-box;
  }

  .get-touch-form {
    padding: 1.25rem;
  }

  .lightbox {
    padding: 0.75rem;
  }

  .lightbox-close {
    top: max(0.65rem, env(safe-area-inset-top));
    right: max(0.65rem, env(safe-area-inset-right));
    width: 40px;
    height: 40px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.45rem;
  }

  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }

  .lightbox-image {
    max-height: min(72vh, 720px);
    border-radius: 10px;
  }

  .reveal {
    transform: translateY(14px);
  }

  .academy h2,
  .academy-content > p {
    width: 100%;
  }

  .academy-content {
    padding-block: 3.25rem;
  }
}

.treatments-hero {
  min-height: 52vh;
  min-height: 52svh;
}

.treatments-hero .page-hero h1,
.treatments-hero h1 {
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}

.menu-page {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.menu-page-inner {
  max-width: min(900px, 100%);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.menu-hint {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.menu-toolbar-actions {
  display: flex;
  gap: 0.65rem;
}

.menu-tool-btn {
  border: 1px solid rgba(168, 132, 79, 0.35);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.menu-tool-btn:hover,
.menu-tool-btn:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--gold-deep);
}

.tx-accordion {
  display: grid;
  gap: 0.85rem;
}

.tx-acc-item {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(168, 132, 79, 0.22);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.tx-acc-item.is-open {
  border-color: rgba(168, 132, 79, 0.5);
}

.tx-acc-item h2 {
  margin: 0;
}

.tx-acc-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
}

.tx-acc-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.25;
}

.tx-acc-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: rgba(196, 165, 116, 0.2);
  color: var(--gold-deep);
  font-size: 0.85rem;
  font-weight: 500;
}

.tx-acc-icon {
  width: 1.15rem;
  height: 1.15rem;
  position: relative;
}

.tx-acc-icon::before,
.tx-acc-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.tx-acc-icon::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
  transform: translateY(-50%);
}

.tx-acc-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}

.tx-acc-item.is-open .tx-acc-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.tx-acc-panel {
  padding: 0 1.25rem 1.35rem;
  border-top: 1px solid rgba(168, 132, 79, 0.16);
}

.tx-panel-intro {
  margin: 1rem 0 1.15rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.tx-item-list {
  display: grid;
  gap: 0.75rem;
}

.tx-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.1rem 1.1rem;
  background: rgba(251, 248, 243, 0.85);
  border: 1px solid rgba(75, 57, 50, 0.08);
  border-radius: 12px;
}

.tx-item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.25;
}

.tx-item-note {
  margin: 0 0 0.7rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.tx-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
}

.tx-item-duration,
.tx-item-save {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
}

.tx-item-duration {
  background: rgba(75, 57, 50, 0.08);
  color: var(--ink-soft);
}

.tx-item-save {
  background: rgba(168, 132, 79, 0.18);
  color: var(--gold-deep);
}

.tx-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.7rem;
  min-width: 0;
}

.tx-item-price,
.tx-item-was,
.tx-item-save {
  display: none !important;
}

.tx-item-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.9rem;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.tx-item-cta:hover,
.tx-item-cta:focus-visible {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.menu-page-cta {
  margin-top: 2.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(168, 132, 79, 0.25);
  border-radius: 18px;
}

.menu-page-cta h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink);
}

.menu-page-cta p {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    align-items: center;
  }

  .results-carousel .carousel-track {
    --carousel-visible: 1.15;
  }

  .treatment-chips {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .treatment-chips::-webkit-scrollbar {
    display: none;
  }

  .treatment-chip {
    flex: 0 0 auto;
  }

  .tx-item {
    grid-template-columns: 1fr;
  }

  .tx-item-side {
    align-items: stretch;
    min-width: 0;
  }

  .tx-item-cta {
    width: 100%;
  }

  .tx-acc-trigger {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title icon"
      "count icon";
  }

  .tx-acc-title { grid-area: title; }
  .tx-acc-count { grid-area: count; justify-self: start; }
  .tx-acc-icon { grid-area: icon; }
}

.about-page {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.about-hero {
  min-height: 58vh;
  min-height: 58svh;
}

.about-hero .page-hero-media img {
  object-position: center 40%;
}

.about-hero h1 {
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}

.about-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
}

.about-hero-pills span {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(246, 241, 234, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(246, 241, 234, 0.9);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-page-grid {
  max-width: var(--content);
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.about-chloe-grid {
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
}

.about-chloe-grid .about-page-frame img {
  object-position: center top;
}

.about-page-copy .section-label {
  margin-bottom: 0.75rem;
}

.about-page-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.12;
}

.about-page-copy h2 em {
  font-style: normal;
  color: var(--gold-deep);
}

.about-lead {
  margin: 0 0 1.15rem;
  color: var(--ink);
  max-width: 38rem;
  font-size: clamp(1.12rem, 1.02rem + 0.3vw, 1.28rem);
  line-height: 1.65;
  font-weight: 400;
}

.about-page-copy > p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  max-width: 38rem;
  font-size: clamp(1.05rem, 1rem + 0.25vw, 1.15rem);
  line-height: 1.75;
}

.about-pull {
  margin: 1.5rem 0 0;
  padding: 1.15rem 0 1.15rem 1.15rem;
  border-left: 3px solid var(--gold-deep);
  background: linear-gradient(90deg, rgba(196, 165, 116, 0.12), transparent 70%);
}

.about-pull p {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-transform: none;
  color: var(--ink);
}

.about-pull cite {
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

.about-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.about-page-visual {
  position: relative;
}

.about-page-stack {
  position: relative;
  padding-bottom: 2.5rem;
  padding-right: 2rem;
}

.about-page-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 520px;
  box-shadow: 0 28px 60px rgba(29, 24, 21, 0.16);
  z-index: 1;
}

.about-page-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(246, 241, 234, 0.45);
  border-radius: 14px;
  z-index: 1;
  pointer-events: none;
}

.about-page-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-page-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46%, 220px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
  border: 4px solid var(--paper);
  box-shadow: 0 18px 40px rgba(29, 24, 21, 0.18);
  z-index: 2;
}

.about-page-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-page-caption {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

.about-creds {
  max-width: var(--content);
  margin: 0 auto 3.5rem;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-cred {
  padding: 1.35rem 1.2rem 1.4rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(246, 241, 234, 0.5));
  border: 1px solid rgba(168, 132, 79, 0.28);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(29, 24, 21, 0.07);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.about-cred:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 132, 79, 0.5);
}

.about-cred-icon {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
}

.about-cred h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.25;
}

.about-cred p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.about-academy-banner {
  position: relative;
  margin: 0 0 4rem;
  min-height: clamp(280px, 48vw, 560px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.about-academy-media {
  position: absolute;
  inset: 0;
}

.about-academy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-academy-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(29, 24, 21, 0.88) 0%, rgba(29, 24, 21, 0.72) 42%, rgba(29, 24, 21, 0.4) 100%),
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(196, 165, 116, 0.18), transparent 60%);
}

.about-academy-content {
  position: relative;
  z-index: 1;
  max-width: var(--content);
  width: 100%;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  color: var(--cream);
}

.about-academy-content .section-label {
  color: var(--gold-soft);
}

.about-academy-content h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: var(--cream);
  line-height: 1.15;
}

.about-academy-content > p {
  margin: 0 0 1.25rem;
  color: rgba(246, 241, 234, 0.82);
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.18rem);
  line-height: 1.7;
}

.about-academy-content .about-split-list {
  margin-bottom: 1.6rem;
}

.about-academy-content .about-split-list li {
  color: rgba(246, 241, 234, 0.92);
}

.about-academy-content .about-split-list li::before {
  background: var(--gold-soft);
}

.about-split-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.about-split-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.98rem;
}

.about-split-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold-deep);
}

.jenny-gallery {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.jenny-gallery .section-head {
  padding-left: 0;
  padding-right: 0;
}

.jenny-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(160px, 18vw);
  gap: 0.85rem;
}

.jenny-shot {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #3d3229;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.jenny-shot-lg {
  grid-column: span 2;
  grid-row: span 2;
}

.jenny-shot-wide {
  grid-column: span 2;
}

.jenny-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}

.jenny-shot span {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(29, 24, 21, 0.7);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.jenny-shot:hover img {
  transform: scale(1.05);
}

.jenny-shot:hover span {
  opacity: 1;
  transform: none;
}

.jenny-gallery-note {
  margin: 1.35rem 0 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.jenny-gallery-note a {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(168, 132, 79, 0.35);
}

.jenny-gallery-note a:hover {
  border-bottom-color: var(--gold-deep);
}

.jenny-highlight {
  max-width: var(--content);
  margin: 0 auto 2.5rem;
  padding: 0 var(--gutter);
}

.jenny-badges {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1.2rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(246, 241, 234, 0.55));
  border: 1px solid rgba(168, 132, 79, 0.35);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(29, 24, 21, 0.08);
}

.jenny-badges li {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}

.insta-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.5rem 0 0.5rem;
}

.insta-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(168, 132, 79, 0.28);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.insta-card:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 132, 79, 0.55);
  background: rgba(255, 255, 255, 0.92);
}

.insta-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

.insta-card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.insta-cta {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.about-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.btn-ghost.dark {
  color: var(--ink);
  border: 1px solid rgba(168, 132, 79, 0.45);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 24px rgba(29, 24, 21, 0.08);
}

.btn-ghost.dark:hover,
.btn-ghost.dark:focus-visible {
  background: linear-gradient(155deg, #e0c998 0%, #c9a96e 50%, #b08d4f 100%);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--charcoal);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 16px 34px rgba(176, 141, 79, 0.28);
}

.treatments-hero .page-hero-media img {
  object-position: center 50%;
}

.about-info-grid {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.about-info-card {
  padding: 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(168, 132, 79, 0.25);
  border-radius: 16px;
}

.about-info-card h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.about-info-card p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.about-hours {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.about-hours > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  font-size: 0.98rem;
}

.about-hours dt {
  margin: 0;
  color: var(--ink-faint);
  font-weight: 400;
}

.about-hours dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

.google-reviews-head {
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.about-review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .about-creds {
    grid-template-columns: 1fr 1fr;
  }

  .jenny-gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(160px, 36vw);
  }

  .jenny-shot-lg,
  .jenny-shot-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 980px) {
  .about-page-grid,
  .about-info-grid,
  .jenny-badges,
  .insta-links {
    grid-template-columns: 1fr;
  }

  .about-creds {
    grid-template-columns: 1fr 1fr;
  }

  .about-page-stack {
    padding-right: 1.25rem;
    padding-bottom: 1.75rem;
  }

  .about-page-accent {
    width: min(42%, 160px);
  }

  .about-page-frame,
  .about-page-frame img {
    min-height: min(360px, 55vw);
  }

  .about-academy-banner {
    min-height: 0;
  }

  .jenny-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-score {
    justify-content: flex-start;
  }

  .reviews-cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .jenny-gallery-mosaic {
    gap: 0.45rem;
    grid-auto-rows: minmax(110px, 46vw);
  }

  .service-copy {
    padding: 1.15rem;
  }

  .menu-block {
    padding: 1.25rem 1.1rem 1.15rem;
  }
}

/* Keep mobile sizing after later page-specific rules */
@media (max-width: 980px) {
  .page-hero,
  .about-hero,
  .treatments-hero,
  .contact-hero {
    min-height: 48svh;
  }

  .academy {
    min-height: 58svh;
  }

  .about-page-frame,
  .about-page-frame img {
    min-height: min(360px, 55vw);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: min(88svh, 620px);
  }

  .page-hero,
  .about-hero,
  .treatments-hero,
  .contact-hero {
    min-height: 42svh;
  }

  .academy {
    min-height: 52svh;
  }

  .about-page,
  .menu-page,
  .contact-page {
    padding-block: 3.25rem;
  }

  .menu-page {
    padding-bottom: 3.75rem;
  }

  .about-visual,
  .about-visual img {
    min-height: min(240px, 62vw);
  }

  .about-page-frame,
  .about-page-frame img {
    min-height: min(260px, 68vw);
  }

  .about-page-accent {
    width: min(38%, 120px);
  }

  .about-hero h1,
  .contact-hero h1,
  .treatments-hero h1 {
    font-size: clamp(1.45rem, 7vw, 1.95rem);
  }

  .tx-acc-trigger {
    min-height: 64px;
    padding: 1rem 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img,
  .page-hero-media img,
  body.home .home-hero-media img { animation: none; }
  .carousel-track { scroll-behavior: auto; }
  .marquee-track,
  .reviews-ticker-track { animation: none; }
  .marquee-track {
    overflow-x: auto;
    width: 100%;
    padding-inline: var(--gutter);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .studio-slide {
    scroll-snap-align: start;
  }
  .studio-slide:hover img,
  .jenny-shot:hover img,
  .about-person-visual:hover .about-person-frame img,
  body.home .home-path:hover img,
  body.home .home-team-card:hover img {
    transform: none;
  }
  .nav {
    transition: none;
  }
  .btn,
  .nav-book,
  .nav-book-mobile,
  .service-cta,
  .enquiry-popup,
  .enquiry-popup-dialog,
  .enquiry-fab,
  .enquiry-fab-pulse {
    transition: none;
    animation: none;
  }
  .btn:hover,
  .btn:active,
  .nav-book:hover,
  .service-cta:hover,
  .enquiry-fab:hover,
  .enquiry-fab:focus-visible {
    transform: none;
  }
  .btn-primary::before {
    display: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  body.home .home-academy-track {
    transition: none;
  }
}


/* =========================================================
   Homepage — fresh engagement layout
   Scoped under body.home so other pages stay unchanged
   ========================================================= */

   body.home {
    --home-ink: #1f1c19;
    --home-soft: #4f4841;
    --home-gold: #a08962;
    --home-gold-deep: #7d6a4a;
    --home-mist: #f3efe8;
    --home-stone: #e7e0d5;
    --home-night: #241f1b;
    --home-trust-h: 5.75rem;
  }
  
  /* ----- Hero: fills viewport with trust bar visible below ----- */
  body.home .home-hero {
    position: relative;
    height: calc(100svh - var(--header-h) - var(--home-trust-h));
    min-height: 28rem;
    max-height: calc(100svh - var(--header-h) - var(--home-trust-h));
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #f7f5f1;
  }
  
  body.home .home-hero-media {
    position: absolute;
    inset: 0;
  }
  
  body.home .home-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.04);
    animation: homeHeroDrift 24s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
  }
  
  body.home .home-hero-veil {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(105deg, rgba(20, 17, 14, 0.78) 0%, rgba(20, 17, 14, 0.48) 38%, rgba(20, 17, 14, 0.22) 62%, rgba(20, 17, 14, 0.5) 100%),
      linear-gradient(180deg, rgba(20, 17, 14, 0.35) 0%, transparent 32%, rgba(20, 17, 14, 0.58) 100%);
  }
  
  body.home .home-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: clamp(2rem, 5vh, 3.5rem) var(--gutter);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  body.home .home-hero-panel {
    width: min(100%, 38rem);
    padding: 0;
    background: transparent;
    border: 0;
  }

  body.home .home-hero-eyebrow {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--home-gold);
  }

  body.home .home-hero-panel h1 {
    margin: 0;
  }
  
  body.home .home-hero-brand {
    display: block;
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.45rem, 6vw, 3.85rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    color: #f7f5f1;
  }
  
  body.home .home-hero-line {
    display: block;
    margin: 0 0 1.85rem;
    max-width: 34rem;
    font-family: var(--font-body);
    font-size: clamp(0.98rem, 0.92rem + 0.22vw, 1.12rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1.7;
    color: rgba(247, 245, 241, 0.9);
  }
  
  body.home .home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 0.9rem;
    justify-content: flex-start;
  }

  body.home .home-hero-actions .btn-primary {
    min-height: 48px;
    padding-inline: 1.4rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  }

  body.home .home-hero-actions .btn-ghost.light {
    min-height: 48px;
    padding-inline: 1.3rem;
    background: rgba(247, 245, 241, 0.06);
    border-color: rgba(247, 245, 241, 0.45);
  }

  body.home .home-hero-actions .btn-ghost.light:hover,
  body.home .home-hero-actions .btn-ghost.light:focus-visible {
    background: #f7f5f1;
    color: #1f1c19;
    border-color: #f7f5f1;
  }
  
  body.home .home-hero-scroll {
    display: none;
  }
  
  @keyframes homeHeroDrift {
    from { transform: scale(1.04) translate3d(0, 0, 0); }
    to { transform: scale(1.08) translate3d(0, -1.2%, 0); }
  }
  
/* ----- Trust rail (stats) ----- */
body.home .home-rail {
  background: var(--home-night);
  color: #f7f5f1;
  border: 0;
  padding: 0 !important;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

body.home .home-rail-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0.85rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  align-items: center;
}

body.home .home-rail-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.35rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.home .home-rail-item:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

body.home .home-rail-item + .home-rail-item {
  border-left: 1px solid rgba(247, 245, 241, 0.12);
  padding-left: 1.25rem;
}

body.home .home-rail .trust-icon {
  width: 38px;
  height: 38px;
  background: rgba(160, 137, 98, 0.18);
  color: var(--home-gold);
}

body.home .home-rail .trust-text strong {
  color: #f7f5f1;
  font-size: 0.88rem;
}

body.home .home-rail .trust-text span {
  color: rgba(247, 245, 241, 0.68);
  font-size: 0.76rem;
}

/* ----- Welcome / story ----- */
body.home .home-story {
  background:
    radial-gradient(ellipse 70% 50% at 8% 0%, rgba(160, 137, 98, 0.08), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--home-mist) 100%);
}

body.home .home-story-inner {
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}

body.home .home-story-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  min-width: 0;
}

body.home .home-story-copy .section-label {
  margin-bottom: 0.55rem;
  color: var(--home-gold-deep);
}

body.home .home-story-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--home-ink);
}

body.home .home-story-copy > p {
  margin: 0 0 0.95rem;
  color: var(--home-soft);
  font-size: clamp(0.92rem, 0.88rem + 0.12vw, 1rem);
  line-height: 1.7;
}

body.home .home-story-copy > p:last-child {
  margin-bottom: 0;
}

body.home .home-team {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

body.home .home-team-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 0.9rem 1.1rem 0.9rem 0.9rem;
  background: #faf8f4;
  border: 1px solid rgba(168, 132, 79, 0.22);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(31, 28, 25, 0.05);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

body.home .home-team-card:hover,
body.home .home-team-card:focus-visible {
  border-color: rgba(168, 132, 79, 0.4);
  box-shadow: 0 14px 32px rgba(31, 28, 25, 0.08);
  transform: translateY(-2px);
}

body.home .home-team-card img {
  width: 76px;
  height: 76px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home .home-team-card:hover img {
  transform: scale(1.03);
}

body.home .home-team-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-ink);
}

body.home .home-team-card span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--home-soft);
  line-height: 1.45;
}

body.home .home-story-visual {
  position: relative;
  min-height: 100%;
  align-self: stretch;
}

body.home .home-story-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(31, 28, 25, 0.1);
}

body.home .home-story-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  right: auto;
  max-width: min(100% - 1.7rem, 16rem);
  padding: 0.7rem 0.85rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-left: 2px solid var(--home-gold);
  border-radius: 4px;
}

body.home .home-story-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--home-ink);
}

body.home .home-story-badge span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.74rem;
  color: var(--home-soft);
  line-height: 1.4;
}

/* ----- Dual pathways ----- */
  body.home .home-paths {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: min(58vh, 520px);
    padding-top: 0 !important;
  }
  
  body.home .home-path {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 320px;
    overflow: hidden;
    color: #f7f5f1;
    text-decoration: none;
  }
  
  body.home .home-path img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  body.home .home-path:hover img,
  body.home .home-path:focus-visible img {
    transform: scale(1.06);
  }
  
  body.home .home-path-veil {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(31, 28, 25, 0.1) 0%, rgba(31, 28, 25, 0.72) 100%);
    transition: background 0.4s ease;
  }
  
  body.home .home-path:hover .home-path-veil {
    background:
      linear-gradient(180deg, rgba(31, 28, 25, 0.05) 0%, rgba(31, 28, 25, 0.8) 100%);
  }
  
  body.home .home-path-copy {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 4vw, 3.5rem);
  }
  
  body.home .home-path-num {
    display: block;
    margin-bottom: 0.85rem;
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--home-gold);
  }
  
  body.home .home-path h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    color: #f7f5f1;
  }
  
  body.home .home-path p {
    margin: 0 0 1.35rem;
    color: rgba(247, 245, 241, 0.86);
    font-size: 0.98rem;
    line-height: 1.6;
  }
  
  body.home .home-path-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f7f5f1;
    border-bottom: 1px solid rgba(247, 245, 241, 0.45);
    padding-bottom: 0.2rem;
    transition: gap 0.3s ease, border-color 0.3s ease;
  }
  
  body.home .home-path:hover .home-path-cta {
    gap: 0.85rem;
    border-color: var(--home-gold);
  }
  
  /* ----- Treatments ----- */
  body.home .home-treatments {
    background: #fff;
    position: relative;
  }
  
  body.home .home-treatments::before {
    content: none;
  }
  
  body.home .home-treatments .section-head {
    text-align: left;
    margin: 0 auto 2rem;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem 2rem;
    align-items: end;
  }
  
  body.home .home-treatments .section-head h2 {
    margin: 0;
    text-align: left;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    letter-spacing: 0;
  }
  
  body.home .home-treatments .section-intro {
    margin: 0;
    text-align: left;
    color: var(--home-soft);
  }
  
  body.home .home-treatments .treatment-chips {
    justify-content: flex-start;
    margin: 0;
    grid-column: 1 / -1;
  }
  
  body.home .home-service-grid {
    margin: 0.5rem var(--gutter) 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  
  body.home .home-treatments .service-card {
    width: 100%;
    height: 200px;
    aspect-ratio: auto;
    border-radius: 6px;
  }

  body.home .home-treatments .service-cta {
    white-space: nowrap;
    border-radius: 4px;
  }
  
  /* ----- Results ----- */
  
  
  body.home .home-results .section-head {
    text-align: center;
    margin: 0 auto 1.75rem;
    padding: 0 var(--gutter);
  }
  
  body.home .home-results .section-head h2 {
    text-align: center;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
  }
  
  body.home .home-results .results-carousel .carousel-track {
    --carousel-visible: 3.3;
  }
  
  body.home .home-results .results-shot,
  body.home .home-results .results-card {
    border-radius: 6px;
  }
  
  /* ----- Academy ----- */
  body.home .home-academy {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--ink);
    background:
      radial-gradient(ellipse 70% 50% at 92% 8%, rgba(160, 137, 98, 0.1), transparent 55%),
      radial-gradient(ellipse 55% 45% at 0% 100%, rgba(160, 137, 98, 0.07), transparent 50%),
      linear-gradient(180deg, #f3efe8 0%, #fffcf8 48%, #fff 100%);
    box-shadow: none;
  }

  body.home .home-academy::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      linear-gradient(90deg, transparent 0%, rgba(160, 137, 98, 0.04) 50%, transparent 100%);
    opacity: 1;
  }

  body.home .home-academy::after {
    content: "";
    position: absolute;
    width: min(380px, 48vw);
    height: min(380px, 48vw);
    right: -6%;
    top: 42%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160, 137, 98, 0.12) 0%, transparent 68%);
    filter: blur(10px);
  }

  body.home .home-academy-inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: stretch;
  }
  
  body.home .home-academy-visual {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    min-height: 0;
    height: 100%;
    align-self: stretch;
    box-shadow:
      0 0 0 1px rgba(168, 132, 79, 0.2),
      0 16px 36px rgba(31, 28, 25, 0.08);
  }

  body.home .home-academy-carousel {
    position: relative;
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  body.home .home-academy-viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 6px;
    width: 100%;
    height: 100%;
  }

  body.home .home-academy-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  body.home .home-academy-slide {
    margin: 0;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 0;
    background: #f3efe8;
  }

  body.home .home-academy-slide img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  body.home .home-academy-copy {
    min-width: 0;
  }

  body.home .home-academy-carousel .carousel-btn {
    border-color: rgba(168, 132, 79, 0.35);
    background: rgba(255, 252, 248, 0.92);
    color: var(--ink);
    left: 0.65rem;
  }

  body.home .home-academy-carousel .carousel-btn-next {
    left: auto;
    right: 0.65rem;
  }

  body.home .home-academy-carousel .carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.85rem;
    z-index: 4;
    margin: 0;
    justify-content: center;
  }

  body.home .home-academy-carousel .carousel-dot {
    background: rgba(58, 53, 49, 0.28);
  }

  body.home .home-academy-carousel .carousel-dot.is-active {
    background: var(--home-gold);
  }
  
  body.home .home-academy .section-label {
    color: var(--home-gold-deep);
  }
  
  body.home .home-academy h2 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--ink);
  }
  
  body.home .home-academy-copy > p {
    margin: 0 0 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
  }

  body.home .home-academy-copy > p:last-of-type {
    margin-bottom: 1.5rem;
  }
  
  body.home .home-academy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
  }
  
  body.home .home-academy .btn-ghost {
    color: var(--ink);
    border-color: rgba(58, 53, 49, 0.28);
  }
  
  body.home .home-academy .btn-ghost:hover,
  body.home .home-academy .btn-ghost:focus-visible {
    background: rgba(160, 137, 98, 0.1);
    color: var(--ink);
    border-color: var(--gold-deep);
  }
  
  /* ----- Gallery ----- */
  body.home .home-gallery {
    background: #fff;
    overflow: hidden;
  }
  
  body.home .home-gallery .studio-head {
    text-align: left;
    padding: 0 var(--gutter);
    margin: 0 auto 1.5rem;
  }
  
  body.home .home-gallery .studio-head h2 {
    text-align: left;
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  }
  
  body.home .home-gallery .studio-slide {
    border-radius: 6px;
    width: min(300px, 68vw);
  }
  
  body.home .home-path:focus-visible {
    outline: 2px solid var(--home-gold);
    outline-offset: -4px;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    body.home {
      --home-trust-h: 8.75rem;
    }

    body.home .home-paths {
      min-height: 0;
      padding-top: 0 !important;
    }
  
    body.home .home-path {
      min-height: 280px;
    }

    body.home .home-service-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.home .home-treatments .service-card {
      height: 180px;
    }

    body.home .home-treatments .service-cta {
      min-height: 36px;
      padding: 0.45rem 0.85rem;
      font-size: 0.75rem;
      border-radius: 4px;
    }

    body.home .home-story-inner,
    body.home .home-academy-inner,
    body.home .home-treatments .section-head {
      grid-template-columns: 1fr;
    }
  
    body.home .home-story-visual {
      min-height: 280px;
    }

    body.home .home-story-visual img {
      position: relative;
      inset: auto;
      min-height: 0;
      height: clamp(240px, 48vw, 320px);
    }

    body.home .home-academy-visual {
      height: clamp(260px, 52vw, 360px);
      min-height: clamp(260px, 52vw, 360px);
    }

    body.home .home-academy-viewport {
      position: absolute;
      inset: 0;
    }

    body.home .home-academy-slide,
    body.home .home-academy-slide img {
      height: 100%;
      min-height: 0;
    }

    body.home .home-team {
      grid-template-columns: 1fr;
    }

    body.home .home-rail-inner {
      grid-template-columns: 1fr 1fr;
      gap: 0.55rem 1rem;
      padding-block: 0.7rem;
    }

    body.home .home-rail-item + .home-rail-item {
      border-left: 0;
      padding-left: 0;
    }
  
    body.home .home-results .results-carousel .carousel-track {
      --carousel-visible: 2.15;
    }
  }
  
  @media (max-width: 720px) {
    body.home {
      --home-trust-h: 9.5rem;
    }

    body.home .home-hero {
      min-height: 22rem;
    }

    body.home .home-rail-inner {
      grid-template-columns: 1fr 1fr;
      gap: 0.45rem 0.75rem;
    }
  
    body.home .home-team {
      grid-template-columns: 1fr;
    }
  
    body.home .home-results .results-carousel .carousel-track {
      --carousel-visible: 1.2;
    }
  
    body.home .home-hero-brand {
      font-size: clamp(2.2rem, 11vw, 3rem);
    }

    body.home .home-rail .trust-text span {
      display: none;
    }
  }

  @media (max-width: 767px) {
    body.home .home-service-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
    }

    body.home .home-treatments .service-card {
      aspect-ratio: auto;
      height: auto;
      min-height: 0;
    }

    body.home .home-treatments .service-copy {
      position: relative;
      inset: auto;
      gap: 0.65rem;
      padding: 1rem 0.75rem 0.9rem;
      justify-content: flex-start;
    }

    body.home .home-treatments .service-copy h3 {
      font-size: clamp(0.78rem, 3.2vw, 0.92rem);
      line-height: 1.25;
      letter-spacing: 0.03em;
    }

    body.home .home-treatments .service-cta {
      width: auto;
      max-width: 100%;
      min-height: 34px;
      padding: 0.4rem 0.75rem;
      border-radius: 4px;
      font-size: 0.68rem;
      letter-spacing: 0.02em;
      white-space: nowrap;
      box-shadow: none;
    }

    body.home .home-treatments .service-cta::after {
      font-size: 0.9em;
    }
  }

  @media (max-width: 575px) {
    body.home .home-paths {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.home .home-path:last-child {
      grid-column: 1 / -1;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    body.home .home-hero-media img {
      animation: none;
    }

    body.home .home-academy-track {
      transition: none;
    }
  }


/* ----- Reviews: 3-up carousel ----- */
body.home .reviews-carousel {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

body.home .reviews-carousel-btn {
  display: none !important;
}

body.home .reviews-carousel .review-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * 1rem) / 3);
  grid-template-columns: unset;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.15rem 0 0.35rem;
  width: 100%;
}

body.home .reviews-carousel .review-grid::-webkit-scrollbar {
  display: none;
}

body.home .reviews-carousel .review-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-width: 0;
  max-width: none;
  width: auto;
  flex: unset;
  height: auto;
  min-height: 100%;
}

body.home .reviews-carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

body.home .reviews-carousel-dots .carousel-dot {
  background: rgba(31, 28, 25, 0.18);
}

body.home .reviews-carousel-dots .carousel-dot.is-active {
  background: var(--home-gold);
}

@media (max-width: 980px) {
  body.home .reviews-carousel .review-grid {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 768px) {
  body.home .reviews-carousel {
    display: block;
    padding: 0;
    grid-template-columns: unset;
    grid-template-areas: unset;
  }

  body.home .reviews-carousel .review-grid {
    display: grid;
    grid-area: unset;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 1rem) / 2);
  }

  body.home .reviews-carousel-dots {
    display: flex;
    margin-top: 1rem;
  }
}

@media (max-width: 720px) {
  body.home .reviews-carousel .review-grid {
    grid-auto-columns: 100%;
  }
}

/* ----- Uniform section spacing (user request) ----- */
body.home .home-story,
body.home .home-paths,
body.home .home-treatments,
body.home .home-results,
body.home .home-academy,
body.home .home-gallery,
body.home .reviews,
body.home .get-touch,
body.home .book-cta,
body.home .treatments,
body.home .results,
body.home .studio {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

body.home .home-rail-inner,
body.home .home-story-inner,
body.home .home-story-copy > p,
body.home .home-story-copy h2,
body.home .home-story-badge,
body.home .home-path p,
body.home .home-path-copy,
body.home .home-treatments .section-head,
body.home .home-treatments .section-intro,
body.home .home-results .section-head,
body.home .home-academy-inner,
body.home .home-academy h2,
body.home .home-academy-copy > p,
body.home .home-gallery .studio-head,
body.home .home-hero-line,
body.home .home-service-grid,
body.home .section-cta-row,
body.home .reviews-inner,
body.home .get-touch-shell,
body.home .book-cta-inner,
body.home .book-cta-copy {
  max-width: none !important;
}

body.home .home-paths{padding-top: 0!important; padding-bottom: 0!important}

/* =========================================================
   Inner pages — homepage visual parity
   ========================================================= */

.page-hero {
  min-height: min(48svh, 520px);
}

.page-hero-veil {
  background:
    linear-gradient(105deg, rgba(20, 17, 14, 0.78) 0%, rgba(20, 17, 14, 0.48) 38%, rgba(20, 17, 14, 0.22) 62%, rgba(20, 17, 14, 0.5) 100%),
    linear-gradient(180deg, rgba(20, 17, 14, 0.35) 0%, transparent 32%, rgba(20, 17, 14, 0.58) 100%);
}

.page-hero-content {
  max-width: none;
  padding: clamp(2.5rem, 6vh, 4rem) var(--gutter);
}

.page-hero .eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
}

.page-hero h1,
.treatments-hero h1,
.about-hero h1,
.contact-hero h1 {
  font-weight: 500;
  letter-spacing: 0.04em;
}

.about-hero,
.treatments-hero,
.contact-hero {
  min-height: min(54svh, 560px);
}

.menu-page,
.about-page,
.about-studio,
.about-person,
.contact-page,
.contact.contact-page {
  padding-top: 60px;
  padding-bottom: 60px;
}

.menu-page,
.about-page,
.contact {
  background:
    radial-gradient(ellipse 70% 50% at 8% 0%, rgba(160, 137, 98, 0.08), transparent 55%),
    linear-gradient(180deg, #fff 0%, #f3efe8 100%);
}

.menu-page::before,
.about-page::before,
.contact::before {
  display: none;
}

.menu-page-inner {
  max-width: min(900px, 100%);
}

.tx-acc-item {
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid rgba(168, 132, 79, 0.22);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(31, 28, 25, 0.04);
}

.tx-acc-item.is-open {
  border-color: rgba(168, 132, 79, 0.42);
  box-shadow: 0 14px 32px rgba(31, 28, 25, 0.08);
}

.tx-item {
  border-radius: 6px;
  background:
    radial-gradient(ellipse 90% 70% at 12% 10%, rgba(160, 137, 98, 0.12), transparent 52%),
    linear-gradient(165deg, #fffcf8 0%, #f6f1ea 100%);
  border: 1px solid rgba(168, 132, 79, 0.18);
  box-shadow: none;
}

.about-page-grid,
.about-chloe-grid {
  max-width: none;
  margin-bottom: 2.25rem;
}

.about-creds {
  max-width: none;
  margin-bottom: 2.25rem;
}

.about-cred {
  padding: 1.15rem 1.05rem;
  background: #fffcf8;
  border: 1px solid rgba(168, 132, 79, 0.24);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(31, 28, 25, 0.04);
}

.jenny-gallery {
  max-width: none;
}

.jenny-shot {
  border-radius: 6px;
}

.jenny-gallery .section-head {
  margin-bottom: 1.75rem;
}

.contact-shell {
  max-width: none;
  gap: clamp(1.75rem, 3vw, 3rem);
}

.contact-form {
  border-radius: 8px;
  border: 1px solid rgba(168, 132, 79, 0.22);
  box-shadow: 0 12px 28px rgba(31, 28, 25, 0.05);
}

@media (min-width: 901px) {
  .contact.contact-page .contact-shell {
    position: relative;
    align-items: start;
  }

  .contact.contact-page .contact-shell::after {
    content: "";
    grid-column: 2;
  }

  .contact.contact-page .contact-form {
    position: absolute;
    top: 0;
    bottom: 0;
    right: var(--gutter);
    width: calc((100% - (2 * var(--gutter)) - clamp(1.75rem, 3vw, 3rem)) * 1.05 / 2);
    overflow-y: auto;
    box-sizing: border-box;
  }

  .contact.contact-page .contact-form .field textarea {
    min-height: 0;
    flex: 1 1 auto;
  }

  .contact.contact-page .contact-form {
    display: flex;
    flex-direction: column;
  }

  .contact.contact-page .contact-form .field:has(textarea) {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
    min-height: 0;
  }

  .contact.contact-page .contact-form .field:has(textarea) textarea {
    flex: 1 1 auto;
    min-height: 5.5rem;
    resize: none;
  }
}

.book-cta {
  padding: 60px 0;
}

.book-cta-inner {
  max-width: none;
}

.about-reviews,
.reviews.about-reviews {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about-reviews .review-card,
.reviews.about-reviews .review-card {
  border-radius: 6px;
  box-shadow: none;
}

@media (max-width: 768px) {
  .about-page,
  .about-studio,
  .about-person,
  .menu-page,
  .contact-page,
  .contact.contact-page,
  .about-reviews,
  .book-cta {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about-hero,
  .treatments-hero,
  .contact-hero,
  .page-hero {
    min-height: min(46svh, 420px);
  }
}

/* =========================================================
   About page — studio / founder / partner
   ========================================================= */

.about-studio,
.about-person {
  padding: 60px 0;
}

.about-studio {
  background:
    radial-gradient(ellipse 70% 50% at 8% 0%, rgba(160, 137, 98, 0.08), transparent 55%),
    linear-gradient(180deg, #fff 0%, #f3efe8 100%);
}

.about-studio-inner,
.about-person-inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-person-inner-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.about-studio-copy h2,
.about-person-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.12;
  color: var(--ink);
}

.about-studio-lead,
.about-person-copy .about-lead {
  margin: 0 0 1.15rem;
  color: var(--ink);
  font-size: clamp(1.08rem, 1rem + 0.25vw, 1.22rem);
  line-height: 1.7;
  max-width: 36rem;
}

.about-studio-copy > p,
.about-person-copy > p:not(.section-label):not(.about-person-role):not(.about-lead) {
  margin: 0 0 1.05rem;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 0.98rem + 0.15vw, 1.1rem);
  line-height: 1.75;
  max-width: 36rem;
}

.about-studio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(168, 132, 79, 0.22);
}

.about-studio-links a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  position: relative;
  transition: color 0.25s var(--ease);
}

.about-studio-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}

.about-studio-links a:hover {
  color: var(--ink);
}

.about-studio-links a:hover::after {
  transform: scaleX(1);
}

.about-studio-figure {
  margin: 0;
  position: relative;
}

.about-studio-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 4px;
}

.about-studio-figure figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1rem;
}

.about-studio-figure figcaption strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-studio-figure figcaption span {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.about-founder {
  background: #fffcf8;
}

.about-partner {
  background:
    radial-gradient(ellipse 65% 45% at 92% 8%, rgba(160, 137, 98, 0.1), transparent 55%),
    linear-gradient(180deg, #f3efe8 0%, #fff 100%);
}

.about-person-role {
  margin: -0.35rem 0 1.15rem !important;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep) !important;
}

.about-person-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-top: 1.75rem;
}

.about-person-stack {
  position: relative;
  padding-bottom: 2.25rem;
  padding-right: 1.75rem;
}

.about-person-stack-single {
  padding-bottom: 0;
  padding-right: 0;
}

.about-person-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: min(58vh, 560px);
  box-shadow: 0 22px 48px rgba(31, 28, 25, 0.12);
}

.about-person-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(58vh, 560px);
  object-fit: cover;
  object-position: center top;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-person-visual:hover .about-person-frame img {
  transform: scale(1.04);
}

.about-partner .about-person-frame img {
  object-position: center 15%;
}

.about-person-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42%, 200px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  border: 5px solid #fffcf8;
  box-shadow: 0 16px 36px rgba(31, 28, 25, 0.16);
  z-index: 2;
}

.about-person-accent img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-person .about-pull {
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .about-studio-inner,
  .about-person-inner,
  .about-person-inner-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-person-inner-reverse .about-person-visual {
    order: -1;
  }

  .about-person-frame,
  .about-person-frame img {
    min-height: min(52vw, 420px);
  }

  .about-studio-figure img {
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 640px) {
  .about-studio,
  .about-person {
    padding: 50px 0;
  }

  .about-person-stack {
    padding-bottom: 1.75rem;
    padding-right: 1.15rem;
  }

  .about-person-accent {
    width: min(46%, 140px);
    border-width: 4px;
  }

  .about-person-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-person-visual:hover .about-person-frame img {
    transform: none;
  }
}


/* =========================================================
   Quick enquiry popup
   ========================================================= */

.enquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.enquiry-popup.is-open {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.enquiry-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 18, 15, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.enquiry-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(90vh, 560px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fffcf8;
  border: 1px solid rgba(168, 132, 79, 0.28);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(20, 16, 12, 0.28);
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.enquiry-popup.is-open .enquiry-popup-dialog {
  transform: none;
}

.enquiry-popup-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 132, 79, 0.28);
  border-radius: 50%;
  background: #fffcf8;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.enquiry-popup-close:hover,
.enquiry-popup-close:focus-visible {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  outline: none;
}

.enquiry-popup-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.enquiry-popup-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.enquiry-popup-body {
  padding: 1.25rem 1.2rem 1.3rem;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  min-height: 0;
  max-height: min(90vh, 560px);
}

.enquiry-popup-eyebrow {
  margin: 0 0 0.3rem;
  padding-right: 1.75rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.enquiry-popup-body h2 {
  margin: 0 0 0.9rem;
  padding-right: 1.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ink);
}

.enquiry-popup-form .field {
  margin-bottom: 0.65rem;
}

.enquiry-popup-form .field label {
  margin-bottom: 0.25rem;
  font-size: 0.68rem;
}

.enquiry-popup-form .field input,
.enquiry-popup-form .field select,
.enquiry-popup-form .field textarea {
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  border-radius: 3px;
}

.enquiry-popup-form .field textarea {
  resize: none;
  min-height: 3.2rem;
}

.enquiry-popup-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.2rem;
  min-height: 42px;
  border-radius: 2px;
  font-size: 0.85rem;
}

.enquiry-popup-note {
  margin: 0.65rem 0 0;
  color: var(--gold-deep);
  font-size: 0.88rem;
}

body.enquiry-popup-open {
  overflow: hidden;
}

body.nav-open .enquiry-fab,
body.enquiry-popup-open .enquiry-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.enquiry-fab {
  position: fixed;
  right: max(1.1rem, env(safe-area-inset-right));
  bottom: max(1.1rem, env(safe-area-inset-bottom));
  z-index: 1350;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0.7rem 1.05rem 0.7rem 0.85rem;
  border: 1px solid rgba(168, 132, 79, 0.45);
  border-radius: 999px;
  background: var(--gold, #c4a574);
  color: #1f1c19;
  box-shadow:
    0 10px 28px rgba(31, 28, 25, 0.22),
    0 0 0 0 rgba(196, 165, 116, 0.45);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease),
    visibility 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  animation: enquiryFabFloat 3.2s ease-in-out infinite;
}

.enquiry-fab:hover,
.enquiry-fab:focus-visible {
  animation: none;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 32px rgba(31, 28, 25, 0.28);
  outline: none;
}

.enquiry-fab.is-hidden {
  animation: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
}

.enquiry-fab-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.enquiry-fab-label {
  line-height: 1;
}

.enquiry-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(196, 165, 116, 0.7);
  animation: enquiryFabPulse 2.4s ease-out infinite;
  pointer-events: none;
}

.enquiry-fab-pulse-delay {
  animation-delay: 1.2s;
}

@keyframes enquiryFabFloat {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes enquiryFabPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .contact.contact-page .contact-form {
    position: static;
    width: 100%;
    height: auto;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .about-studio-inner,
  .about-person-inner,
  .about-person-inner-reverse {
    gap: 1.5rem;
  }

  .about-person-frame,
  .about-person-frame img {
    min-height: min(58vw, 360px);
  }

  .floor-booking-shell {
    gap: 1.25rem;
  }

  .floor-day-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-item {
    gap: 0.85rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .enquiry-popup {
    padding: 0.75rem;
    align-items: end;
    overflow: hidden;
  }

  .enquiry-popup-dialog {
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    height: min(88dvh, 640px);
    max-height: min(88dvh, 640px);
    border-radius: 10px 10px 4px 4px;
    overflow: hidden;
  }

  .enquiry-popup-media {
    min-height: 100px;
    max-height: 120px;
    flex: 0 0 auto;
  }

  .enquiry-popup-body {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  .enquiry-fab-label {
    display: none;
  }

  .enquiry-fab {
    width: 3.35rem;
    height: 3.35rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .enquiry-popup,
  .enquiry-popup-dialog,
  .enquiry-fab,
  .enquiry-fab-pulse {
    animation: none;
    transition: none;
  }

  .enquiry-popup-dialog,
  .enquiry-fab,
  .enquiry-fab:hover,
  .enquiry-fab:focus-visible,
  .enquiry-fab.is-hidden {
    transform: none;
  }
}

/* =========================================================
   Responsive motion — mobile / touch
   ========================================================= */

@media (max-width: 768px) {
  .hero-media img,
  .page-hero-media img,
  body.home .home-hero-media img {
    animation: none !important;
    transform: scale(1.02);
  }

  .marquee-track {
    animation: none;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    padding-inline: var(--gutter);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
  }

  .marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .studio-slide {
    scroll-snap-align: start;
  }

  .reveal {
    transform: translateY(12px);
    transition-duration: 0.55s;
  }

  .delay-1 { transition-delay: 0.05s; }
  .delay-2 { transition-delay: 0.1s; }
  .delay-3 { transition-delay: 0.15s; }

  .enquiry-fab {
    animation: none;
  }

  .enquiry-fab-pulse {
    animation-duration: 2.8s;
  }

  .enquiry-popup-dialog {
    transition-duration: 0.3s;
  }

  body.home .home-academy-track {
    transition-duration: 0.4s;
  }
}

@media (hover: none), (pointer: coarse) {
  .studio-slide:hover img,
  .jenny-shot:hover img,
  .about-person-visual:hover .about-person-frame img,
  .service-card:hover,
  .tx-card:hover,
  .review-card:hover,
  body.home .home-path:hover img,
  body.home .home-team-card:hover,
  body.home .home-team-card:hover img,
  .about-jenny:hover,
  .tx-item-cta:hover,
  .menu-tool-btn:hover {
    transform: none;
  }

  .btn:hover,
  .btn:active,
  .nav-book:hover,
  .service-cta:hover,
  .enquiry-fab:hover {
    transform: none;
  }

  .marquee:hover .marquee-track {
    animation-play-state: running;
  }
}

/* =========================================================
   Floor hire booking
   ========================================================= */

.floor-room {
  padding: 60px 0 20px;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(160, 137, 98, 0.08), transparent 55%),
    linear-gradient(180deg, #fffcf8 0%, #fff 100%);
}

.floor-room-inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.floor-room-copy .section-label {
  margin-bottom: 0.65rem;
}

.floor-room-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
}

.floor-room-copy > p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 36rem;
}

.floor-room-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.floor-room-features li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink);
  line-height: 1.5;
  font-size: 0.98rem;
}

.floor-room-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.floor-room-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(168, 132, 79, 0.22);
  background: #f3efe8;
  aspect-ratio: 4 / 3;
}

.floor-room-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floor-room-media figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid rgba(168, 132, 79, 0.28);
  border-radius: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.floor-booking {
  padding: 60px 0;
  background:
    radial-gradient(ellipse 70% 50% at 8% 0%, rgba(160, 137, 98, 0.08), transparent 55%),
    linear-gradient(180deg, #fff 0%, #f3efe8 100%);
}

.floor-booking-inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.floor-booking-intro {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.floor-booking-intro h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
}

.floor-booking-intro p:not(.section-label) {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.floor-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.floor-price-card {
  padding: 1.15rem 1.2rem;
  background: #fffcf8;
  border: 1px solid rgba(168, 132, 79, 0.24);
  border-radius: 6px;
}

.floor-price-label {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.floor-price-time {
  margin: 0 0 0.65rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.floor-price-amount {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.floor-price-amount span {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.floor-booking-shell {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.floor-booking-panel,
.floor-summary-card {
  background: #fffcf8;
  border: 1px solid rgba(168, 132, 79, 0.22);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(31, 28, 25, 0.05);
}

.floor-booking-panel {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.floor-step + .floor-step {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(168, 132, 79, 0.18);
}

.floor-step h3 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.floor-week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.floor-week-label {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-align: center;
}

.floor-week-btn {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(168, 132, 79, 0.3);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.floor-week-btn:hover,
.floor-week-btn:focus-visible {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  outline: none;
}

.floor-day-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.55rem;
}

.floor-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.75rem 0.35rem;
  border: 1px solid rgba(168, 132, 79, 0.22);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.floor-day-name {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.floor-day-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
}

.floor-day-status {
  font-size: 0.68rem;
  color: var(--gold-deep);
}

.floor-day:hover:not(:disabled),
.floor-day:focus-visible:not(:disabled) {
  border-color: var(--gold-deep);
  outline: none;
}

.floor-day.is-selected {
  background: rgba(196, 165, 116, 0.16);
  border-color: var(--gold-deep);
}

.floor-day.is-partial:not(:disabled) {
  border-color: rgba(160, 137, 98, 0.5);
}

.floor-day.is-partial:not(:disabled) .floor-day-status {
  color: var(--gold-deep);
}

.floor-day.is-past,
.floor-day:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.floor-day.is-past .floor-day-status {
  color: var(--ink-faint);
}

.floor-option-grid {
  display: grid;
  gap: 0.65rem;
}

.floor-option {
  margin: 0;
  cursor: pointer;
}

.floor-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.floor-option span {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title price"
    "time price";
  gap: 0.15rem 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(168, 132, 79, 0.22);
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.floor-option strong {
  grid-area: title;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.floor-option em {
  grid-area: time;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.floor-option b {
  grid-area: price;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-deep);
}

.floor-option input:checked + span,
.floor-option:hover span {
  border-color: var(--gold-deep);
  background: rgba(196, 165, 116, 0.1);
}

.floor-hours-hint {
  margin: -0.35rem 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.floor-hours-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.floor-hour {
  padding: 0.7rem 0.5rem;
  border: 1px solid rgba(168, 132, 79, 0.22);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.floor-hour:hover,
.floor-hour:focus-visible {
  border-color: var(--gold-deep);
  outline: none;
}

.floor-hour.is-selected {
  background: rgba(196, 165, 116, 0.18);
  border-color: var(--gold-deep);
  font-weight: 600;
}

.floor-hour.is-booked,
.floor-hour:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
  background: #f3efe8;
}

.floor-summary-card {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  position: sticky;
  top: calc(var(--header-h, 80px) + 1rem);
}

.floor-summary-eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.floor-summary-list {
  margin: 0 0 1.25rem;
  padding: 0;
}

.floor-summary-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(168, 132, 79, 0.16);
}

.floor-summary-list dt {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.floor-summary-list dd {
  margin: 0;
  text-align: right;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.4;
}

.floor-summary-total dd {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold-deep);
}

.floor-booking-form .field {
  margin-bottom: 0.75rem;
}

.floor-booking-form .field label span {
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-faint);
  font-weight: 400;
}

.floor-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
}

.floor-form-note {
  margin: 0.85rem 0 0;
  color: var(--gold-deep);
  font-size: 0.95rem;
}

.floor-payment-fields {
  margin: 0.85rem 0 1rem;
  padding: 0.85rem 0 0;
  border: 0;
  border-top: 1px solid rgba(168, 132, 79, 0.18);
}

.floor-payment-fields legend {
  padding: 0;
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.floor-payment-details {
  margin-top: 0.65rem;
  padding: 0.75rem 0.85rem;
  background: rgba(196, 165, 116, 0.1);
  border: 1px solid rgba(168, 132, 79, 0.22);
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.floor-payment-details p {
  margin: 0 0 0.35rem;
}

.floor-payment-details p:last-child {
  margin-bottom: 0;
}

.se-cf7-contact .wpcf7-form,
.se-cf7-enquiry .wpcf7-form {
  margin: 0;
}

.se-cf7-contact .wpcf7-form p,
.se-cf7-enquiry .wpcf7-form p {
  margin: 0 0 0.75rem;
}

.se-cf7-missing {
  padding: 1rem;
  border: 1px dashed rgba(168, 132, 79, 0.4);
  border-radius: 6px;
  background: #fffcf8;
}

@media (max-width: 980px) {
  .floor-room-inner,
  .floor-booking-shell {
    grid-template-columns: 1fr;
  }

  .floor-summary-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .floor-day-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .floor-hours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .floor-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floor-price-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .floor-day-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Contact Form 7 — align with theme fields */
.se-cf7-contact .wpcf7-form label,
.se-cf7-enquiry .wpcf7-form label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.se-cf7-contact .wpcf7-form input[type="text"],
.se-cf7-contact .wpcf7-form input[type="email"],
.se-cf7-contact .wpcf7-form input[type="tel"],
.se-cf7-contact .wpcf7-form input[type="url"],
.se-cf7-contact .wpcf7-form select,
.se-cf7-contact .wpcf7-form textarea,
.se-cf7-enquiry .wpcf7-form input[type="text"],
.se-cf7-enquiry .wpcf7-form input[type="email"],
.se-cf7-enquiry .wpcf7-form input[type="tel"],
.se-cf7-enquiry .wpcf7-form select,
.se-cf7-enquiry .wpcf7-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(168, 132, 79, 0.28);
  border-radius: 4px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}

.se-cf7-contact .wpcf7-submit,
.se-cf7-enquiry .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border: 0;
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.se-cf7-contact .wpcf7-response-output,
.se-cf7-enquiry .wpcf7-response-output {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.85rem;
  border-radius: 4px;
}
