/* =============================================================
   RIA COSMETICS — Design System
   Warm editorial luxury: champagne, dusty rose, aubergine, gold
   Type: Fraunces (display) · Jost (body) · Parisienne (accent)
   ============================================================= */

/* ------------------------------------------------------------------
   0. Tokens
------------------------------------------------------------------ */
:root {
  /* Palette */
  --cream:       #FBF6F0;
  --cream-2:     #F5ECE2;
  --cream-3:     #F0E4D8;
  --blush:       #F7E6EC;
  --blush-2:     #F0D5DF;
  --rose:        #D9A7A2;
  --rose-deep:   #C4867F;
  --oat:         #E9DDD0;
  --taupe:       #A78F80;
  --cocoa:       #5A4238;
  --espresso:    #2D211D;
  --gold:        #C29A54;
  --gold-soft:   #E3CE9C;
  --plum:        #5E3F5E;
  --plum-deep:   #452F48;
  --ink:         #33272C;
  --muted:       #8C7A80;
  --line:        #E9DBCF;
  --line-2:      #E3D0D9;
  --white:       #FFFFFF;

  /* Semantic */
  --bg:          var(--cream);
  --text:        var(--ink);
  --heading:     var(--plum-deep);
  --accent:      var(--rose-deep);

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script:  "Parisienne", "Snell Roundhand", cursive;

  /* Fluid type scale */
  --fs-display: clamp(3.1rem, 1.6rem + 6.6vw, 6.6rem);
  --fs-h1:      clamp(2.5rem, 1.6rem + 3.9vw, 4.4rem);
  --fs-h2:      clamp(2rem, 1.4rem + 2.6vw, 3.2rem);
  --fs-h3:      clamp(1.4rem, 1.1rem + 1.1vw, 1.9rem);
  --fs-h4:      clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
  --fs-body:    clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --fs-lead:    clamp(1.12rem, 1.02rem + 0.5vw, 1.35rem);
  --fs-label:   0.78rem;

  /* Spacing */
  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --gutter:        clamp(1.25rem, 0.6rem + 3vw, 3rem);
  --container:     1240px;
  --container-narrow: 880px;

  /* Radii */
  --r-xs: 8px;
  --r-sm: 14px;
  --r:    22px;
  --r-lg: 34px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(69,47,72,.05), 0 4px 14px -8px rgba(69,47,72,.14);
  --shadow-sm: 0 6px 20px -12px rgba(69,47,72,.22);
  --shadow:    0 22px 50px -28px rgba(69,47,72,.34);
  --shadow-lg: 0 44px 90px -46px rgba(69,47,72,.42);
  --shadow-gold: 0 18px 44px -24px rgba(194,154,84,.5);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .5s;

  --header-h: 84px;
}

/* ------------------------------------------------------------------
   1. Reset / Base
------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
  position: relative;
}

/* Grain overlay for warmth/depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }
input, textarea, select, button { font: inherit; }

::selection { background: var(--rose); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ------------------------------------------------------------------
   2. Typography
------------------------------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 500; }
h4 { font-size: var(--fs-h4); font-family: var(--font-body); font-weight: 500; color: var(--plum); letter-spacing: 0; line-height: 1.3; }

p { text-wrap: pretty; }
strong { font-weight: 600; color: var(--plum); }

.display {
  font-size: var(--fs-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: #4d3f45;
  font-weight: 300;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--rose-deep);
  letter-spacing: 0.01em;
  line-height: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}

.italic-accent { font-style: italic; color: var(--rose-deep); }

/* ------------------------------------------------------------------
   3. Layout
------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
.section--cream2 {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 13%, var(--cream-2) 87%, var(--cream) 100%);
}
.section--blush {
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 14%, #f9ecf0 86%, var(--cream) 100%);
}
.section--plum {
  background:
    linear-gradient(180deg, var(--cream) 0%, rgba(251,246,240,0) 16%, rgba(251,246,240,0) 84%, var(--cream) 100%),
    radial-gradient(120% 120% at 80% -10%, var(--plum) 0%, var(--plum-deep) 60%);
  color: #efe4ec;
}
.section--plum h2, .section--plum h3 { color: #fff; }
.section--plum .eyebrow { color: var(--gold-soft); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 1.8rem + 3vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1.2rem; color: var(--muted); font-size: var(--fs-lead); font-weight: 300; }

.stack > * + * { margin-top: 1.1rem; }

.grid { display: grid; gap: clamp(1.25rem, 0.8rem + 2vw, 2.2rem); }
.grid > *, .split > *, .contact-grid > *, .footer-grid > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------
   4. Buttons
------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--plum);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.02rem 2rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 12px 28px -20px rgba(69,47,72,.48);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--rose-deep), var(--gold));
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: -1;
}
.btn:active { transform: translateY(0) scale(.975); transition-duration: .12s; }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .btn:hover::before { opacity: 1; }
}

.btn .arrow { transition: transform .35s var(--ease); }
@media (hover: hover) and (pointer: fine) { .btn:hover .arrow { transform: translateX(4px); } }

/* Button-in-button trailing icon (nested circle) */
.btn__circle {
  width: 2rem; height: 2rem; flex: none;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center;
  transition: transform .4s var(--ease), background .3s var(--ease);
}
.btn__circle svg { width: 15px; height: 15px; }
.btn--icon { padding-right: .5rem; gap: .85rem; }
@media (hover: hover) and (pointer: fine) {
  .btn:hover .btn__circle { transform: translate(3px, -1px); background: rgba(255,255,255,.28); }
}
.btn--ghost .btn__circle,
.btn--light .btn__circle { background: rgba(94,63,94,.09); border-color: rgba(94,63,94,.1); }
.btn--ghost:hover .btn__circle { background: rgba(255,255,255,.22); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--plum);
  border-color: var(--plum);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 10px 24px -20px rgba(69,47,72,.42);
}
.btn--ghost::before { background: var(--plum); }
.btn--ghost:hover { color: #fff; border-color: transparent; }

.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--plum-deep);
  box-shadow: var(--shadow-sm);
}
.btn--light::before { background: linear-gradient(115deg, var(--blush), var(--gold-soft)); }
.btn--light:hover { color: var(--plum-deep); }

.btn--gold {
  --btn-bg: linear-gradient(115deg, var(--gold) 0%, var(--rose) 100%);
  --btn-fg: #fff;
}
.btn--gold::before { background: linear-gradient(115deg, var(--plum), var(--rose-deep)); }

.btn--sm { padding: .78rem 1.4rem; font-size: .74rem; }
.btn--block { display: flex; width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--plum);
  position: relative;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow .arrow { transition: transform .35s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ------------------------------------------------------------------
   5. Header / Nav
------------------------------------------------------------------ */
.topbar {
  background: var(--plum-deep);
  color: #e8d8e4;
  font-size: .74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  min-height: 40px;
  padding-block: .35rem;
  flex-wrap: wrap;
  text-align: center;
}
.topbar a { color: var(--gold-soft); transition: color .3s; }
.topbar a:hover { color: #fff; }
.topbar .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rose); }
@media (max-width: 640px) { .topbar .hide-sm { display: none; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px var(--gutter) 0;
  transition: padding .5s var(--ease);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 68px;
  max-width: var(--container);
  margin-inline: auto;
  padding: .5rem .6rem .5rem 1.5rem;
  background: color-mix(in srgb, var(--cream) 78%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  border-radius: var(--r-pill);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 12px 40px -26px rgba(69,47,72,.4);
  transition: background .5s var(--ease), box-shadow .5s var(--ease);
}
.site-header.scrolled { padding-top: 8px; }
.site-header.scrolled .nav {
  background: color-mix(in srgb, var(--cream) 93%, transparent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 16px 44px -24px rgba(69,47,72,.5);
}

/* Navigation brand: the original Instagram logo, cropped into a calm wide lockup. */
.logo { display: inline-flex; align-items: center; }
.logo--nav {
  width: auto;
  height: 56px;
  flex: none;
  gap: .68rem;
}
.logo__mark {
  display: block;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 15px;
  isolation: isolate;
}
.logo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  mix-blend-mode: multiply;
  transform: scale(1.72);
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1rem + .22vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.035em;
  color: var(--plum-deep);
}
.logo__sub {
  font-size: .55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(.6rem, .2rem + 1vw, 1.7rem);
}
.nav-links a {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  padding: .4rem 0;
  transition: color .3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--plum); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  position: relative;
  flex: none;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  width: 20px; height: 1.6px;
  background: var(--plum-deep);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), opacity .3s;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }

