:root {
  --ink: #17201c;
  --muted: #627069;
  --soft: #f7f3fb;
  --paper: #fffaff;
  --sage: #a995c9;
  --moss: #5f3f8f;
  --rose: #c8a6df;
  --lilac: #ede3f6;
  --violet: #7d55b3;
  --line: rgba(23, 32, 28, 0.12);
  --shadow: 0 24px 70px rgba(23, 32, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  background:
    linear-gradient(115deg, rgba(247, 243, 251, 0.84), rgba(255, 250, 255, 0.18) 42%, rgba(237, 227, 246, 0.56));
  content: "";
  height: 58vh;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -1;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 249, 0.86);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand img {
  height: 48px;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 650;
}

.nav-book {
  background: var(--ink);
  border-radius: 999px;
  color: white;
  padding: 10px 18px;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 8px;
  width: 44px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 8px 0;
  width: 26px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(26px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  min-height: clamp(620px, 78vh, 760px);
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 72px) clamp(30px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}

.hero-copy {
  max-width: 690px;
  position: relative;
  z-index: 1;
}

.ambient-art {
  fill: none;
  animation: ambientLineDrift 11s ease-in-out infinite alternate;
  pointer-events: none;
  position: absolute;
  stroke: rgba(125, 85, 179, 0.18);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: 50% 52%;
}

.ambient-art path,
.booking-art path {
  animation: ambientPathSway 7.5s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

.ambient-art path:nth-child(2n),
.booking-art path:nth-child(2n) {
  animation-delay: -2.4s;
  animation-duration: 8.8s;
}

.ambient-art path:nth-child(3n),
.booking-art path:nth-child(3n) {
  animation-delay: -4.2s;
  animation-duration: 9.6s;
}

.ambient-hero {
  animation: heroLineDrift 9.5s ease-in-out infinite alternate;
  height: 86%;
  left: -13%;
  top: 8%;
  transform-origin: 46% 52%;
  width: 68%;
}

.ambient-hero path {
  opacity: 0.94;
}

.eyebrow {
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6.2vw, 74px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 26px;
  max-width: 760px;
}

.hero-statement {
  display: block;
  font-size: clamp(68px, 10.8vw, 150px);
  font-weight: 400;
  line-height: 0.84;
  margin-bottom: clamp(24px, 4vw, 48px);
  max-width: 980px;
}

.hero-statement > span {
  display: block;
}

.hero-rotating {
  color: #6f3fb2;
  display: inline-block;
  font-style: italic;
  min-height: 0.95em;
  transform-origin: 45% 70%;
  width: 100%;
}

.rotating-word {
  white-space: nowrap;
}

.rotating-letter {
  animation: letterSettle 960ms cubic-bezier(0.18, 1, 0.28, 1) both;
  animation-delay: var(--letter-delay);
  display: inline-block;
  transform-origin: 50% 76%;
  transition:
    opacity 330ms cubic-bezier(0.45, 0, 0.2, 1),
    transform 330ms cubic-bezier(0.45, 0, 0.2, 1),
    filter 330ms cubic-bezier(0.45, 0, 0.2, 1);
  transition-delay: var(--exit-delay);
  will-change: opacity, transform, filter;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.16;
  margin-bottom: 12px;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 22px);
  max-width: 700px;
}

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

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  text-align: center;
}

.button.primary {
  background: var(--moss);
  border-color: var(--moss);
  color: white;
}

.button.secondary {
  background: white;
}

.button.light {
  background: var(--paper);
  color: var(--ink);
  white-space: nowrap;
}

.hero-visual {
  aspect-ratio: 0.82;
  background:
    linear-gradient(135deg, rgba(255, 250, 255, 0.95), rgba(247, 243, 251, 0.88)),
    linear-gradient(165deg, rgba(169, 149, 201, 0.3), rgba(200, 166, 223, 0.24));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 0.52fr 1fr;
  min-height: 460px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
  position: relative;
  z-index: 1;
}

.visual-card {
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  position: relative;
}

.logo-card {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.logo-card img {
  max-height: 126px;
  object-fit: contain;
}

.art-card,
.details-card {
  margin-top: 12px;
}

.visual-card span,
.intro-band span,
.visit-card span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 760;
  margin-bottom: 7px;
}

.visual-card strong,
.intro-band strong,
.visit-card strong {
  display: block;
  font-size: 21px;
  line-height: 1.18;
}

.visual-card p,
.visit-card p {
  color: var(--muted);
  margin: 8px 0 0;
}

.art-card {
  display: grid;
  gap: 18px;
}

.line-art,
.mini-art,
.flourish {
  display: block;
  overflow: visible;
  width: 100%;
}

.line-art path,
.mini-art path,
.flourish path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-art path {
  stroke: var(--violet);
  stroke-width: 3.6;
}

.line-art .accent-line {
  stroke: var(--rose);
  stroke-width: 2.6;
  opacity: 0.72;
}

.line-art .fine-line {
  stroke: rgba(125, 85, 179, 0.42);
  stroke-width: 1.8;
}

.line-art .botanical {
  opacity: 0.9;
}

.hero-art {
  animation: artBreath 6.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 18px 28px rgba(95, 63, 143, 0.1));
  min-height: 210px;
  padding: 8px;
  transform-box: fill-box;
  transform-origin: 50% 52%;
}

