/* ============================================================
   BEAUTYROOM Ece Erdim — Design System
   Palette: warme Beige-Töne, Tiefbraun, Gold-Akzent
   ============================================================ */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfairdisplay.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfairdisplay-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter.woff2') format('woff2');
}

:root {
  --bg: #F5EFE6;
  --bg-deep: #ECE3D3;
  --bg-deeper: #E4D8C4;
  --cream: #FBF8F2;
  --ink: #2B2118;
  --ink-2: #6A5D4F;
  --ink-3: #99897A;
  --gold: #AE8F63;
  --gold-soft: #C9B08A;
  --line: rgba(43, 33, 24, 0.14);
  --line-soft: rgba(43, 33, 24, 0.08);
  --shadow: 0 20px 60px -20px rgba(43, 33, 24, 0.25);
  --shadow-soft: 0 10px 40px -18px rgba(43, 33, 24, 0.18);
  --radius: 24px;
  --radius-lg: 32px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --script: 'Playfair Display', Georgia, serif;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

::selection { background: var(--gold); color: #fff; }

/* Custom cursor active: hide native only on fine pointers */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}

/* ---------- Cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
}
body.cursor-visible .cursor-dot, body.cursor-visible .cursor-ring { opacity: 1; }
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.4px solid rgba(43, 33, 24, 0.45);
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.3s, transform 0.22s var(--ease), background 0.25s, border-color 0.25s;
  display: grid;
  place-items: center;
}
.cursor-ring .cursor-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.cursor-ring.is-hover {
  transform: translate(-50%, -50%) scale(1.6);
  background: rgba(174, 143, 99, 0.18);
  border-color: var(--gold);
}
.cursor-ring.is-label {
  transform: translate(-50%, -50%) scale(2.3);
  background: rgba(43, 33, 24, 0.88);
  border-color: transparent;
}
.cursor-ring.is-label .cursor-label { opacity: 1; }
.cursor-ring.is-down { transform: translate(-50%, -50%) scale(1.15); }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Utilities ---------- */
.container { width: min(1200px, 92vw); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section--deep { background: var(--bg-deep); }
.section--cream { background: var(--cream); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}
.kicker::before {
  content: '';
  width: 34px; height: 1px;
  background: var(--gold);
}
.script-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 2.1vw, 27px);
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1.2;
  display: block;
  margin-bottom: 10px;
}
h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.h-xl { font-size: clamp(38px, 5.2vw, 64px); }
.h-lg { font-size: clamp(30px, 3.8vw, 48px); }
.h-md { font-size: clamp(22px, 2.6vw, 30px); }
.lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--ink-2); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 14px 30px -12px rgba(43, 33, 24, 0.45);
}
.btn--primary:hover { transform: translateY(-3px); background: #3d3226; box-shadow: 0 20px 40px -14px rgba(43, 33, 24, 0.5); }
.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(174, 143, 99, 0.55);
}
.btn--gold:hover { transform: translateY(-3px); background: #9c7f55; }
.btn--ghost {
  border: 1.4px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn--sm { padding: 11px 22px; font-size: 14px; }

/* ---------- Navigation ---------- */
.nav-wrap {
  position: fixed;
  top: 16px; left: 0; right: 0;
  z-index: 1000;
  transition: top 0.35s var(--ease);
}
.nav {
  width: min(1240px, 94vw);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 14px 0 26px;
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(43, 33, 24, 0.08);
  box-shadow: 0 12px 40px -18px rgba(43, 33, 24, 0.28);
}
.nav__logo img { height: 34px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--ink); background: rgba(43, 33, 24, 0.05); }
.nav__links a.active { color: var(--ink); background: rgba(174, 143, 99, 0.16); }
.nav__cta { flex: none; }
.nav__burger {
  display: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  place-items: center;
  flex: none;
}
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--cream);
  position: relative;
  transition: background 0.2s;
}
.nav__burger span::before, .nav__burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu ul { text-align: center; display: grid; gap: 6px; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(26px, 6vw, 38px);
  padding: 6px 18px;
  display: inline-block;
  transition: color 0.25s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-menu .mobile-menu__cta { margin-top: 26px; }

@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__burger { display: grid; }
  .nav__cta { display: none; }
}

/* ---------- Video-Header (Scroll-Scrub) ---------- */
.vhead { position: relative; }
/* svh: stable unit — plain vh changes when the mobile URL bar collapses,
   which would make the scrub progress (and the video) jump mid-scroll */
