/* ============================================================
   KOSMETIK-STUBE SUSAN — Premium Site Stylesheet
   Palette: deep forest · champagne gold · warm porcelain
   Type:    Cormorant Garamond (display) · Mulish (body)
   ============================================================ */

:root {
  /* FLEUR light palette — warm cream · sand · blush · antique gold (DESIGN 4) */
  --forest-950: #f7efe2;   /* base page background (lightest cream) */
  --forest-900: #f1e5d4;   /* alt section / warm sand */
  --forest-800: #ecdcc7;   /* deeper sand surface */
  --forest-700: #e6d1bb;   /* blush-sand card surface */
  --forest-600: #dcc1a4;   /* camel — raised surface / borders */
  --sage: #a98c6b;         /* warm taupe accent (was green) */
  --sage-soft: #7c6a54;    /* medium brown — labels / secondary text */
  --gold: #b08a45;         /* deep antique gold — primary accent */
  --gold-bright: #c8a458;  /* lighter gold — italics / sheen / hovers */
  --gold-dim: rgba(176, 138, 69, 0.30);
  --cream: #463a2d;        /* primary text — warm dark brown */
  --cream-soft: #5e5142;   /* secondary text */
  --porcelain: #fdfaf3;    /* lightest surface (kept light) */
  --ink: #2c2418;          /* darkest text (on gold / light) */
  --ink-soft: #6f6151;     /* medium-dark text */
  --line-dark: rgba(120, 95, 60, 0.22);   /* warm hairline on light */
  --line-light: rgba(70, 58, 45, 0.14);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Mulish", "Segoe UI", sans-serif;

  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 92px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--forest-950);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--forest-950); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ---------- film grain overlay ---------- */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -4%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(4%, 2%); }
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--forest-950);
  transition: opacity 0.9s var(--ease-lux), visibility 0.9s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold);
  position: relative;
  animation: markPulse 2.2s ease-in-out infinite;
}
.preloader__mark::before,
.preloader__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}
.preloader__mark::before { right: calc(100% + 18px); }
.preloader__mark::after { left: calc(100% + 18px); transform: scaleX(-1); }
@keyframes markPulse {
  0%, 100% { opacity: 0.7; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}
.preloader__text {
  font-size: 11px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--sage-soft);
}
.preloader__bar {
  width: 160px;
  height: 1px;
  background: var(--line-dark);
  overflow: hidden;
}
.preloader__bar i {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  animation: barSlide 1.1s var(--ease-lux) infinite;
}
@keyframes barSlide {
  from { transform: translateX(-110%); }
  to { transform: translateX(420%); }
}

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 2500;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  transition: opacity 0.3s;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid var(--gold-dim);
  transition: width 0.35s var(--ease-lux), height 0.35s var(--ease-lux),
              border-color 0.35s, background 0.35s, opacity 0.3s;
}
body.cursor-hover .cursor-ring {
  width: 64px; height: 64px;
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.08);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 1500;
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: transform 0.5s var(--ease-lux), background 0.5s, box-shadow 0.5s;
}
.site-header.is-scrolled {
  background: rgba(250, 244, 236, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line-dark);
}
.site-header.is-hidden { transform: translateY(-110%); }

.header-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand__mark {
  width: 82px; height: 34px;
  background: url('../assets/logo-lotus.png?v=2') center/contain no-repeat;
  transition: transform 0.5s var(--ease-lux);
  flex-shrink: 0;
}
.brand:hover .brand__mark {
  transform: scale(1.06);
}
.brand__name {
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1.1;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > li { position: relative; }
.main-nav a.nav-link {
  display: inline-block;
  padding: 10px 16px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-soft);
  position: relative;
  transition: color 0.3s;
}
.main-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-lux);
}
.main-nav a.nav-link:hover,
.main-nav li.is-active > a.nav-link { color: var(--gold-bright); }
.main-nav a.nav-link:hover::after,
.main-nav li.is-active > a.nav-link::after { transform: scaleX(1); }

/* dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 12px);
  min-width: 250px;
  padding: 14px 0;
  background: rgba(250, 244, 236, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-lux), transform 0.35s var(--ease-lux), visibility 0.35s;
}
.main-nav li:hover > .dropdown,
.main-nav li:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown a {
  display: block;
  padding: 11px 26px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--cream-soft);
  transition: color 0.3s, padding-left 0.3s var(--ease-lux), background 0.3s;
}
.dropdown a:hover {
  color: var(--gold-bright);
  background: rgba(201, 168, 106, 0.06);
  padding-left: 34px;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.45s var(--ease-lux);
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease-lux);
  z-index: -1;
}
.btn:hover { color: var(--forest-950); }
.btn:hover::before { transform: scaleY(1); }
.btn--solid { background: var(--gold); color: var(--forest-950); }
.btn--solid::before { background: var(--gold-bright); }
.btn--solid:hover { color: var(--forest-950); }
.btn--sm { padding: 12px 24px; font-size: 11px; }
.btn .arrow { transition: transform 0.4s var(--ease-lux); }
.btn:hover .arrow { transform: translateX(6px); }

/* hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1300;
}
.nav-toggle span {
  position: absolute;
  left: 13px; right: 13px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.4s var(--ease-lux), opacity 0.3s, top 0.4s var(--ease-lux);
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 29px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 23px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(250, 244, 236, 0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-lux), visibility 0.5s;
  overflow-y: auto;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a.mm-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 40px);
  color: var(--cream);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-lux), transform 0.6s var(--ease-lux), color 0.3s;
}
.mobile-menu a.mm-link:hover { color: var(--gold-bright); }
.mobile-menu a.mm-sub {
  display: block;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--sage-soft);
  padding: 8px 0 8px 18px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-lux), transform 0.6s var(--ease-lux), color 0.3s;
}
.mobile-menu a.mm-sub:hover { color: var(--gold-bright); }
body.menu-open .mobile-menu a { opacity: 1; transform: translateY(0); }

/* ---------- hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(228, 200, 168, 0.5), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 90%, rgba(224, 196, 164, 0.5), transparent 65%),
    var(--forest-950);
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 90% at 50% 110%, rgba(250, 244, 236, 0.82), transparent 55%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 5;
  max-width: 1380px;
  margin: 0 auto;
  padding: 160px 48px 120px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11.5px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}
.hero__eyebrow::before {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-size: clamp(46px, 7.2vw, 104px);
  color: var(--cream);
  margin-bottom: 8px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1.2s var(--ease-lux) forwards;
}
.hero__title .line:nth-child(2) > span { animation-delay: 0.15s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.3s; }
@keyframes lineUp { to { transform: translateY(0); } }
.hero__lead {
  max-width: 520px;
  font-size: 17.5px;
  font-weight: 300;
  color: var(--cream-soft);
  margin: 26px 0 42px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-lux) 0.55s forwards;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-lux) 0.75s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* hero portrait — layered 3D arch */
.hero__portrait {
  position: relative;
  justify-self: center;
  width: min(380px, 100%);
  aspect-ratio: 3 / 4;
  opacity: 0;
  animation: fadeUp 1.3s var(--ease-lux) 0.5s forwards;
  transform-style: preserve-3d;
}
.portrait-frame {
  position: absolute;
  inset: 0;
  border-radius: 999px 999px 6px 6px;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 50px 110px -30px rgba(0, 0, 0, 0.8);
  will-change: transform;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.4s var(--ease-lux);
}
.hero__portrait:hover .portrait-frame img { transform: scale(1.12); }
.portrait-ring {
  position: absolute;
  inset: -22px;
  border: 1px solid var(--line-dark);
  border-radius: 999px 999px 10px 10px;
  will-change: transform;
}
.portrait-leaf {
  position: absolute;
  color: var(--gold);
  opacity: 0.85;
  will-change: transform;
}
.portrait-leaf--1 { top: -8%; right: -14%; width: 84px; }
.portrait-leaf--2 { bottom: 4%; left: -16%; width: 64px; transform: rotate(140deg); }
.portrait-caption {
  position: absolute;
  bottom: -8px;
  right: -30px;
  background: var(--forest-800);
  border: 1px solid var(--line-dark);
  padding: 16px 24px;
  border-radius: 3px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
}
.portrait-caption small {
  display: block;
  color: var(--sage-soft);
  letter-spacing: 0.14em;
  margin-top: 4px;
  text-transform: none;
  font-size: 12px;
}