.luxe-art {
  background:
    linear-gradient(135deg, rgba(247, 243, 251, 0.42), rgba(255, 255, 255, 0));
  border-radius: 8px;
}

.hero-art path {
  animation: artLineSway 5.8s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

.hero-art path:nth-child(2n) {
  animation-delay: -1.7s;
}

.hero-art path:nth-child(3n) {
  animation-duration: 7.2s;
  animation-delay: -3.2s;
}

.hero-art .sparkle-star {
  animation: starSparkle 2.6s ease-in-out infinite;
  filter: drop-shadow(0 0 0 rgba(125, 85, 179, 0));
  transform-origin: 50% 50%;
}

.hero-art .star-two {
  animation-delay: 1.1s;
  animation-duration: 3.1s;
}

.intro-band {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.intro-band div {
  background: rgba(255, 255, 255, 0.045);
  min-height: 132px;
  padding: 32px clamp(20px, 4vw, 54px);
}

.flourish {
  height: 48px;
  margin-bottom: 18px;
  max-width: 150px;
}

.flourish path {
  stroke: var(--rose);
  stroke-width: 3.2;
  opacity: 0.9;
}

.intro-band span {
  color: rgba(255, 255, 255, 0.62);
}

.statement {
  background:
    linear-gradient(120deg, rgba(255, 248, 248, 0.96), rgba(246, 232, 244, 0.88) 58%, rgba(226, 194, 202, 0.76));
  min-height: clamp(460px, 58vw, 680px);
  overflow: hidden;
  padding: clamp(46px, 7vw, 86px) clamp(20px, 5vw, 72px);
  position: relative;
}

.statement-lines {
  fill: none;
  height: 86%;
  left: -7%;
  opacity: 0.28;
  pointer-events: none;
  position: absolute;
  stroke: rgba(125, 85, 179, 0.45);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  top: 8%;
  width: 82%;
}

.statement-copy {
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.statement-copy p:first-child {
  color: #241313;
  display: grid;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(68px, 12vw, 174px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: clamp(26px, 5vw, 62px);
}

.rotating-words {
  color: #6f3fb2;
  display: block;
  font-style: italic;
  min-height: 0.95em;
  transform-origin: 45% 70%;
}

.statement-copy small {
  color: rgba(36, 19, 19, 0.62);
  display: block;
  font-size: clamp(18px, 2.4vw, 26px);
  max-width: 820px;
}

.rotating-word.is-fading .rotating-letter {
  filter: blur(5px);
  opacity: 0;
  transform:
    translate3d(var(--exit-x), var(--exit-y), 0)
    rotate(var(--exit-rotate))
    scale(0.992);
}

@keyframes letterSettle {
  0% {
    filter: blur(7px);
    opacity: 0;
    transform:
      translate3d(var(--start-x), var(--start-y), 0)
      rotate(var(--start-rotate))
      skewX(-5deg)
      scale(0.975);
  }

  42% {
    filter: blur(0.8px);
    opacity: 1;
    transform:
      translate3d(var(--overshoot-x), var(--overshoot-y), 0)
      rotate(var(--overshoot-rotate))
      skewX(1.4deg)
      scale(1.006);
  }

  64% {
    filter: blur(0);
    transform:
      translate3d(var(--return-x), var(--return-y), 0)
      rotate(var(--return-rotate))
      skewX(-0.55deg)
      scale(0.998);
  }

  84% {
    transform:
      translate3d(var(--settle-x), var(--settle-y), 0)
      rotate(var(--settle-rotate))
      skewX(0.18deg)
      scale(1.001);
  }

  100% {
    filter: blur(0);
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) skewX(0) scale(1);
  }
}

@keyframes heroLineDrift {
  0% {
    transform: translate3d(-0.35%, 0.2%, 0) rotate(-0.25deg);
  }

  48% {
    transform: translate3d(0.42%, -0.28%, 0) rotate(0.18deg);
  }

  100% {
    transform: translate3d(-0.12%, 0.34%, 0) rotate(-0.12deg);
  }
}

@keyframes ambientLineDrift {
  0% {
    transform: translate3d(-1.45%, 0.55%, 0) rotate(-0.55deg) scale(1.006);
  }

  46% {
    transform: translate3d(1.15%, -0.85%, 0) rotate(0.48deg) scale(0.996);
  }

  100% {
    transform: translate3d(-0.35%, 1.05%, 0) rotate(-0.3deg) scale(1.004);
  }
}

@keyframes ambientPathSway {
  0% {
    transform: translate3d(-3.2px, 1.8px, 0) rotate(-0.7deg) scaleX(1.012);
  }

  50% {
    transform: translate3d(3.6px, -2.1px, 0) rotate(0.62deg) scaleX(0.99);
  }

  100% {
    transform: translate3d(-1.2px, 2.4px, 0) rotate(-0.34deg) scaleX(1.008);
  }
}

@keyframes bookingLineDrift {
  0% {
    transform: translate3d(-1.1%, 0.5%, 0) rotate(-0.42deg) scale(1.006);
  }

  52% {
    transform: translate3d(1.3%, -0.7%, 0) rotate(0.5deg) scale(0.996);
  }

  100% {
    transform: translate3d(-0.45%, 0.95%, 0) rotate(-0.24deg) scale(1.004);
  }
}

@keyframes artBreath {
  0% {
    transform: translate3d(-0.4%, 0.2%, 0) rotate(-0.18deg);
  }

  52% {
    transform: translate3d(0.5%, -0.35%, 0) rotate(0.16deg);
  }

  100% {
    transform: translate3d(-0.1%, 0.4%, 0) rotate(-0.08deg);
  }
}

@keyframes artLineSway {
  0% {
    transform: translate3d(-0.6px, 0.35px, 0) rotate(-0.22deg);
  }

  50% {
    transform: translate3d(0.75px, -0.45px, 0) rotate(0.2deg);
  }

  100% {
    transform: translate3d(-0.2px, 0.55px, 0) rotate(-0.12deg);
  }
}

@keyframes starSparkle {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(125, 85, 179, 0));
    opacity: 0.42;
    stroke-width: 1.8;
    transform: scale(0.92) rotate(-4deg);
  }

  38% {
    filter: drop-shadow(0 0 10px rgba(125, 85, 179, 0.38));
    opacity: 0.96;
    stroke-width: 2.3;
    transform: scale(1.1) rotate(3deg);
  }

  58% {
    filter: drop-shadow(0 0 18px rgba(200, 166, 223, 0.54));
    opacity: 1;
    stroke-width: 2.6;
    transform: scale(1.2) rotate(8deg);
  }
}

.section {
  padding: clamp(68px, 9vw, 116px) clamp(20px, 5vw, 72px);
  position: relative;
}

.section-heading {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.note p {
  color: var(--muted);
  font-size: 18px;
}

.treatment-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.ambient-treatments {
  animation-delay: -1.8s;
  animation-duration: 10s;
  height: 60%;
  left: -8%;
  top: 5%;
  width: 84%;
}

.treatment-grid article {
  background:
    linear-gradient(145deg, rgba(255, 250, 255, 0.98), rgba(247, 243, 251, 0.66));
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 310px;
  padding: 24px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.treatment-grid article:hover {
  border-color: rgba(125, 85, 179, 0.36);
  box-shadow: 0 18px 38px rgba(95, 63, 143, 0.08);
  transform: translateY(-3px);
}

.treatment-grid span {
  color: var(--rose);
  display: block;
  font-weight: 850;
  margin-bottom: 18px;
}

.treatment-grid p {
  color: var(--muted);
}

.treatment-grid article > em {
  border-top: 1px solid rgba(125, 85, 179, 0.16);
  color: var(--moss);
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  margin-top: 20px;
  padding-top: 16px;
}

.mini-art {
  height: 90px;
  margin-bottom: 26px;
}

.mini-art path {
  stroke: var(--violet);
  stroke-width: 3.5;
}

.benefits {
  background:
    linear-gradient(115deg, rgba(255, 250, 255, 0.96), rgba(247, 243, 251, 0.86));
  overflow: hidden;
}

.ambient-benefits {
  animation-delay: -4s;
  animation-duration: 12s;
  height: 70%;
  right: -10%;
  top: 6%;
  width: 78%;
}

.benefit-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.benefit-grid article {
  background: rgba(255, 250, 255, 0.76);
  border: 1px solid rgba(125, 85, 179, 0.18);
  border-radius: 8px;
  min-height: 220px;
  padding: 24px;
}

.benefit-grid span {
  color: var(--rose);
  display: block;
  font-size: 13px;
  font-weight: 860;
  margin-bottom: 42px;
  text-transform: uppercase;
}

.benefit-grid strong {
  display: block;
  font-size: 22px;
  line-height: 1.14;
  margin-bottom: 12px;
}

.benefit-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.split {
  align-items: start;
  background: var(--soft);
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: 0.9fr 1fr;
  overflow: hidden;
  position: relative;
}

.ambient-about {
  animation-delay: -2.8s;
  animation-duration: 9.5s;
  bottom: 8%;
  height: 58%;
  right: -12%;
  width: 48%;
}

.quiet-panel {
  border-left: 4px solid var(--rose);
  padding-left: 24px;
  position: relative;
  z-index: 1;
}

.split-copy {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.about-points {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.about-points span {
  align-items: center;
  background: rgba(255, 250, 255, 0.74);
  border: 1px solid rgba(125, 85, 179, 0.18);
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  font-weight: 800;
  min-height: 96px;
  padding: 18px;
}

.consult-button {
  max-width: 560px;
  width: fit-content;
}

.pricing-layout {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.ambient-pricing {
  animation-delay: -5.2s;
  animation-duration: 12.5s;
  height: 64%;
  right: -12%;
  top: 8%;
  width: 78%;
}

.price-list {
  border-top: 1px solid var(--line);
}

.price-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto 110px;
  min-height: 74px;
  padding: 18px 0;
}

.price-row span {
  font-size: 18px;
  font-weight: 720;
}

.price-row strong {
  font-size: 20px;
}

.price-row em {
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

.pricing-art {
  background:
    linear-gradient(135deg, rgba(255, 250, 255, 0.92), rgba(237, 227, 246, 0.72));
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: 24px;
}

.pricing-art > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.pricing-art > strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
  margin: 8px 0 22px;
}

.pricing-illustration {
  margin: 10px 0;
  min-height: 210px;
}

.art-labels {
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 760;
  justify-content: space-between;
  margin-top: 8px;
}

.booking-band {
  align-items: center;
  background: var(--moss);
  color: white;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 72px);
  position: relative;
}

.booking-band > div,
.booking-band > a {
  position: relative;
  z-index: 1;
}

.booking-art {
  animation: bookingLineDrift 10s ease-in-out infinite alternate;
  fill: none;
  height: 130%;
  opacity: 0.24;
  pointer-events: none;
  position: absolute;
  right: 5%;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  top: -14%;
  transform-box: fill-box;
  transform-origin: 50% 52%;
  width: 44%;
}

.booking-band .eyebrow,
.booking-band p {
  color: rgba(255, 255, 255, 0.72);
}

.booking-band h2,
.booking-band p {
  margin-bottom: 0;
  max-width: 760px;
}

.visit-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.ambient-visit {
  animation-delay: -3.4s;
  animation-duration: 10.5s;
  bottom: 10%;
  height: 48%;
  left: -6%;
  width: 62%;
}

.visit-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 186px;
  padding: 24px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.visit-card:hover {
  border-color: rgba(95, 63, 143, 0.44);
  transform: translateY(-2px);
}

.note {
  background: var(--soft);
  padding-bottom: clamp(42px, 6vw, 72px);
  padding-top: clamp(42px, 6vw, 72px);
}

.note p {
  margin-bottom: 0;
  max-width: 920px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 72px);
}

.site-footer img {
  height: 42px;
}

.site-footer p {
  color: var(--muted);
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 44px;
}

.social-links a:hover {
  background: var(--lilac);
  border-color: rgba(125, 85, 179, 0.34);
  transform: translateY(-2px);
}

.social-links svg {
  fill: none;
  height: 22px;
  stroke: var(--moss);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 22px;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 34px;
  }

  .hero-visual {
    aspect-ratio: auto;
    min-height: 400px;
  }

  .treatment-grid,
  .visit-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-art {
    min-height: 300px;
  }

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

  .booking-art,
  .ambient-hero,
  .ambient-about,
  .ambient-treatments,
  .ambient-benefits,
  .ambient-pricing,
  .ambient-visit {
    opacity: 0.3;
  }

  .booking-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .statement-copy p:first-child {
    font-size: clamp(64px, 15vw, 132px);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
  }

  .brand img {
    height: 42px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 42px rgba(23, 32, 28, 0.08);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 10px 20px 20px;
    position: absolute;
    right: 0;
    top: 70px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    width: 100%;
  }

  .nav-book {
    margin-top: 8px;
    padding-left: 18px !important;
    text-align: center;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .consult-button {
    width: 100%;
  }

  .intro-band,
  .treatment-grid,
  .benefit-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .statement {
    min-height: 430px;
  }

  .statement-copy p:first-child {
    font-size: clamp(58px, 18vw, 92px);
  }

  .hero-statement {
    font-size: clamp(64px, 18vw, 104px);
    line-height: 0.92;
  }

  .ambient-art {
    stroke-width: 2.5;
  }

  .ambient-hero {
    height: 64%;
    left: -46%;
    top: 4%;
    width: 155%;
  }

  .ambient-treatments {
    height: 54%;
    left: -48%;
    top: 1%;
    width: 160%;
  }

  .ambient-benefits {
    height: 58%;
    right: -54%;
    top: 2%;
    width: 160%;
  }

  .ambient-about {
    bottom: 8%;
    height: 64%;
    right: -54%;
    width: 145%;
  }

  .ambient-pricing {
    height: 58%;
    right: -58%;
    top: 1%;
    width: 166%;
  }

  .ambient-visit {
    bottom: 18%;
    height: 56%;
    left: -48%;
    width: 158%;
  }

  .booking-art {
    height: 116%;
    opacity: 0.34;
    right: -30%;
    top: -8%;
    width: 112%;
  }

  .price-row {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-row em {
    text-align: left;
  }

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