﻿:root {
  --white: #ffffff;
  --soft: #f3f3f3;
  --ink: #121212;
  --muted: #414141;
  --line: rgba(18, 18, 18, 0.14);
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --dark: #121212;
  --dark-2: #1c1b19;
  --max: 1180px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Outfit", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  font-weight: 300;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
}
.nav-container {
  width: 100%;
  min-height: 130px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.brand {
  width: 132px;
  min-height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.brand img { width: 118px; height: auto; }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 2.5rem; }
.nav-links a, .btn, .eyebrow, .meta-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links a { position: relative; white-space: nowrap; }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; }
.mobile-panel { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 2.5rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: transform 260ms var(--ease), background 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-accent { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-light { border-color: rgba(255,255,255,0.75); color: var(--white); }
.btn-ghost-static {
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.7);
  cursor: default;
}
.inline-actions {
  justify-content: flex-start;
  margin-top: 1.8rem;
}

.hero-page {
  min-height: 760px;
  display: grid;
  align-items: end;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}
.hero-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(212,175,55,0.14), transparent 30%), radial-gradient(circle at 78% 12%, rgba(18,18,18,0.08), transparent 28%);
  pointer-events: none;
}
.laser-hero {
  background: #f6f5f2;
}
.laser-field {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(212,175,55,0.18) 43%, transparent 48% 100%),
    repeating-linear-gradient(90deg, rgba(18,18,18,0.035) 0 1px, transparent 1px 96px);
  transform: translateX(-12%);
  animation: laserScan 14s linear infinite;
}
.hero-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 6.5rem 0 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
  position: relative;
  z-index: 1;
}
.laser-hero .hero-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.9fr);
  gap: clamp(2.75rem, 5vw, 5.5rem);
  align-items: center;
}
.hero-copy h1, h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-wrap: balance;
  margin: 0;
}
.hero-copy h1 { font-size: clamp(3.15rem, 5.7vw, 5.85rem); max-width: 820px; }
.laser-hero .hero-copy h1 {
  font-size: clamp(3.1rem, 5.15vw, 5.35rem);
  max-width: 740px;
}
.hero-copy p { max-width: 670px; margin-top: 1.6rem; font-size: clamp(1rem, 1.15vw, 1.15rem); color: #242424; }
.hero-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}
.hero-kicker-row span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(18,18,18,0.18);
  background: rgba(255,255,255,0.52);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.eyebrow { display: block; color: var(--gold); margin-bottom: 1.5rem; }
.hero-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.58);
  padding: 1.1rem;
  position: relative;
}
.hero-card img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.04); }
.laser-hero-card {
  box-shadow: 0 28px 70px rgba(18,18,18,0.14);
  width: min(100%, 510px);
  justify-self: end;
}
.laser-hero-card::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  z-index: 1;
  background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,0.26) 46%, transparent 58%);
  mix-blend-mode: screen;
  animation: lightSweep 9s var(--ease) infinite;
  pointer-events: none;
}
.hero-card .stamp {
  position: absolute;
  right: -1px;
  bottom: 2rem;
  width: 42%;
  min-width: 150px;
  background: var(--dark);
  color: var(--white);
  padding: 1.6rem 1.2rem;
  border: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2.45rem);
  line-height: 0.92;
  text-align: center;
}
.section { padding: clamp(5rem, 8vw, 8rem) 0; scroll-margin-top: 150px; }
.section.dark { background: var(--dark); color: var(--white); }
.section.soft { background: var(--soft); }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: 0.78fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: end; margin-bottom: 3.6rem; }
.section-head h2 { font-size: clamp(2.45rem, 4.2vw, 4.6rem); }
.section-head h2 + p { margin-top: 1.15rem; }
.section-head p { font-size: 1.08rem; max-width: 680px; }
.dark p, .dark .body-copy { color: rgba(255,255,255,0.78); }
.dark .eyebrow { color: var(--gold); }

.proof-grid, .content-grid, .faq-grid, .price-grid, .membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.dark .proof-grid, .dark .content-grid { border-color: rgba(255,255,255,0.16); }
.proof-card, .content-card, .faq-card, .price-card, .membership-card {
  min-height: 220px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.dark .proof-card, .dark .content-card { border-color: rgba(255,255,255,0.16); }
.proof-card h3, .content-card h3, .faq-card h3, .price-card h3, .membership-card h3 { font-family: var(--sans); font-size: 0.92rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; line-height: 1.4; }
.proof-card p, .content-card p, .faq-card p, .price-card p, .membership-card p { font-size: 1rem; }
.care-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.care-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}
.care-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.dark .care-list li { color: rgba(255,255,255,0.78); }