.vhead__spacer { height: 280vh; height: 280svh; }
.vhead__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #0d0f14;
}
.vhead__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vhead__grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(64% 46% at 50% 54%, rgba(13, 15, 20, 0.34), transparent 72%),
    radial-gradient(120% 90% at 50% 50%, transparent 40%, rgba(13, 15, 20, 0.55) 100%),
    linear-gradient(180deg, rgba(13, 15, 20, 0.42) 0%, transparent 26%, transparent 66%, var(--bg) 99%);
  pointer-events: none;
}
.vhead__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  pointer-events: none;
  transition: opacity 0.25s linear;
}
.vhead__content .inner { max-width: 820px; }
.vhead__kicker {
  font-size: 12.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(251, 248, 242, 0.85);
  margin-bottom: 18px;
}
.vhead__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 7.5vw, 108px);
  letter-spacing: 0.14em;
  line-height: 1.02;
  color: #FBF8F2;
  text-shadow: 0 4px 40px rgba(13, 15, 20, 0.55);
}
.vhead__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 24px);
  color: var(--gold-soft);
  margin-top: 14px;
  letter-spacing: 0.06em;
}
.vhead__content--end p.lead { color: rgba(251, 248, 242, 0.85); margin-inline: auto; }
.vhead__content--end .vhead__title { font-size: clamp(30px, 4.4vw, 60px); letter-spacing: 0.04em; }
.vhead__content--end .btn { pointer-events: auto; margin-top: 26px; }
.vhead__hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(251, 248, 242, 0.8);
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s;
}
.vhead__hint::after {
  content: '';
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: hintdrop 1.8s ease-in-out infinite;
}
@keyframes hintdrop {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(1) translateY(8px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .vhead__spacer { height: 100svh; }
  .vhead__hint::after { animation: none; }
}

/* ---------- Hero (Home) ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 40px);
}
.hero__bg-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(52% 44% at 72% 30%, rgba(201, 176, 138, 0.4), transparent 70%),
    radial-gradient(40% 36% at 18% 70%, rgba(228, 216, 196, 0.85), transparent 70%),
    linear-gradient(180deg, #F7F2EA 0%, var(--bg) 55%, var(--bg-deep) 100%);
}
.hero__stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__word {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 0.86;
  user-select: none;
  white-space: nowrap;
  font-size: clamp(64px, 14.5vw, 210px);
}
.hero__word--back {
  top: clamp(60px, 10vh, 120px);
  color: var(--ink);
  z-index: 1;
}
.hero__word--front {
  top: calc(clamp(60px, 10vh, 120px) + 0.92em);
  z-index: 3;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(43, 33, 24, 0.55);
}
.hero__portrait {
  position: relative;
  z-index: 2;
  width: clamp(300px, 40vw, 560px);
  margin-bottom: 0;
  filter: drop-shadow(0 30px 60px rgba(43, 33, 24, 0.3));
  -webkit-mask-image: linear-gradient(200deg, #000 68%, transparent 92%);
  mask-image: linear-gradient(200deg, #000 68%, transparent 92%);
}
.hero__script {
  position: absolute;
  z-index: 4;
  font-family: var(--script);
  color: var(--ink);
  font-size: clamp(40px, 6vw, 84px);
  transform: rotate(-6deg);
  left: 50%;
  bottom: clamp(120px, 22vh, 240px);
  margin-left: clamp(120px, 16vw, 300px);
  text-shadow: 0 2px 30px rgba(245, 239, 230, 0.8);
}
.hero__chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(43, 33, 24, 0.1);
  box-shadow: var(--shadow-soft);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  animation: float 7s ease-in-out infinite;
}
.hero__chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.hero__chip--1 { left: max(4vw, calc(50% - 560px)); top: 34%; animation-delay: 0s; }
.hero__chip--2 { right: max(4vw, calc(50% - 580px)); top: 52%; animation-delay: 1.6s; }
.hero__chip--3 { left: max(8vw, calc(50% - 480px)); top: 66%; animation-delay: 3.1s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero__panel {
  position: relative;
  z-index: 5;
  background: rgba(251, 248, 242, 0.75);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-top: 1px solid rgba(43, 33, 24, 0.08);
}
.hero__panel-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(24px, 3vw, 40px) 0;
  align-items: center;
}
.hero__panel-cell { padding-right: 16px; }
.hero__panel-cell + .hero__panel-cell { border-left: 1px solid var(--line-soft); padding-left: clamp(20px, 3vw, 48px); }
.hero__panel-cell h3 { font-size: 17px; margin-bottom: 6px; font-family: var(--sans); font-weight: 650; }
.hero__panel-cell p { font-size: 14.5px; color: var(--ink-2); }
.hero__panel-cell .stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
@media (max-width: 900px) {
  .hero__word--front { display: none; }
  .hero__script { margin-left: 14vw; bottom: 14vh; }
  .hero__chip--1 { top: 56%; }
  .hero__chip--2 { top: 15%; }
  .hero__chip--3 { left: auto; right: 4vw; top: 80%; }
  .hero__panel-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero__panel-cell + .hero__panel-cell { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-soft); padding-top: 16px; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
  padding: 18px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee__track span::after { content: '✦'; color: var(--gold); font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards / Services ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 30px); }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: block;
}
.card h3 { font-size: clamp(20px, 2vw, 24px); margin-bottom: 10px; }
.card p { color: var(--ink-2); font-size: 15px; }
.card__arrow {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
}
.card__arrow svg { transition: transform 0.3s var(--ease); }
.card:hover .card__arrow svg { transform: translateX(6px); }
.card--feature { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; min-height: 420px; color: var(--cream); }
.card--feature .card__media { position: absolute; inset: 0; }
.card--feature .card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card--feature:hover .card__media img { transform: scale(1.05); }
.card--feature .card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(30, 22, 14, 0.82) 100%);
}
.card--feature > *:not(.card__media) { position: relative; z-index: 1; }
.card--feature p { color: rgba(251, 248, 242, 0.8); }
.card--feature .card__arrow { color: var(--gold-soft); }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.split--rev > :first-child { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--rev > :first-child { order: 0; }
}
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.media-frame img, .media-frame video { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 3 / 4; }
.media-frame__badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(251, 248, 242, 0.9);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.check-list { display: grid; gap: 14px; margin-top: 26px; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink-2);
}
.check-list li strong { color: var(--ink); }
.check-list .check {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(174, 143, 99, 0.16);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-top: 2px;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat b {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  display: block;
  line-height: 1;
}
.stat b em { color: var(--gold); font-style: normal; }
.stat span { font-size: 13.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }

/* ---------- Pricing ---------- */
.price-card {
  background: linear-gradient(160deg, rgba(251, 248, 242, 0.92), rgba(236, 227, 211, 0.85));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(43, 33, 24, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card--dark {
  background: linear-gradient(165deg, #33281d, #211a12);
  color: var(--cream);
  border-color: rgba(251, 248, 242, 0.08);
}
.price-card--dark .price-row { border-color: rgba(251, 248, 242, 0.1); }
.price-card--dark .price-row small, .price-card--dark .price-card__cat { color: var(--gold-soft); }
.price-card__cat {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}
.price-card h3 { font-size: clamp(21px, 2.2vw, 26px); margin-bottom: 4px; }
.price-rows { margin-top: 18px; display: grid; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}
.price-row:last-child { border-bottom: 0; }
.price-row div { max-width: 70%; }
.price-row strong { font-weight: 600; font-size: 15.5px; display: block; }
.price-row small { color: var(--ink-3); font-size: 13px; }
.price-row .price {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  white-space: nowrap;
}
.price-row .price sup { font-size: 12px; color: var(--gold); font-family: var(--sans); font-weight: 600; margin-right: 2px; }
.price-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ink-3);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr; } }
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__label {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(30, 22, 14, 0.72);
  color: var(--cream);
  backdrop-filter: blur(6px);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ---------- FAQ ---------- */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.faq-tab {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.4px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: all 0.3s var(--ease);
}
.faq-tab:hover { border-color: var(--gold); color: var(--ink); }
.faq-tab.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.faq-group { display: none; }
.faq-group.active { display: block; animation: fadeUp 0.5s var(--ease); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item[open] { box-shadow: var(--shadow-soft); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(174, 143, 99, 0.14);
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease), background 0.3s;
  font-size: 16px;
  font-weight: 500;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--ink-2); font-size: 15px; max-width: 68ch; }

/* ---------- 3D Laser section ---------- */
.laser3d {
  position: relative;
  background:
    radial-gradient(60% 50% at 50% 40%, rgba(201, 176, 138, 0.35), transparent 75%),
    linear-gradient(180deg, var(--bg-deep), var(--bg));
  overflow: clip;
}
.laser3d__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  min-height: 640px;
}
@media (max-width: 980px) {
  .laser3d__grid { grid-template-columns: 1fr; min-height: 0; }
}
.laser3d__viewer {
  position: relative;
  height: clamp(480px, 72vh, 680px);
}
model-viewer {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
  outline: none;
}
.laser3d__halo {
  position: absolute;
  left: 50%; bottom: 8%;
  width: 70%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 143, 99, 0.3), transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.laser3d__hint {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.zone-col { display: grid; gap: 14px; align-content: center; }
.zone {
  background: rgba(251, 248, 242, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 16px 20px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s, background 0.3s;
}
.zone:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(174, 143, 99, 0.5); }
.zone.active {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}
.zone.active b { color: var(--cream); }
.zone.active span { color: rgba(251, 248, 242, 0.7); }
.zone.active b::before { background: var(--gold-soft); }
.zone b { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 650; }
.zone b::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; }
.zone span { font-size: 13.5px; color: var(--ink-2); display: block; margin-top: 3px; }