.hero__scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--sage-soft);
}
.hero__scroll i {
  width: 1px;
  height: 52px;
  background: var(--line-dark);
  position: relative;
  overflow: hidden;
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollHint 2s var(--ease-lux) infinite;
}
@keyframes scrollHint {
  to { top: 120%; }
}

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--forest-900);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--sage-soft);
  white-space: nowrap;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 56px;
}
.marquee__track span::after {
  content: "✦";
  font-size: 12px;
  color: var(--gold);
  font-style: normal;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- generic sections ---------- */
.section {
  position: relative;
  padding: 130px 48px;
}
.section--cream {
  background: var(--porcelain);
  color: var(--ink);
}
.section--cream h2, .section--cream h3 { color: var(--ink); }
.section__inner {
  max-width: 1380px;
  margin: 0 auto;
}
.section-head {
  max-width: 760px;
  margin-bottom: 70px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--gold);
}
.section-head--center .eyebrow::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(34px, 4.6vw, 60px);
  color: var(--cream);
}
.section-title em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.section--cream .section-title em { color: #a3823f; }
.section-sub {
  margin-top: 22px;
  font-weight: 300;
  color: var(--cream-soft);
  font-size: 17px;
}
.section--cream .section-sub { color: var(--ink-soft); }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- treatment category cards (3D tilt) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.tilt-card {
  position: relative;
  padding: 48px 38px 44px;
  background: linear-gradient(160deg, var(--forest-800), var(--forest-900) 70%);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  transform-style: preserve-3d;
  transition: border-color 0.5s, box-shadow 0.5s;
  overflow: hidden;
}
.tilt-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.85);
}
.tilt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
              rgba(201, 168, 106, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.tilt-card:hover::before { opacity: 1; }
.tilt-card__icon {
  width: 64px; height: 64px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 30px;
  transform: translateZ(36px);
  transition: background 0.4s;
}
.tilt-card:hover .tilt-card__icon { background: rgba(201, 168, 106, 0.1); }
.tilt-card__icon svg { width: 28px; height: 28px; }
.tilt-card h3 {
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 16px;
  transform: translateZ(28px);
}
.tilt-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--sage-soft);
  margin: 0 0 28px;
  transform: translateZ(18px);
}
.tilt-card .card-link {
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateZ(24px);
}
.tilt-card .card-link .arrow { transition: transform 0.4s var(--ease-lux); }
.tilt-card:hover .card-link .arrow { transform: translateX(8px); }
.tilt-card__num {
  position: absolute;
  top: 26px;
  right: 30px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-dim);
  transform: translateZ(10px);
}
/* brand logo tile (Products page brand cards) */
.brand-logo {
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 26px;
  transform: translateZ(20px);
}
.brand-logo img { max-height: 100%; max-width: 100%; object-fit: contain; display: block; }

/* ---------- price lists ---------- */
.price-block { margin-bottom: 80px; }
.price-block:last-child { margin-bottom: 0; }
.price-item {
  position: relative;
  padding: 34px 28px;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 40px;
  align-items: baseline;
  transition: background 0.45s var(--ease-lux), padding-left 0.45s var(--ease-lux);
}
.price-item:first-of-type { border-top: 1px solid var(--line-light); }
.section:not(.section--cream) .price-item,
.section:not(.section--cream) .price-item:first-of-type { border-color: var(--line-dark); }
.price-item:hover {
  background: rgba(201, 168, 106, 0.06);
  padding-left: 40px;
}
.price-item h4 {
  font-size: 25px;
  letter-spacing: 0.02em;
}
.price-item .price-meta {
  display: flex;
  align-items: baseline;
  gap: 22px;
  white-space: nowrap;
}
.price-item .duration {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}
.section--cream .price-item .duration { color: #8a7a64; }
.price-item .price {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold);
}
.section--cream .price-item .price { color: #a3823f; }
.price-item .desc {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 820px;
}
.section:not(.section--cream) .price-item .desc { color: var(--sage-soft); }
.price-item .badge {
  display: inline-block;
  margin-left: 14px;
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--gold-dim);
  border-radius: 99px;
  color: var(--gold);
  vertical-align: middle;
}

/* ---- per-treatment thumbnail (image-rich price items) ---- */
.price-item:has(.price-item__img) {
  grid-template-columns: 300px 1fr auto;
  grid-template-areas:
    "img title meta"
    "img desc  desc"
    "img btn   btn";
  column-gap: 36px;
  row-gap: 6px;
  align-items: start;
}
.price-item__img {
  grid-area: img;
  width: 300px; height: 215px;
  border-radius: 14px; overflow: hidden;
  align-self: center;
  background: var(--line-light);
}
.price-item__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-lux); }
.price-item:has(.price-item__img):hover .price-item__img img { transform: scale(1.07); }
.price-item:has(.price-item__img) h4 { grid-area: title; }
.price-item:has(.price-item__img) .price-meta { grid-area: meta; }
.price-item:has(.price-item__img) .desc { grid-area: desc; grid-column: auto; max-width: none; }
.price-item:has(.price-item__img) .add-btn { grid-area: btn; grid-column: auto; justify-self: end; }
@media (max-width: 720px) {
  .price-item:has(.price-item__img) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "img"
      "title"
      "meta"
      "desc"
      "btn";
    row-gap: 8px;
  }
  .price-item:has(.price-item__img) .price-meta { justify-self: start; }
  .price-item:has(.price-item__img) .add-btn { justify-self: start; margin-top: 6px; }
  .price-item__img { width: 100%; height: 190px; margin-bottom: 4px; }
}

/* simple price table (eyes & make-up) */
.simple-prices { max-width: 720px; }
.simple-prices .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line-light);
  transition: background 0.4s, padding-left 0.4s var(--ease-lux);
}
.section:not(.section--cream) .simple-prices .row { border-color: var(--line-dark); }
.simple-prices .row:hover { background: rgba(201, 168, 106, 0.06); padding-left: 26px; }
.simple-prices .row .name { font-size: 16.5px; }
.simple-prices .row .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201, 168, 106, 0.45);
  transform: translateY(-4px);
}
.simple-prices .row .val {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  white-space: nowrap;
}
.section--cream .simple-prices .row .val { color: #a3823f; }

/* ---------- philosophy mantra ---------- */
.mantra-list { counter-reset: mantra; }
.mantra-item {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 44px);
  color: var(--cream-soft);
  transition: color 0.5s, padding-left 0.5s var(--ease-lux);
}
.mantra-item::before {
  counter-increment: mantra;
  content: counter(mantra, decimal-leading-zero);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.mantra-item:hover {
  color: var(--gold-bright);
  padding-left: 26px;
}

/* ---------- seasons ---------- */
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.season-card {
  position: relative;
  padding: 44px 30px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: linear-gradient(165deg, var(--forest-800), var(--forest-900));
  overflow: hidden;
  transition: transform 0.5s var(--ease-lux), border-color 0.5s, box-shadow 0.5s;
}
.season-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-dim);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.9);
}
.season-card .glyph {
  font-size: 30px;
  margin-bottom: 22px;
  display: inline-block;
  transition: transform 0.6s var(--ease-lux);
}
.season-card:hover .glyph { transform: rotate(14deg) scale(1.15); }
.season-card h3 {
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 10px;
}
.season-card .validity {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.season-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--sage-soft);
  margin: 0;
}

/* ---------- split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split__media {
  position: relative;
}
.arch-img {
  border-radius: 999px 999px 6px 6px;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  aspect-ratio: 3 / 4;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.55);
}
.arch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-lux);
}
.arch-img:hover img { transform: scale(1.07); }

/* ---- eye split: framed image on the left, heading + text on the right ---- */
.eye-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  aspect-ratio: 5 / 4;
  box-shadow: 0 44px 90px -46px rgba(0, 0, 0, 0.55);
}
.eye-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transition: transform 1.4s var(--ease-lux);
}
.eye-frame:hover img { transform: scale(1.06); }
.eye-split__text .section-title { margin-bottom: 18px; }
.eye-split__text .section-sub { max-width: 460px; }
@media (max-width: 860px) {
  .eye-frame { aspect-ratio: 4 / 3; max-width: 520px; margin: 0 auto; }
}

/* ---------- feature checklist ---------- */
.check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 300;
}
.check-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 12px;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ---------- stats / DMS effects ---------- */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.fact {
  text-align: center;
  padding: 44px 22px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: rgba(236, 220, 199, 0.6);
  transition: transform 0.5s var(--ease-lux), border-color 0.5s;
}
.fact:hover { transform: translateY(-8px); border-color: var(--gold-dim); }
.fact h3 {
  font-size: 26px;
  font-style: italic;
  color: var(--gold-bright);
  margin-bottom: 10px;
}
.fact p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--sage-soft);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  text-align: center;
  padding: 150px 48px;
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(228, 200, 168, 0.45), transparent 60%),
    var(--forest-900);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}
.cta-banner::before {
  content: "✦";
  position: absolute;
  font-size: 320px;
  color: rgba(201, 168, 106, 0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--cream);
  max-width: 820px;
  margin: 0 auto 22px;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-bright); font-weight: 400; }
.cta-banner p {
  color: var(--sage-soft);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 44px;
}
.cta-banner .phone-big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--gold);
  margin-bottom: 36px;
  transition: color 0.3s, letter-spacing 0.5s var(--ease-lux);
}
.cta-banner .phone-big:hover { color: var(--gold-bright); letter-spacing: 0.04em; }

/* ---------- page hero (subpages) ---------- */
.page-hero {
  position: relative;
  padding: 220px 48px 110px;
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(228, 200, 168, 0.45), transparent 60%),
    var(--forest-950);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.page-hero__inner {
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(42px, 6.5vw, 86px);
  color: var(--cream);
  max-width: 900px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-bright); font-weight: 400; }