@media (max-width: 1024px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 520px) {
  .nav { padding-left: .7rem; }
  .logo--nav { height: 50px; gap: .48rem; }
  .logo__mark { width: 46px; height: 46px; border-radius: 13px; }
  .logo--nav .logo__name { font-size: 1rem; }
  .logo--nav .logo__sub { font-size: .48rem; letter-spacing: .2em; }
}

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 200;
  background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 60%, var(--cream-2) 100%);
  padding: clamp(1.5rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .6s var(--ease-out), visibility 0s linear .6s;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-close {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line-2); position: relative; flex: none;
}
.mobile-close::before, .mobile-close::after {
  content: ""; position: absolute; width: 20px; height: 1.6px; background: var(--plum-deep);
  left: 50%; top: 50%;
}
.mobile-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.mobile-close::after  { transform: translate(-50%,-50%) rotate(-45deg); }

.mobile-nav {
  margin-top: auto; margin-bottom: auto;
  display: flex; flex-direction: column; gap: .2rem;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.2rem + 4vw, 2.8rem);
  font-weight: 500;
  color: var(--plum-deep);
  padding: .35rem 0;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; transform: translateY(18px);
}
.mobile-menu.open .mobile-nav a {
  animation: menuIn .6s var(--ease-out) forwards;
}
.mobile-menu.open .mobile-nav a:nth-child(1) { animation-delay: .06s; }
.mobile-menu.open .mobile-nav a:nth-child(2) { animation-delay: .11s; }
.mobile-menu.open .mobile-nav a:nth-child(3) { animation-delay: .16s; }
.mobile-menu.open .mobile-nav a:nth-child(4) { animation-delay: .21s; }
.mobile-menu.open .mobile-nav a:nth-child(5) { animation-delay: .26s; }
.mobile-menu.open .mobile-nav a:nth-child(6) { animation-delay: .31s; }
.mobile-menu.open .mobile-nav a:nth-child(7) { animation-delay: .36s; }
.mobile-menu.open .mobile-nav a:nth-child(8) { animation-delay: .41s; }
.mobile-nav a span { font-family: var(--font-body); font-size: .8rem; color: var(--rose-deep); letter-spacing: .1em; }
.mobile-nav a:hover { color: var(--rose-deep); }
@keyframes menuIn { to { opacity: 1; transform: translateY(0); } }

.mobile-menu__foot { display: flex; flex-direction: column; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--line-2); }
.mobile-menu__foot .contact-line { display: flex; align-items: center; gap: .6rem; color: var(--plum); font-size: .95rem; }

body.menu-open { overflow: hidden; }

/* ------------------------------------------------------------------
   6. Media / image placeholders
------------------------------------------------------------------ */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background:
    radial-gradient(130% 100% at 15% 0%, var(--blush) 0%, transparent 55%),
    radial-gradient(120% 120% at 90% 100%, var(--gold-soft) 0%, transparent 50%),
    linear-gradient(150deg, var(--cream-2), var(--cream-3));
  isolation: isolate;
}
/* Monogram watermark on placeholders */
.media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/monogram.svg") no-repeat center / clamp(90px, 30%, 160px);
  opacity: .28;
  z-index: 0;
}
.media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--img-scale, 1));
  transition: transform 1.2s var(--ease-out), opacity .8s ease;
}
.media--owner-focus img { object-position: center 46%; }
.media--certificate-focus img { object-position: center 46%; }
.media--room-card img { object-position: center 60%; }
.media--mirror-card img { object-position: center 45%; }
.media--lash-card img { object-position: center 48%; }
.media--treatment-focus img { object-position: center 50%; }
.media--zoom:hover { --img-scale: 1.05; }

.media--tall { aspect-ratio: 3 / 4; }
.media--portrait { aspect-ratio: 4 / 5; }
.media--square { aspect-ratio: 1 / 1; }
.media--wide { aspect-ratio: 16 / 10; }
.media--pano { aspect-ratio: 16 / 7; }

/* small caption badge over media */
.media__badge {
  position: absolute;
  z-index: 3;
  bottom: 1rem; left: 1rem;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: .5rem 1rem;
  border-radius: var(--r-pill);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--plum-deep);
  box-shadow: var(--shadow-sm);
}

/* ------------------------------------------------------------------
   7. Hero
------------------------------------------------------------------ */
.hero {
  position: relative;
  padding-top: clamp(2.5rem, 1rem + 5vw, 5rem);
  padding-bottom: clamp(3rem, 2rem + 5vw, 6rem);
  overflow: hidden;
}
.hero__bg-blob {
  position: absolute;
  z-index: 0;
  filter: blur(2px);
  opacity: .55;
  pointer-events: none;
}
.hero__bg-blob--1 { top: -12%; right: -8%; width: 46vw; max-width: 640px; color: var(--blush-2); }
.hero__bg-blob--2 {
  bottom: -18%;
  left: -12%;
  width: 40vw;
  max-width: 520px;
  color: var(--gold-soft);
  opacity: .28;
  filter: blur(10px);
  -webkit-mask-image: radial-gradient(ellipse at 48% 38%, #000 0%, rgba(0,0,0,.92) 42%, rgba(0,0,0,.32) 68%, transparent 88%);
  mask-image: radial-gradient(ellipse at 48% 38%, #000 0%, rgba(0,0,0,.92) 42%, rgba(0,0,0,.32) 68%, transparent 88%);
}
.hero__brand-art {
  position: absolute;
  z-index: 0;
  top: 1.5%;
  right: -2vw;
  width: clamp(360px, 42vw, 680px);
  height: auto;
  opacity: .11;
  mix-blend-mode: multiply;
  filter: saturate(.9) contrast(1.08);
  transform: rotate(-3deg);
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 58%, transparent 88%);
  mask-image: radial-gradient(circle at 50% 50%, #000 58%, transparent 88%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
}
.hero__content { position: relative; z-index: 2; }
.hero__logo-lockup {
  position: absolute;
  top: -5.2rem;
  right: -.4rem;
  width: clamp(104px, 9vw, 132px);
  height: auto;
  opacity: .88;
  mix-blend-mode: multiply;
  filter: saturate(.94) contrast(1.04);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 66%, transparent 94%);
  mask-image: radial-gradient(circle at 50% 50%, #000 66%, transparent 94%);
}
.hero__title { margin: 1.4rem 0 0; }
.hero__title .script { display: block; font-size: clamp(2rem, 1.2rem + 4vw, 3.6rem); margin-bottom: -.3rem; }
.hero__lead { margin-top: 1.6rem; max-width: 42ch; }
.hero__cta { margin-top: 2.3rem; }

.hero-social {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  margin-top: 2rem;
  padding: .55rem .65rem .55rem .55rem;
  border: 1px solid rgba(167,143,128,.35);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.52);
  box-shadow: var(--shadow-xs);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform .35s var(--ease-out), border-color .35s ease, background .35s ease;
}
.hero-social:hover { transform: translateY(-3px); border-color: var(--rose); background: rgba(255,255,255,.82); }
.hero-social__faces { display: flex; padding-left: .15rem; }
.hero-social__faces img {
  width: 42px; height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--cream);
  box-shadow: 0 3px 10px rgba(45,33,29,.13);
}
.hero-social__faces img + img { margin-left: -12px; }
.hero-social__faces img:nth-child(1) { object-position: center 58%; }
.hero-social__copy { display: grid; line-height: 1.25; }
.hero-social__copy strong { font-size: .88rem; font-weight: 500; color: var(--plum-deep); }
.hero-social__copy > span { font-size: .7rem; color: var(--muted); letter-spacing: .035em; margin-top: .15rem; }
.hero-social__icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--plum);
  margin-left: .15rem;
}
.hero-social__icon img { width: 17px; filter: brightness(0) invert(1); }
@media (max-width: 540px) {
  .hero-social { display: flex; width: 100%; }
  .hero-social__copy { flex: 1; }
  .hero-social__faces img { width: 38px; height: 38px; }
  .hero-social__faces img + img { margin-left: -14px; }
  .hero-social__copy > span { font-size: .64rem; }
}

.hero__stats {
  display: flex;
  gap: clamp(1.2rem, .5rem + 2vw, 2.6rem);
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.stat__num { font-family: var(--font-display); font-size: clamp(1.8rem,1.4rem+1.5vw,2.6rem); font-weight: 500; color: var(--plum); line-height: 1; }
.stat__num .unit { color: var(--rose-deep); }
.stat__label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }

/* Hero visual — layered images */
.hero__visual { position: relative; z-index: 2; }
.hero__visual .media--main { aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.hero__visual .media--float {
  position: absolute;
  width: 42%;
  aspect-ratio: 1/1;
  bottom: -8%;
  left: -9%;
  box-shadow: var(--shadow);
  border: 6px solid var(--cream);
  z-index: 3;
}
.hero__seal {
  position: absolute;
  top: -4%; right: -5%;
  width: clamp(96px, 12vw, 132px);
  height: clamp(96px, 12vw, 132px);
  z-index: 4;
  animation: spin 26s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .hero__seal { animation: none; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero__stats { justify-content: space-between; }
  .hero__brand-art { top: 0; right: -22%; width: min(112vw, 580px); opacity: .08; }
  .hero__logo-lockup {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: 108px;
    margin: -1.4rem 0 1.25rem auto;
    opacity: .92;
  }
}

/* ------------------------------------------------------------------
   8. Marquee trust strip
------------------------------------------------------------------ */
.marquee {
  background: var(--plum-deep);
  color: var(--cream);
  padding-block: 1.1rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: #f0e2ec;
  white-space: nowrap;
}
.marquee__item::after { content: "✦"; color: var(--gold); font-style: normal; margin-left: 3.5rem; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ------------------------------------------------------------------
   9. Intro / welcome split
------------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 5vw, 6rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__media { order: -1; }
}
.signature {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: var(--plum);
  line-height: 1;
  margin-top: 1.5rem;
}
.signature + .signature-role { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: .4rem; }

/* ------------------------------------------------------------------
   10. Service cards
------------------------------------------------------------------ */
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(155deg, rgba(251,246,240,.84), rgba(247,230,236,.72));
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  height: 100%;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--line-2); }
.svc-card__media { aspect-ratio: 4/3; border-radius: 0; }
.svc-card__media::before { opacity: .32; }
.svc-card__body { padding: clamp(1.4rem, 1rem + 1vw, 2rem); display: flex; flex-direction: column; flex: 1; }
.svc-card__num { font-family: var(--font-display); font-size: .95rem; color: var(--rose-deep); letter-spacing: .1em; }
.svc-card h3 { margin: .5rem 0 .7rem; }
.svc-card p { color: var(--muted); font-size: .98rem; margin-bottom: 1.4rem; }
.svc-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.svc-card__price { font-family: var(--font-display); font-size: 1.25rem; color: var(--plum); }
.svc-card__price small { font-family: var(--font-body); font-size: .72rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; display: block; }

.section--treatments {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--cream) 0%, rgba(251,246,240,0) 13%, rgba(251,246,240,0) 87%, var(--cream) 100%),
    radial-gradient(circle at 8% 6%, rgba(239,170,165,.34), transparent 27%),
    radial-gradient(circle at 92% 82%, rgba(216,180,95,.22), transparent 31%),
    linear-gradient(145deg, #f5e4e2 0%, #f7eee6 43%, #eadbc9 100%);
}
.section--treatments::before {
  content: "";
  position: absolute;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  top: -28%;
  right: -14%;
  border: 1px solid rgba(196,134,127,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255,255,255,.08), 0 0 0 10rem rgba(216,180,95,.035);
  pointer-events: none;
}
.section--treatments .container { position: relative; z-index: 1; }
.section--treatments .section-head { margin-bottom: clamp(2.2rem, 1.7rem + 2vw, 3.2rem); }
.section--treatments .section-head p { color: #715f60; }
.section--treatments .svc-bento > :nth-child(2) .svc-card,
.section--treatments .svc-bento > :nth-child(5) .svc-card {
  background: linear-gradient(150deg, rgba(235,211,189,.94), rgba(249,239,230,.82));
}
.section--treatments .svc-bento > :nth-child(3) .svc-card,
.section--treatments .svc-bento > :nth-child(6) .svc-card {
  background: linear-gradient(150deg, rgba(244,210,216,.9), rgba(250,237,235,.82));
}
.section--treatments .svc-card {
  border-color: rgba(196,134,127,.23);
  box-shadow: 0 28px 60px -42px rgba(74,49,45,.52), inset 0 1px rgba(255,255,255,.58);
}
.section--treatments .svc-card:hover {
  border-color: rgba(196,134,127,.5);
  box-shadow: 0 38px 72px -42px rgba(74,49,45,.58);
}

/* Bento — asymmetric treatment grid (6-col base, minmax to keep tracks even) */
.svc-bento { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(1rem, .6rem + 1.4vw, 1.6rem); }
.svc-bento > * { grid-column: span 2; }              /* default: small thirds */
.svc-bento .b-lg { grid-column: span 3; grid-row: span 2; }
.svc-bento .b-half { grid-column: span 3; }
.svc-bento .b-lg .svc-card__media { aspect-ratio: 4/5; }
.svc-bento .b-half .svc-card__media { aspect-ratio: 16/10; }
@media (max-width: 940px) {
  .svc-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-bento > *, .svc-bento .b-lg, .svc-bento .b-half { grid-column: span 1; grid-row: auto; }
  .svc-bento .b-lg .svc-card__media { aspect-ratio: 4/3; }
}
@media (max-width: 600px) {
  .svc-bento { grid-template-columns: 1fr; }
  .svc-bento > *, .svc-bento .b-lg, .svc-bento .b-half { grid-column: span 1; }
}

/* Pillars — trust points as open columns, separated by hairlines instead of cards */
.pillars {
  --pillar-gap: clamp(2rem, 1.4rem + 2vw, 3rem);
  --pillar-rule-v: linear-gradient(180deg, transparent, rgba(194,154,84,.4) 12%, rgba(194,154,84,.4) 88%, transparent);
  --pillar-rule-h: linear-gradient(90deg, transparent, rgba(194,154,84,.4) 10%, rgba(194,154,84,.4) 90%, transparent);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pillars--3 { grid-template-columns: repeat(3, 1fr); }

/* Every column keeps the same inline padding and centres its own content, so the
   row stays optically balanced — a flush-left first column against a ragged-right
   last one reads as off-centre even when the grid itself is symmetric. */
.pillar {
  position: relative;
  padding-inline: clamp(1.1rem, .4rem + 1.9vw, 2.6rem);
  text-align: center;
}
.pillar::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 1px;
  background: var(--pillar-rule-v);
}
.pillar:first-child::before { content: none; }

.pillar__num {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .12em;
  color: var(--gold);
}
/* svg is display:block globally, so text-align cannot centre it — centre the
   wrapper itself, otherwise the icon sticks to the left once the columns stack. */
.pillar__icon {
  display: flex;
  justify-content: center;
  margin: 1.15rem 0;
  color: var(--plum);
  transition: color .45s var(--ease), transform .45s var(--ease);
}
.pillar__icon svg { width: 34px; height: 34px; }
.pillar h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.pillar p { color: var(--muted); font-size: .96rem; max-width: 30ch; margin-inline: auto; }
.pillar:hover .pillar__icon { color: var(--rose-deep); transform: translateY(-3px); }

/* One row set per line: number, icon, heading and copy share their row across all
   columns, so a two-line heading lifts every neighbour instead of only its own.
   Browsers without subgrid simply drop the rule and stack normally. */
@media (min-width: 901px) {
  .pillars { grid-template-rows: auto auto auto auto; }
  .pillar { display: grid; grid-template-rows: subgrid; grid-row: span 4; align-content: start; }
}

/* Two per row — vertical rule only mid-row, horizontal rule between rows */
@media (min-width: 621px) and (max-width: 900px) {
  .pillars, .pillars--3 { grid-template-columns: repeat(2, 1fr); row-gap: var(--pillar-gap); }
  .pillar:nth-child(odd)::before { content: none; }
  .pillar:nth-child(even)::before { content: ""; }
  .pillar:nth-child(n+3)::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: calc(var(--pillar-gap) / -2);
    height: 1px;
    background: var(--pillar-rule-h);
  }
}

/* Stacked — hairline above each following item */
@media (max-width: 620px) {
  .pillars, .pillars--3 { grid-template-columns: 1fr; row-gap: var(--pillar-gap); }
  .pillar { padding-inline: 0; }
  .pillar::before { content: none; }
  .pillar:nth-child(n+2)::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: calc(var(--pillar-gap) / -2);
    height: 1px;
    background: var(--pillar-rule-h);
  }
}

