:root {
  color-scheme: light;
  --paper: oklch(98.8% 0.004 52);
  --paper-soft: oklch(96.4% 0.011 47);
  --linen: oklch(92.4% 0.024 45);
  --taupe: oklch(78% 0.045 37);
  --taupe-deep: oklch(55% 0.046 34);
  --mauve: oklch(88% 0.025 32);
  --ink: oklch(23% 0.025 253);
  --ink-soft: oklch(41% 0.022 250);
  --muted: oklch(58% 0.016 245);
  --bronze: oklch(58% 0.07 55);
  --line: oklch(82% 0.014 48);
  --surface: oklch(99.3% 0.003 52);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1180px;
  --wide: 1320px;
  --radius: 8px;
  --shadow-soft: 0 18px 44px oklch(34% 0.035 35 / 0.09);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

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

p,
h1,
h2,
h3,
h4,
blockquote,
figure {
  margin: 0;
}

ul,
ol {
  margin-block: 0;
}

.skip-link {
  position: fixed;
  inset: 1rem auto auto 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 7rem;
  padding: 1rem clamp(1rem, 5vw, 4rem);
  border-bottom: 1px solid transparent;
  background: color-mix(in oklch, var(--paper), transparent 14%);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(8.75rem, 12vw, 11rem);
}

.brand img {
  width: 100%;
  transform-origin: left center;
  transition: transform 220ms var(--ease-out-strong);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.desktop-nav a,
.nav-dropdown summary {
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: none;
  transition: color 180ms ease;
}

.desktop-nav a {
  position: relative;
  padding-block: 0.65rem;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-dropdown:hover summary,
.nav-dropdown[open] summary,
.nav-dropdown.active summary {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary svg {
  width: 0.72rem;
  height: 0.72rem;
  transition: transform 180ms ease;
}

.nav-dropdown[open] summary svg {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 50%;
  width: 16rem;
  transform: translateX(-50%);
  display: grid;
  gap: 0.2rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.dropdown-panel a {
  border-radius: 6px;
  padding: 0.72rem 0.8rem;
}

.dropdown-panel a::after {
  display: none;
}

.dropdown-panel a:hover {
  background: var(--paper-soft);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-link:hover {
  border-color: var(--bronze);
  color: var(--ink);
  transform: translateY(-1px);
}

.icon-link svg {
  width: 1.1rem;
  height: 1.1rem;
}

.button,
.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.95rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.88rem 1.35rem;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-action,
.button-primary {
  background: var(--ink);
  color: var(--paper);
}

.header-action:hover,
.button:hover {
  transform: translateY(-1px);
}

.button-primary:hover {
  background: color-mix(in oklch, var(--ink), var(--bronze) 16%);
}

.button-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.button-soft {
  border-color: color-mix(in oklch, var(--taupe-deep), transparent 55%);
  background: var(--surface);
  color: var(--taupe-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-self: start;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: translateY(0);
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateY(-0.15rem);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 760;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  width: min(20rem, calc(100vw - 2rem));
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.mobile-menu nav a {
  border-radius: 6px;
  padding: 0.72rem 0.8rem;
  color: var(--ink-soft);
  font-weight: 650;
}

.mobile-menu nav a:hover {
  background: var(--paper-soft);
  color: var(--ink);
}

.shell,
.section-shell {
  width: min(var(--max), calc(100% - clamp(2rem, 7vw, 5.5rem)));
  margin-inline: auto;
}

.wide-shell {
  width: min(var(--wide), calc(100% - clamp(2rem, 6vw, 5rem)));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.section-tight {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.section-offset {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.section-header {
  display: grid;
  gap: 1rem;
  margin-block-end: clamp(2rem, 5vw, 3.5rem);
}

.section-header.center {
  justify-items: center;
  text-align: center;
}

.kicker {
  color: var(--bronze);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.28em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 540;
  letter-spacing: 0;
  text-wrap: balance;
}

h1,
.display {
  font-size: clamp(3.2rem, 8vw, 5.9rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.03;
}

h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.12;
}

.script-word {
  color: var(--bronze);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.lead,
.section-header p,
.copy p,
.split-copy p,
.page-copy p,
.detail-copy p,
.contact-card p,
.legal-page p {
  max-width: 66ch;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.86fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
  min-height: min(38rem, calc(100svh - 9rem));
  padding-block: clamp(2.5rem, 5.4vw, 4.5rem);
}

.hero-copy {
  display: grid;
  gap: 1.65rem;
}

.hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(3.05rem, 5.55vw, 4.75rem);
}

.hero-copy .lead {
  max-width: 44rem;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 28rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mauve);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero-card {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid color-mix(in oklch, var(--paper), transparent 20%);
  border-radius: var(--radius);
  background: color-mix(in oklch, var(--paper), transparent 8%);
  backdrop-filter: blur(14px);
}

.hero-card strong {
  display: block;
  color: var(--ink);
}

.hero-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stars {
  color: var(--bronze);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-block-start: 1rem;
  padding-block-start: 2rem;
  border-top: 1px solid var(--line);
}

.proof-row div > strong {
  min-height: clamp(2.15rem, 2.8vw, 2.35rem);
}

.proof-row div:first-child strong {
  display: flex;
  align-items: flex-end;
  gap: 0.28rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 500;
  line-height: 1;
}

.rating-star {
  display: inline-block;
  color: var(--bronze);
  font-family: var(--font-body);
  font-size: 0.72em;
  line-height: 1;
  transform: translateY(-0.08em);
}

.proof-row div:not(:first-child) strong {
  display: flex;
  align-items: flex-end;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 500;
  line-height: 1;
}

.proof-row span:not(.rating-star) {
  display: block;
  margin-block-start: 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--paper-soft);
}

.trust-bar .wide-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.trust-bar span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.3rem;
  padding: 0.9rem 1rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
  text-align: center;
}

.trust-bar span svg {
  width: 1.15rem;
  height: 1.15rem;
  margin-inline-end: 0.7rem;
  color: var(--bronze);
  flex-shrink: 0;
}

.intro-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
}

.copy,
.split-copy,
.page-copy,
.detail-copy {
  display: grid;
  gap: 1.25rem;
}

.muted-band {
  background: var(--linen);
}

.taupe-band {
  background: var(--taupe);
  color: var(--paper);
}

.taupe-band h2,
.taupe-band h3,
.taupe-band p,
.taupe-band .kicker {
  color: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(9rem, 0.72fr) minmax(0, 1.18fr);
  min-height: 21rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--taupe);
}

.service-card:nth-child(even) {
  background: color-mix(in oklch, var(--taupe), var(--paper) 8%);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.15rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--paper);
  text-align: center;
}

.service-card h3 {
  color: color-mix(in oklch, var(--ink), var(--paper) 7%);
  font-size: clamp(0.95rem, 1.3vw, 1.5rem);
  hyphens: none;
  word-break: normal;
  overflow-wrap: break-word;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card p {
  max-width: 25ch;
  color: var(--paper);
}

.service-card .button {
  min-height: 2.6rem;
  background: var(--paper);
  color: var(--taupe-deep);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list li {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  min-height: 16rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--paper);
}

.process-list span {
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.process-list strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.process-list p {
  color: var(--ink-soft);
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mauve);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 23rem;
  object-fit: cover;
}

.partner-logo {
  width: min(19rem, 100%);
}

.studio-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(14rem, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
}

.studio-tile {
  min-height: 14rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mauve);
}

.studio-tile-large {
  grid-row: span 2;
}

.studio-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.studio-tile:nth-child(4) {
  grid-column: span 2;
}

.review-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.review-track {
  display: flex;
  width: max-content;
  animation: review-scroll 54s linear infinite;
}

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

.review-track blockquote {
  display: grid;
  gap: 1.2rem;
  align-content: start;
  width: clamp(18rem, 28vw, 24rem);
  min-height: 15.5rem;
  margin: 0;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.review-stars {
  display: inline-block;
  font-size: 1.15rem;
  margin-bottom: -0.5rem;
  letter-spacing: 0.1em;
  background: linear-gradient(
    110deg,
    color-mix(in oklch, var(--bronze), transparent 20%) 20%,
    oklch(95% 0.1 55) 50%,
    color-mix(in oklch, var(--bronze), transparent 20%) 80%
  );
  background-size: 200% auto;
  background-position: 200% center;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: slow-shine 10s linear infinite;
}

@keyframes slow-shine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.review-track p {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.16rem, 1.6vw, 1.42rem);
  line-height: 1.34;
}

.review-track cite {
  color: var(--taupe-deep);
  font-style: normal;
  font-weight: 760;
}

@keyframes review-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
  background: var(--mauve);
}

.voucher-feature {
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1fr) auto;
  background: var(--linen);
}

.voucher-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mauve);
}

.voucher-image img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(18rem, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.page-hero img {
  width: 100%;
  max-height: 38rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.treatment-hero {
  position: relative;
  width: min(var(--wide), calc(100% - clamp(2rem, 6vw, 5rem)));
  min-height: clamp(26rem, 48vw, 37rem);
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mauve);
}

.treatment-hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.treatment-hero-content {
  position: absolute;
  left: clamp(1.4rem, 13vw, 13rem);
  right: clamp(1.4rem, 5vw, 4rem);
  bottom: clamp(2rem, 7vw, 5rem);
  max-width: none;
  color: var(--ink);
}

.treatment-hero-content p {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.7), 0 0 40px rgba(255, 255, 255, 0.5);
}

.treatment-hero h1 {
  font-size: clamp(3rem, 6vw, 4.85rem);
  hyphens: auto;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.4);
}

.indication-band {
  background: var(--taupe);
  color: var(--paper);
}

.indication-band .section-shell {
  display: grid;
  gap: 1.7rem;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.indication-band h2 {
  color: var(--paper);
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.chip-grid span,
.feature-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--taupe-deep);
  font-weight: 580;
  letter-spacing: 0.05em;
  text-align: center;
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.detail-columns article,
.overview-panel,
.contact-card,
.voucher-card {
  display: grid;
  gap: 1rem;
}

.detail-columns h2,
.overview-panel h2,
.contact-card h2,
.voucher-card h2 {
  max-width: none;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  font-weight: 760;
  line-height: 1.2;
}

.detail-columns p,
.overview-panel li,
.contact-card address,
.voucher-card p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
}

.detail-feature {
  background: var(--linen);
}

.detail-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.detail-feature .media-frame {
  background: transparent;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  place-items: center;
  min-height: 3.2rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--taupe-deep);
  font-weight: 560;
  letter-spacing: 0.04em;
  text-align: center;
}

