@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,600&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #101010;
  --paper: #f8f3f1;
  --white: #fffdfa;
  --blush: #f2cbd5;
  --rose: #d76b86;
  --coral: #ff765d;
  --acid: #d7ff62;
  --sage: #8d9c7d;
  --muted: #6e6661;
  --line: rgba(16, 16, 16, 0.14);
  --glass: rgba(255, 253, 250, 0.72);
  --shadow: 0 30px 90px rgba(16, 16, 16, 0.16);
  --display: "Bodoni Moda", "Didot", Georgia, serif;
  --body: "Manrope", "Avenir Next", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(242, 203, 213, 0.54), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(215, 255, 98, 0.24), transparent 24rem),
    linear-gradient(180deg, #fbf6f4, var(--paper));
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

section[id],
main [id] {
  scroll-margin-top: 104px;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 190;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--coral), var(--acid));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 180;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 54px);
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 16, 0.13);
  background: rgba(255, 253, 250, 0.995);
  box-shadow: 0 16px 54px rgba(16, 16, 16, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 250, 1);
  border-color: rgba(16, 16, 16, 0.16);
}

.brand {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.brand-kicker {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-name {
  margin-top: 4px;
  font-family: var(--display);
  font-size: clamp(1.42rem, 3vw, 2.2rem);
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.book-link,
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.book-link,
.primary {
  background: var(--ink);
  color: var(--white);
}

.book-link:hover,
.book-link:focus-visible,
.primary:hover,
.primary:focus-visible {
  background: var(--acid);
  color: var(--ink);
}

.secondary {
  background: rgba(255, 253, 250, 0.52);
  color: var(--ink);
}

.secondary:hover,
.secondary:focus-visible {
  background: var(--white);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-open .menu-button span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .menu-button span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 20px;
  padding: 120px clamp(22px, 6vw, 60px) 46px;
  overflow-y: auto;
  width: 100%;
  height: 100vh;
  height: 100svh;  background: rgba(248, 243, 241, 0.98);
  transform: translateY(-105%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
  pointer-events: none;
}

.nav-open .mobile-nav {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--display);
  font-size: clamp(3rem, 13vw, 6rem);
  line-height: 0.92;
}

.mobile-nav .mobile-book {
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(150px, 15vw, 200px) clamp(18px, 5vw, 72px) clamp(70px, 8vw, 120px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 9% -20% auto auto;
  z-index: -1;
  width: 62vw;
  height: 62vw;
  max-width: 860px;
  max-height: 860px;
  background:
    radial-gradient(circle at 45% 45%, rgba(215, 107, 134, 0.28), transparent 38%),
    radial-gradient(circle at 60% 58%, rgba(215, 255, 98, 0.32), transparent 36%);
  filter: blur(34px);
  animation: aura 10s ease-in-out infinite alternate;
}

.micro {
  margin: 0 0 16px;
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title,
.section-intro h2,
.studio-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 9.8rem);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: 0;
}

.hero-title {
  max-width: 760px;
}

.hero-lead {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-collage {
  position: relative;
  min-height: clamp(520px, 62vw, 760px);
}

.collage-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-card:hover img {
  transform: scale(1.05);
}

.collage-main {
  inset: 8% 12% 5% 18%;
  border-radius: 34% 34% 8px 8px;
}

.collage-top {
  top: 0;
  right: 0;
  width: 36%;
  aspect-ratio: 0.82;
  border-radius: 8px;
}

.collage-bottom {
  left: 0;
  bottom: 9%;
  width: 38%;
  aspect-ratio: 0.82;
  border-radius: 8px;
}

.floating-stamp {
  position: absolute;
  right: 8%;
  bottom: 1%;
  display: grid;
  gap: 4px;
  min-width: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.97);
  box-shadow: 0 18px 54px rgba(16, 16, 16, 0.12);
  backdrop-filter: blur(16px);
}

.floating-stamp span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.floating-stamp strong {
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 0.95;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.ticker-track {
  display: inline-flex;
  gap: clamp(24px, 5vw, 72px);
  min-width: max-content;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 3.5rem);
  white-space: nowrap;
}

.section {
  padding: clamp(76px, 10vw, 150px) clamp(18px, 5vw, 72px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.54fr);
  gap: clamp(24px, 6vw, 88px);
  align-items: end;
  margin: 0 auto clamp(38px, 6vw, 72px);
  max-width: 1180px;
}

.section-intro.compact {
  grid-template-columns: 1fr;
  max-width: 860px;
  text-align: center;
  justify-items: center;
}

.section-intro h2 {
  font-size: clamp(3.1rem, 7vw, 7.6rem);
}

.section-intro p:not(.micro) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.before-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  max-width: 1180px;
  margin: 0 auto;
}

.ba-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.7);
  box-shadow: 0 18px 55px rgba(16, 16, 16, 0.08);
  transform-style: preserve-3d;
}