/* ------------------------------------------------------------------
   11. Featured treatment (overlap band)
------------------------------------------------------------------ */
.feature-treat {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.feature-treat__media { min-height: 340px; border-radius: 0; }
.feature-treat__body { padding: clamp(2rem, 1.4rem + 3vw, 4rem); display: flex; flex-direction: column; justify-content: center; }
.feature-treat__list { margin-top: 1.6rem; display: grid; gap: .7rem; }
.feature-treat__list li { display: flex; gap: .7rem; align-items: flex-start; color: #4d3f45; }
.feature-treat__list li svg { flex: none; width: 20px; height: 20px; color: var(--gold); margin-top: 3px; }
@media (max-width: 820px) { .feature-treat { grid-template-columns: 1fr; } .feature-treat__media { aspect-ratio: 16/10; min-height: 0; } }

/* ------------------------------------------------------------------
   12. Price list
------------------------------------------------------------------ */
.price-block { margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.price-block__head {
  display: flex; align-items: baseline; gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid var(--line-2);
  margin-bottom: .5rem;
}
.price-block__head h3 { font-size: var(--fs-h3); }
.price-block__note { font-size: .9rem; color: var(--muted); font-style: italic; margin-left: auto; text-align: right; }

.price-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .4rem 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.price-item > * { min-width: 0; }
.price-item:last-child { border-bottom: 0; }
.price-item__name { font-family: var(--font-display); font-size: 1.22rem; font-weight: 500; color: var(--plum-deep); }
.price-item__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--plum);
  white-space: nowrap;
  text-align: right;
}
.price-item__price .from { font-family: var(--font-body); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; }
.price-item__desc { grid-column: 1 / 2; color: var(--muted); font-size: .95rem; line-height: 1.55; margin-top: .15rem; max-width: 60ch; }
.price-item__cure {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: .7rem;
  padding: .6rem .9rem;
  background: var(--cream-2);
  border-radius: var(--r-xs);
  font-size: .9rem;
}
.price-item__cure .lbl { color: var(--plum); letter-spacing: .04em; }
.price-item__cure .val { font-family: var(--font-display); font-size: 1.05rem; color: var(--plum); }

.price-tag {
  display: inline-block;
  padding: .2rem .7rem;
  background: var(--blush);
  color: var(--rose-deep);
  border-radius: var(--r-pill);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .06em;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
  box-shadow: var(--shadow-xs);
}
.price-card--feature { border-color: var(--gold-soft); box-shadow: var(--shadow-gold); position: relative; }
.price-card--feature::after {
  content: "Beliebt";
  position: absolute; top: 1.4rem; right: 1.4rem;
  background: linear-gradient(115deg, var(--gold), var(--rose)); color: #fff;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .32rem .8rem; border-radius: var(--r-pill);
}

/* ------------------------------------------------------------------
   13. Gallery
------------------------------------------------------------------ */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 12vw;
  gap: clamp(.7rem, .4rem + 1vw, 1.1rem);
}
.gallery__item { border-radius: var(--r-sm); cursor: pointer; }
.gallery__item .media { height: 100%; border-radius: var(--r-sm); }
.g-a { grid-column: span 5; grid-row: span 2; }
.g-b { grid-column: span 4; grid-row: span 2; }
.g-c { grid-column: span 3; grid-row: span 2; }
.g-d { grid-column: span 4; grid-row: span 2; }
.g-e { grid-column: span 5; grid-row: span 2; }
.g-f { grid-column: span 3; grid-row: span 2; }
.g-a img { object-position: center 60%; }
.g-b img { object-position: center 48%; }
.g-c img { object-position: center 43%; }
.g-d img { object-position: center 52%; }
.g-e img { object-position: center 58%; }
.g-f img { object-position: center 48%; }
@media (max-width: 800px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 40vw; }
  .g-a,.g-b,.g-c,.g-d,.g-e,.g-f { grid-column: span 1; grid-row: span 1; }
  .g-a, .g-e { grid-column: span 2; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(53,39,44,.92);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 4vw;
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: 900px; width: 100%; }
.lightbox .media { aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.lightbox figcaption { text-align: center; color: var(--cream); margin-top: 1rem; letter-spacing: .1em; font-size: .85rem; text-transform: uppercase; }
.lightbox__close, .lightbox__nav {
  position: absolute; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; display: grid; place-items: center; transition: background .3s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 3vh; right: 3vw; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 2vw; }
.lightbox__nav--next { right: 2vw; }
@media (max-width: 640px){ .lightbox__nav{ top: auto; bottom: 4vh; transform: none;} .lightbox__nav--prev{left:28%;} .lightbox__nav--next{right:28%;} }

/* ------------------------------------------------------------------
   14. Testimonials
------------------------------------------------------------------ */
.testi {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.8rem, 1.4rem + 1.5vw, 2.6rem);
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
}
.testi__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 1.1rem; }
.testi__stars svg { width: 18px; height: 18px; }
.testi__quote { font-family: var(--font-display); font-size: 1.28rem; line-height: 1.45; color: var(--plum-deep); font-weight: 400; }
.testi__quote::before { content: "“"; font-size: 2rem; color: var(--rose); line-height: 0; vertical-align: -.3em; margin-right: .1em; }
.testi__foot { margin-top: auto; padding-top: 1.4rem; display: flex; align-items: center; gap: .9rem; }
.testi__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(140deg, var(--rose), var(--gold-soft));
  display: grid; place-items: center;
  font-family: var(--font-display); color: #fff; font-size: 1.1rem;
  flex: none;
}
.testi__name { font-weight: 500; color: var(--plum-deep); }
.testi__meta { font-size: .82rem; color: var(--muted); }

/* ------------------------------------------------------------------
   15. Instagram
------------------------------------------------------------------ */
.section--instagram {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--cream) 0%, rgba(251,246,240,0) 12%, rgba(251,246,240,0) 88%, var(--cream) 100%),
    radial-gradient(ellipse at 0% 12%, rgba(217,167,162,.22), transparent 34%),
    radial-gradient(ellipse at 100% 80%, rgba(194,154,84,.15), transparent 32%),
    linear-gradient(135deg, #f7eee6 0%, #fbf6f0 48%, #efe3d7 100%);
}
.section--instagram::before {
  content: "";
  position: absolute;
  width: 34rem; height: 34rem;
  top: -20rem; right: -12rem;
  border: 1px solid rgba(167,143,128,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255,255,255,.12), 0 0 0 10rem rgba(217,167,162,.045);
  pointer-events: none;
}
.section--instagram .container { position: relative; z-index: 1; }

.ig-profile {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: clamp(1.2rem,1rem + 2vw,2.4rem);
  padding-bottom: clamp(1.8rem,1.3rem + 2vw,3rem);
  border-bottom: 1px solid rgba(167,143,128,.3);
}
.ig-profile__avatar {
  width: clamp(84px,9vw,112px);
  aspect-ratio: 1;
  padding: 4px;
  border-radius: 50%;
  background: conic-gradient(from 35deg, var(--gold), var(--rose-deep), var(--plum), var(--gold));
  box-shadow: var(--shadow);
  transition: transform .45s var(--ease-out);
}
.ig-profile__avatar:hover { transform: rotate(-3deg) scale(1.04); }
.ig-profile__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; border: 4px solid var(--cream); border-radius: 50%; }
.ig-profile__copy h2 { margin-top: .5rem; }
.ig-profile__copy p { color: #6e5a51; margin-top: .7rem; max-width: 52ch; }
.ig-profile__follow { white-space: nowrap; }
.ig-profile__follow .btn__circle img { width: 17px; filter: brightness(0) invert(1); }

.ig-highlights {
  display: flex;
  justify-content: center;
  gap: clamp(1rem,1rem + 3vw,3.5rem);
  padding: clamp(1.6rem,1rem + 2vw,2.5rem) 0;
}
.ig-highlights a {
  display: grid;
  justify-items: center;
  gap: .55rem;
  min-width: 68px;
  color: var(--cocoa);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.ig-highlights a > span {
  display: block;
  width: clamp(62px,7vw,84px);
  aspect-ratio: 1;
  padding: 3px;
  border-radius: 50%;
  border: 1px solid rgba(167,143,128,.5);
  background: rgba(255,255,255,.55);
  transition: transform .35s var(--ease-out), border-color .35s ease;
}
.ig-highlights a:hover > span { transform: translateY(-4px); border-color: var(--rose-deep); }
.ig-highlights img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ig-highlights a:nth-child(1) img { object-position: center 55%; }

.ig-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr .88fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: clamp(.75rem,.4rem + 1vw,1.15rem);
}
.ig-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 18px 42px -30px rgba(45,33,29,.55);
}
.ig-item--facial { grid-row: 1 / span 2; }
.ig-item--mood { grid-column: 2; grid-row: 1; }
.ig-item--portrait { grid-column: 3; grid-row: 1; }
.ig-item--result { grid-column: 2; grid-row: 2; }
.ig-item--brows { grid-column: 3; grid-row: 2; }
.ig-item .media { height: 100%; border-radius: inherit; }
.ig-item--facial img { object-position: center 58%; }
.ig-item--mood img { object-position: center 50%; }
.ig-item--portrait img { object-position: center 42%; }
.ig-item--result img { object-position: center 48%; }
.ig-item--brows img { object-position: center 42%; }
.ig-item::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(35,24,21,.68), transparent 48%);
  transition: background .45s var(--ease), opacity .45s var(--ease);
}
.ig-item:hover::after { background: linear-gradient(to top, rgba(69,47,72,.82), rgba(69,47,72,.08) 68%); }
.ig-item img { transition-duration: 1.1s; }
.ig-item:hover img { transform: scale(1.045); }
.ig-item__label {
  position: absolute;
  left: clamp(1rem,1rem + .5vw,1.5rem);
  right: 3rem;
  bottom: clamp(1rem,1rem + .5vw,1.5rem);
  z-index: 4;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.05rem,.95rem + .35vw,1.3rem);
  line-height: 1.15;
  text-shadow: 0 2px 18px rgba(0,0,0,.24);
}
.ig-item__label::after {
  content: "";
  position: absolute;
  right: -2.25rem; bottom: .05rem;
  width: 1.55rem; height: 1.55rem;
  background: rgba(255,255,255,.18) url("../img/icon-instagram.svg") no-repeat center / 13px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.ig-item__label small {
  display: block;
  margin-bottom: .36rem;
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f2d9cf;
}

.ig-signoff {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(1.2rem,1rem + 1vw,2rem);
  padding: 1rem 1.2rem 1rem 1.5rem;
  border: 1px solid rgba(167,143,128,.35);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.45);
  color: #735e55;
  transition: background .35s ease, border-color .35s ease, transform .35s var(--ease-out);
}
.ig-signoff:hover { background: rgba(255,255,255,.8); border-color: var(--rose-deep); transform: translateY(-2px); }
.ig-signoff strong { color: var(--plum-deep); font-size: 1.05rem; }
.ig-signoff__arrow { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--plum); color: #fff; }