.page-hero .lead {
  margin-top: 26px;
  max-width: 640px;
  font-weight: 300;
  font-size: 17.5px;
  color: var(--cream-soft);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-bottom: 30px;
}
.breadcrumb a { color: var(--gold); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb .sep { color: var(--gold-dim); }
.page-hero .floating-leaf {
  position: absolute;
  right: 6%;
  top: 30%;
  width: 130px;
  color: var(--gold);
  opacity: 0.16;
  animation: floatLeaf 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(9deg); }
}
/* page-hero: connected split — text on a tone matched to the image, image bleeds to the right edge */
.page-hero--media { position: relative; background: #34332e; overflow: hidden; min-height: 820px; }
.page-hero--media::after { display: none; }
.page-hero--media .floating-leaf { display: none; }
.page-hero--media .page-hero__inner { position: relative; z-index: 2; }
.page-hero--media .page-hero__inner > div:first-child { max-width: 56%; }
.page-hero--media h1 { color: #fff; }
.page-hero--media h1 em { color: var(--gold-bright); }
.page-hero--media .lead { color: rgba(255,255,255,0.90); }
.page-hero--media .breadcrumb { color: rgba(255,255,255,0.62); }
.page-hero--media .breadcrumb a { color: var(--gold-bright); }
.page-hero--media .breadcrumb a:hover { color: #fff; }
.page-hero--media .breadcrumb .sep { color: rgba(255,255,255,0.4); }
.page-hero__media { position: absolute; top: 50%; right: 44px; transform: translateY(-50%);
  width: min(48%, 640px); height: 560px; margin: 0;
  border-radius: 30px; overflow: hidden; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
/* white header over the dark hero (when not scrolled) */
body:has(.page-hero--media) .site-header:not(.is-scrolled) .brand__name,
body:has(.page-hero--media) .site-header:not(.is-scrolled) .nav-link { color: #fff; }
body:has(.page-hero--media) .site-header:not(.is-scrolled) .brand__name small { color: rgba(255,255,255,0.78); }
body:has(.page-hero--media) .site-header:not(.is-scrolled) .brand__mark { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45)) brightness(1.06); }
body:has(.page-hero--media) .site-header:not(.is-scrolled) .nav-link::after { background: #fff; }
body:has(.page-hero--media) .site-header:not(.is-scrolled) .main-nav li.is-active > .nav-link,
body:has(.page-hero--media) .site-header:not(.is-scrolled) .nav-link:hover { color: var(--gold-bright); }
body:has(.page-hero--media) .site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
body:has(.page-hero--media) .site-header:not(.is-scrolled) .lang-toggle,
body:has(.page-hero--media) .site-header:not(.is-scrolled) .cart-toggle { color: #fff; border-color: rgba(255,255,255,0.5); }
@media (max-width: 860px) {
  .page-hero--media { min-height: 0; }
  .page-hero--media .page-hero__inner > div:first-child { max-width: 100%; }
  .page-hero__media { position: static; transform: none; width: 100%; height: auto; aspect-ratio: 1300 / 1258; margin: 28px auto 0; border-radius: 20px; }
  .page-hero__media img { object-position: center; }
}

/* sub-nav pills on treatments page */
.subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 900;
  background: rgba(250, 244, 236, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-dark);
  padding: 0 48px;
  overflow-x: auto;
}
.subnav__inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}
.subnav a {
  padding: 18px 18px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-soft);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.subnav a:hover, .subnav a.is-active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.info-card {
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 40px 38px;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: 0 30px 70px -50px rgba(75, 58, 40, 0.28);
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -45px rgba(75, 58, 40, 0.32);
}
.info-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-card h3 .ico {
  width: 42px; height: 42px;
  border: 1px solid rgba(163, 130, 63, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #a3823f;
  flex-shrink: 0;
}
.info-card h3 .ico svg { width: 19px; height: 19px; }
.info-card p { margin: 0 0 6px; font-weight: 300; color: var(--ink-soft); }
.info-card a { color: #a3823f; transition: color 0.3s; }
.info-card a:hover { color: var(--ink); }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-light);
  font-weight: 300;
  color: var(--ink-soft);
}
.hours-row b { font-weight: 600; color: var(--ink); }
.hours-note {
  margin-top: 16px;
  font-size: 13.5px;
  font-style: italic;
  color: #8a7a64;
}

/* form */
.contact-form {
  background: var(--forest-900);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 52px 48px;
  color: var(--cream);
  box-shadow: 0 60px 120px -60px rgba(0, 0, 0, 0.6);
}
.contact-form h3 {
  color: var(--cream);
  font-size: 30px;
  margin-bottom: 8px;
}
.contact-form .form-note {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--sage-soft);
  margin: 0 0 36px;
}
.field { position: relative; margin-bottom: 30px; }
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-dark);
  padding: 14px 2px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color 0.4s;
  resize: vertical;
}
.field label {
  position: absolute;
  left: 2px;
  top: 14px;
  font-size: 15px;
  font-weight: 300;
  color: var(--sage-soft);
  pointer-events: none;
  transition: top 0.35s var(--ease-lux), font-size 0.35s, color 0.35s;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--gold); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form-privacy {
  font-size: 12.5px;
  color: var(--sage-soft);
  font-weight: 300;
  margin: -6px 0 28px;
}
.form-privacy a { color: var(--gold); }

/* map */
.map-wrap {
  margin-top: 80px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  overflow: hidden;
  filter: saturate(0.85);
  box-shadow: 0 40px 90px -50px rgba(75, 58, 40, 0.30);
}
.map-wrap iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

/* ---------- steps (gutschein) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 44px 30px 38px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: linear-gradient(165deg, var(--forest-800), var(--forest-900));
  transition: transform 0.5s var(--ease-lux), border-color 0.5s;
}
.step:hover { transform: translateY(-8px); border-color: var(--gold-dim); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 52px;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 18px;
  line-height: 1;
}
.step h3 { font-size: 22px; color: var(--cream); margin-bottom: 12px; }
.step p { margin: 0; font-size: 14px; font-weight: 300; color: var(--sage-soft); }

/* gift voucher visual */
.voucher {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 16 / 9.5;
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  background:
    radial-gradient(ellipse 90% 100% at 100% 0%, rgba(201, 168, 106, 0.12), transparent 55%),
    linear-gradient(150deg, var(--forest-700), var(--forest-900) 75%);
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 60px 120px -50px rgba(0, 0, 0, 0.85);
  transform-style: preserve-3d;
  overflow: hidden;
}
.voucher::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -80%;
  width: 60%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(244, 238, 225, 0.14), transparent);
  transform: rotate(12deg);
  animation: sheen 5.5s var(--ease-lux) infinite;
}
@keyframes sheen {
  0%, 55%, 100% { left: -80%; }
  35% { left: 130%; }
}
.voucher__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transform: translateZ(28px);
}
.voucher__brand {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--cream);
}
.voucher__brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-top: 4px;
}
.voucher__seal {
  width: 54px; height: 54px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
}
.voucher__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-style: italic;
  color: var(--gold-bright);
  transform: translateZ(36px);
}
.voucher__foot {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-soft);
  transform: translateZ(20px);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--forest-800);
  border-top: 1px solid var(--line-dark);
  padding: 100px 48px 0;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 80px;
}
.footer-brand .brand__name { font-size: 26px; }
.footer-brand p {
  margin: 22px 0 0;
  font-size: 14.5px;
  font-weight: 300;
  color: var(--sage-soft);
  max-width: 320px;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.site-footer li { margin-bottom: 13px; }
.site-footer li a, .site-footer li span {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--cream-soft);
  transition: color 0.3s, padding-left 0.3s var(--ease-lux);
}
.site-footer li a:hover { color: var(--gold-bright); padding-left: 8px; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-soft);
  border-bottom: 1px dashed var(--line-dark);
  padding-bottom: 10px;
}
.footer-hours li b { color: var(--gold-bright); font-weight: 600; }
.footer-note {
  font-size: 12.5px;
  font-style: italic;
  color: var(--sage);
  margin-top: 18px;
}
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 28px 0;
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--sage);
}
.footer-bottom .legal {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-bottom .legal a { transition: color 0.3s; }
.footer-bottom .legal a:hover { color: var(--gold-bright); }
.site-footer .giant-word {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(80px, 14vw, 210px);
  color: rgba(201, 168, 106, 0.045);
  text-align: center;
  line-height: 0.9;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  margin-top: -20px;
}

/* back-to-top */
.to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 52px; height: 52px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  background: rgba(250, 244, 236, 0.85);
  backdrop-filter: blur(10px);
  color: var(--gold);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s var(--ease-lux), visibility 0.4s, background 0.3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: rgba(201, 168, 106, 0.14); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .hero__inner { grid-template-columns: 1fr; padding-top: 150px; text-align: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__eyebrow::before { display: none; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__portrait { width: min(320px, 80vw); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .season-grid, .steps, .fact-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section, .page-hero, .cta-banner { padding-left: 24px; padding-right: 24px; }
  .header-inner { padding: 0 24px; }
  .subnav { padding: 0 24px; }
  .site-footer { padding-left: 24px; padding-right: 24px; }
  .card-grid, .season-grid, .steps, .fact-grid, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .price-item { grid-template-columns: 1fr; }
  .price-item .price-meta { justify-content: flex-start; }
  .price-item:hover { padding-left: 28px; }
  .portrait-caption { right: 0; }
  .contact-form { padding: 40px 28px; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .page-hero { padding-top: 160px; padding-bottom: 80px; }
}

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

/* ============================================================
   DESIGN 2 — WebGL shader hero · photographic cards · gallery
   ============================================================ */

/* Three.js hero canvas (sits under content, above bg) */
#hero3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* centered hero without portrait */
.hero--shader .hero__inner {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  max-width: 1080px;
  padding-top: 180px;
}
.hero--shader .hero__eyebrow { justify-content: center; }
.hero--shader .hero__eyebrow::before { display: none; }
.hero--shader .hero__eyebrow::after { content: none; }
.hero--shader .hero__lead { margin-left: auto; margin-right: auto; }
.hero--shader .hero__cta { justify-content: center; }
.hero--shader .hero__title { font-size: clamp(52px, 8.4vw, 124px); }

/* photographic tilt-card headers */
.tilt-card__img {
  height: 200px;
  margin: -48px -38px 32px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  transform: translateZ(12px);
}
.tilt-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-lux), filter 0.6s;
  filter: saturate(0.92);
}
.tilt-card:hover .tilt-card__img img {
  transform: scale(1.12);
  filter: saturate(1.05);
}
.tilt-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,17,12,0.05), rgba(17,23,15,0.55) 92%);
  pointer-events: none;
}