/* ---------- Steps / timeline ---------- */
.steps { display: grid; gap: 0; max-width: 780px; margin-inline: auto; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
}
.step:last-child { border-bottom: 0; }
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
}
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { color: var(--ink-2); font-size: 15px; }

/* ---------- Video reel ---------- */
.reel-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 9 / 16;
  max-width: 380px;
  margin-inline: auto;
  background: var(--ink);
}
.reel-frame video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Contact ---------- */
.contact-panel {
  background: linear-gradient(160deg, #33281d, #1f1811);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 70px);
  position: relative;
  overflow: hidden;
}
.contact-panel::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 143, 99, 0.35), transparent 70%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  position: relative;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-panel .lead { color: rgba(251, 248, 242, 0.75); }
.contact-info { display: grid; gap: 18px; align-content: start; }
.contact-info__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(251, 248, 242, 0.06);
  border: 1px solid rgba(251, 248, 242, 0.1);
  border-radius: 18px;
}
.contact-info__row .ico {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(174, 143, 99, 0.22);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
}
.contact-info__row .ico svg { width: 19px; height: 19px; }
.contact-info__row b { display: block; font-size: 15px; }
.contact-info__row span, .contact-info__row a.plain { font-size: 14px; color: rgba(251, 248, 242, 0.72); }
.contact-info__row a.plain:hover { color: var(--gold-soft); }
.booking-steps { display: grid; gap: 10px; margin-top: 20px; }
.booking-steps li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14.5px;
  color: rgba(251, 248, 242, 0.85);
}
.booking-steps li i {
  font-style: normal;
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding: calc(var(--nav-h) + clamp(70px, 10vw, 120px)) 0 clamp(50px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(46% 42% at 80% 20%, rgba(201, 176, 138, 0.4), transparent 70%),
    linear-gradient(180deg, #F7F2EA, var(--bg));
}
.page-hero .container { position: relative; }
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 22px;
  font-weight: 500;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { opacity: 0.5; }

/* ---------- Footer ---------- */
.footer {
  background: #1f1811;
  color: rgba(251, 248, 242, 0.75);
  padding: clamp(50px, 7vw, 90px) 0 32px;
  margin-top: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(26px, 4vw, 60px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(251, 248, 242, 0.1);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 40px; width: auto; filter: invert(1) brightness(1.6); margin-bottom: 16px; }
.footer__brand p { font-size: 14px; max-width: 30ch; }
.footer h4 {
  font-family: var(--sans);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer ul { display: grid; gap: 9px; }
.footer ul a { font-size: 14.5px; transition: color 0.25s; }
.footer ul a:hover { color: var(--gold-soft); }
.footer__hours li { display: flex; justify-content: space-between; font-size: 14px; gap: 12px; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(251, 248, 242, 0.45);
}
.footer__bottom a:hover { color: var(--gold-soft); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 950;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Mobile performance: backdrop-blur is expensive on phone GPUs
   and causes scroll jank — swap glass effects for near-opaque solids ---------- */
@media (max-width: 820px) {
  .nav,
  .hero__chip,
  .hero__panel,
  .zone,
  .price-card,
  .gallery__label,
  .media-frame__badge,
  .marquee__track { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav { background: rgba(251, 248, 242, 0.97); }
  .hero__chip { background: rgba(251, 248, 242, 0.97); }
  .hero__panel { background: rgba(251, 248, 242, 0.96); }
  .zone { background: rgba(251, 248, 242, 0.95); }
  .price-card:not(.price-card--dark) { background: linear-gradient(160deg, #FBF8F2, #EFE7D8); }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero__chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Legal pages ---------- */
.legal { max-width: 780px; margin-inline: auto; }
.legal h1 { margin-bottom: 30px; }
.legal h2 { font-size: 24px; margin: 38px 0 12px; }
.legal h3 { font-size: 18px; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--ink-2); font-size: 15.5px; margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal .note {
  background: rgba(174, 143, 99, 0.12);
  border: 1px solid rgba(174, 143, 99, 0.3);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14px;
}

/* ---------- Misc ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill {
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(174, 143, 99, 0.13);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
}
.klarna-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFB3C7;
  color: #17120F;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 2000;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }
