:root {
  --ink: #171112;
  --ink-soft: #2b2020;
  --cocoa: #4f3732;
  --lip: #9a6054;
  --lip-soft: #c28d80;
  --lip-pale: #ead0c9;
  --cream: #fbf5ee;
  --paper: #f3e7dd;
  --sand: #dfcbbc;
  --muted: #7d6660;
  --line: rgba(154, 96, 84, 0.2);
  --line-dark: rgba(234, 208, 201, 0.2);
  --shadow: 0 28px 86px rgba(43, 32, 32, 0.18);
  --radius: 24px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --mouse-x: 0px;
  --mouse-y: 0px;
  --scroll-shift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 82% 8%, rgba(194, 141, 128, 0.24), transparent 30rem),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 48%, #efe0d6 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle, rgba(154, 96, 84, 0.2) 1px, transparent 1.4px);
  background-size: 28px 28px;
  opacity: 0.22;
  mask-image: linear-gradient(180deg, transparent, black 16%, black 56%, transparent);
  animation: dustDrift 22s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 42vh;
  background: linear-gradient(180deg, transparent, rgba(154, 96, 84, 0.14));
  pointer-events: none;
}

.floating-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.float-piece {
  position: absolute;
  display: block;
  border: 1px solid rgba(154, 96, 84, 0.18);
  background:
    radial-gradient(circle at 28% 24%, rgba(251, 245, 238, 0.5), transparent 32%),
    linear-gradient(135deg, rgba(234, 208, 201, 0.28), rgba(154, 96, 84, 0.08));
  opacity: 0.46;
  box-shadow: 0 26px 70px rgba(79, 55, 50, 0.12);
  backdrop-filter: blur(4px);
  transform: translate3d(
    calc(var(--mouse-x) * var(--mx, 0.02)),
    calc((var(--scroll-shift) * var(--sy, 0.06)) + (var(--mouse-y) * var(--my, 0.02))),
    0
  ) rotate(var(--rotate, 0deg));
  transition: transform 120ms linear;
}

.float-piece-a {
  --mx: 0.026;
  --my: 0.018;
  --sy: -0.055;
  --rotate: -8deg;
  top: 18%;
  left: 3%;
  width: clamp(84px, 11vw, 154px);
  aspect-ratio: 1;
  border-radius: 50%;
}

.float-piece-b {
  --mx: -0.018;
  --my: 0.024;
  --sy: 0.07;
  --rotate: 12deg;
  top: 54%;
  right: 5%;
  width: clamp(112px, 15vw, 210px);
  aspect-ratio: 1.25;
  border-radius: 999px;
}

.float-piece-c {
  --mx: 0.014;
  --my: -0.02;
  --sy: -0.04;
  --rotate: 5deg;
  top: 82%;
  left: 12%;
  width: clamp(120px, 18vw, 260px);
  height: clamp(42px, 6vw, 84px);
  border-radius: 999px;
  opacity: 0.34;
}

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

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

.skip-link {
  position: absolute;
  top: -52px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(210px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  min-height: 68px;
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(154, 96, 84, 0.18);
  border-radius: 999px;
  background: rgba(251, 245, 238, 0.86);
  box-shadow: 0 14px 44px rgba(43, 32, 32, 0.1);
  backdrop-filter: blur(18px);
}

.site-header[data-scrolled] {
  background: rgba(251, 245, 238, 0.94);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lip-pale);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.1;
}

.brand small {
  max-width: 170px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(154, 96, 84, 0.2);
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.72);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.main-nav {
  display: flex;
  min-width: 0;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 24px);
  color: var(--cocoa);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a,
.text-link,
.site-footer a,
.cookie-actions a {
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.text-link:hover,
.site-footer a:hover,
.cookie-actions a:hover {
  color: var(--lip);
}

.header-cta,
.button,
.cookie-actions button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--ink);
  color: var(--cream);
}

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

main {
  position: relative;
  z-index: 1;
  overflow: clip;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  min-height: calc(100svh - 92px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 118px) 0 clamp(52px, 8vw, 96px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 44px auto auto -42px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(154, 96, 84, 0.2);
  border-radius: 50%;
  opacity: 0.7;
  animation: slowTurn 26s linear infinite;
}

.hero::after {
  right: min(22vw, 240px);
  bottom: clamp(24px, 7vw, 82px);
  width: 128px;
  height: 82px;
  background-image: radial-gradient(circle, rgba(154, 96, 84, 0.42) 1.5px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.45;
}

.hero-copy {
  min-width: 0;
  animation: riseIn 700ms ease both;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--lip);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lip);
  box-shadow: 12px 0 0 rgba(154, 96, 84, 0.24);
}

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

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(52px, 7.6vw, 98px);
  line-height: 0.94;
}