/* season cards with photos */
.season-card { padding: 0 0 36px; }
.season-card__img {
  height: 175px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 28px;
  position: relative;
}
.season-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-lux);
}
.season-card:hover .season-card__img img { transform: scale(1.12); }
.season-card h3, .season-card .validity, .season-card p { padding: 0 28px; }

/* wide section banner image */
.section-media {
  margin: -26px 0 56px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 0.55);
}
.section:not(.section--cream) .section-media { border-color: var(--line-dark); }
.section-media img {
  width: 100%;
  height: clamp(220px, 32vw, 420px);
  object-fit: cover;
  transition: transform 1.6s var(--ease-lux);
}
.section-media:hover img { transform: scale(1.05); }

/* impressions / voucher gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid var(--line-light);
}
.section:not(.section--cream) .gallery-item { border-color: var(--line-dark); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.1s var(--ease-lux), filter 0.6s;
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,17,12,0.45));
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: auto; }

/* product shot */
.product-shot {
  max-width: 360px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: 0 50px 100px -45px rgba(0, 0, 0, 0.8);
  margin-bottom: 36px;
}
.product-shot img { width: 100%; }

@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .gallery-grid, .gallery-grid--3 { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .tilt-card__img { margin: -48px -38px 28px; height: 170px; }
}

/* ============================================================
   DESIGN 2 — refinement pass
   Glassy 3D buttons · language toggle · typography polish
   ============================================================ */

/* glassy rounded 3D buttons */
.btn {
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 106, 0.55);
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 42%, rgba(201, 168, 106, 0.10));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -12px 20px -14px rgba(201, 168, 106, 0.45),
    0 18px 36px -18px rgba(0, 0, 0, 0.65);
  transition: color 0.45s var(--ease-lux), transform 0.4s var(--ease-lux),
              box-shadow 0.4s var(--ease-lux), border-color 0.4s;
}
.btn::before {
  border-radius: inherit;
}
.btn::after {
  content: "";
  position: absolute;
  top: 2px; left: 12%; right: 12%;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-3px);
  border-color: var(--gold-bright);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -12px 20px -14px rgba(201, 168, 106, 0.5),
    0 26px 48px -20px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(201, 168, 106, 0.15);
}
.btn:active { transform: translateY(-1px); }
.btn--solid {
  background:
    linear-gradient(170deg, var(--gold-bright), var(--gold) 55%, #a98a52);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -10px 16px -10px rgba(101, 78, 40, 0.55),
    0 18px 36px -16px rgba(201, 168, 106, 0.45);
}
.btn--solid::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
}
.btn--solid:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -10px 16px -10px rgba(101, 78, 40, 0.6),
    0 28px 52px -18px rgba(201, 168, 106, 0.55);
}

/* language toggle pill */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 20px -12px rgba(80, 60, 35, 0.4);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease-lux), border-color 0.3s, background 0.3s, color 0.3s;
}
.lang-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--gold);
  color: #fdfaf3;
}
.lang-toggle span { font-size: 14px; }
.lang-toggle .lang-ico { display: block; flex-shrink: 0; opacity: 0.85; }
.mobile-menu .lang-toggle {
  margin-top: 30px;
  align-self: flex-start;
  font-size: 13px;
  padding: 13px 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-lux), transform 0.6s var(--ease-lux),
              border-color 0.3s, background 0.3s;
}
body.menu-open .mobile-menu .lang-toggle { opacity: 1; transform: translateY(0); }
@media (max-width: 1100px) {
  .lang-toggle--desktop { display: none; }
}

/* typography & accessibility polish */
.section-title, .page-hero h1, .cta-banner h2, .hero__title {
  text-wrap: balance;
}
.section-sub, .page-hero .lead, .price-item .desc, .hero__lead {
  text-wrap: pretty;
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible, .lang-toggle:focus-visible { border-radius: 999px; }
.section-media { margin-top: 0; }
.contact-form, .info-card, .tilt-card, .season-card, .step, .fact {
  border-radius: 14px;
}
.tilt-card__img { border-radius: 14px 14px 0 0; }
.season-card__img { border-radius: 14px 14px 0 0; }
.field input, .field textarea { border-radius: 0; }

/* ============================================================
   DESIGN 2 — fix round: cream-section buttons + image frames
   ============================================================ */

/* dark glassy button for light/cream sections (replaces washed-out
   gold-outline variant) — deep forest pill, champagne text */
.btn--dark {
  background: linear-gradient(170deg, var(--forest-600), var(--forest-900) 72%);
  border-color: rgba(201, 168, 106, 0.5);
  color: var(--gold-bright);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -12px 20px -14px rgba(201, 168, 106, 0.35),
    0 18px 36px -16px rgba(75, 58, 40, 0.32);
}
.btn--dark::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}
.btn--dark:hover {
  color: var(--forest-950);
  border-color: var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 26px 48px -18px rgba(75, 58, 40, 0.34);
}

/* no more semi-circle arches — clean rounded rectangles */
.arch-img {
  border-radius: 18px;
}
.arch-img--wide {
  aspect-ratio: 4 / 3;
  max-width: 540px;
}
.portrait-frame, .portrait-ring {
  border-radius: 18px;
}

/* ============================================================
   DESIGN 2 — contact form: rounded fields + fixed float labels
   ============================================================ */
.field input, .field textarea {
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  padding: 16px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: border-color 0.35s, box-shadow 0.35s, background 0.35s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 0 0 4px rgba(201, 168, 106, 0.14);
}
.field label {
  left: 19px;
  top: 17px;
  transition: top 0.3s var(--ease-lux), left 0.3s var(--ease-lux),
              font-size 0.3s, color 0.3s, background 0.3s, padding 0.3s;
}
/* floated state: label lifts onto the border with its own backdrop,
   so it can never collide with the typed text or the box */
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 14px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: var(--forest-900);
  padding: 2px 9px;
  border-radius: 99px;
}
.field { margin-bottom: 26px; }

/* ============================================================
   DESIGN 3 — cinematic layer
   3D reveals · shimmer titles · shine sweeps · scroll parallax
   ============================================================ */

/* deeper, filmic scroll reveals */
.reveal {
  transform: perspective(1100px) translateY(56px) rotateX(7deg) scale(0.985);
  transform-origin: 50% 100%;
  filter: blur(9px);
  transition: opacity 1.1s var(--ease-lux), transform 1.1s var(--ease-lux),
              filter 1.1s var(--ease-lux);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible {
  transform: none;
  filter: blur(0);
}

/* liquid-gold shimmer on italic accent words */
.hero__title em, .section-title em, .page-hero h1 em, .cta-banner h2 em {
  background: linear-gradient(100deg,
    var(--gold) 0%, var(--gold-bright) 28%, #fff3d6 46%,
    var(--gold-bright) 60%, var(--gold) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 6s linear infinite;
}
@keyframes goldShimmer {
  to { background-position: -220% 0; }
}

/* parallax-ready imagery (driven by --py from JS) */
.section-media img, .arch-img img, .tilt-card__img img,
.season-card__img img, .gallery-item img {
  transform: translateY(var(--py, 0px)) scale(1.14);
  will-change: transform;
}
.tilt-card:hover .tilt-card__img img,
.season-card:hover .season-card__img img,
.gallery-item:hover img {
  transform: translateY(var(--py, 0px)) scale(1.22);
}
.section-media:hover img, .arch-img:hover img {
  transform: translateY(var(--py, 0px)) scale(1.18);
}

/* light sweep across card imagery on hover */
.tilt-card__img::before, .season-card__img::before, .gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg,
    transparent 38%, rgba(255, 248, 230, 0.32) 50%, transparent 62%);
  transform: translateX(-130%) skewX(-8deg);
  pointer-events: none;
}
.season-card__img { position: relative; }
.tilt-card:hover .tilt-card__img::before,
.season-card:hover .season-card__img::before,
.gallery-item:hover::before {
  transform: translateX(130%) skewX(-8deg);
  transition: transform 1s var(--ease-lux);
}

/* gold-dust scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--forest-950); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), #8a6f3f);
  border-radius: 99px;
  border: 2px solid var(--forest-950);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-bright); }

/* magnetic buttons get GPU hint */
.btn, .lang-toggle { will-change: transform; }

/* breathing glow behind CTA banner headline */
.cta-banner h2 { position: relative; }
.cta-banner h2::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 70%; height: 160%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201, 168, 106, 0.13), transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: ctaBreathe 5s ease-in-out infinite;
}
@keyframes ctaBreathe {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.92); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title em, .section-title em, .page-hero h1 em, .cta-banner h2 em {
    animation: none;
  }
}