.overview-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.overview-panel ul {
  display: grid;
  gap: 0.55rem;
  padding-inline-start: 1.2rem;
}

.wide-visual-hero {
  position: relative;
  width: min(var(--wide), calc(100% - clamp(2rem, 6vw, 5rem)));
  min-height: clamp(19rem, 28vw, 28rem);
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mauve);
}

.wide-visual-hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.wide-visual-hero .visual-copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vw, 5rem);
  text-align: center;
}

.wide-visual-hero h1 {
  max-width: 30ch;
  color: var(--taupe-deep);
  font-size: clamp(2.05rem, 3.65vw, 3.25rem);
  line-height: 1.22;
  text-transform: uppercase;
}

.reviderm-lockup {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  text-align: center;
}

.reviderm-lockup strong {
  color: oklch(42% 0.105 5);
  font-size: clamp(3rem, 7vw, 5.7rem);
  font-weight: 420;
  letter-spacing: 0.04em;
  line-height: 1;
}

.about-composition {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  align-items: center;
  gap: clamp(0rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.about-copy-card {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.8rem, 5vw, 3rem);
  padding-right: clamp(4rem, 10vw, 8rem);
  background: var(--taupe);
}

.about-copy-card h1 {
  color: var(--paper);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-style: italic;
}

.about-copy-card p {
  max-width: 50rem;
  color: var(--paper);
}

.about-photo {
  margin-left: clamp(-8rem, -8vw, -2rem);
  margin-bottom: clamp(-2rem, -4vw, -3.5rem);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mauve);
}