h2 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 2.4vw, 32px);
  line-height: 1.04;
}

.lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 0 22px;
}

.button.primary {
  background: linear-gradient(135deg, var(--ink), var(--cocoa));
  color: var(--cream);
  box-shadow: 0 16px 40px rgba(43, 32, 32, 0.18);
}

.button.secondary {
  border-color: rgba(154, 96, 84, 0.22);
  background: rgba(251, 245, 238, 0.62);
  color: var(--ink);
}

.button.instagram {
  border-color: rgba(154, 96, 84, 0.26);
  background: linear-gradient(135deg, rgba(154, 96, 84, 0.9), rgba(194, 141, 128, 0.72));
  color: var(--cream);
}

.button.instagram::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.8;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(680px, 100%);
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(251, 245, 238, 0.68);
}

.trust-strip div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

dt {
  color: rgba(79, 55, 50, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.hero-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 96, 84, 0.18);
  border-radius: 30px;
  background: var(--sand);
  box-shadow: var(--shadow);
  animation: riseIn 760ms 120ms ease both, portraitFloat 8s ease-in-out infinite 1.2s;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(251, 245, 238, 0.46);
  border-radius: 22px;
  pointer-events: none;
}

.hero-media img {
  aspect-ratio: 3 / 4.7;
  height: auto;
  max-height: min(72svh, 760px);
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.98) contrast(1.02);
}

.section {
  position: relative;
  scroll-margin-top: 104px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 128px) 0;
}

.section::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: clamp(38px, 6vw, 72px);
  background: linear-gradient(90deg, transparent, rgba(154, 96, 84, 0.34), transparent);
}

.split::before,
.contact-band::before {
  grid-column: 1 / -1;
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
}

.intro-grid {
  align-items: center;
}

.intro p,
.split-copy p,
.section-heading p,
.treatment-card p,
.value-card p,
.faq-list p,
.contact-band p,
.site-footer p,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.value-section {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: clamp(-18px, -1vw, 0px) auto clamp(18px, 3vw, 42px);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(154, 96, 84, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(251, 245, 238, 0.82), rgba(234, 208, 201, 0.38)),
    rgba(251, 245, 238, 0.72);
  box-shadow: 0 26px 80px rgba(43, 32, 32, 0.08);
  backdrop-filter: blur(12px);
}

.value-card {
  position: relative;
  min-height: 214px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.value-card:last-child {
  border-right: 0;
}

.value-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 64px;
  height: 42px;
  opacity: 0.22;
  background-image: radial-gradient(circle, var(--lip) 1.2px, transparent 1.4px);
  background-size: 11px 11px;
}

.value-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(154, 96, 84, 0.24);
  border-radius: 999px;
  color: var(--lip);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 0 0 6px rgba(154, 96, 84, 0.05);
}

.value-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 0.96;
}

.value-card p {
  position: relative;
  z-index: 1;
  max-width: 28ch;
  margin: 0;
  font-size: 15px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.treatment-card {
  display: grid;
  grid-template-columns: minmax(140px, 0.42fr) minmax(0, 1fr);
  min-width: 0;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(154, 96, 84, 0.18);
  border-radius: var(--radius);
  background: rgba(251, 245, 238, 0.62);
  box-shadow: 0 18px 46px rgba(43, 32, 32, 0.08);
}

.treatment-card img {
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center;
}

.treatment-card div {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
}

.treatment-card.text-only {
  position: relative;
  grid-template-columns: 1fr;
  isolation: isolate;
}

.treatment-card.text-only::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(154, 96, 84, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 18%, rgba(194, 141, 128, 0.18), transparent 12rem),
    radial-gradient(circle at 82% 74%, rgba(154, 96, 84, 0.12), transparent 10rem);
}

.prices {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - 1160px) / 2));
  padding-left: max(16px, calc((100vw - 1160px) / 2));
  background:
    radial-gradient(circle at 88% 14%, rgba(194, 141, 128, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(23, 17, 18, 0.98), rgba(43, 32, 32, 0.98));
  color: var(--cream);
}

.prices::before {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
  background: linear-gradient(90deg, transparent, var(--line-dark), transparent);
}

.prices .section-heading p {
  color: rgba(251, 245, 238, 0.68);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
  max-width: 1160px;
  margin: 0 auto;
  overflow: visible;
}

.price-row {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(251, 245, 238, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(251, 245, 238, 0.055), transparent 56%),
    rgba(23, 17, 18, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.price-row figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(251, 245, 238, 0.12);
  background: rgba(251, 245, 238, 0.05);
}

.price-row figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(23, 17, 18, 0.72));
  pointer-events: none;
}