/* QA polish: hamburger visibility on dark hero */
.nav-toggle {
  border-color: rgba(201, 168, 106, 0.45);
  background: rgba(250, 244, 236, 0.5);
  backdrop-filter: blur(8px);
}

/* ============================================================
   DESIGN 3 — interactive beauty round 2
   lightbox · button ripple · to-top ring · toast
   ============================================================ */

/* lightbox */
.gallery-item img, .arch-img img, .section-media img { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
  background: rgba(8, 12, 8, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-lux), visibility 0.45s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw;
  max-height: 84vh;
  border-radius: 12px;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 60px 140px -40px rgba(0, 0, 0, 0.9);
  transform: scale(0.92) translateY(14px);
  transition: transform 0.55s var(--ease-lux);
  cursor: default;
}
.lightbox.is-open img { transform: scale(1) translateY(0); }
.lightbox__caption {
  position: absolute;
  bottom: 4vmin;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-align: center;
  max-width: 80vw;
}
.lightbox__btn {
  position: absolute;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: rgba(46, 36, 24, 0.7);
  color: var(--gold-bright);
  font-size: 20px;
  font-family: var(--font-body);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-lux);
}
.lightbox__btn:hover {
  background: rgba(201, 168, 106, 0.18);
  border-color: var(--gold);
  transform: scale(1.08);
}
.lightbox__close { top: 26px; right: 26px; }
.lightbox__prev { left: 26px; top: 50%; margin-top: -27px; }
.lightbox__next { right: 26px; top: 50%; margin-top: -27px; }
@media (max-width: 680px) {
  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }
}

/* gold ripple on button press */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 243, 214, 0.5), rgba(255, 243, 214, 0) 65%);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleGo 0.7s var(--ease-lux) forwards;
  pointer-events: none;
}
@keyframes rippleGo {
  to { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* scroll-progress ring around back-to-top */
.to-top { overflow: visible; }
.to-top svg.ring {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  transform: rotate(-90deg);
  pointer-events: none;
}
.to-top svg.ring circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 182;
  stroke-dashoffset: 182;
}

/* toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 36px;
  transform: translate(-50%, 80px);
  z-index: 4100;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid var(--gold-dim);
  background: rgba(46, 36, 24, 0.93);
  backdrop-filter: blur(14px);
  color: var(--gold-bright);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: transform 0.55s var(--ease-lux), opacity 0.55s;
  pointer-events: none;
  max-width: 88vw;
  text-align: center;
}
.toast.is-shown { transform: translate(-50%, 0); opacity: 1; }

/* hero exit parallax GPU hint */
.hero__inner { will-change: transform, opacity; }

/* ============================================================
   DESIGN 3 — round 3 fixes
   crisp reveals (no blur) · high-contrast buttons · hero veil
   ============================================================ */

/* reveals: clean rise, zero blur — text stays sharp at all times */
.reveal {
  transform: translateY(36px);
  filter: none;
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible {
  transform: none;
  filter: none;
}

/* glass buttons: dark forest body so they stand out on bright areas */
.btn {
  background: linear-gradient(170deg,
    rgba(24, 33, 21, 0.85), rgba(12, 17, 12, 0.72) 55%, rgba(201, 168, 106, 0.18));
  border-color: rgba(201, 168, 106, 0.85);
  color: #f0dfb6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -12px 20px -14px rgba(201, 168, 106, 0.5),
    0 14px 34px -10px rgba(0, 0, 0, 0.6);
}
.btn:hover {
  border-color: var(--gold-bright);
  color: var(--forest-950);
}

/* solid gold button: deeper gold + dark halo so it never washes out */
.btn--solid {
  background: linear-gradient(170deg, #ecd29a, var(--gold) 50%, #9c7d47);
  color: #161c12;
  border-color: rgba(255, 244, 219, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -10px 16px -10px rgba(90, 68, 33, 0.6),
    0 16px 38px -10px rgba(0, 0, 0, 0.55);
}
.btn--solid:hover { color: #161c12; }

/* dark variant for cream sections keeps its own body */
.btn--dark {
  background: linear-gradient(170deg, var(--forest-600), var(--forest-900) 72%);
  color: var(--gold-bright);
}
.btn--dark:hover { color: var(--forest-950); }

/* gently deepen the veil behind hero copy for legibility */
.hero--shader .hero__veil {
  background:
    radial-gradient(ellipse 75% 70% at 50% 58%, rgba(250, 244, 236, 0.4), transparent 72%),
    radial-gradient(ellipse 100% 90% at 50% 110%, rgba(250, 244, 236, 0.82), transparent 55%);
}

/* ============================================================
   DESIGN 3 — cinematic preloader
   drawing gold ring · breathing glow · dust · curtain exit
   ============================================================ */
.preloader {
  background:
    radial-gradient(ellipse 60% 45% at 50% 42%, rgba(228, 200, 168, 0.5), transparent 65%),
    var(--forest-950);
  transition: transform 1s var(--ease-lux), visibility 1s;
  overflow: hidden;
}
.preloader::before {
  content: "";
  position: absolute;
  left: 50%; top: 42%;
  width: 420px; height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 168, 106, 0.14), transparent 62%);
  animation: plBreathe 2.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes plBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}
.preloader::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0;
}
.preloader.is-done {
  opacity: 1;
  transform: translateY(-100%);
  visibility: hidden;
}
.preloader.is-done::after { opacity: 1; }
.preloader__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  transition: opacity 0.45s var(--ease-lux), transform 0.45s var(--ease-lux);
}
.preloader.is-done .preloader__inner {
  opacity: 0;
  transform: translateY(-26px);
}

/* emblem: monogram inside a self-drawing rotating gold ring */
.preloader__emblem {
  position: relative;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
}
.preloader__emblem svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  animation: plSpin 6s linear infinite;
}
@keyframes plSpin { to { transform: rotate(270deg); } }
.preloader__emblem .track {
  fill: none;
  stroke: rgba(201, 168, 106, 0.18);
  stroke-width: 1.5;
}
.preloader__emblem .draw {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: plDraw 2.1s var(--ease-lux) infinite;
  filter: drop-shadow(0 0 6px rgba(226, 200, 145, 0.55));
}
@keyframes plDraw {
  0% { stroke-dashoffset: 340; }
  55% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -340; }
}
.preloader__mark {
  display: block;
  width: 100px; height: 42px;
  background: url('../assets/logo-lotus.png?v=2') center/contain no-repeat;
  filter: drop-shadow(0 0 18px rgba(200, 139, 134, 0.5));
  animation: markPulse 2.6s ease-in-out infinite;
}
.preloader__mark::before, .preloader__mark::after { content: none; }

/* brand line: tracking-in reveal */
.preloader__text {
  font-size: 13px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--cream);
  animation: plTrack 1.6s var(--ease-lux) both;
}
@keyframes plTrack {
  from { letter-spacing: 0.2em; opacity: 0; filter: blur(4px); }
  to { letter-spacing: 0.55em; opacity: 1; filter: blur(0); }
}
.preloader__sub {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sage-soft);
  animation: plTrack 1.6s var(--ease-lux) 0.25s both;
}

/* floating gold dust */
.pl-dust {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 240, 205, 0.95), rgba(201, 168, 106, 0) 70%);
  bottom: -10px;
  animation: plRise 5s linear infinite;
  opacity: 0;
}
.pl-dust--1 { left: 16%; animation-delay: 0s; }
.pl-dust--2 { left: 32%; animation-delay: 1.4s; width: 8px; height: 8px; }
.pl-dust--3 { left: 49%; animation-delay: 0.7s; }
.pl-dust--4 { left: 63%; animation-delay: 2.1s; width: 7px; height: 7px; }
.pl-dust--5 { left: 78%; animation-delay: 0.3s; }
.pl-dust--6 { left: 88%; animation-delay: 1.8s; width: 4px; height: 4px; }
@keyframes plRise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: 0.9; }
  100% { transform: translateY(-105vh) translateX(24px); opacity: 0; }
}

/* ============================================================
   DESIGN 3 — round 4: maximum button visibility
   ============================================================ */