.laser-visual-band {
  min-height: 560px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}
.visual-band-media {
  position: absolute;
  inset: 0;
}
.visual-band-media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06) brightness(0.58);
}
.visual-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,18,18,0.88), rgba(18,18,18,0.36) 50%, rgba(18,18,18,0.72));
}
.laser-pulse {
  position: absolute;
  left: -20%;
  right: -20%;
  top: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.85), rgba(255,255,255,0.56), transparent);
  transform: rotate(-6deg);
  animation: pulseLine 5.6s var(--ease) infinite;
  opacity: 0.48;
}
.visual-band-content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.visual-band-content h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(3rem, 5.5vw, 6.2rem);
}
.visual-band-copy {
  max-width: 660px;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}
.visual-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin-top: 3rem;
  background: rgba(255,255,255,0.18);
}
.visual-stats span {
  display: block;
  min-height: 126px;
  padding: 1.35rem;
  background: rgba(18,18,18,0.58);
  color: rgba(255,255,255,0.78);
}
.visual-stats strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr); }
.media-frame { border: 1px solid var(--line); padding: 1.1rem; position: relative; background: var(--white); }
.dark .media-frame { background: #181816; border-color: rgba(255,255,255,0.18); }
.media-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(0.92) contrast(1.04); }
.marcia-laser-portrait img {
  aspect-ratio: 2 / 3;
  object-position: 50% 0;
}
.copy h2 { font-size: clamp(2.35rem, 4.1vw, 4.35rem); margin-bottom: 1.6rem; }
.copy p + p { margin-top: 1rem; }
.copy .btn { margin-top: 2rem; }
.rhythm-section {
  background:
    linear-gradient(90deg, rgba(212,175,55,0.05), transparent 44%),
    var(--white);
}
.laser-results-section {
  background: var(--dark);
  color: var(--white);
}
.results-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.results-copy h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 4.4vw, 4.8rem);
}
.results-copy p {
  margin-top: 1.4rem;
  color: rgba(255,255,255,0.78);
}
.results-note {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 0.9rem;
}
.results-figure {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.18);
  padding: clamp(0.65rem, 1vw, 1rem);
  background: rgba(255,255,255,0.04);
}
.results-figure img {
  width: 100%;
  aspect-ratio: 8 / 4.45;
  object-fit: cover;
}
.results-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.results-labels span {
  padding: 0.85rem 1rem;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}
.results-labels span + span { border-left: 1px solid rgba(255,255,255,0.18); }
.results-figure figcaption {
  margin-top: 0.85rem;
  color: rgba(255,255,255,0.56);
  font-size: 0.8rem;
}
.laser-proof-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f5f2 100%);
  overflow: hidden;
}
.laser-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}
.proof-photo {
  position: relative;
  margin: 0;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.proof-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}
.proof-photo-main img {
  aspect-ratio: 4 / 5;
  object-position: 50% 44%;
}
.proof-photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  background: rgba(18,18,18,0.74);
  color: rgba(255,255,255,0.84);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  line-height: 1.55;
}
.proof-photo-stack {
  display: grid;
  grid-template-rows: minmax(260px, 0.95fr) auto;
  gap: clamp(1.2rem, 3vw, 2rem);
}
.proof-photo-stack .proof-photo img {
  aspect-ratio: 1 / 1;
  min-height: 260px;
  object-position: 48% 58%;
}
.proof-note {
  border: 1px solid var(--line);
  background: var(--dark);
  color: var(--white);
  padding: clamp(1.6rem, 3vw, 2.2rem);
}
.proof-note h3 {
  margin: 1rem 0 1rem;
  color: var(--white);
  font-size: clamp(1.85rem, 2.9vw, 3rem);
}
.proof-note p {
  color: rgba(255,255,255,0.76);
}
.parallax-media img {
  transform: translateY(var(--parallax-y, 0px)) scale(1.04);
  transition: transform 120ms linear;
  will-change: transform;
}
.session-meter {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.8rem;
  background: var(--line);
  border: 1px solid var(--line);
}
.session-meter span {
  display: grid;
  place-items: center;
  min-height: 18px;
  background: var(--white);
  color: var(--muted);
}
.session-meter span:nth-child(-n + 5) {
  color: var(--ink);
  background: rgba(212,175,55,0.12);
}