.price-row img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
  transition: transform 700ms ease;
}

.price-row:hover img {
  transform: scale(1.035);
}

.price-row:nth-child(3) img {
  object-position: center 38%;
}

.price-row:nth-child(5) img {
  object-position: center 34%;
}

.price-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: clamp(20px, 2.2vw, 28px);
}

.price-row h3 {
  font-size: clamp(25px, 2.35vw, 32px);
  line-height: 0.98;
}

.price-row p {
  margin: 0;
  color: rgba(251, 245, 238, 0.62);
}

.price-row strong {
  margin-top: 12px;
  color: var(--lip-pale);
  font-size: clamp(27px, 2.7vw, 34px);
  line-height: 1;
}

.price-row span {
  color: rgba(251, 245, 238, 0.74);
  font-size: 13px;
  font-weight: 900;
}

.demo-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

.demo-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-template-rows: minmax(360px, 520px);
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portfolio-cta {
  width: fit-content;
  margin: -8px auto 30px;
  padding-right: 28px;
  padding-left: 28px;
  box-shadow: 0 18px 42px rgba(154, 96, 84, 0.24);
}

.demo-grid figure,
.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 96, 84, 0.18);
  border-radius: var(--radius);
  background: var(--sand);
  box-shadow: 0 18px 46px rgba(43, 32, 32, 0.08);
}

.prices .demo-grid figure {
  border-color: rgba(251, 245, 238, 0.14);
  box-shadow: none;
}

.demo-main {
  min-height: 460px;
}

.demo-grid img,
.gallery-grid img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
  transition: transform 700ms ease;
}

.demo-grid figure:hover img,
.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.demo-grid figcaption,
.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(251, 245, 238, 0.42);
  border-radius: 999px;
  background: rgba(23, 17, 18, 0.72);
  color: var(--lip-pale);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.split {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 0.92fr);
  align-items: stretch;
}

.split-media {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 96, 84, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.split-media img {
  height: 100%;
  min-height: 520px;
  aspect-ratio: 3 / 4;
  max-height: 720px;
  object-fit: cover;
  object-position: center 28%;
}

.studio-collage {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 10px;
  padding: 10px;
  background: rgba(251, 245, 238, 0.48);
}

.studio-collage img {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 18px;
  object-fit: cover;
}

.studio-collage img:first-child {
  grid-row: 1 / span 2;
}

.split-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(154, 96, 84, 0.18);
  border-radius: 28px;
  background: rgba(251, 245, 238, 0.62);
  box-shadow: 0 18px 46px rgba(43, 32, 32, 0.08);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  border-bottom: 1px solid var(--lip);
  color: var(--lip);
  font-weight: 900;
}

.studio-perks {
  display: grid;
  gap: 10px;
  margin: 24px 0 6px;
}

.studio-perks article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(154, 96, 84, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 252, 248, 0.64), rgba(194, 141, 128, 0.12));
}

.studio-perks span {
  grid-row: 1 / span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(154, 96, 84, 0.12);
  color: var(--lip);
  font-size: 10px;
  font-weight: 900;
}

.studio-perks h3 {
  align-self: end;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.studio-perks p {
  margin: 0;
  font-size: 13px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

blockquote {
  margin: 0;
  padding: clamp(24px, 3vw, 30px);
  border: 1px solid rgba(154, 96, 84, 0.18);
  border-radius: var(--radius);
  background: rgba(251, 245, 238, 0.62);
  box-shadow: 0 18px 46px rgba(43, 32, 32, 0.08);
}

blockquote p {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 2.1vw, 28px);
  line-height: 1.15;
}

blockquote cite {
  color: var(--lip);
  font-style: normal;
  font-weight: 900;
}

.centered {
  width: fit-content;
  margin: 30px auto 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.contact-band {
  display: grid;
  scroll-margin-top: 104px;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, auto);
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  margin: clamp(42px, 7vw, 90px) auto;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(194, 141, 128, 0.22), transparent 28rem),
    linear-gradient(135deg, var(--ink), var(--cocoa));
  color: var(--cream);
  box-shadow: var(--shadow);
}

.contact-band .eyebrow,
.contact-band .section-kicker {
  color: var(--lip-pale);
}

.contact-band p {
  color: rgba(251, 245, 238, 0.68);
}

.contact-band h2 {
  max-width: 720px;
}

.contact-band .button.secondary {
  border-color: rgba(234, 208, 201, 0.24);
  background: rgba(251, 245, 238, 0.08);
  color: var(--cream);
}