.compare {
  position: relative;
  min-height: clamp(430px, 46vw, 620px);
  overflow: hidden;
  background: #ddd;
}

.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-img {
  clip-path: inset(0 44% 0 0);
}

.compare::before,
.compare::after {
  position: absolute;
  z-index: 3;
  top: 18px;
  padding: 8px 10px;
  background: rgba(16, 16, 16, 0.62);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.compare::before {
  content: attr(data-before-label);
  left: 18px;
}

.compare::after {
  content: attr(data-after-label);
  right: 18px;
}

.compare-range {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  width: calc(100% - 36px);
  accent-color: var(--acid);
}

.ba-meta {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.ba-meta span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ba-meta strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.98;
}

.reel-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.9fr;
  gap: clamp(14px, 2.5vw, 30px);
  align-items: center;
  padding: 0 clamp(18px, 5vw, 72px) clamp(80px, 10vw, 140px);
}

.reel-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(420px, 46vw, 680px);
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 30px);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  isolation: isolate;
}

.reel-card.tall {
  min-height: clamp(520px, 58vw, 820px);
}

.reel-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.02) 18%, rgba(16, 16, 16, 0.82) 100%);
}

.reel-card:hover img,
.reel-card:focus-visible img {
  opacity: 1;
  transform: scale(1.055);
}

.reel-card span {
  width: max-content;
  max-width: 100%;
  padding: 10px 12px;
  background: rgba(255, 253, 250, 0.9);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.treatment-card strong {
  display: block;
  max-width: 440px;
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.4vw, 5.2rem);
  line-height: 0.88;
}

.treatment-card small {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: rgba(255, 253, 250, 0.84);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services {
  background: var(--ink);
  color: var(--white);
}

.services .micro,
.services .section-intro p {
  color: var(--acid);
}

.service-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, 26vw);
  gap: 14px;
  max-width: 1220px;
  margin: 0 auto;
}

.service-tile {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 280px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 253, 250, 0.18);
  isolation: isolate;
}

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

.service-tile.wide {
  grid-column: span 2;
}

.service-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
  transition: transform 0.7s ease;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 20%, rgba(16, 16, 16, 0.78));
}

.service-tile:hover img,
.service-tile:focus-visible img {
  transform: scale(1.06);
}

.service-tile span {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-tile strong {
  max-width: 420px;
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 0.92;
}

.studio {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
}

.studio-copy h2,
.contact h2 {
  font-size: clamp(3rem, 7vw, 7.2rem);
}

.studio-copy p:not(.micro),
.contact p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.studio-image {
  height: clamp(520px, 55vw, 760px);
  min-height: 0;
  overflow: hidden;
  border-radius: 999px 999px 8px 8px;
  box-shadow: var(--shadow);
}

.studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.quick-info {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
}

.quick-info div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.quick-info dt {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-info dd {
  margin: 5px 0 0;
  color: var(--muted);
}

.social-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
}

.proof-card {
  min-height: 320px;
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  background: var(--white);
}

.proof-card.dark {
  background: var(--ink);
  color: var(--white);
}

.proof-card p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 0.96;
}

.proof-card span {
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  padding: clamp(28px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(242, 203, 213, 0.48), rgba(255, 253, 250, 0.92)),
    var(--white);
  border: 1px solid var(--line);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-links a {
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.64);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-booking-action {
  display: grid;
  align-self: end;
  gap: 14px;
}

.contact-action-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-action-links a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.64);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.contact-action-links a:hover,
.contact-action-links a:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  background: rgba(255, 253, 250, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 22px 58px rgba(16, 16, 16, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 118, 93, 0.12);
}

.primary.full {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--rose);
  font-size: 0.86rem;
  font-weight: 800;
}