.about-photo img {
  width: 100%;
  min-height: 28rem;
  object-fit: cover;
  object-position: center 18%;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.65fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.contact-form-panel {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-block-start: 1.8rem;
}

.field {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.2rem;
  border: 1px solid color-mix(in oklch, var(--line), var(--ink) 8%);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 450;
  padding: 0.75rem 0.9rem;
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--bronze);
  outline: 2px solid color-mix(in oklch, var(--bronze), transparent 72%);
  outline-offset: 2px;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .button {
  justify-self: start;
}

.form-success {
  display: none;
  margin-block-start: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid color-mix(in oklch, var(--bronze), var(--line) 45%);
  border-radius: var(--radius);
  background: color-mix(in oklch, var(--bronze), var(--paper) 88%);
  color: var(--ink);
  font-weight: 700;
}

.form-success:target {
  display: block;
}

.contact-side {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-grid,
.voucher-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.price-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 17rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--paper);
}

.price-card h3 {
  max-width: none;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 760;
  line-height: 1.25;
}

.price-card p,
.price-card li {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.price-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-block-start: auto;
}

.price-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--taupe-deep);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mini-list {
  display: grid;
  gap: 0.55rem;
  padding-inline-start: 1.1rem;
}

.contact-card,
.voucher-card {
  min-height: 16rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: var(--paper);
}