.contact-details {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: var(--line-dark);
}

.contact-details div {
  min-width: 0;
  padding: 18px;
  background: rgba(251, 245, 238, 0.06);
}

.contact-details dt {
  color: rgba(251, 245, 238, 0.54);
}

.contact-details dd {
  color: var(--cream);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: start;
  gap: clamp(24px, 6vw, 72px);
  padding: 34px max(16px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  background: rgba(251, 245, 238, 0.72);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
  font-size: 13px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 900;
}

.footer-contact a {
  color: var(--cocoa);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 900;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(610px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid rgba(154, 96, 84, 0.22);
  border-radius: 20px;
  background: rgba(251, 245, 238, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.cookie-actions a {
  color: var(--lip);
  font-weight: 900;
}

.cookie-actions button {
  min-height: 40px;
  padding: 0 16px;
  background: var(--ink);
  color: var(--cream);
}

.legal-page {
  width: min(920px, calc(100% - 32px));
  margin: clamp(54px, 8vw, 104px) auto;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(154, 96, 84, 0.18);
  border-radius: 28px;
  background: rgba(251, 245, 238, 0.68);
  box-shadow: 0 18px 46px rgba(43, 32, 32, 0.08);
}

.legal-page h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
}

.legal-page h2 {
  margin-top: 38px;
  font-size: 34px;
  line-height: 1;
}

.legal-page a {
  border-bottom: 1px solid currentColor;
  color: var(--lip);
  font-weight: 800;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.64fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  min-height: calc(100vh - 90px);
  padding-top: clamp(96px, 12vw, 148px);
}

.detail-hero::before {
  display: none;
}

.detail-showcase::before {
  grid-column: 1 / -1;
}

.detail-hero h1 {
  max-width: 9.2ch;
  font-size: clamp(64px, 8.4vw, 128px);
  line-height: 0.86;
}

.detail-hero .lead {
  max-width: 45ch;
}

.detail-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 96, 84, 0.2);
  border-radius: 34px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.detail-hero-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(251, 245, 238, 0.5);
  border-radius: 24px;
  pointer-events: none;
}

.detail-hero-media img {
  min-height: 560px;
  object-fit: cover;
  object-position: center 22%;
}

.detail-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(980px, calc(100% - 32px));
  margin: -30px auto clamp(28px, 4vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(154, 96, 84, 0.18);
  border-radius: 28px;
  background: rgba(251, 245, 238, 0.74);
  box-shadow: 0 26px 80px rgba(43, 32, 32, 0.08);
  backdrop-filter: blur(12px);
}

.detail-strip article {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.detail-strip article:last-child {
  border-right: 0;
}

.detail-strip span {
  display: block;
  margin-bottom: 42px;
  color: var(--lip);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-strip h2 {
  margin: 0 0 10px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 0.92;
}

.detail-strip p,
.detail-checklist span,
.detail-note p {
  color: var(--muted);
}

.detail-layout {
  padding-top: clamp(74px, 9vw, 118px);
}

.detail-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-checklist article {
  position: relative;
  min-width: 0;
  min-height: 150px;
  padding: 26px 26px 26px 64px;
  border: 1px solid rgba(154, 96, 84, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(251, 245, 238, 0.84), rgba(234, 208, 201, 0.28)),
    rgba(251, 245, 238, 0.74);
  box-shadow: 0 16px 38px rgba(43, 32, 32, 0.06);
}

.detail-checklist article::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 26px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(154, 96, 84, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle, var(--lip) 2.5px, transparent 3.5px),
    rgba(251, 245, 238, 0.58);
}

.detail-checklist article:nth-child(3n) {
  transform: translateY(18px);
}

.detail-checklist span {
  display: block;
  font-size: 15px;
}

.detail-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.detail-note {
  min-width: 0;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(154, 96, 84, 0.18);
  border-radius: 28px;
  background: rgba(23, 17, 18, 0.94);
  box-shadow: var(--shadow);
}

.detail-note h2,
.detail-note .eyebrow {
  color: var(--cream);
}

.detail-note p {
  color: rgba(251, 245, 238, 0.72);
}

.detail-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 12px;
}

.detail-image-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 96, 84, 0.18);
  border-radius: 24px;
  background: var(--sand);
  box-shadow: 0 18px 46px rgba(43, 32, 32, 0.08);
}

.detail-image-grid figure:first-child {
  grid-column: 1 / -1;
  grid-row: auto;
  aspect-ratio: 16 / 9;
}

.detail-image-grid figure:not(:first-child) {
  aspect-ratio: 4 / 5;
}