.booking-dock {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 150;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.16);
  background: rgba(255, 253, 250, 0.96);
  box-shadow: 0 22px 70px rgba(16, 16, 16, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.booking-dock a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border-right: 1px solid rgba(16, 16, 16, 0.12);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-dock a:last-child {
  border-right: 0;
}

.booking-dock .dock-primary {
  background: var(--ink);
  color: var(--white);
}

.booking-dock a:hover,
.booking-dock a:focus-visible {
  background: var(--acid);
  color: var(--ink);
}

body.nav-open .booking-dock {
  transform: translate(-50%, 130%);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 34px 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.text-split .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.text-split .word span {
  display: inline-block;
  transform: translateY(100%) rotateX(-65deg);
  opacity: 0;
  animation: wordIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes aura {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-5%, 4%, 0) scale(1.08);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .book-link {
    min-height: 44px;
  }

  .hero,
  .studio,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    min-height: clamp(520px, 82vw, 740px);
  }

  .section-intro,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .service-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(300px, 44vw);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 104px;
  }

  section[id],
  main [id] {
    scroll-margin-top: 92px;
  }

  .site-header {
    top: 0;
    left: 0;
    right: 0;
    gap: 10px;
    min-height: 68px;
    padding: 9px 12px;
  }

  .brand-kicker {
    display: none;
  }

  .brand-name {
    font-size: clamp(1.35rem, 7vw, 2.05rem);
  }

  .mobile-nav {
    align-content: start;
    gap: 12px;
    padding: 88px 18px 118px;
  }

  .mobile-nav a {
    font-size: clamp(2.45rem, 11vw, 4.4rem);
  }

  .book-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 18px 76px;
  }

  .hero-title {
    font-size: clamp(4rem, 19vw, 6.4rem);
  }

  .hero-actions,
  .contact-links {
    align-items: stretch;
    flex-direction: column;
  }

  .primary,
  .secondary {
    width: 100%;
  }

  .hero-collage {
    min-height: 570px;
    margin-top: 30px;
  }

  .collage-main {
    inset: 7% 4% 18% 12%;
  }

  .collage-top {
    width: 42%;
  }

  .collage-bottom {
    width: 45%;
    bottom: 5%;
  }

  .floating-stamp {
    right: 2%;
    bottom: 0;
  }

  .section {
    padding: 68px 18px;
  }

  .section-intro h2,
  .studio-copy h2,
  .contact h2 {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .before-grid,
  .reel-strip,
  .social-proof {
    grid-template-columns: 1fr;
  }

  .compare {
    min-height: 420px;
  }

  .reel-strip {
    padding: 0 18px 68px;
  }

  .reel-card,
  .reel-card.tall {
    min-height: 460px;
  }

  .service-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(360px, 95vw);
  }

  .service-tile.large,
  .service-tile.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .studio-image {
    height: min(620px, 128vw);
    min-height: 0;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-action-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .booking-dock {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr 1fr;
    transform: none;
  }

  .booking-dock a {
    min-height: 58px;
    padding: 13px 10px;
    font-size: 0.72rem;
  }

  .booking-dock a:nth-child(2) {
    border-right: 0;
  }

  .booking-dock a:nth-child(3) {
    display: none;
  }

  body.nav-open .booking-dock {
    transform: translateY(140%);
  }
}

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


.footer-button,
.inline-cookie-button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-shell {
  padding: clamp(108px, 12vw, 160px) clamp(18px, 5vw, 72px) clamp(70px, 9vw, 120px);
}

.legal-document {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  color: var(--ink);
}

.legal-document h1,
.legal-document h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.92;
}

.legal-document h1 {
  font-size: clamp(3.8rem, 8vw, 7.6rem);
}

.legal-document h2 {
  margin-top: 24px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.legal-document a {
  border-bottom: 1px solid currentColor;
}

.legal-document ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.legal-document table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 253, 250, 0.72);
}

.legal-document th,
.legal-document td {
  padding: 13px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-note {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.72);
  font-weight: 800;
}

.cookie-consent {
  position: fixed;
  inset: auto 14px 14px;
  z-index: 10020;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-consent.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent__inner {
  width: min(520px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 253, 250, 0.16);
  background: rgba(16, 16, 16, 0.94);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(16, 16, 16, 0.28);
}

.cookie-consent__copy {
  display: grid;
  gap: 3px;
}

.cookie-consent__copy h2 {
  max-width: none;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  line-height: 0.95;
}

.cookie-consent__copy p:not(.micro) {
  max-width: 27rem;
  margin: 0;
  color: rgba(255, 253, 250, 0.72);
  font-size: 0.78rem;
  line-height: 1.3;
}

.cookie-consent__categories {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-category {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 7px;
  align-items: center;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 253, 250, 0.14);
}

.cookie-category input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--acid);
}

.cookie-category strong,
.cookie-category small {
  display: block;
}

.cookie-category strong {
  font-size: 0.76rem;
  line-height: 1;
}

.cookie-category small {
  display: none;
}

.cookie-consent__actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.cookie-btn {
  min-height: 32px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 253, 250, 0.24);
  color: var(--white);
  background: transparent;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-btn.primary {
  background: var(--acid);
  color: var(--ink);
  border-color: var(--acid);
}

.cookie-consent__link {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid currentColor;
  color: rgba(255, 253, 250, 0.68);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
}

@media (max-width: 760px) {
  .cookie-consent {
    inset: auto 10px 84px;
    justify-content: center;
  }

  .cookie-consent__inner {
    width: min(360px, calc(100vw - 20px));
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 10px;
  }

  .cookie-consent__copy h2 {
    font-size: 1.25rem;
  }

  .cookie-consent__copy p:not(.micro) {
    font-size: 0.72rem;
  }

  .cookie-category {
    min-height: 30px;
    padding: 6px 8px;
  }

  .cookie-consent__actions {
    gap: 5px;
  }

  .cookie-btn {
    width: 100%;
    min-height: 31px;
    padding: 6px 5px;
    font-size: clamp(0.52rem, 2.35vw, 0.6rem);
  }
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status.is-error {
  color: #b33a3a;
}

.appointment-form button[disabled] {
  cursor: wait;
  opacity: 0.68;
}