@media (max-width: 860px) {
  .ig-profile { grid-template-columns: auto 1fr; }
  .ig-profile__follow { grid-column: 1 / -1; justify-self: start; }
  .ig-grid { grid-template-columns: repeat(2,minmax(0,1fr)); grid-template-rows: 420px repeat(2,260px); }
  .ig-item--facial { grid-column: 1 / -1; grid-row: 1; }
  .ig-item--mood { grid-column: 1; grid-row: 2; }
  .ig-item--portrait { grid-column: 2; grid-row: 2; }
  .ig-item--result { grid-column: 1; grid-row: 3; }
  .ig-item--brows { grid-column: 2; grid-row: 3; }
}
@media (max-width: 560px) {
  .ig-profile { grid-template-columns: 72px 1fr; gap: 1rem; }
  .ig-profile__avatar { width: 72px; }
  .ig-profile__copy p { grid-column: 1 / -1; }
  .ig-profile__follow { width: 100%; justify-content: center; }
  .ig-highlights { justify-content: flex-start; gap: 1.05rem; overflow-x: auto; scrollbar-width: none; }
  .ig-highlights::-webkit-scrollbar { display: none; }
  .ig-highlights a > span { width: 62px; }
  .ig-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 340px repeat(2,210px); }
  .ig-item { border-radius: var(--r-sm); }
  .ig-item__label { right: 2.5rem; font-size: .94rem; line-height: 1.08; }
  .ig-item__label small { font-size: .56rem; letter-spacing: .12em; }
  .ig-item__label::after { right: -2rem; width: 1.4rem; height: 1.4rem; }
  .ig-signoff { grid-template-columns: 1fr auto; border-radius: var(--r); }
  .ig-signoff > span:first-child { display: none; }
}