.detail-image-grid img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.detail-image-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(251, 245, 238, 0.42);
  border-radius: 999px;
  background: rgba(23, 17, 18, 0.72);
  color: var(--lip-pale);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portraitFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes slowTurn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dustDrift {
  to {
    background-position: 28px 28px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .price-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-row:last-child {
    grid-column: auto;
  }
}

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

  .nav-toggle {
    display: grid;
    gap: 4px;
  }

  .main-nav {
    display: none;
  }

  .site-header[data-nav-open] .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(154, 96, 84, 0.18);
    border-radius: 24px;
    background: rgba(251, 245, 238, 0.96);
    box-shadow: 0 18px 46px rgba(43, 32, 32, 0.14);
    backdrop-filter: blur(18px);
  }

  .site-header[data-nav-open] .main-nav a {
    min-height: 42px;
    padding: 11px 12px;
    border: 1px solid rgba(154, 96, 84, 0.12);
    border-radius: 16px;
    background: rgba(255, 252, 248, 0.68);
    text-align: center;
  }

  .hero,
  .detail-hero,
  .intro-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .detail-hero {
    min-height: auto;
    padding-top: 104px;
  }

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

  .hero-media {
    width: min(520px, 100%);
    justify-self: center;
  }

  .detail-hero-media {
    width: min(560px, 100%);
    justify-self: center;
  }

  .detail-strip,
  .detail-checklist,
  .detail-showcase {
    grid-template-columns: 1fr;
  }

  .detail-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-strip article:last-child {
    border-bottom: 0;
  }

  .detail-checklist article:nth-child(3n) {
    transform: none;
  }

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

  .split {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 24px;
  }

  .split-media img {
    min-height: 460px;
  }

  .hero-media img {
    max-height: none;
  }

  .detail-hero-media img {
    min-height: 460px;
  }

  .treatment-grid,
  .value-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .value-section {
    width: min(100% - 28px, 620px);
    margin-top: -8px;
  }

  .value-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .demo-grid,
  .gallery-grid,
  .detail-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .demo-grid figure,
  .demo-main,
  .gallery-grid figure,
  .gallery-grid figure:first-child,
  .detail-image-grid figure:first-child {
    grid-row: auto;
  }

  .demo-grid img,
  .gallery-grid img,
  .detail-image-grid img {
    aspect-ratio: 4 / 5;
  }
}

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

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

  .split-media,
  .split-copy {
    width: min(560px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .split-media img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 640px) {
  body,
  main {
    width: 100%;
    max-width: 100vw;
  }

  .site-header {
    top: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100% - 24px);
    min-height: 0;
    margin-top: 8px;
    padding: 9px 12px;
    overflow: visible;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .site-header[data-nav-open] .main-nav {
    grid-template-columns: 1fr;
  }

  .hero,
  .detail-hero,
  .section,
  .contact-band {
    width: calc(100% - 24px);
  }

  .floating-layer {
    opacity: 0.7;
  }

  .hero {
    gap: 28px;
    padding-top: 46px;
    padding-bottom: 58px;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    right: 4px;
    bottom: 18px;
    width: 86px;
    height: 58px;
    opacity: 0.32;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(44px, 13vw, 54px);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1;
  }

  h3,
  .price-row h3 {
    font-size: 27px;
  }

  .lead {
    max-width: 33ch;
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button,
  .contact-actions a {
    width: 100%;
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
    text-align: center;
  }

  .trust-strip,
  .contact-details,
  .demo-grid,
  .gallery-grid,
  .detail-image-grid,
  .price-list {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .treatment-card img {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .price-row,
  .price-row:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .demo-main {
    min-height: 0;
  }

  .demo-grid img,
  .gallery-grid img,
  .detail-image-grid img {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .detail-hero {
    padding-top: 72px;
  }

  .detail-hero h1 {
    max-width: 10ch;
  }

  .detail-hero-media img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .detail-strip {
    width: calc(100% - 24px);
    margin-top: 0;
  }

  .detail-strip span {
    margin-bottom: 22px;
  }

  .detail-checklist article {
    min-height: 0;
    padding: 24px 22px 24px 56px;
  }

  .detail-note {
    padding: 28px 22px;
  }

  .studio-collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .studio-collage img:first-child {
    grid-row: auto;
  }

  .studio-collage img {
    aspect-ratio: 4 / 5;
  }

  .split-copy,
  .legal-page,
  .contact-band {
    padding: 28px 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    width: calc(100vw - 20px);
    padding: 14px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    white-space: normal;
  }

  .cookie-actions a,
  .cookie-actions button {
    width: 100%;
    text-align: center;
  }
}