.contact-side .contact-card {
  min-height: auto;
}

.contact-card address {
  font-style: normal;
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  margin-block-start: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--linen);
}

.legal-page {
  width: min(900px, calc(100% - 2rem));
  margin-inline: auto;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.legal-page h1 {
  margin-block-end: 2rem;
  font-size: clamp(2.7rem, 6vw, 4.5rem);
}

.legal-page h2 {
  margin-block: 2rem 0.75rem;
  max-width: none;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 760;
}

.legal-page ul {
  color: var(--ink-soft);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.appointment-note {
  display: grid;
  gap: 0.65rem;
  width: min(920px, calc(100% - 2rem));
  margin-inline: auto;
  padding-block: clamp(2rem, 5vw, 3.3rem);
  color: var(--ink);
  text-align: center;
}

.appointment-note h2 {
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  font-weight: 500;
}

.appointment-note p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  padding-block: 1.25rem 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem;
}

.footer-links a,
.copyright {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-logo img {
  width: 8rem;
}

.copyright {
  justify-self: end;
  text-transform: none;
  letter-spacing: 0;
}

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

/* ==========================================================================
   Premium Polish (No-Brainer Upgrades)
   ========================================================================== */

/* 1. Ken Burns Effect for Hero */
.hero-media img,
.wide-visual-hero img,
.treatment-hero img {
  animation: ken-burns 20s ease-out forwards;
  transform-origin: center;
}

@keyframes ken-burns {
  0% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Entrance Animations */
.hero-copy h1,
.hero-copy .lead,
.hero-copy .action-row,
.hero-copy .proof-row {
  opacity: 0;
  animation: fade-up 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-copy h1 { animation-delay: 0.1s; }
.hero-copy .lead { animation-delay: 0.2s; }
.hero-copy .action-row { animation-delay: 0.3s; }
.hero-copy .proof-row { animation-delay: 0.4s; }

/* 2. Scroll Reveals */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 3. Premium Hover-States */
.service-card img,
.studio-tile img,
.voucher-image img,
.about-photo img {
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover img,
.studio-tile:hover img,
.voucher-image:hover img,
.about-photo:hover img {
  transform: scale(1.04);
}

/* Button Refinements */
.button-primary,
.header-action {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.button-primary:hover,
.header-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in oklch, var(--ink), transparent 70%);
}

/* 4. Editorial Overlaps Refinement */
.hero-card {
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.media-frame {
  overflow: hidden; /* Ensure zooms don't break borders */
}
.media-frame img {
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.split-grid:hover .media-frame img {
  transform: scale(1.03);
}

/* 5. Sticky Header Refinement */
.site-header {
  transition:
    min-height 220ms var(--ease-out-strong),
    padding-block 220ms var(--ease-out-strong),
    background-color 220ms ease,
    backdrop-filter 220ms ease,
    -webkit-backdrop-filter 220ms ease,
    border-bottom-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 5rem;
  padding-block: 0.55rem;
  background: color-mix(in oklch, var(--paper), transparent 4%);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-bottom-color: color-mix(in oklch, var(--bronze), transparent 78%);
  box-shadow: 0 8px 22px -18px oklch(34% 0.035 35 / 0.25);
}

.site-header.is-scrolled .brand img {
  transform: scale(0.88);
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .brand img {
    transition:
      background-color 220ms ease,
      backdrop-filter 220ms ease,
      -webkit-backdrop-filter 220ms ease,
      border-bottom-color 220ms ease;
  }
  .site-header.is-scrolled {
    min-height: 7rem;
    padding-block: 1rem;
  }
  .site-header.is-scrolled .brand img {
    transform: none;
  }
}

/* ==========================================================================
   Phase 2: Structural & Visual Refinements
   ========================================================================== */

/* Noise Overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035;
  mix-blend-mode: multiply;
}

/* Card Numbers (Typography) */
.service-card-content {
  position: relative; /* Ensure the absolute number is contained */
}

.card-number {
  position: absolute;
  top: -10%;
  right: -5%;
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 500;
  line-height: 1;
  color: var(--paper);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Ensure text is above the background number */
.service-card-content h3,
.service-card-content p,
.service-card-content .button {
  position: relative;
  z-index: 1;
}

/* Editorial Overlaps & Hairlines */
.split-grid .media-frame {
  margin-top: -3rem; /* Break out of the grid top */
  margin-bottom: -1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}

/* Add editorial hairlines to specific headers */
.editorial-border {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .review-track {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 5.9rem;
  }

  .desktop-nav,
  .header-tools .icon-link {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .header-action {
    min-height: 2.75rem;
    padding-inline: 1rem;
  }

  .hero-home,
  .page-hero,
  .intro-grid,
  .split-grid,
  .split-grid.reverse,
  .detail-feature-grid,
  .about-composition,
  .contact-layout,
  .cta-panel,
  .route-panel {
    grid-template-columns: 1fr;
  }

  .hero-home {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100svh - 5.9rem);
    position: relative;
    background: var(--paper);
  }

  .hero-home .hero-copy {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    padding-top: 50vh;
    background: transparent;
  }

  .hero-home .hero-media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh;
    width: 100%;
    z-index: 0;
    min-height: auto;
    border-radius: 0;
  }

  .hero-home .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--paper) 100%);
    z-index: 1;
  }

  .hero-home .hero-media img {
    height: 100%;
    width: 100%;
    object-position: center top;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .proof-row,
  .trust-bar .wide-shell,
  .process-list,
  .contact-grid,
  .voucher-grid,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .studio-tile-large,
  .studio-tile:nth-child(4) {
    grid-column: span 1;
  }

  .split-grid .media-frame {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }

  .hero-card {
    display: none;
  }

  .hero-home .proof-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-block-start: 2rem;
    padding-block-start: 1.5rem;
  }

  .about-photo {
    width: min(29rem, 100%);
    margin: -1.5rem auto 0;
  }

  .about-copy-card {
    padding: clamp(1.8rem, 5vw, 3rem);
  }

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

  .treatment-hero-content {
    left: clamp(1.2rem, 8vw, 4rem);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 5rem;
    padding: 0.7rem 1rem;
  }

  .brand {
    width: 7.5rem;
  }

  .header-action {
    display: none;
  }

  .shell,
  .section-shell,
  .wide-shell,
  .wide-visual-hero,
  .treatment-hero {
    width: min(100% - 1.25rem, var(--max));
  }

  .section {
    padding-block: 3.75rem;
  }

  .hero-home.shell {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .action-row {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .button {
    width: 100%;
  }

  .proof-row,
  .trust-bar .wide-shell,
  .service-grid,
  .process-list,
  .contact-form,
  .chip-grid,
  .contact-grid,
  .voucher-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .studio-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .studio-tile {
    min-height: 16rem;
  }

  .review-marquee {
    /* Kept default desktop behavior for animation */
  }

  .review-track {
    /* Kept animation active */
  }

  .review-track blockquote {
    width: min(84vw, 22rem);
    scroll-snap-align: start;
  }

  .service-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .page-hero {
    padding-block: 3rem;
  }

  .page-hero img {
    max-height: 28rem;
  }

  .treatment-hero {
    min-height: 23rem;
  }

  .treatment-hero img {
    object-position: center;
  }

  .treatment-hero-content {
    left: 1rem;
    right: 1rem;
    bottom: 1.5rem;
  }

  .treatment-hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.9rem);
  }

  .wide-visual-hero .visual-copy {
    align-items: end;
  }

  .wide-visual-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about-copy-card {
    padding: 1.4rem;
  }

  .about-photo img {
    min-height: 25rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .copyright {
    justify-self: center;
  }
}