.timeline { display: grid; gap: 1px; background: var(--line); }
.timeline-row { display: grid; grid-template-columns: 170px 1fr; gap: 1.35rem; background: var(--white); padding: 1.6rem 0; }
.timeline-row span { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.timeline-row h3 { font-family: var(--sans); font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; }

.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-strip img { aspect-ratio: 3 / 4; object-fit: cover; filter: saturate(0.92) contrast(1.04); }
.cta-band { text-align: center; padding: clamp(5rem, 9vw, 8rem) 1.5rem; background: var(--dark); color: var(--white); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 10%, rgba(212,175,55,0.18), transparent 36%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2.6rem, 4.8vw, 5.2rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 720px; margin: 0 auto 2rem; }
.cta-actions,
.membership-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.cta-actions.inline-actions {
  justify-content: flex-start;
}
.membership-actions { margin-top: 2.2rem; }
.care-section {
  position: relative;
  overflow: hidden;
}
.care-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(212,175,55,0.08) 50%, transparent 54% 100%),
    repeating-linear-gradient(0deg, transparent 0 64px, rgba(255,255,255,0.035) 65px);
  animation: laserScan 18s linear infinite;
  pointer-events: none;
}
.care-section .container {
  position: relative;
  z-index: 1;
}
.care-card {
  position: relative;
  background: rgba(255,255,255,0.035);
}
.step-num {
  display: block;
  margin-bottom: 1.35rem;
  color: rgba(212,175,55,0.72);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 2.8vw, 2.9rem);
  line-height: 1;
}
.faq-accordion {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 84px;
  padding: 1.35rem 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.96rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "-";
}
.faq-item p {
  max-width: 780px;
  padding: 0 0 1.6rem;
}
.footer { padding: 2rem 0; background: var(--dark); color: rgba(255,255,255,0.72); border-top: 1px solid rgba(255,255,255,0.12); }
.footer .container { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--white); }
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.footer-social-icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.footer-social-icon svg {
  display: block;
  width: 1.12rem;
  height: 1.12rem;
}
.footer-social-icon:hover,
.footer-social-icon:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 1; transform: translateY(18px); transition: transform 800ms var(--ease); }
.motion-ready .reveal.in { transform: translateY(0); }

@media (max-width: 900px) {
  .nav-container { width: 100%; min-height: 96px; padding: 0 1.5rem; }
  .brand { width: auto; min-height: 96px; }
  .brand img { width: 78px; }
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; width: 44px; height: 44px; background: transparent; border: 1px solid var(--ink); position: relative; }
  .menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; width: 18px; height: 1px; background: var(--ink); position: absolute; transition: transform 250ms var(--ease), opacity 250ms var(--ease); }
  .menu-toggle::before { transform: translateY(-6px); }
  .menu-toggle::after { transform: translateY(6px); }
  .site-header.menu-open .menu-toggle span { opacity: 0; }
  .site-header.menu-open .menu-toggle::before { transform: rotate(45deg); }
  .site-header.menu-open .menu-toggle::after { transform: rotate(-45deg); }
  .mobile-panel { display: block; position: fixed; z-index: 19; left: 0; right: 0; top: 96px; background: var(--white); border-bottom: 1px solid var(--line); padding: 1rem 24px 1.4rem; transform: translateY(-120%); transition: transform 300ms var(--ease); }
  .mobile-panel.open { transform: translateY(0); }
  .mobile-panel a { display: block; padding: 0.75rem 0; font-size: 0.86rem; letter-spacing: 0.12em; text-transform: uppercase; }
  .hero-page { min-height: auto; }
  .hero-grid, .section-head, .split, .split.reverse { grid-template-columns: 1fr; }
  .laser-hero .hero-grid { grid-template-columns: 1fr; }
  .laser-hero-card { width: 100%; justify-self: stretch; }
  .hero-grid { padding-top: 5rem; }
  .hero-copy h1 { font-size: clamp(3.3rem, 15vw, 5.6rem); }
  .laser-hero .hero-copy h1 { font-size: clamp(3.15rem, 14vw, 5.15rem); }
  .section { scroll-margin-top: 110px; }
  .proof-grid, .content-grid, .faq-grid, .price-grid, .membership-grid, .gallery-strip { grid-template-columns: 1fr; }
  .laser-proof-layout { grid-template-columns: 1fr; }
  .results-layout { grid-template-columns: 1fr; }
  .proof-photo img, .proof-photo-main img, .proof-photo-stack .proof-photo img { min-height: auto; aspect-ratio: 4 / 5; }
  .proof-photo-stack { grid-template-rows: auto; }
  .visual-stats { grid-template-columns: 1fr; }
  .laser-visual-band { min-height: 640px; }
  .session-meter { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .faq-item summary { align-items: flex-start; min-height: 72px; font-size: 0.86rem; line-height: 1.45; }
  .timeline-row { grid-template-columns: 1fr; gap: 0.7rem; }
  .container, .hero-grid { width: min(100% - 32px, var(--max)); }
  .hero-actions,
  .cta-actions,
  .membership-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .cta-actions .btn,
  .membership-actions .btn { width: 100%; }
}