/* outline/glass buttons: near-solid dark body, bright gold frame */
.btn {
  background: linear-gradient(170deg, #4a3a2a, #352819 60%, #5a4326);
  border: 1.5px solid var(--gold);
  color: #f5e8cf;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(40, 28, 14, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 6px 18px rgba(80, 60, 35, 0.20),
    0 18px 44px -12px rgba(80, 60, 35, 0.30);
}
.btn:hover {
  color: var(--forest-950);
  text-shadow: none;
  border-color: #fff3d6;
}

/* solid gold CTA: rich gold, dark text, strong halo */
.btn--solid {
  background: linear-gradient(170deg, #f3ddae, #d4af6e 55%, #a8854c);
  border: 1.5px solid #fff3d6;
  color: #12170f;
  font-weight: 700;
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 6px 18px rgba(0, 0, 0, 0.5),
    0 18px 44px -10px rgba(201, 168, 106, 0.45);
}
.btn--solid:hover { color: #12170f; }

/* cream-section variant unchanged body, matched weight */
.btn--dark {
  background: linear-gradient(170deg, #4a3a2a, #352819 72%);
  border: 1.5px solid var(--gold);
  color: #f5e8cf;
}
.btn--dark:hover { color: var(--forest-950); }

/* hero CTAs: a touch larger for presence */
.hero__cta .btn {
  padding: 17px 38px;
  font-size: 12.5px;
}

/* hero copy: ensure full opacity always (no scroll fade) */
.hero--shader .hero__inner {
  opacity: 1 !important;
  will-change: auto;
}
.hero__lead {
  color: var(--cream-soft);
  text-shadow: 0 1px 10px rgba(250, 244, 236, 0.55);
}

/* round 6: subnav no longer follows scroll (user request) */
.subnav {
  position: static;
  top: auto;
}

/* ============================================================
   DESIGN 4 — mobile button polish
   Equal-width, well-fitting buttons on small screens so long
   German labels (e.g. "Behandlungen entdecken") don't make one
   pill larger than the next.
   ============================================================ */
@media (max-width: 760px) {
  /* tighten every pill so long labels fit without growing huge */
  .btn {
    padding: 14px 24px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-align: center;
    white-space: normal;
  }
  .hero__cta .btn { padding: 15px 24px; font-size: 11.5px; }

  /* hero CTAs: stack full-width so both buttons are identical size */
  .hero__cta {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .hero__cta .btn { width: 100%; justify-content: center; }

  /* CTA-banner buttons: centred, equal, capped width */
  .cta-banner .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

  /* header "Termin vereinbaren" pill stays compact */
  .header-cta.btn--sm { padding: 11px 18px; font-size: 10.5px; letter-spacing: 0.12em; }
}

@media (max-width: 400px) {
  .btn { padding: 13px 18px; letter-spacing: 0.1em; }
}

/* DESIGN 4 — product-partner card link */
.card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.card-link:hover { color: var(--ink); border-color: var(--gold); }

/* ============================================================
   DESIGN 4 — Cart / Booking / Checkout (mock payment)
   ============================================================ */

/* header cart button */
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-left: 6px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-lux);
}
.cart-toggle:hover { background: var(--gold); color: #fdfaf3; transform: translateY(-2px); }
.cart-toggle svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 19px; height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #fdfaf3;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
}

/* add-to-cart buttons on services */
.add-btn {
  grid-column: 1 / -1;
  justify-self: end;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-lux);
}
.add-btn:hover { background: var(--gold); color: #fdfaf3; transform: translateY(-2px); }
.add-btn__plus { font-size: 15px; line-height: 1; }
.add-btn--sm {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  margin-left: 16px;
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.add-btn--sm:hover { background: var(--gold); color: #fdfaf3; border-color: var(--gold); }
.simple-prices .row { align-items: center; }

/* toast (premium card: check icon + item name + view cart) */
.cart-toast {
  position: fixed;
  left: 50%; bottom: 32px;
  transform: translate(-50%, 24px);
  z-index: 4200;
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px 12px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #3a2c1a, #4a3925);
  border: 1px solid rgba(201, 168, 106, 0.35);
  color: #f5e8cf;
  box-shadow: 0 26px 60px -22px rgba(40, 28, 14, 0.72);
  max-width: min(92vw, 430px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-lux), transform 0.5s var(--ease-lux);
}
.cart-toast.is-show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.cart-toast__ic { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 999px; background: var(--gold); color: #2a2014; }
.cart-toast__ic svg { width: 17px; height: 17px; }
.cart-toast__txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.cart-toast__txt strong { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-toast__sub { font-size: 11px; letter-spacing: 0.08em; color: rgba(245, 232, 207, 0.66); text-transform: uppercase; }
.cart-toast__view { flex: 0 0 auto; margin-left: 2px; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(201, 168, 106, 0.5); background: transparent; color: #eccb86; font-family: var(--font-body); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background 0.3s, color 0.3s; }
.cart-toast__view:hover { background: var(--gold); color: #2a2014; }

/* cart icon glow / bump when an item is added */
@keyframes cartBump { 0% { transform: scale(1); } 30% { transform: scale(1.2); } 55% { transform: scale(0.94); } 100% { transform: scale(1); } }
@keyframes cartGlow { 0% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.55); } 100% { box-shadow: 0 0 0 18px rgba(201, 168, 106, 0); } }
.cart-toggle.is-bump { animation: cartBump 0.6s var(--ease-lux); background: var(--gold); color: #fdfaf3; }
.cart-toggle.is-bump::after { content: ""; position: absolute; inset: -1px; border-radius: 999px; animation: cartGlow 0.9s ease-out; pointer-events: none; }
.cart-toggle.is-bump .cart-badge { animation: cartBump 0.55s var(--ease-lux) 0.05s; }

/* drawer */
.cart-drawer { position: fixed; inset: 0; z-index: 4000; visibility: hidden; }
.cart-drawer.is-open { visibility: visible; }
.cart-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(40, 28, 14, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.4s var(--ease-lux);
}
.cart-drawer.is-open .cart-drawer__overlay { opacity: 1; }
.cart-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  display: flex; flex-direction: column;
  background: var(--porcelain);
  box-shadow: -30px 0 80px -30px rgba(40, 28, 14, 0.4);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-lux);
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line-light);
}
.cart-drawer__head h3 { font-size: 26px; }
.cart-drawer__close {
  border: none; background: none; cursor: pointer;
  font-size: 30px; line-height: 1; color: var(--cream);
}
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 8px 28px; }
.cart-empty { padding: 60px 0; text-align: center; color: var(--ink-soft); }
.cart-line { display: flex; justify-content: space-between; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.cart-line__name { display: block; font-family: var(--font-display); font-size: 19px; color: var(--cream); }
.cart-line__meta { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); margin-top: 4px; }
.cart-line__remove { margin-top: 10px; border: none; background: none; padding: 0; cursor: pointer; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 1px solid var(--line-light); }
.cart-line__remove:hover { color: var(--gold); }
.cart-line__right { text-align: right; white-space: nowrap; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-dark); border-radius: 999px; overflow: hidden; }
.qty button { width: 28px; height: 28px; border: none; background: none; cursor: pointer; color: var(--cream); font-size: 16px; }
.qty button:hover { background: var(--gold); color: #fdfaf3; }
.qty-val { min-width: 26px; text-align: center; font-size: 14px; }
.cart-line__price { display: block; margin-top: 10px; font-family: var(--font-display); font-size: 20px; color: var(--gold); }
.cart-drawer__foot { padding: 22px 28px 28px; border-top: 1px solid var(--line-light); }
.cart-sum { display: flex; justify-content: space-between; align-items: baseline; font-size: 15px; }
.cart-sum strong { font-family: var(--font-display); font-size: 26px; color: var(--cream); }
.cart-incl { margin: 4px 0 18px; font-size: 12px; color: var(--ink-soft); }
.cart-drawer__foot .btn { display: flex; justify-content: center; width: 100%; margin-bottom: 12px; }

/* ---------- checkout page ---------- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 56px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.checkout-block { margin-bottom: 44px; }
.checkout-block__title {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-size: 27px; margin-bottom: 24px;
}
.checkout-block__num {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--gold); border-radius: 999px;
  font-family: var(--font-body); font-size: 14px; color: var(--gold);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.fld { display: flex; flex-direction: column; gap: 7px; }
.fld label { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-soft); }
.fld input, .fld select, .fld textarea {
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body); font-size: 15px; color: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 4px rgba(176, 138, 69, 0.14);
}
.fld input.is-invalid { border-color: #c0563f; box-shadow: 0 0 0 4px rgba(192, 86, 63, 0.12); }
.fld__err { font-size: 12px; color: #c0563f; min-height: 0; }

/* phone field with country-code flag dropdown (default Germany) */
.tel { position: relative; display: flex; align-items: stretch; border-radius: 12px; transition: box-shadow 0.3s; }
.tel__btn {
  display: flex; align-items: center; gap: 7px; padding: 0 11px; cursor: pointer;
  border: 1px solid var(--line-dark); border-right: none; border-radius: 12px 0 0 12px;
  background: rgba(176, 138, 69, 0.08); color: var(--cream);
  font-family: var(--font-body); font-size: 15px; white-space: nowrap;
  transition: background 0.25s, border-color 0.3s;
}
.tel__btn:hover { background: rgba(176, 138, 69, 0.15); }
.tel__flag { width: 22px; height: auto; border-radius: 2px; display: block; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.07); }
.tel__dial { font-variant-numeric: tabular-nums; }
.tel__caret { font-size: 10px; opacity: 0.55; margin-left: -2px; }
.tel__input { flex: 1; min-width: 0; border-radius: 0 12px 12px 0 !important; box-shadow: none !important; }
.tel:focus-within { box-shadow: 0 0 0 4px rgba(176, 138, 69, 0.14); }
.tel:focus-within .tel__btn, .tel:focus-within .tel__input { border-color: var(--gold); }
.tel:focus-within .tel__input { background: #fff; }
/* dropdown panel */
.tel__list {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 60;
  width: 320px; max-width: 90vw; max-height: 300px; overflow-y: auto; padding: 6px;
  background: #fff; border: 1px solid var(--line-dark); border-radius: 14px;
  box-shadow: 0 22px 54px rgba(60, 45, 20, 0.20);
}
.tel__list[hidden] { display: none; }
.tel__opt {
  display: flex; align-items: center; gap: 11px; width: 100%; padding: 9px 10px; cursor: pointer;
  border: none; border-radius: 9px; background: none; text-align: left;
  font-family: var(--font-body); font-size: 14px; color: var(--cream);
}
.tel__opt:hover { background: rgba(176, 138, 69, 0.10); }
.tel__opt.is-sel { background: rgba(176, 138, 69, 0.16); }
.tel__name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tel__optdial { color: var(--sage-soft); font-variant-numeric: tabular-nums; }

/* payment methods */
.pay-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.pay-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line-dark); border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer; transition: border-color 0.3s, background 0.3s;
}
.pay-method:hover { border-color: var(--gold); }
.pay-method.is-active { border-color: var(--gold); background: rgba(176, 138, 69, 0.08); box-shadow: 0 0 0 1px var(--gold) inset; }
.pay-method input { accent-color: var(--gold); width: 18px; height: 18px; }
.pay-method__label { flex: 1; font-weight: 600; font-size: 15px; }
.pay-method__badges { display: flex; gap: 6px; align-items: center; }
.pay-method__badges .brand { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; padding: 3px 7px; border-radius: 5px; background: var(--forest-800); color: var(--cream); }
.pay-panel { padding: 4px 2px 0; }
.pay-panel[hidden] { display: none; }
.pay-note { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; padding: 6px 2px; }

/* card field with brand */
.card-input-wrap { position: relative; }
.card-brand {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--gold); text-transform: uppercase; pointer-events: none;
}

/* voucher */
.voucher-row { display: flex; gap: 10px; align-items: flex-end; }
.voucher-row .fld { flex: 1; }
.voucher-msg { font-size: 13px; margin-top: 8px; }
.voucher-msg.ok { color: #4a7c4e; }
.voucher-msg.bad { color: #c0563f; }

/* live discount codes — synced from the admin */
.codes-live { margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--line, rgba(0,0,0,0.12)); }
.codes-live__head { margin-bottom: 12px; }
.codes-live__title { display: block; font-family: var(--serif, serif); font-size: 16px; color: var(--ink, #2b2a26); letter-spacing: 0.01em; }
.codes-live__sub { display: block; font-size: 12.5px; color: var(--muted, #8a857c); margin-top: 2px; }
.codes-live__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; }
.code-card { text-align: left; cursor: pointer; padding: 12px 14px; border-radius: 14px;
  background: linear-gradient(135deg, #fbf7ef, #fff);
  border: 1px solid var(--gold-dim, rgba(176,138,69,0.30));
  transition: transform 0.25s var(--ease-lux, ease), box-shadow 0.25s var(--ease-lux, ease), border-color 0.25s ease; }
.code-card:hover { transform: translateY(-2px); border-color: var(--gold, #b08a45); box-shadow: 0 10px 24px rgba(176,138,69,0.16); }
.code-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.code-card__code { font-weight: 600; letter-spacing: 0.06em; color: var(--ink, #2b2a26); font-size: 14px; }
.code-card__disc { font-family: var(--serif, serif); font-size: 17px; color: var(--gold, #b08a45); white-space: nowrap; }
.code-card__meta { display: block; margin-top: 6px; font-size: 11.5px; color: var(--muted, #8a857c); }

/* summary card */
.summary {
  position: sticky; top: 110px;
  border: 1px solid var(--line-dark); border-radius: 18px;
  background: var(--porcelain);
  padding: 30px 28px;
  box-shadow: 0 40px 90px -50px rgba(80, 60, 35, 0.4);
}
.summary h3 { font-size: 24px; margin-bottom: 20px; }
.summary__line { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line-light); font-size: 14.5px; }
.summary__line .s-name { color: var(--cream); }
.summary__line .s-qty { color: var(--ink-soft); font-size: 12.5px; }
.summary__line .s-price { font-family: var(--font-display); font-size: 18px; color: var(--gold); white-space: nowrap; }
.summary__sub { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; color: var(--ink-soft); }
.summary__sub.discount { color: #4a7c4e; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--line-dark); }
.summary__total span { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
.summary__total strong { font-family: var(--font-display); font-size: 34px; color: var(--cream); }
.summary__incl { font-size: 12px; color: var(--ink-soft); margin-top: 4px; text-align: right; }
.summary__empty { color: var(--ink-soft); }

.pay-submit { width: 100%; justify-content: center; margin-top: 22px; font-size: 13px; }
.pay-secure { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 12px; color: var(--ink-soft); }
.pay-secure svg { width: 14px; height: 14px; }

/* processing overlay */
.pay-overlay { position: fixed; inset: 0; z-index: 4300; display: none; place-items: center; background: rgba(247, 239, 226, 0.9); backdrop-filter: blur(6px); }
.pay-overlay.is-show { display: grid; }
.pay-overlay__box { text-align: center; }
.pay-spinner { width: 56px; height: 56px; margin: 0 auto 22px; border: 3px solid var(--line-dark); border-top-color: var(--gold); border-radius: 50%; animation: paySpin 0.8s linear infinite; }
@keyframes paySpin { to { transform: rotate(360deg); } }
.pay-overlay p { font-family: var(--font-display); font-size: 24px; color: var(--cream); }

/* ---------- confirmation page ---------- */
.confirm-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.confirm-check { width: 92px; height: 92px; margin: 0 auto 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(176, 138, 69, 0.14); border: 1.5px solid var(--gold); }
.confirm-check svg { width: 44px; height: 44px; stroke: var(--gold); }
.confirm-order { display: inline-block; margin: 22px 0 0; padding: 10px 22px; border: 1px dashed var(--gold-dim); border-radius: 10px; font-size: 14px; letter-spacing: 0.1em; }
.confirm-order b { color: var(--gold); letter-spacing: 0.16em; }
.receipt { text-align: left; margin: 44px auto 0; max-width: 620px; border: 1px solid var(--line-dark); border-radius: 18px; background: var(--porcelain); padding: 32px 30px; box-shadow: 0 40px 90px -50px rgba(80, 60, 35, 0.4); }
.receipt h3 { font-size: 22px; margin-bottom: 18px; }
.receipt__row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line-light); font-size: 14.5px; }
.receipt__row .r-price { font-family: var(--font-display); color: var(--gold); white-space: nowrap; }
.receipt__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line-dark); }
.receipt__total strong { font-family: var(--font-display); font-size: 30px; color: var(--cream); }
.receipt__meta { margin-top: 22px; font-size: 14px; color: var(--ink-soft); line-height: 1.8; }
.receipt__meta b { color: var(--cream); }

@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 40px; }
  .summary { position: static; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .cart-drawer__panel { width: 100vw; }
}

/* ============================================================
   DESIGN 4 — header layout fix
   The header is capped at max-width 1380px, yet brand + 6-item
   nav + language + the "Termin vereinbaren" text CTA + the new
   cart button summed to ~1390px — so the CTA was squeezed and
   its characters clipped. The cart button is now the header's
   commerce action; the booking CTA stays in the hero, every CTA
   banner, the footer and the mobile menu. Items are locked so
   nothing shrinks/clips, and the brand scales down on phones.
   ============================================================ */
.header-cta { display: none !important; }

.header-inner { gap: 16px; }
.brand,
.lang-toggle--desktop,
.cart-toggle { flex: 0 0 auto; }
.cart-toggle { margin-left: 0; }
.header-inner > nav { margin-left: auto; }      /* group nav + actions to the right */
.main-nav { flex: 0 1 auto; }
.main-nav a.nav-link { padding: 10px 12px; letter-spacing: 0.13em; }
.main-nav a.nav-link::after { left: 12px; right: 12px; }
.add-btn { white-space: nowrap; }

/* collapse nav to the hamburger before the row gets tight */
@media (max-width: 1240px) {
  .main-nav { display: none; }
  .lang-toggle--desktop { display: none; }
  .nav-toggle { display: block; }
  .cart-toggle { margin-left: auto; }           /* push cart + burger to the right */
}
@media (max-width: 680px) {
  .header-inner { gap: 12px; }
  .brand { gap: 10px; }
  .brand__mark { width: 66px; height: 28px; }
  .brand__name { font-size: 18px; }
}

/* ============================================================
   DESIGN 4 — homepage: photo hero · studio band · why-us · reviews
   ============================================================ */

/* ---- photo hero (replaces the silk shader) ---- */
.hero--shader {
  background:
    linear-gradient(180deg, rgba(26,18,10,0.54) 0%, rgba(26,18,10,0.46) 42%, rgba(26,18,10,0.76) 100%),
    url("../assets/hero-spa.jpg?v=3") center/cover no-repeat;
}
.hero--shader .hero__eyebrow { color: #ecd6a8; }
.hero--shader .hero__eyebrow::before { background: #ecd6a8; }
.hero--shader .hero__title { color: #fff; }
.hero--shader .hero__title em { color: #eccb86; }
.hero--shader .hero__lead { color: rgba(255,255,255,0.92); text-shadow: 0 1px 14px rgba(0,0,0,0.45); }
.hero--shader .hero__scroll { color: rgba(255,255,255,0.85); }

/* ---- studio band ("Your skin is unique") ---- */
.studio-band {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 90px 0;
  background:
    linear-gradient(90deg, rgba(34,24,14,0.72) 0%, rgba(34,24,14,0.45) 48%, rgba(34,24,14,0.10) 100%),
    url("../assets/studio-room.jpg") center/cover no-repeat;
}
.studio-band__inner { max-width: 1380px; width: 100%; margin: 0 auto; padding: 0 48px; }
.studio-band__card { max-width: 600px; }
.studio-band .eyebrow { color: #ecd6a8; }
.studio-band .section-title { color: #fff; }
.studio-band .section-title em { color: #eccb86; }
.studio-band .section-sub { color: rgba(255,255,255,0.9); }
.studio-band .check-list li { color: rgba(255,255,255,0.92); }

/* ---- DMS full-bleed band (image full width, text card on right) ---- */
.dms-band {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  padding: 90px 0;
  background:
    linear-gradient(90deg, rgba(34,24,14,0.05) 0%, rgba(34,24,14,0.32) 42%, rgba(34,24,14,0.80) 100%),
    url("../assets/dms-radiant-skin.jpg") 30% center/cover no-repeat;
}
.dms-band__inner { max-width: 1380px; width: 100%; margin: 0 auto; padding: 0 48px; display: flex; justify-content: flex-end; }
.dms-band__card { max-width: 540px; text-align: left; }
.dms-band .eyebrow { color: #ecd6a8; }
.dms-band .section-title { color: #fff; }
.dms-band .section-title em { color: #eccb86; }
.dms-band .section-sub { color: rgba(255,255,255,0.92); }

/* ---- treatment section bands (full-bleed image, text on a side) ---- */
.tband { position: relative; min-height: 50vh; display: flex; align-items: center; padding: 72px 0;
  background: linear-gradient(rgba(20,14,8,0.16), rgba(20,14,8,0.16)), var(--img) var(--bp, center)/cover no-repeat; }
.tband__inner { max-width: 1380px; width: 100%; margin: 0 auto; padding: 0 48px; display: flex; }
.tband--right .tband__inner { justify-content: flex-end; }
.tband--left  .tband__inner { justify-content: flex-start; }
.tband__card { max-width: 470px; padding: 34px 36px; border-radius: 16px;
  background: rgba(26,18,11,0.60); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(201,168,106,0.28); box-shadow: 0 30px 70px -30px rgba(0,0,0,0.55); }
.tband .eyebrow { color: #ecd6a8; }
.tband .section-title { color: #fff; }
.tband .section-title em { color: #eccb86; }
.tband .section-sub { color: rgba(255,255,255,0.92); margin-bottom: 0; }
@media (max-width: 760px) {
  .tband { min-height: auto; padding: 54px 0; }
  .tband__inner { padding: 0 22px; justify-content: center; }
  .tband__card { max-width: 560px; background: rgba(26,18,11,0.66); }
}

/* ---- full-width treatment banner with heading overlaid on the image ---- */
.treat-banner { width: 100%; overflow: hidden; position: relative; }
.treat-banner img { width: 100%; height: clamp(330px, 42vw, 560px); object-fit: cover; display: block; transition: transform 1.6s var(--ease-lux); }
.treat-banner:hover img { transform: scale(1.04); }
.treat-banner__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 76px 0 40px;
  background: linear-gradient(0deg, rgba(20,14,8,0.68) 0%, rgba(20,14,8,0.28) 44%, rgba(20,14,8,0) 82%); }
.treat-banner__cap .section__inner { padding-top: 0; padding-bottom: 0; }
.treat-banner__cap .eyebrow { color: #ecd6a8; margin-bottom: 6px; }
.treat-banner__cap .section-title { color: #fff; margin: 0 0 8px; }
.treat-banner__cap .section-title em { color: #eccb86; }
.treat-banner__cap .section-sub { color: rgba(255,255,255,0.94); margin: 0; max-width: 640px; }
/* taller hero variant so a near-square close-up (the eye) shows in full, sitting above the caption */
.treat-banner--tall img { height: clamp(420px, 52vw, 660px); }
/* "eye" treatment: full subject shown (contain, zoomed out) over a soft blurred backdrop of itself */
.treat-banner--eye { background: url('../assets/eye-aligned.jpg?v=28') center/cover no-repeat; }
.treat-banner--eye::before { content: ""; position: absolute; inset: -40px; background: inherit;
  filter: blur(34px) brightness(0.62) saturate(1.05); transform: scale(1.06); z-index: 0; }
.treat-banner--eye img { position: relative; z-index: 1; object-fit: contain; object-position: center 38%; padding: 14px 0 64px; }
.treat-banner--eye .treat-banner__cap { z-index: 2; }
@media (max-width: 720px) {
  .treat-banner__cap { padding: 64px 0 26px; }
  .treat-banner__cap .section-title { font-size: clamp(26px, 7vw, 34px); }
  .treat-banner--tall img { height: clamp(440px, 116vw, 560px); }
  .treat-banner--eye img { padding: 10px 0 96px; object-position: center 32%; }
}

/* ---- signature treatment cards ---- */
.treat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.treat-card { display: flex; flex-direction: column; background: var(--porcelain); border: 1px solid var(--line-light); border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px -50px rgba(80,60,35,0.5); transition: transform 0.5s var(--ease-lux), box-shadow 0.5s; }
.treat-card:hover { transform: translateY(-6px); box-shadow: 0 44px 90px -45px rgba(80,60,35,0.55); }
.treat-card__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--line-light); }
.treat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-lux); }
.treat-card:hover .treat-card__img img { transform: scale(1.06); }
.treat-card__body { flex: 1; display: flex; flex-direction: column; gap: 12px; padding: 26px 30px 30px; }
.treat-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px 24px; flex-wrap: wrap; }
.treat-card__head h4 { font-size: 23px; letter-spacing: 0.02em; color: var(--cream); margin: 0; }
.treat-card .price-meta { display: flex; align-items: baseline; gap: 16px; white-space: nowrap; }
.treat-card .duration { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: #8a7a64; }
.treat-card .price { font-family: var(--font-display); font-size: 27px; color: #a3823f; }
.treat-card .desc { margin: 0; font-size: 14.5px; font-weight: 300; color: var(--ink-soft); }
.treat-card .badge { display: inline-block; margin-left: 10px; padding: 4px 11px; font-family: var(--font-body); font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; border: 1px solid var(--gold-dim); border-radius: 99px; color: var(--gold); vertical-align: middle; }

@media (max-width: 860px) { .treat-grid { grid-template-columns: 1fr; } }
@media (max-width: 700px) {
  .dms-band {
    min-height: auto; padding: 70px 0;
    background:
      linear-gradient(180deg, rgba(30,22,14,0.55), rgba(30,22,14,0.66)),
      url("../assets/dms-radiant-skin.jpg") center 25%/cover no-repeat;
  }
  .dms-band__inner { padding: 0 26px; justify-content: center; }
  .dms-band__card { max-width: 540px; }
}

/* ---- why choose us ---- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: var(--porcelain); border: 1px solid var(--line-light); border-radius: 16px; padding: 0; overflow: hidden; text-align: left; box-shadow: 0 24px 60px -50px rgba(80,60,35,0.5); transition: transform 0.5s var(--ease-lux), box-shadow 0.5s; }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -45px rgba(80,60,35,0.5); }
.why-card__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--line-light); }
.why-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-lux); }
.why-card:hover .why-card__img img { transform: scale(1.06); }
.why-card__body { padding: 24px 24px 28px; }
.why-card h3 { font-size: 21px; margin-bottom: 10px; color: var(--cream); }
.why-card p { font-size: 14.5px; font-weight: 300; color: var(--ink-soft); margin: 0; }

/* ---- reviews ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--porcelain); border: 1px solid var(--line-light); border-radius: 16px; padding: 30px 28px; box-shadow: 0 24px 60px -50px rgba(80,60,35,0.5); display: flex; flex-direction: column; }
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.review-quote { font-family: var(--font-display); font-style: italic; font-size: 20px; line-height: 1.5; color: var(--cream); margin: 0 0 22px; flex: 1; }
.review-author { display: flex; align-items: center; gap: 13px; }
.review-avatar { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 50%; background: linear-gradient(160deg, var(--gold-bright), var(--gold)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 19px; }
.review-name { font-weight: 700; font-size: 14.5px; color: var(--cream); }
.review-meta { font-size: 12.5px; color: var(--ink-soft); }

@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .studio-band { min-height: auto; padding: 80px 0; }
  .studio-band__inner { padding: 0 24px; }
}

/* ---- legible header over the photo hero (homepage), until scrolled ---- */
body:has(.hero--shader) .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(38,26,15,0.5), rgba(38,26,15,0) 100%);
}
body:has(.hero--shader) .site-header:not(.is-scrolled) .brand__name { color: #fff; }
body:has(.hero--shader) .site-header:not(.is-scrolled) .brand__name small { color: rgba(255,255,255,0.78); }
body:has(.hero--shader) .site-header:not(.is-scrolled) .brand__mark { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45)) brightness(1.06); }
body:has(.hero--shader) .site-header:not(.is-scrolled) .nav-link { color: rgba(255,255,255,0.92); }
body:has(.hero--shader) .site-header:not(.is-scrolled) .nav-link::after { background: #fff; }
body:has(.hero--shader) .site-header:not(.is-scrolled) .main-nav li.is-active > .nav-link,
body:has(.hero--shader) .site-header:not(.is-scrolled) .nav-link:hover { color: #eccb86; }
body:has(.hero--shader) .site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
body:has(.hero--shader) .site-header:not(.is-scrolled) .nav-toggle { border-color: rgba(255,255,255,0.55); }
body:has(.hero--shader) .site-header:not(.is-scrolled) .lang-toggle,
body:has(.hero--shader) .site-header:not(.is-scrolled) .cart-toggle {
  color: #fff; border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.14);
}

/* contact form success banner */
.form-sent {
  background: rgba(74,124,78,0.12);
  color: #3f6b43;
  border: 1px solid rgba(74,124,78,0.32);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 14.5px;
}