/* ------------------------------------------------------------------
   16. CTA band
------------------------------------------------------------------ */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--r-lg);
  min-height: clamp(430px, 36vw, 540px);
  padding: clamp(3rem, 2rem + 4vw, 5.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background:
    radial-gradient(circle at 18% 20%, rgba(158, 112, 137, .38), transparent 34%),
    linear-gradient(118deg, #4b344c 0%, var(--plum-deep) 64%, #2f2630 100%);
  color: var(--cream);
  text-align: left;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0 0 0 48%;
  background: url("../img/studio-behandlungsraum.jpg") center 58% / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.72) 24%, #000 52%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.72) 24%, #000 52%);
  filter: saturate(.78) contrast(.94);
  transform: scale(1.015);
}
.cta-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(49,35,51,.98) 0%, rgba(49,35,51,.88) 39%, rgba(49,35,51,.28) 68%, rgba(49,35,51,.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 38%, rgba(20,15,20,.18));
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; max-width: min(690px, 62%); }
.cta-band .eyebrow { justify-content: flex-start !important; color: var(--gold-soft) !important; }
.cta-band h2 {
  max-width: 12.5ch;
  color: #fff;
  font-size: clamp(2.7rem, 2rem + 3.2vw, 5rem);
  line-height: .98;
  text-wrap: balance;
}
.cta-band p {
  color: #eadfe6;
  max-width: 40ch;
  margin: 1.35rem 0 2.25rem;
  font-size: clamp(1rem, .93rem + .3vw, 1.18rem);
  font-weight: 300;
}
.cta-band .btn-row { justify-content: flex-start; }
.cta-band .btn--ghost {
  background: rgba(255,255,255,.055);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

@media (hover: hover) and (pointer: fine) {
  .cta-band::before { transition: transform 1.4s var(--ease), filter 1.4s var(--ease); }
  .cta-band:hover::before { transform: scale(1.045); filter: saturate(.9) contrast(.98); }
}

@media (max-width: 820px) {
  .cta-band {
    min-height: 530px;
    justify-content: flex-end;
    padding: clamp(2rem, 7vw, 3.2rem);
  }
  .cta-band::before {
    inset: 0;
    background-position: center 58%;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .cta-band::after {
    background: linear-gradient(180deg, rgba(49,35,51,.12) 0%, rgba(49,35,51,.42) 37%, rgba(49,35,51,.97) 76%, #312333 100%);
  }
  .cta-band > * { max-width: 100%; }
  .cta-band h2 { max-width: 13ch; font-size: clamp(2.45rem, 11vw, 3.8rem); }
}

@media (max-width: 520px) {
  .cta-band { min-height: 560px; }
  .cta-band h2 { width: 100%; max-width: 100%; font-size: clamp(2.1rem, 10vw, 2.75rem); }
  .cta-band .btn-row { width: 100%; }
  .cta-band .btn { width: 100%; justify-content: center; }
  .cta-band .btn--icon { justify-content: space-between; }
}

/* ------------------------------------------------------------------
   17. Contact
------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: start; }
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.contact-info { display: grid; gap: 1.5rem; }
.contact-line {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-line:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.contact-line__icon {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--blush), var(--gold-soft));
  color: var(--plum-deep);
}
.contact-line__icon svg { width: 20px; height: 20px; }
.contact-info .contact-line > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.contact-line__label { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.contact-line__value { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--plum-deep); overflow-wrap: anywhere; }
.contact-line a.contact-line__value:hover { color: var(--rose-deep); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.6rem, 1.2rem + 2vw, 2.6rem); box-shadow: var(--shadow-xs); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--plum); margin-bottom: .5rem; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: .95rem 1.1rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xs);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--rose); background: #fff;
  box-shadow: 0 0 0 4px rgba(217,167,162,.18);
}
.field input.is-invalid, .field textarea.is-invalid {
  border-color: #a95656;
  background: #fffafa;
}
.field input.is-invalid:focus, .field textarea.is-invalid:focus { box-shadow: 0 0 0 4px rgba(169,86,86,.14); }
.field__error {
  display: block;
  margin-top: .35rem;
  color: #8a4141;
  font-size: .78rem;
  line-height: 1.35;
}
.field__error:empty { display: none; }
.field textarea { min-height: 130px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 560px){ .form__row { grid-template-columns: 1fr; } }
.form__note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.form__note a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: .16em; }
.form__fallback { margin-top: .8rem; color: #8a4141; font-size: .85rem; }
.form__status { margin-top: 1rem; padding: .8rem 1rem; border-radius: var(--r-xs); font-size: .9rem; display: none; }
.form__status.show { display: block; }
.form__status.ok { background: #eaf3ec; color: #3c6b4a; }
.form__status.error { background: #f7e6e6; color: #8a4141; }

/* Contact aside — warm intro + one elegant detail panel */
.contact-aside__lead { margin-top: 1.4rem; max-width: 42ch; color: #6d5b61; font-weight: 300; font-size: var(--fs-lead); line-height: 1.55; }

.contact-card {
  margin-top: 2.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.contact-row {
  display: flex; align-items: center; gap: 1.05rem;
  padding: 1.15rem 1.35rem;
  color: inherit;
  transition: background .35s var(--ease);
}
.contact-row + .contact-row { border-top: 1px solid var(--line); }
.contact-row__icon {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--blush), var(--gold-soft));
  color: var(--plum-deep);
}
.contact-row__icon svg { width: 20px; height: 20px; }
.contact-row__text { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.contact-row__label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.contact-row__value { font-family: var(--font-display); font-size: 1.16rem; color: var(--plum-deep); line-height: 1.25; overflow-wrap: anywhere; }
.contact-row__cue { flex: none; margin-left: auto; color: var(--rose); opacity: 0; transform: translateX(-6px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.contact-row__cue svg { width: 18px; height: 18px; }
@media (hover: hover) and (pointer: fine){
  a.contact-row:hover { background: var(--cream); }
  a.contact-row:hover .contact-row__value { color: var(--rose-deep); }
  a.contact-row:hover .contact-row__cue { opacity: 1; transform: none; }
}

.contact-social { display: flex; align-items: center; gap: 1rem; margin-top: 1.9rem; }
.contact-social__label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.contact-social .footer-social { margin-top: 0; }
.contact-social .footer-social a { border-color: var(--line-2); color: var(--plum); }
.contact-social .footer-social a:hover { background: var(--blush); border-color: var(--rose); color: var(--plum-deep); }

/* Form header inside the card */
.form-head { margin-bottom: 1.7rem; }
.form-head p { margin-top: .8rem; color: var(--muted); font-weight: 300; }

/* Location panel — map + address bar as one card */
.map-panel {
  margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-wrap { overflow: hidden; height: clamp(320px, 42vh, 460px); }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(.18) contrast(.96); }
.map-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .55rem 1.5rem;
  padding: 1.15rem clamp(1.2rem, .8rem + 1.5vw, 1.9rem);
  border-top: 1px solid var(--line);
}
.map-bar__addr { display: flex; align-items: center; gap: .7rem; color: var(--plum-deep); font-size: .96rem; }
.map-bar__addr svg { flex: none; width: 18px; height: 18px; color: var(--rose-deep); }

/* Locator — contact rows and map as two columns of identical height */
.locator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  align-items: stretch;
}
.locator__info { display: flex; flex-direction: column; gap: 1.25rem; }
.locator__info .contact-info { flex: 1; gap: 1rem; align-content: space-between; }
.locator__cta { align-self: flex-start; }
.locator__map { display: flex; }
.locator__map .map-wrap--card {
  flex: 1;
  height: auto;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) {
  .locator { grid-template-columns: 1fr; }
  .locator__map .map-wrap--card { min-height: clamp(280px, 46vw, 360px); }
}

/* ------------------------------------------------------------------
   18. Footer
------------------------------------------------------------------ */
.site-footer {
  background: var(--plum-deep);
  color: #d9c7d4;
  position: relative;
  z-index: 2;
  padding-top: clamp(3.75rem, 2.75rem + 3vw, 5.25rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  column-gap: clamp(2.25rem, 1.25rem + 2vw, 3.75rem);
  row-gap: clamp(2.75rem, 2rem + 2vw, 4rem);
  align-items: start;
  padding-bottom: clamp(3rem, 2.5rem + 1.5vw, 4rem);
}
@media (max-width: 900px){
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px){
  .site-footer { padding-top: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr; row-gap: 2.75rem; padding-bottom: 2.75rem; }
}
.site-footer .logo__name { color: #fff; }
.site-footer .logo__sub { color: var(--gold-soft); }
.footer-about p { color: #c3aebd; margin-top: 1.4rem; max-width: 34ch; font-weight: 300; }
.footer-col h4 { color: #fff; font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0; margin-bottom: 1.35rem; }
.footer-col ul { display: grid; gap: .8rem; }
.footer-col a { color: #cdb9c8; transition: color .3s, padding-left .3s; font-size: .95rem; }
.footer-col a:hover { color: #fff; padding-left: 5px; }
.footer-col .footer-contact { gap: 1rem; }
.footer-contact li { display: flex; gap: .75rem; color: #cdb9c8; font-size: .95rem; align-items: flex-start; }
.footer-contact svg { flex: none; width: 17px; height: 17px; color: var(--gold-soft); margin-top: 4px; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.6rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: background .3s, transform .3s; }
.footer-social a:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  border-block: 1px solid rgba(255,255,255,.12);
  padding-block: 1.4rem;
  color: #d9c7d4;
  transition: background-color .3s, color .3s;
}
.footer-partner:hover { background: rgba(255,255,255,.035); color: #fff; }
.footer-partner__identity { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.footer-partner__identity img {
  width: 28px;
  height: 28px;
  flex: none;
  object-fit: contain;
  opacity: .82;
  transition: opacity .3s, transform .3s;
}
.footer-partner:hover .footer-partner__identity img { opacity: 1; transform: scale(1.06); }
.footer-partner__eyebrow,
.footer-partner__description { display: block; }
.footer-partner__eyebrow {
  color: var(--gold-soft);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
  transition: color .3s;
}
.footer-partner:hover .footer-partner__eyebrow { color: #fff; }
.footer-partner__description { margin-top: .35rem; color: #bda8b8; font-size: .82rem; line-height: 1.45; }
.footer-partner__cta {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  flex: none;
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-partner__cta svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.footer-partner:hover .footer-partner__cta svg { transform: translateX(5px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: #b39cae; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .made { display: inline-flex; align-items: center; gap: .4rem; }
.footer-bottom .made .heart { color: var(--rose); }

@media (max-width: 640px) {
  .footer-partner { align-items: flex-start; flex-direction: column; padding-block: 1.35rem; }
  .footer-partner__description { max-width: 34ch; }
  .footer-partner__cta { padding-left: 44px; }
}

/* ------------------------------------------------------------------
   19. Page hero (subpages)
------------------------------------------------------------------ */
.page-hero {
  position: relative;
  padding-top: clamp(3rem, 2rem + 4vw, 5.5rem);
  padding-bottom: clamp(3rem, 2rem + 4vw, 5rem);
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: ""; position: absolute; z-index: 0; top: -30%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(227,206,156,.35), transparent 62%);
  pointer-events: none;
}
.page-hero .container { max-width: 780px; }
.page-hero h1 { margin: 1.2rem 0 0; }
.page-hero p { margin-top: 1.3rem; color: var(--muted); font-size: var(--fs-lead); font-weight: 300; }
.breadcrumb { display: inline-flex; gap: .5rem; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.breadcrumb a:hover { color: var(--plum); }
.breadcrumb .sep { color: var(--rose); }

/* Treatments page — Instagram-led editorial rhythm, alternating image and price stories. */
.page-hero--treatments {
  padding-top: clamp(3rem, 2rem + 3vw, 5rem);
  padding-bottom: clamp(3.6rem, 2.5rem + 4vw, 6rem);
  background:
    radial-gradient(circle at 18% 24%, rgba(239,170,165,.38), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(216,180,95,.27), transparent 27%),
    linear-gradient(148deg, #f6dfdf 0%, #fbefee 48%, #ecddc9 100%);
}
.page-hero--treatments::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,143,128,.5), transparent);
}
.page-hero--treatments .pill {
  background: rgba(255,250,248,.66);
  border-color: rgba(196,134,127,.25);
  box-shadow: 0 12px 30px -24px rgba(69,47,72,.42);
}

.treatment-section {
  position: relative;
  overflow: clip;
  padding-block: clamp(4.5rem, 3.4rem + 5vw, 8rem);
}
.treatment-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(54px, 6vw, 90px);
  background: linear-gradient(180deg, rgba(255,255,255,.24), transparent);
  pointer-events: none;
}
.treatment-section--rose {
  background:
    linear-gradient(180deg, var(--cream) 0%, rgba(251,246,240,0) 12%, rgba(251,246,240,0) 88%, var(--cream) 100%),
    radial-gradient(circle at 100% 8%, rgba(239,170,165,.2), transparent 30%),
    linear-gradient(145deg, #fbf2ee, #f4e2e2);
}
.treatment-section--sand {
  background:
    linear-gradient(180deg, var(--cream) 0%, rgba(251,246,240,0) 12%, rgba(251,246,240,0) 88%, var(--cream) 100%),
    radial-gradient(circle at 0 84%, rgba(216,180,95,.16), transparent 32%),
    linear-gradient(145deg, #eadbc9, #f7eee5 58%, #f4e8dc);
}
.treatment-section--champagne {
  background:
    linear-gradient(180deg, var(--cream) 0%, rgba(251,246,240,0) 12%, rgba(251,246,240,0) 88%, var(--cream) 100%),
    radial-gradient(circle at 95% 80%, rgba(196,134,127,.15), transparent 28%),
    linear-gradient(145deg, #f7eadc, #fbf4ec 52%, #edd9cf);
}
.treatment-story {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  gap: clamp(3rem, 2rem + 4vw, 6rem);
  align-items: start;
}
.treatment-story--reverse .treatment-story__visual { grid-column: 2; }
.treatment-story--reverse .treatment-story__content { grid-column: 1; grid-row: 1; }
.treatment-story__visual {
  position: sticky;
  top: calc(var(--header-h) + 2.5rem);
  min-width: 0;
}
.treatment-story__image {
  aspect-ratio: 4 / 5;
  border-radius: 48px 16px 48px 16px;
  border: 7px solid rgba(255,250,248,.58);
  box-shadow: 0 38px 80px -42px rgba(74,49,45,.58);
}
.treatment-story__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(45,33,29,.2));
  pointer-events: none;
}
.treatment-story__inset {
  position: absolute;
  right: -5%;
  bottom: -3%;
  width: 39%;
  aspect-ratio: 1;
  border: 6px solid rgba(251,246,240,.94);
  border-radius: 50%;
  box-shadow: 0 24px 54px -30px rgba(45,33,29,.65);
}
.treatment-story--reverse .treatment-story__inset { right: auto; left: -5%; }
.treatment-story__number {
  position: absolute;
  top: -1.5rem;
  right: -.2rem;
  z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 3rem + 4vw, 6.5rem);
  font-style: italic;
  line-height: 1;
  color: rgba(94,63,94,.17);
}
.treatment-story--reverse .treatment-story__number { right: auto; left: -.2rem; }
.treatment-story__content { min-width: 0; }
.treatment-story__content > .section-head { margin-bottom: clamp(2rem, 1.6rem + 1vw, 2.8rem); }
.treatment-story__content > .section-head p { max-width: 55ch; color: #715f60; }
.treatment-story .price-block {
  margin-bottom: 1.25rem;
  padding: clamp(1.25rem, 1rem + 1vw, 1.8rem);
  background: rgba(255,250,248,.55);
  border: 1px solid rgba(196,134,127,.2);
  border-radius: 22px;
  box-shadow: 0 25px 58px -44px rgba(69,47,72,.45), inset 0 1px rgba(255,255,255,.62);
  backdrop-filter: blur(8px);
}
.treatment-story .price-block__head { border-color: rgba(196,134,127,.3); }
.treatment-story .price-item { padding-block: 1rem; border-color: rgba(167,143,128,.22); }
.treatment-story .price-item__cure { background: rgba(235,211,189,.58); }
.treatment-story__note { margin-top: 1.5rem; }

@media (max-width: 900px) {
  .treatment-story { grid-template-columns: 1fr; gap: 3.4rem; }
  .treatment-story--reverse .treatment-story__visual,
  .treatment-story--reverse .treatment-story__content { grid-column: 1; grid-row: auto; }
  .treatment-story__visual { position: relative; top: auto; width: min(100%, 620px); margin-inline: auto; }
  .treatment-story__image { aspect-ratio: 5 / 4; }
  .treatment-story__content { max-width: 720px; margin-inline: auto; width: 100%; }
}
@media (max-width: 600px) {
  .treatment-section { padding-block: 4rem; }
  .treatment-story { gap: 2.7rem; }
  .treatment-story__image { aspect-ratio: 4 / 5; border-width: 5px; border-radius: 34px 12px 34px 12px; }
  .treatment-story__inset { width: 34%; right: -1%; border-width: 4px; }
  .treatment-story--reverse .treatment-story__inset { left: -1%; }
  .treatment-story .price-block { padding: 1.1rem; border-radius: 18px; }
  .treatment-story .price-item { gap: .35rem 1rem; }
}

/* ------------------------------------------------------------------
   20.1 Mobile-first usability layer
   Image-led first impression, reliable overlays and compact phone layouts.
------------------------------------------------------------------ */
@media (max-width: 600px) {
  :root {
    --gutter: clamp(1rem, 4.8vw, 1.25rem);
    --space-section: clamp(3.75rem, 14vw, 4.75rem);
    --r-lg: 26px;
  }

  .site-header { padding-inline: max(.65rem, env(safe-area-inset-left)); }
  .nav { min-height: 62px; padding: .38rem .4rem .38rem .75rem; }

  .hero {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
  }
  .hero__grid { gap: 2.4rem; }
  .hero__visual {
    order: -1;
    width: min(100%, 400px);
    margin-top: -.35rem;
  }
  .hero__visual .bezel { padding: 6px; border-radius: 28px; }
  .hero__visual .media--portrait { aspect-ratio: 6 / 5; }
  .hero__visual .media--portrait img { object-position: center 32%; }
  .hero__visual .media__badge { display: none; }
  .hero__logo-lockup { display: none; }
  .hero__title { margin-top: 1rem; }
  .hero__lead { margin-top: 1.25rem; }
  .hero__cta { margin-top: 1.75rem; width: 100%; gap: .65rem; }
  .hero__cta .btn {
    flex: 0 0 auto;
    width: auto;
    min-height: 46px;
    padding: .62rem .48rem .62rem 1.05rem;
    gap: .7rem;
    font-size: .74rem;
    letter-spacing: .12em;
  }
  .hero__cta .btn__circle { width: 1.9rem; height: 1.9rem; }
  .hero__cta .btn:first-child {
    --btn-bg: rgba(255,255,255,.58);
    --btn-fg: var(--plum);
    border-color: var(--line-2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 10px 24px -18px rgba(69,47,72,.34);
  }
  .hero__cta .btn:first-child::before { background: var(--plum); }
  .hero__cta .btn:first-child .btn__circle { background: var(--plum); color: #fff; }
  .hero__cta .btn--ghost {
    --btn-bg: rgba(247,230,236,.5);
    border-color: rgba(196,134,127,.38);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 10px 24px -18px rgba(69,47,72,.3);
  }
  .hero__cta .btn--ghost .btn__circle { background: rgba(94,63,94,.09); color: var(--plum); }
  .hero__visual .media--float { left: -2%; bottom: -5%; border-width: 4px; }
  .hero__seal { right: -2%; }
  .hero__stats { margin-top: 2.2rem; padding-top: 1.5rem; }

  h1, h2, h3, .display {
    max-width: 100%;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
  }

  .btn { min-height: 48px; padding-inline: 1.35rem; }
  .link-arrow { min-height: 44px; padding-block: .5rem; }
  .pill { min-height: 44px; display: inline-flex; align-items: center; }

  .price-block__head {
    align-items: flex-start;
    flex-direction: column;
    gap: .45rem;
  }
  .price-block__note { margin-left: 0; text-align: left; }
  .price-item { grid-template-columns: minmax(0, 1fr) auto; gap: .45rem .8rem; }
  .price-item__name { overflow-wrap: anywhere; }
  .price-item__cure { gap: 1rem; align-items: flex-start; }
  .price-item__cure .val { flex: none; text-align: right; }

  .form { padding: 1.25rem; }
  .field input, .field textarea, .field select { font-size: 1rem; }
  .map-wrap, .map-wrap iframe { min-height: 300px !important; }

  .gallery { grid-auto-rows: clamp(145px, 44vw, 205px); }
  .gallery__item::after { opacity: 1; transform: none; padding-top: 2rem; }

  .lightbox {
    min-height: 100dvh;
    padding: max(4rem, env(safe-area-inset-top)) var(--gutter) max(6rem, env(safe-area-inset-bottom));
  }
  .lightbox .media { height: min(68dvh, 620px); aspect-ratio: auto; background: transparent; }
  .lightbox .media img { object-fit: contain; }
  .lightbox__close { top: max(1rem, env(safe-area-inset-top)); right: var(--gutter); }
  .lightbox__nav { bottom: max(1rem, env(safe-area-inset-bottom)); }

  .footer-col a { display: inline-flex; align-items: center; min-height: 44px; }
  .footer-social a { width: 44px; height: 44px; }
  .footer-bottom { flex-direction: column; }
  /* Impressum / Datenschutz / AGB sat at 19px tall — too small to hit reliably.
     inline-block keeps the "·" separators on the text baseline. */
  .footer-bottom a { display: inline-block; padding-block: .8rem; }
  .footer-about .logo { min-height: 44px; }

  /* Tap targets that were below 40px */
  .contact-line a.contact-line__value { display: inline-block; padding-block: .35rem; }
  .readmore__toggle { min-height: 44px; }

  /* Legibility: these sat between 7.7px and 11px on a phone */
  .logo--nav .logo__sub { font-size: .6rem; letter-spacing: .16em; }
  .site-footer .logo__sub { font-size: .68rem; }
  .btn { font-size: .78rem; }
  .hero__cta .btn { font-size: .78rem; }
  .hero-social__copy > span { font-size: .72rem; }
  .ig-highlights a { font-size: .76rem; }
  .ig-item__label small { font-size: .66rem; }
}

@media (max-width: 360px) {
  .logo--nav { gap: .38rem; }
  .logo__mark { width: 42px; height: 42px; }
  .logo--nav .logo__name { font-size: .94rem; }
  .logo--nav .logo__sub { font-size: .43rem; letter-spacing: .15em; }
  .eyebrow { letter-spacing: .22em; }
  .hero-social { gap: .55rem; }
  .hero-social__faces img:nth-child(n + 3) { display: none; }
  .hero-social__copy > span { display: none; }
  .contact-line { padding-inline: 1rem; }
  .contact-line__icon { width: 40px; height: 40px; }
  .price-item__name { font-size: 1.12rem; }
  .price-item__price { font-size: 1.18rem; }
}

@media (max-height: 700px) and (max-width: 600px) {
  .mobile-menu { padding-block: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-bottom)); }
  .mobile-nav { margin-block: 1.25rem; }
  .mobile-nav a { font-size: clamp(1.55rem, 7vh, 2.15rem); padding-block: .15rem; }
  .mobile-menu__foot { gap: .55rem; padding-top: 1rem; }
  .mobile-menu__foot .contact-line { display: none; }
}

/* prose for legal pages */
.prose { max-width: 760px; }
.prose h2 { font-size: var(--fs-h3); margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.25rem; margin-top: 1.8rem; margin-bottom: .6rem; color: var(--plum); }
.prose p, .prose li { color: #4d3f45; margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: .4rem; }
.prose a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--plum-deep); }
.prose .note { background: var(--blush); border-left: 3px solid var(--rose); padding: 1rem 1.2rem; border-radius: var(--r-xs); font-size: .92rem; color: var(--plum-deep); }

/* ------------------------------------------------------------------
   20. Misc / utilities
------------------------------------------------------------------ */
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem 1rem; border-radius: var(--r-pill);
  background: var(--white); border: 1px solid var(--line);
  font-size: .82rem; color: var(--plum); letter-spacing: .02em;
}
.pill svg { width: 15px; height: 15px; color: var(--gold); }

.divider-leaf { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--rose); margin: 0 auto; }
.divider-leaf::before, .divider-leaf::after { content: ""; height: 1px; width: min(120px, 20vw); background: linear-gradient(90deg, transparent, var(--line-2)); }
.divider-leaf::after { background: linear-gradient(90deg, var(--line-2), transparent); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.max-60 { max-width: 60ch; }
.mx-auto { margin-inline: auto; }

/* FAQ / accordion */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.4rem 0;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--plum-deep);
}
.faq__q .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: transform .4s var(--ease), background .3s, color .3s; position: relative; }
.faq__q .ic::before, .faq__q .ic::after { content: ""; position: absolute; background: var(--plum); }
.faq__q .ic::before { width: 12px; height: 1.5px; }
.faq__q .ic::after { width: 1.5px; height: 12px; transition: transform .4s var(--ease); }
.faq__item.open .ic { background: var(--plum); }
.faq__item.open .ic::before { background: #fff; }
.faq__item.open .ic::after { background: #fff; transform: scaleY(0); }
.faq__a { overflow: hidden; height: 0; transition: height .4s var(--ease); }
.faq__a-inner { padding-bottom: 1.5rem; color: var(--muted); max-width: 65ch; }

/* ------------------------------------------------------------------
   20b. Read more (progressive disclosure for long copy)
------------------------------------------------------------------ */
.readmore__panel { overflow: hidden; transition: height .5s var(--ease); }
.readmore__panel-inner { padding-top: 1.1rem; }
.readmore__toggle {
  display: none;
  align-items: center;
  gap: .7rem;
  margin-top: 1.2rem;
  padding: 0;
  background: none;
  border: 0;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  cursor: pointer;
  transition: color .3s var(--ease);
}
.js .readmore__toggle { display: inline-flex; }
.readmore__toggle:hover { color: var(--plum); }
.readmore__toggle .ic {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--plum);
  transition: transform .45s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.readmore__toggle .ic svg { width: 15px; height: 15px; }
.readmore__toggle:hover .ic { border-color: var(--rose); }
.readmore.open .ic { background: var(--plum); border-color: var(--plum); color: #fff; transform: rotate(180deg); }
.readmore__panel > .readmore__panel-inner > :first-child { margin-top: 0; }

/* ------------------------------------------------------------------
   21. Scroll reveal
------------------------------------------------------------------ */
.js [data-reveal] { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out); }
.js [data-reveal].in { opacity: 1; transform: none; filter: blur(0); }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ------------------------------------------------------------------
   22. Surface refinement — soft diffusion depth (premium float)
------------------------------------------------------------------ */
.svc-card, .testi, .price-card {
  box-shadow: 0 34px 60px -44px rgba(69,47,72,.42), inset 0 1px 0 rgba(255,255,255,.7);
}
.feature-treat, .form { box-shadow: 0 44px 90px -50px rgba(69,47,72,.45), inset 0 1px 0 rgba(255,255,255,.7); }

/* Concentric double-bezel wrapper for hero/feature imagery */
.bezel {
  padding: 8px;
  background: linear-gradient(150deg, rgba(255,255,255,.7), rgba(240,228,216,.5));
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 8px);
  box-shadow: var(--shadow-lg);
}
.bezel > .media { border-radius: var(--r); }

/* ------------------------------------------------------------------
   23. Interface guidelines polish (a11y, mobile, typography)
------------------------------------------------------------------ */
html { color-scheme: light; }

h1, h2, h3, .display { text-wrap: balance; }

/* Tabular figures keep prices vertically aligned */
.price-item__price, .price-item__cure .val { font-variant-numeric: tabular-nums; }

/* Snappier touch, no double-tap zoom delay, intentional tap highlight */
a, button, .btn, input, select, textarea, [role="button"], .gallery__item, .faq__q {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Contain scroll chaining in overlays */
.mobile-menu, .lightbox { overscroll-behavior: contain; }

/* Respect device safe areas on the full-screen mobile menu */
.mobile-menu {
  padding-top: max(clamp(1.5rem, 5vw, 3rem), env(safe-area-inset-top));
  padding-bottom: max(clamp(1.5rem, 5vw, 3rem), env(safe-area-inset-bottom));
}

/* Skip link for keyboard users */
.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 300;
  background: var(--plum-deep);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: var(--r-pill);
  font-size: .82rem;
  letter-spacing: .06em;
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform .3s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ------------------------------------------------------------------
   24. Signature motion — quiet "wow" polish (applies site-wide)
   GPU-friendly transform / opacity only · auto-disabled under
   prefers-reduced-motion (handled by the global reset in §21).
------------------------------------------------------------------ */

/* 24.1 Cinematic image settle
   Images ease from a hair oversized + soft to crisp as their block
   reveals. Driven by a custom property so hover-zoom — set on the
   .media element itself — always wins over the settle value that is
   merely inherited from the [data-reveal] ancestor. */
.js [data-reveal]    { --img-scale: 1.05; }
.js [data-reveal].in { --img-scale: 1; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { --img-scale: 1; } }

/* 24.2 Button — a single soft specular glint sweeps across on hover */
.btn::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 42%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: translateX(-190%) skewX(-20deg);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .btn:not(.btn--light):hover::after { opacity: 1; animation: btnSheen .85s var(--ease); }
}
@keyframes btnSheen { to { transform: translateX(330%) skewX(-20deg); } }

/* 24.3 Gallery — gentle zoom + a rising caption veil on hover */
.gallery__item { position: relative; overflow: hidden; }
@media (hover: hover) and (pointer: fine) {
  .gallery__item:hover .media { --img-scale: 1.06; }
  .gallery__item:hover::after { opacity: 1; transform: none; }
}
.gallery__item::after {
  content: attr(data-caption);
  position: absolute;
  inset: auto 0 0 0;
  z-index: 5;
  padding: 1.6rem 1.1rem .95rem;
  background: linear-gradient(to top, rgba(53,39,44,.62), rgba(53,39,44,0));
  color: #fff;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
}

/* 24.4 Homepage hero — gentle life + depth cue */
.hero__bg-blob, .hero__brand-art { will-change: transform; }
@media (prefers-reduced-motion: no-preference) {
  .hero .media--float { animation: floatCert 7.5s var(--ease) infinite; will-change: transform; }
}
@keyframes floatCert {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-11px) rotate(-.6deg); }
}

/* 24.5 Subpage hero — slow living light behind the title */
.page-hero::before { animation: heroGlow 15s var(--ease) infinite alternate; }
@keyframes heroGlow {
  from { transform: translateX(-50%) scale(1);    opacity: .8; }
  to   { transform: translateX(-50%) scale(1.14); opacity: 1; }
}

/* 24.6 Plum sections — a barely-there aurora drift */
.section--plum { overflow: hidden; }
.section--plum::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -25%; left: -10%;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,206,156,.16), transparent 62%);
  filter: blur(24px);
  pointer-events: none;
  animation: auroraDrift 22s var(--ease) infinite alternate;
}
@keyframes auroraDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(14%, 10%) scale(1.18); }
}

/* 24.7 CTA band — soft moving warmth in the corner */
.cta-band::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -30% -12% auto auto;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(227,206,156,.14), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
  animation: auroraDrift 18s var(--ease) infinite alternate;
}

/* 24.8 Price rows — a quiet, premium hover accent (no layout shift) */
.cta-band.cta-band::after {
  z-index: -1;
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  background:
    linear-gradient(90deg, rgba(49,35,51,.98) 0%, rgba(49,35,51,.88) 39%, rgba(49,35,51,.28) 68%, rgba(49,35,51,.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 38%, rgba(20,15,20,.18));
  filter: none;
  animation: none;
}

@media (max-width: 820px) {
  .cta-band.cta-band::after {
    background: linear-gradient(180deg, rgba(49,35,51,.12) 0%, rgba(49,35,51,.42) 37%, rgba(49,35,51,.97) 76%, #312333 100%);
  }
}

.price-item__name { transition: transform .4s var(--ease), color .4s var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .price-item:hover .price-item__name { color: var(--rose-deep); transform: translateX(5px); }
}

/* 24.9 Pills — lift toward the cursor */
.pill { transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .pill:hover { transform: translateY(-2px); background: var(--blush); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
}

/* 24.10 FAQ question — warms on hover */
.faq__q { transition: color .3s var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .faq__q:hover { color: var(--rose-deep); }
  .faq__q:hover .ic { border-color: var(--rose); }
}

/* 24.11 Refined, on-brand scrollbar for pointer devices */
@media (pointer: fine) {
  html { scrollbar-width: thin; scrollbar-color: var(--rose) transparent; }
  ::-webkit-scrollbar { width: 11px; height: 11px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb {
    background: var(--rose);
    border-radius: 999px;
    border: 3px solid var(--cream);
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--rose-deep); }
}