@keyframes laserScan {
  0% { transform: translateX(-18%); }
  100% { transform: translateX(18%); }
}
@keyframes lightSweep {
  0%, 28% { transform: translateX(-120%); opacity: 0; }
  42% { opacity: 1; }
  64%, 100% { transform: translateX(120%); opacity: 0; }
}
@keyframes pulseLine {
  0%, 100% { transform: translateX(-12%) rotate(-6deg); opacity: 0.28; }
  45% { opacity: 0.78; }
  60% { transform: translateX(14%) rotate(-6deg); opacity: 0.48; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
  .parallax-media img { transform: none; }
}
.membership-card strong {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.membership-card .discount {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.6vw, 3.75rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: none;
}
.monthly-price {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nails-page .nails-hero {
  background:
    linear-gradient(125deg, rgba(255,255,255,0.82), rgba(243,243,243,0.96)),
    var(--soft);
}
.nails-hero .hero-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.9fr);
  gap: clamp(2.75rem, 5vw, 5.5rem);
  align-items: center;
}
.nails-hero .hero-copy h1 {
  max-width: 740px;
  font-size: clamp(3.1rem, 5.15vw, 5.35rem);
}
.nails-hero-card {
  width: min(100%, 510px);
  justify-self: end;
}
.nails-hero-card img {
  aspect-ratio: 4 / 5.15;
  object-position: 50% 50%;
}
.nails-page .section-head {
  grid-template-columns: 0.48fr minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.nails-page .section-head h2 {
  max-width: 760px;
  font-size: clamp(2.15rem, 3.55vw, 3.95rem);
}
.nails-page .section-head p {
  max-width: 650px;
  font-size: 1.02rem;
}
.nails-method-section {
  position: relative;
  overflow: hidden;
}
.nails-method-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(212,175,55,0.16), transparent 32%),
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,0.045) 46%, transparent 50% 100%);
  pointer-events: none;
}
.nails-method-section .container {
  position: relative;
  z-index: 1;
}
.nails-method-head {
  margin-bottom: 3rem;
}
.nails-method-head .eyebrow {
  margin-bottom: 1.15rem;
}
.nails-page .faq-item summary {
  text-wrap: balance;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.choice-card {
  background: var(--white);
  padding: 2.2rem;
}
.choice-card h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 1rem;
}
.cuticle-choice-section {
  background:
    linear-gradient(90deg, rgba(212,175,55,0.045), transparent 42%),
    var(--white);
}
.cuticle-decision-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}
.cuticle-decision-photo {
  position: relative;
  min-height: 610px;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.cuticle-decision-photo img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.9) contrast(1.04);
}
.cuticle-decision-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1.2rem 1.35rem;
  background: rgba(18,18,18,0.88);
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
}
.choice-panel {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1px;
  align-self: stretch;
  background: var(--line);
  border: 1px solid var(--line);
}
.choice-panel .choice-card {
  position: relative;
  min-height: 0;
  padding: clamp(2rem, 4vw, 3.6rem);
  background: rgba(255,255,255,0.82);
}
.choice-panel .choice-card-signature {
  background:
    linear-gradient(90deg, rgba(212,175,55,0.09), rgba(255,255,255,0.86));
}
.choice-label {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.choice-panel .choice-card h3 {
  max-width: 560px;
}
.choice-panel .choice-card p {
  max-width: 620px;
}
.nail-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.nail-menu-group {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.58);
}
.nail-menu-featured {
  background: linear-gradient(180deg, rgba(212,175,55,0.08), rgba(255,255,255,0.7));
}
.nail-menu-group header {
  min-height: 190px;
}
.nail-menu-group h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3.1rem);
}
.nail-menu-group p {
  max-width: 36ch;
  color: var(--muted);
}
.nail-menu-group ul {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
}
.nail-menu-group li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(18,18,18,0.12);
}
.nail-menu-group li span {
  color: var(--ink);
}
.nail-menu-group li strong {
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
.nail-results-gallery {
  overflow: hidden;
  background: var(--white);
}
.nail-gallery-head {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.nail-gallery-head h2 {
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}
.nail-gallery-head p {
  max-width: 620px;
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.nail-gallery-window {
  width: min(100vw - 4rem, var(--max));
  margin: 0 auto;
  overflow: hidden;
}
.nail-portfolio-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: nail-gallery-drift 42s linear infinite;
  will-change: transform;
}
.nail-gallery-window:hover .nail-portfolio-track {
  animation-play-state: paused;
}
@keyframes nail-gallery-drift {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5rem)); }
}
.nail-portfolio-item {
  width: min(26vw, 360px);
  min-width: 260px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  position: relative;
  background: var(--soft);
}
.nail-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease), filter 520ms var(--ease);
}
.nail-portfolio-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(18,18,18,0.78));
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 260ms var(--ease);
}
.nail-portfolio-item:hover img {
  transform: scale(1.05);
  filter: saturate(0.88) contrast(1.06);
}
.nail-portfolio-item:hover figcaption {
  transform: translateY(0);
}
.area-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.area-group {
  padding: clamp(1.55rem, 2.4vw, 2.1rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 100%;
}
.area-group summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}
.area-group summary::-webkit-details-marker { display: none; }
.area-group summary strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}
.area-toggle { display: none; }
.area-group h3 {
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0.8rem 0 1.15rem;
}
.area-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 1;
}
.area-group li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.36rem 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}
.area-group li span {
  min-width: 0;
}
.area-group li strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.laser-page .section-head {
  grid-template-columns: 0.48fr minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.laser-page .section-head h2 {
  font-size: clamp(2.15rem, 3.55vw, 3.95rem);
  max-width: 760px;
}
.laser-page .section-head p {
  max-width: 640px;
  font-size: 1.02rem;
}
.laser-page .proof-card,
.laser-page .content-card,
.laser-page .faq-card,
.laser-page .membership-card {
  min-height: 190px;
  padding: clamp(1.55rem, 2.5vw, 2.15rem);
}
.laser-page .proof-card p,
.laser-page .content-card p,
.laser-page .faq-card p,
.laser-page .membership-card p {
  font-size: 0.98rem;
}
.laser-page .membership-card strong {
  font-size: 0.78rem;
}
.membership-grid-five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.membership-grid-five .membership-card { grid-column: span 2; }
.membership-grid-five .membership-card:nth-child(n + 4) { grid-column: span 3; }
.care-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.laser-contrast .section-head {
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .choice-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(3rem, 12vw, 4.7rem); }
  .laser-hero .hero-copy h1 { font-size: clamp(3rem, 12vw, 4.7rem); }
  .nails-hero .hero-grid { grid-template-columns: 1fr; }
  .nails-hero .hero-copy h1 { font-size: clamp(3rem, 12vw, 4.7rem); }
  .nails-hero-card { width: 100%; justify-self: stretch; }
  .laser-page .section-head { grid-template-columns: 1fr; }
  .laser-page .section-head h2 { font-size: clamp(2.45rem, 10vw, 4rem); }
  .nails-page .section-head { grid-template-columns: 1fr; }
  .nails-page .section-head h2 { font-size: clamp(2.45rem, 10vw, 4rem); }
  .cuticle-decision-layout,
  .nail-menu { grid-template-columns: 1fr; }
  .nail-gallery-window { width: calc(100vw - 2.4rem); }
  .nail-portfolio-item { width: 74vw; min-width: 240px; }
  .cuticle-decision-photo { min-height: 0; }
  .nail-menu-group { min-height: auto; }
  .nail-menu-group header { min-height: auto; margin-bottom: 1.6rem; }
  .area-menu { grid-template-columns: 1fr; }
  .area-group { padding: 0; }
  .area-group summary {
    min-height: 88px;
    padding: 1.35rem 1.55rem;
    cursor: pointer;
  }
  .area-group ul { padding: 0 1.55rem 1.55rem; }
  .area-toggle {
    display: block;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.8rem;
    line-height: 1;
  }
  .area-group[open] .area-toggle { transform: rotate(45deg); }
  .membership-grid-five,
  .care-grid-two { grid-template-columns: 1fr; }
  .membership-grid-five .membership-card,
  .membership-grid-five .membership-card:nth-child(n + 4) { grid-column: auto; }
  .footer .container,
  .footer-links { flex-direction: column; }
}

/* Waxing page - V19 */
.waxing-hero {
  min-height: 760px;
  background: #f6f5f2;
}
.wax-light-field {
  position: absolute;
  inset: -15%;
  opacity: 0.58;
  background:
    radial-gradient(ellipse at 17% 38%, rgba(212,175,55,0.14), transparent 27%),
    linear-gradient(112deg, transparent 0 45%, rgba(255,255,255,0.76) 50%, transparent 55% 100%);
  transform: translateX(-7%);
  animation: waxLightDrift 16s var(--ease) infinite alternate;
  pointer-events: none;
}
@keyframes waxLightDrift {
  from { transform: translate3d(-7%, 0, 0); }
  to { transform: translate3d(7%, 0, 0); }
}
.waxing-hero .hero-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.9fr);
  gap: clamp(2.75rem, 5vw, 5.5rem);
  align-items: center;
}
.waxing-hero .hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 5.05vw, 5.25rem);
}
.waxing-hero-card {
  width: min(100%, 510px);
  margin: 0;
  justify-self: end;
  box-shadow: 0 28px 70px rgba(18,18,18,0.12);
}
.waxing-hero-card img {
  aspect-ratio: 4 / 5.08;
  object-position: 63% 50%;
  filter: saturate(0.72) sepia(0.08) contrast(1.04);
}
.waxing-hero-card .stamp {
  width: 46%;
  min-width: 210px;
  padding: 1.4rem 1rem;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
}
.waxing-page .section-head {
  grid-template-columns: 0.48fr minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.waxing-page .section-head h2 {
  max-width: 760px;
  font-size: clamp(2.15rem, 3.55vw, 3.95rem);
}
.waxing-page .section-head p {
  max-width: 650px;
  font-size: 1.02rem;
}
.wax-origin-section {
  position: relative;
  overflow: hidden;
}
.wax-origin-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(212,175,55,0.16), transparent 30%),
    linear-gradient(118deg, transparent 0 58%, rgba(255,255,255,0.035) 62%, transparent 66% 100%);
  pointer-events: none;
}
.wax-thread {
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(212,175,55,0.62), transparent);
  transform: rotate(8deg);
  transform-origin: center;
  animation: waxThreadSway 10s var(--ease) infinite alternate;
}
@keyframes waxThreadSway {
  from { transform: translateX(-34px) rotate(8deg); opacity: 0.5; }
  to { transform: translateX(34px) rotate(4deg); opacity: 0.9; }
}
.wax-origin-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.wax-origin-media {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.035);
}
.wax-origin-media img {
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
}
.wax-origin-copy h2 {
  max-width: 720px;
  font-size: clamp(2.6rem, 4.35vw, 4.65rem);
}
.wax-origin-copy > p {
  max-width: 650px;
  margin-top: 1.35rem;
  font-size: 1.05rem;
}
.wax-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.17);
  border-bottom: 1px solid rgba(255,255,255,0.17);
}
.wax-trust-row span {
  padding: 1.1rem 0.85rem;
  color: rgba(255,255,255,0.82);
  border-right: 1px solid rgba(255,255,255,0.17);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}
.wax-trust-row span:last-child { border-right: 0; }
.waxing-area-menu {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.waxing-area-menu .area-group {
  display: block;
  min-height: 360px;
}
.waxing-area-menu .area-group summary strong {
  min-height: 2.8em;
}
.waxing-area-menu .area-group li {
  padding: 0.66rem 0;
}
.menu-booking-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}
.menu-booking-row p { max-width: 680px; }
.menu-booking-row .btn { flex: 0 0 auto; }
.wax-first-visit {
  position: relative;
  overflow: hidden;
}
.wax-first-visit::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background: repeating-linear-gradient(90deg, transparent 0 119px, rgba(18,18,18,0.03) 120px);
  pointer-events: none;
}
.wax-first-visit .container { position: relative; z-index: 1; }
.wax-care-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.wax-care-flow article {
  min-height: 390px;
  padding: clamp(1.7rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
}
.wax-step {
  display: block;
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.wax-care-flow h3 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.85rem, 2.6vw, 2.65rem);
  line-height: 1.02;
}
.wax-care-flow p + p { margin-top: 1rem; }
.wax-value-band {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  background: var(--dark);
  color: var(--white);
}
.wax-marquee {
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0.34;
}
.wax-marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  color: var(--gold);
  animation: waxMarquee 38s linear infinite;
}
.wax-marquee-track span {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}
.wax-marquee-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
@keyframes waxMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.wax-value-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}
.wax-value-copy h2 {
  max-width: 820px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}
.wax-value-copy p {
  max-width: 520px;
  color: rgba(255,255,255,0.76);
  font-size: 1.05rem;
}
.wax-path-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.wax-path-intro h2 {
  max-width: 620px;
  font-size: clamp(2.55rem, 4vw, 4.25rem);
}
.wax-path-intro p {
  max-width: 560px;
  margin-top: 1.4rem;
}
.wax-path-options {
  border-top: 1px solid var(--line);
}
.wax-path-options article {
  padding: clamp(1.7rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.wax-path-options article > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.wax-path-options h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
}
.wax-path-options p { max-width: 650px; }
.wax-path-options a {
  display: inline-block;
  margin-top: 1.25rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.wax-path-options a:hover,
.wax-path-options a:focus-visible { color: #8a6a00; }
.wax-faq-section { background: var(--white); }

@media (max-width: 900px) {
  .waxing-hero .hero-grid,
  .wax-origin-grid,
  .wax-value-copy,
  .wax-path-layout {
    grid-template-columns: 1fr;
  }
  .waxing-hero .hero-copy h1 {
    font-size: clamp(3rem, 12vw, 4.7rem);
  }
  .waxing-hero-card {
    width: 100%;
    justify-self: stretch;
  }
  .waxing-page .section-head {
    grid-template-columns: 1fr;
  }
  .waxing-page .section-head h2 {
    font-size: clamp(2.45rem, 10vw, 4rem);
  }
  .wax-thread { left: 86%; }
  .wax-origin-media { order: 2; }
  .wax-trust-row { grid-template-columns: 1fr; }
  .wax-trust-row span {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.17);
  }
  .wax-trust-row span:last-child { border-bottom: 0; }
  .waxing-area-menu,
  .wax-care-flow {
    grid-template-columns: 1fr;
  }
  .waxing-area-menu .area-group {
    min-height: 0;
  }
  .waxing-area-menu .area-group summary strong {
    min-height: 0;
  }
  .menu-booking-row {
    align-items: stretch;
    flex-direction: column;
  }
  .menu-booking-row .btn { align-self: flex-start; }
  .wax-care-flow article { min-height: 0; }
  .wax-value-copy { align-items: start; }
}

@media (max-width: 560px) {
  .waxing-hero .hero-grid { width: min(100% - 32px, var(--max)); }
  .waxing-hero-card .stamp {
    width: 58%;
    min-width: 0;
    padding: 1.2rem 0.8rem;
    font-size: clamp(1.35rem, 6.8vw, 1.7rem);
  }
  .wax-origin-copy h2,
  .wax-value-copy h2,
  .wax-path-intro h2 { font-size: clamp(2.35rem, 11vw, 3.45rem); }
  .wax-origin-media { padding: 0.7rem; }
  .wax-marquee { top: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .wax-light-field,
  .wax-thread,
  .wax-marquee-track { animation: none; }
}

/* About page: founder authority, service clarity, and studio information. */
.about-page h1,
.about-page h2,
.about-page h3 { letter-spacing: 0; }
.about-hero {
  min-height: 760px;
  background: #f6f5f2;
}
.about-light-field {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(116deg, rgba(212,175,55,0.11), transparent 34% 68%, rgba(18,18,18,0.05)),
    repeating-linear-gradient(90deg, rgba(18,18,18,0.028) 0 1px, transparent 1px 112px);
  pointer-events: none;
}
.about-hero .hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.88fr);
  gap: clamp(2.75rem, 5.5vw, 5.75rem);
  align-items: center;
}
.about-hero .hero-copy h1 {
  max-width: 700px;
  font-size: clamp(3.15rem, 5.1vw, 5.25rem);
}
.about-hero .hero-copy p { max-width: 650px; }
.about-hero-card {
  width: min(100%, 510px);
  justify-self: end;
  box-shadow: 0 28px 70px rgba(18,18,18,0.13);
}
.about-hero-card img {
  object-position: center 44%;
  filter: saturate(0.84) contrast(1.03);
}
.about-signature {
  position: absolute;
  right: -1px;
  bottom: 2rem;
  width: 44%;
  min-width: 172px;
  padding: 1.45rem 1rem;
  border: 1px solid var(--gold);
  background: var(--dark);
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.35vw, 2.35rem);
  line-height: 0.92;
  text-align: center;
}
.about-page .section-head {
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.08fr);
  align-items: start;
}
.about-page .section-head h2 {
  max-width: 780px;
  font-size: clamp(2.55rem, 4.15vw, 4.45rem);
}
.about-page .section-head p { max-width: 690px; }
.about-origin { overflow: hidden; }
.about-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.about-journey article {
  min-height: 390px;
  padding: clamp(1.75rem, 3vw, 2.8rem);
  border-right: 1px solid rgba(255,255,255,0.2);
}
.about-journey article:last-child { border-right: 0; }
.about-journey .meta-label { color: var(--gold); }
.about-journey h3 {
  max-width: 290px;
  margin: 2.6rem 0 1.15rem;
  font-size: clamp(1.75rem, 2.2vw, 2.35rem);
  line-height: 1.05;
}
.about-journey p { max-width: 330px; }
.about-recognition {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-recognition strong {
  color: var(--gold);
  font-weight: 400;
}
.about-discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}
.about-discipline-grid article {
  display: flex;
  min-height: 430px;
  padding: clamp(1.75rem, 3vw, 2.8rem);
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.45);
}
.about-discipline-grid article:last-child { border-right: 0; }
.about-discipline-grid .meta-label { color: #9d7c10; }
.about-discipline-grid h3 {
  margin: 2.25rem 0 1.2rem;
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  line-height: 1.02;
}
.about-discipline-grid p { max-width: 340px; }
.about-discipline-grid a {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 2rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-discipline-grid a:hover,
.about-discipline-grid a:focus-visible { color: #8a6a00; }
.about-standard-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.about-standard-media {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  background: #161616;
}
.about-standard-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.68) contrast(1.04);
}
.about-standard-copy h2 {
  max-width: 680px;
  font-size: clamp(2.65rem, 4.25vw, 4.55rem);
}
.about-standard-copy > p {
  max-width: 640px;
  margin-top: 1.5rem;
  font-size: 1.08rem;
}
.about-principles {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.about-principles article {
  display: grid;
  grid-template-columns: minmax(120px, 0.36fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}
.about-principles span {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-future-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.about-future h2 {
  max-width: 600px;
  font-size: clamp(3rem, 5.1vw, 5.35rem);
}
.about-future-copy {
  padding-top: 2.7rem;
  border-top: 1px solid rgba(255,255,255,0.22);
}
.about-future-copy p {
  max-width: 650px;
  font-size: 1.08rem;
}
.about-future-copy p + p { margin-top: 1.2rem; }
.about-future-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.about-future-actions .btn { min-width: 240px; }
.about-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.42);
}
.about-contact-grid article {
  min-height: 310px;
  padding: clamp(1.75rem, 3vw, 2.7rem);
  border-right: 1px solid var(--line);
}
.about-contact-grid article:last-child { border-right: 0; }
.about-contact-grid h3 {
  margin: 1.35rem 0;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
}
.about-contact-grid article > a:last-child {
  display: inline-block;
  margin-top: 1.3rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-contact-grid article > p a { overflow-wrap: anywhere; }
.about-hours {
  margin: 1.35rem 0 0;
  font-size: 0.9rem;
}
.about-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.about-hours dt,
.about-hours dd { margin: 0; }
.about-hours dd { text-align: right; }
.about-booking-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.about-booking-row h2 {
  max-width: 690px;
  font-size: clamp(2.4rem, 3.7vw, 4rem);
}
.about-booking-row .cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 1rem;
}

@media (max-width: 900px) {
  .about-hero .hero-grid,
  .about-page .section-head,
  .about-standard-grid,
  .about-future-grid {
    grid-template-columns: 1fr;
  }
  .about-hero .hero-copy h1 { font-size: clamp(3rem, 12vw, 4.7rem); }
  .about-hero-card {
    width: 100%;
    justify-self: stretch;
  }
  .about-page .section-head h2 { font-size: clamp(2.45rem, 10vw, 4rem); }
  .about-journey,
  .about-discipline-grid,
  .about-contact-grid { grid-template-columns: 1fr; }
  .about-journey article,
  .about-discipline-grid article,
  .about-contact-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-journey article { border-bottom-color: rgba(255,255,255,0.2); }
  .about-journey article:last-child,
  .about-discipline-grid article:last-child,
  .about-contact-grid article:last-child { border-bottom: 0; }
  .about-discipline-grid article { min-height: 360px; }
  .about-standard-media { order: 2; }
  .about-future-copy { padding-top: 0; }
  .about-booking-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-booking-row .cta-actions { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .about-hero .hero-grid { width: min(100% - 32px, var(--max)); }
  .about-signature {
    width: 48%;
    min-width: 0;
    padding: 1.2rem 0.7rem;
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }
  .about-recognition {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }
  .about-discipline-grid article { min-height: 330px; }
  .about-principles article { grid-template-columns: 1fr; gap: 0.65rem; }
  .about-standard-copy h2,
  .about-future h2,
  .about-booking-row h2 { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .about-booking-row .cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .about-future-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .about-future-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .about-booking-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .about-light-field { animation: none; }
}

