:root {
  --ink: #17140f;
  --ink-soft: #2a251c;
  --cream: #FAF7F0;
  --stone: #EDE7DA;
  --gold: #B8933F;
  --gold-soft: #C9A768;
  --gold-light: #E7D6A8;
  /* Same gold family, darkened for text/icons/buttons on light (cream/white/moss-pale)
     backgrounds — plain --gold only hits ~2.7:1 there, well under the 4.5:1 minimum.
     On dark (ink) backgrounds --gold already clears 6:1+, so it stays unchanged there. */
  --gold-deep: #7D5F29;
  --moss: #4A5D3A;
  --moss-soft: #6E7F5C;
  --moss-pale: #E4E9DC;
  --white: #FFFFFF;
  --shadow: 0 24px 60px -24px rgba(23,20,15,0.35);
  --radius: 20px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

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

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }
img { display: block; max-width: 100%; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.eyebrow { font-size: 0.76rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-deep); display: block; margin-bottom: 16px; font-weight: 500; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.section-lead { color: var(--ink-soft); font-size: 1.05rem; max-width: 620px; }
.section-head { text-align: center; margin: 0 auto 60px; max-width: 680px; }

/* Accessibility: hidden off-screen until keyboard-focused, so Tab users can
   jump straight past the header/nav instead of tabbing through every link. */
.skip-link {
  position: absolute; top: -60px; left: 12px; z-index: 3000;
  background: var(--ink); color: var(--cream); padding: 12px 20px; border-radius: 10px;
  font-size: 0.88rem; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 34px; border-radius: 999px;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.03em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s ease;
  cursor: pointer; border: none;
}
.btn-gold { background: var(--gold-deep); color: var(--white); box-shadow: 0 18px 40px -16px rgba(125,95,41,0.6); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -14px rgba(125,95,41,0.7); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(250,247,240,0.5); }
.btn-outline:hover { background: rgba(250,247,240,0.12); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--moss); transform: translateY(-3px); }

/* ===== INTRO OVERLAY (homepage entrance only) ===== */
.intro-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .9s var(--ease);
}
.intro-overlay.hide { opacity: 0; pointer-events: none; }
.intro-mark { display: flex; flex-direction: column; align-items: center; gap: 16px; animation: introReveal 1.2s var(--ease) both; }
.intro-mark img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(250,247,240,0.25); }
.intro-mark span { font-family: 'Cormorant Garamond', serif; letter-spacing: 0.34em; text-transform: uppercase; color: var(--cream); font-size: 0.92rem; }
@keyframes introReveal { from { opacity: 0; transform: scale(.94) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 20px 0;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
header.scrolled { background: rgba(23,20,15,0.92); backdrop-filter: blur(14px); padding: 12px 0; box-shadow: 0 12px 30px -18px rgba(0,0,0,0.5); }
header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  /* .mobile-menu is a child of <header> too, with its own z-index: 480. Without
     a stacking order of its own, this row would paint behind it once the menu
     opens, hiding the burger toggle and Rezervă button. */
  position: relative; z-index: 490;
}
.logo-mark { display: flex; align-items: center; gap: 12px; }
.logo-mark img { height: 40px; width: auto; transition: height .4s ease; }
header.scrolled .logo-mark img { height: 34px; }
.logo-mark span { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; letter-spacing: 0.08em; color: var(--cream); text-transform: uppercase; }
nav ul { display: flex; gap: 34px; list-style: none; }
nav a { color: rgba(250,247,240,0.82); font-size: 0.86rem; letter-spacing: 0.02em; transition: color .3s ease; position: relative; }
nav a:hover { color: var(--gold-light); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.burger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; min-width: 44px; min-height: 44px; }
.burger span { width: 22px; height: 2px; background: var(--cream); transition: transform .3s ease, opacity .3s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: heroZoom 8s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.12); opacity: .6; } to { transform: scale(1.03); opacity: 1; } }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,20,15,0.55) 0%, rgba(23,20,15,0.35) 40%, rgba(23,20,15,0.78) 100%); z-index: 1; }

/* Ambient drifting steam/mist — the hero photo is literally a steam treatment, so this
   isn't decoration for its own sake: it extends the room's own atmosphere into the UI.
   Heavily blurred + low opacity so it reads as soft light, not distinct shapes. */
.hero-mist { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-mist span { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .38; background: radial-gradient(circle, rgba(231,214,168,0.65), transparent 70%); animation: mistDrift ease-in-out infinite alternate; }
.hero-mist span:nth-child(1) { width: 440px; height: 440px; top: -12%; left: -10%; animation-duration: 30s; }
.hero-mist span:nth-child(2) { width: 360px; height: 360px; bottom: -18%; right: -8%; animation-duration: 24s; animation-delay: -6s; }
.hero-mist span:nth-child(3) { width: 280px; height: 280px; top: 32%; right: 18%; animation-duration: 34s; animation-delay: -12s; }
@keyframes mistDrift { from { transform: translate(0,0) scale(1); } to { transform: translate(50px,-36px) scale(1.18); } }

.hero-content { position: relative; z-index: 2; padding: 0 24px 70px; color: var(--cream); }
.hero-content .eyebrow { color: rgba(250,247,240,0.85); animation: fadeUp .9s var(--ease) both; animation-delay: .15s; }
.rating-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(250,247,240,0.14); border: 1px solid rgba(250,247,240,0.35);
  padding: 9px 20px; border-radius: 999px; font-size: 0.82rem; margin-bottom: 28px;
  backdrop-filter: blur(6px); animation: fadeUp .9s var(--ease) both; animation-delay: .3s;
}
.rating-pill strong { color: var(--gold-light); }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.8rem); max-width: 920px; margin: 0 auto 26px; color: var(--white); }
/* Words are wrapped in spans by script.js and staggered — see splitHeroHeadline().
   Falls back to a plain block if JS doesn't run (progressive enhancement, not required). */
.hero h1 .word { display: inline-block; opacity: 0; filter: blur(8px); transform: translateY(28px); animation: wordIn .85s var(--ease) both; }
@keyframes wordIn { to { opacity: 1; filter: blur(0); transform: translateY(0); } }
.hero p { max-width: 560px; margin: 0 auto 40px; color: rgba(250,247,240,0.88); font-size: 1.08rem; animation: fadeUp 1s var(--ease) both; animation-delay: .75s; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s var(--ease) both; animation-delay: .9s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(250,247,240,0.75); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-hint svg { width: 16px; height: 16px; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); opacity: .6; } 50% { transform: translateY(7px); opacity: 1; } }
/* On short viewports the vertically-centered hero content can grow tall enough to
   overlap this absolutely-positioned hint (and even the header above it), so hide
   the hint and switch to top-anchored content instead of centering it. */
@media (max-height: 700px) {
  .scroll-hint { display: none; }
  .hero { align-items: flex-start; }
  .hero-content { padding-top: 120px; padding-bottom: 40px; }
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px) scale(.97); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-delay-1.visible { transition-delay: .12s; }
.reveal-delay-2.visible { transition-delay: .24s; }
.reveal-delay-3.visible { transition-delay: .36s; }

/* Stat numbers (rating, %) count up from 0 once scrolled into view — see script.js */
.stat-num { display: inline-block; }

/* ===== RITUAL THREAD (signature divider) =====
   A single drawn gold strand marking section transitions — a literal nod to hair/scalp
   rather than a generic wave or blob divider. `pathLength="100"` is set on the path in
   markup so stroke-dasharray/dashoffset are always 0-100 regardless of the path's actual
   geometry. Piggybacks on the existing .reveal fade-up + IntersectionObserver (no new JS):
   scrolling into view adds .visible, which fades the wrapper up AND draws the line. */
.ritual-thread { display: block; width: 140px; height: 28px; margin: 44px auto; overflow: visible; }
.ritual-thread path { fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; }
.reveal.ritual-thread path { stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 1.1s var(--ease) .15s; }
.reveal.ritual-thread.visible path { stroke-dashoffset: 0; }

/* Hero variant: bolder, always-on-load treatment (no scroll trigger) — the one deliberate
   "big" moment, following the same fadeUp timing convention as the rest of the hero content. */
.ritual-thread--hero { width: 220px; height: 34px; margin: 40px auto 0; opacity: 0; animation: fadeUp .9s var(--ease) both; animation-delay: 1.75s; }
.ritual-thread--hero path { stroke-dasharray: 100; stroke-dashoffset: 100; animation: threadDraw 1.3s var(--ease) both; animation-delay: 1.95s; }
@keyframes threadDraw { to { stroke-dashoffset: 0; } }

/* ===== ABOUT ===== */
.about { padding: 130px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { color: var(--ink-soft); margin-bottom: 20px; font-size: 1.02rem; }
.stat-row { display: flex; gap: 44px; margin-top: 32px; flex-wrap: wrap; }
.stat-row .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold-deep); display: block; }
.stat-row .stat-label { font-size: 0.8rem; color: var(--ink-soft); letter-spacing: 0.02em; }

/* ===== HOW IT WORKS ===== */
.how { padding: 120px 0; background: var(--ink); color: var(--cream); overflow: hidden; }
.how .section-head .eyebrow { color: var(--gold-light); }
.how .section-title { color: var(--white); }
.how .section-lead { color: rgba(250,247,240,0.72); margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step-card {
  background: rgba(250,247,240,0.05); border: 1px solid rgba(250,247,240,0.14);
  border-radius: var(--radius); padding: 34px 26px; text-align: center;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.step-card:hover { background: rgba(250,247,240,0.09); border-color: rgba(184,147,63,0.5); transform: translateY(-6px); }
/* Fixed-size circular badge (not just a serif numeral) so the 4 steps read as beads
   on a single connecting thread — see .steps-list::before below — rather than 4
   unrelated cards that happen to be numbered. */
.step-num {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold);
  border: 1.5px solid var(--gold); background: var(--ink);
}
.step-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { color: rgba(250,247,240,0.68); font-size: 0.9rem; }

/* Condensed homepage variant: photo alongside a vertical list of steps,
   instead of the 4-card grid used on the dedicated ce-este-head-spa.html page. */
.how-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; margin-top: 56px; }
.how-photo { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.7); }
.how-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.how-photo:hover img { transform: scale(1.05); }
/* The ritual spine: one continuous thread running behind the 4 step badges, turning
   the "4 etape" copy into something you can actually see as one continuous ritual
   rather than 4 separate cards. A CSS ::before is inherently invisible to
   screen readers, so no extra markup is needed to keep it purely decorative. */
.steps-list { display: flex; flex-direction: column; gap: 16px; position: relative; }
.steps-list::before {
  content: ''; position: absolute; left: 52px; top: 48px; bottom: 48px; width: 1.5px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--gold) 100%);
  opacity: .55;
}
.steps-list .step-card { display: flex; gap: 20px; align-items: flex-start; text-align: left; padding: 22px 26px; position: relative; z-index: 1; }
.steps-list .step-card:hover { transform: translateX(8px); }
.steps-list .step-num { margin: 0; }
.steps-list .step-card h3 { margin-bottom: 4px; font-size: 1.05rem; }
.steps-list .step-card p { margin: 0; }

/* ===== BENEFITS ===== */
.benefits { padding: 120px 0; background: var(--moss-pale); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-card {
  background: var(--white); border-radius: var(--radius); padding: 38px 30px;
  box-shadow: var(--shadow); transition: transform .5s var(--ease);
}
.benefit-card:hover { transform: translateY(-8px); }
.benefit-icon {
  width: 54px; height: 54px; border-radius: 50%; background: var(--moss-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.benefit-icon svg { width: 26px; height: 26px; stroke: var(--moss); }
.benefit-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.benefit-card p { color: var(--ink-soft); font-size: 0.94rem; }

/* ===== PACKAGES ===== */
.packages { padding: 130px 0; background: var(--cream); }
.price-note { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin: -34px auto 50px; max-width: 480px; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.package-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 32px;
  box-shadow: var(--shadow); position: relative; display: flex; flex-direction: column;
  border: 1px solid rgba(23,20,15,0.06); transition: transform .5s var(--ease), border-color .5s ease;
}
.package-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.package-card.featured { background: var(--ink); color: var(--cream); }
.package-card.featured .package-price, .package-card.featured h3 { color: var(--white); }
.package-card.featured p, .package-card.featured li { color: rgba(250,247,240,0.75); }
/* Featured card has a dark (ink) background, unlike the other cards — the plain
   --gold reserved for dark backgrounds keeps its 6:1+ contrast there, while the
   other (light-background) cards use --gold-deep for their price/icons. */
.package-card.featured li svg { stroke: var(--gold); }
.package-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold-deep); color: var(--white); font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 6px 18px; border-radius: 999px; text-transform: uppercase;
}
.package-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.package-price { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--gold-deep); margin-bottom: 18px; }
.package-price span { font-size: 0.95rem; color: var(--ink-soft); font-family: 'Poppins', sans-serif; }
.package-card ul { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.package-card li { font-size: 0.9rem; padding: 9px 0; border-bottom: 1px solid rgba(23,20,15,0.08); display: flex; gap: 10px; align-items: flex-start; }
.package-card.featured li { border-bottom-color: rgba(250,247,240,0.14); }
.package-card li svg { width: 16px; height: 16px; stroke: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.package-card .btn { width: 100%; }
.package-duration { font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 26px; flex-grow: 1; }
.package-card.featured .package-duration { color: rgba(250,247,240,0.75); }
.packages-more { text-align: center; margin-top: 44px; }

.package-card-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 22px; }
.package-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.package-card:hover .package-card-photo img { transform: scale(1.07); }
.package-card-desc { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 24px; flex-grow: 1; }
.package-card.featured .package-card-desc { color: rgba(250,247,240,0.75); }

.gift-banner {
  margin-top: 60px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--moss); color: var(--white); border-radius: var(--radius); padding: 40px 44px; flex-wrap: wrap;
}
.gift-banner-img { width: 100px; height: auto; border-radius: 10px; box-shadow: 0 16px 34px -12px rgba(0,0,0,0.5); }
.gift-banner h4 { color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.gift-banner p { color: rgba(255,255,255,0.78); font-size: 0.92rem; }

/* ===== SECONDARY PAGE HEADER (pachete.html, ...) ===== */
.page-hero {
  padding: 170px 0 70px; background: var(--ink); color: var(--cream); text-align: center;
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.2rem); max-width: 760px; margin: 0 auto 16px; }
.page-hero p { color: rgba(250,247,240,0.75); max-width: 600px; margin: 0 auto; font-size: 1.02rem; }

/* ===== FULL PRICE LIST (pachete.html) ===== */
.price-page { background: var(--cream); padding: 90px 0 40px; }
.price-group { margin-bottom: 60px; }
.price-group:last-child { margin-bottom: 0; }
.price-group-head { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; }
.price-group-photo { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; box-shadow: 0 8px 20px -8px rgba(23,20,15,0.4); }
.price-group-photo img { width: 100%; height: 100%; object-fit: cover; }
.price-group-head h2 { font-size: 1.7rem; margin-bottom: 6px; }
.price-group-head p { color: var(--ink-soft); font-size: 0.94rem; }
.price-list { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.price-item {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 32px; border-bottom: 1px solid rgba(23,20,15,0.08);
  cursor: pointer; transition: background .25s ease;
}
.price-item:hover { background: rgba(184,147,63,0.07); }
.price-item:last-child { border-bottom: none; }
.price-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--ink); }
.price-item-duration { font-size: 0.8rem; color: var(--ink-soft); margin-top: 4px; }
.price-item-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold-deep); white-space: nowrap; flex-shrink: 0; }
.price-cta { text-align: center; margin-top: 64px; }
.price-cta p { color: var(--ink-soft); margin-bottom: 22px; font-size: 0.98rem; }

/* ===== SERVICE DETAIL MODAL (pachete.html) ===== */
.service-modal {
  position: fixed; inset: 0; z-index: 1500; background: rgba(23,20,15,0.72);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.service-modal.open { opacity: 1; pointer-events: auto; }
.service-modal-inner {
  background: var(--white); border-radius: var(--radius); max-width: 460px; width: 100%;
  padding: 20px; position: relative; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.5);
  transform: translateY(16px); transition: transform .3s ease; max-height: 88vh; overflow-y: auto;
}
.service-modal.open .service-modal-inner { transform: translateY(0); }
.service-modal-close {
  position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--stone); border: none; font-size: 1.2rem; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center; color: var(--ink);
}
.service-modal-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 16/10; margin-bottom: 22px; }
.service-modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-modal-body { padding: 0 16px 12px; }
.service-modal-body h3 { font-size: 1.5rem; margin-bottom: 6px; }
.service-modal-duration { font-size: 0.8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.service-modal-price { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold-deep); margin-bottom: 16px; }
.service-modal-desc { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 26px; }
.service-modal-body .btn { width: 100%; }

/* ===== REVIEWS ===== */
.reviews { padding: 130px 0; background: var(--ink); color: var(--cream); }
.reviews .section-head .eyebrow { color: var(--gold-light); }
.reviews .section-title { color: var(--white); }
.review-card {
  background: rgba(250,247,240,0.05); border: 1px solid rgba(250,247,240,0.14);
  border-radius: var(--radius); padding: 32px 28px;
  flex: 0 0 var(--card-width, 320px);
}
.review-card .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-card p { font-size: 0.94rem; color: rgba(250,247,240,0.82); margin-bottom: 22px; }
.reviewer-row { display: flex; align-items: center; gap: 12px; }
.avatar-circle {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--white);
}
.reviewer-name { font-size: 0.86rem; font-weight: 500; color: var(--white); }

/* Continuous CSS marquee: content is duplicated once in JS, so -50% is exactly
   one set's width and the loop point is mathematically seamless (no scroll races). */
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 26px;
  width: max-content;
  padding-bottom: 4px;
  animation: carousel-marquee linear infinite;
  animation-duration: var(--marquee-duration, 15s);
}
@keyframes carousel-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--slide-distance, 50%))); }
}
.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(250,247,240,0.1);
  border: 1px solid rgba(250,247,240,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background .3s ease;
}
.carousel-arrow:hover { background: var(--gold); border-color: var(--gold); }
.carousel-arrow svg { width: 18px; height: 18px; stroke: var(--cream); }
.carousel-arrow.prev { left: -23px; }
.carousel-arrow.next { right: -23px; }
@media (max-width: 960px) {
  .carousel-arrow { display: none; }
}

/* ===== CONTACT ===== */
.contact { padding: 130px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 26px; }
.contact-row { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-row svg { width: 22px; height: 22px; stroke: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.contact-row div a { color: var(--ink); border-bottom: 1px solid transparent; transition: border-color .3s ease; }
.contact-row div a:hover { border-color: var(--gold); }
.contact-row .label { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); margin-bottom: 3px; }
.schedule { background: var(--stone); border-radius: var(--radius); padding: 30px 32px; margin-top: 30px; }
.schedule h4 { font-size: 1.1rem; margin-bottom: 16px; }
.schedule-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(23,20,15,0.08); font-size: 0.9rem; }
.schedule-row:last-child { border-bottom: none; }
.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-row a { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; transition: background .3s ease; }
.social-row a:hover { background: var(--gold); }
.social-row svg { width: 20px; height: 20px; stroke: var(--cream); }

.booking-form { background: var(--white); border-radius: var(--radius); padding: 42px; box-shadow: var(--shadow); }
.booking-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid rgba(23,20,15,0.14); border-radius: 12px;
  background: var(--cream); color: var(--ink); font-family: 'Poppins', sans-serif; font-size: 0.92rem;
  transition: border-color .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(125,95,41,0.22); }
.field textarea { resize: vertical; }
.field-error { display: block; min-height: 1.1em; font-size: 0.74rem; color: #b0574f; margin-top: 6px; }
.booking-form .btn { width: 100%; border: none; cursor: pointer; }
.booking-form .btn:disabled { opacity: 0.6; cursor: not-allowed; }
.booking-status { margin-top: 14px; font-size: 0.88rem; text-align: center; min-height: 1.2em; }
.booking-status.success { color: var(--moss); }
.booking-status.error { color: #b0574f; }
.date-field { position: relative; background: var(--cream); border: 1px solid rgba(23,20,15,0.14); border-radius: 12px; transition: border-color .3s ease; }
.date-field:focus-within { border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(125,95,41,0.22); }
.field input[type="date"] { color-scheme: light; cursor: pointer; background: transparent; border: none; }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(56%) sepia(24%) saturate(701%) hue-rotate(1deg) brightness(94%) contrast(87%); cursor: pointer; }
.field input[type="date"]:not(.has-value)::-webkit-datetime-edit-year-field,
.field input[type="date"]:not(.has-value)::-webkit-datetime-edit-month-field,
.field input[type="date"]:not(.has-value)::-webkit-datetime-edit-day-field,
.field input[type="date"]:not(.has-value)::-webkit-datetime-edit-text { color: transparent; }
.date-placeholder { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 0.92rem; color: rgba(23,20,15,0.4); pointer-events: none; }
.field input[type="date"].has-value ~ .date-placeholder { display: none; }

/* ===== FOOTER ===== */
footer { background: var(--ink); color: var(--cream); padding: 100px 0 30px; position: relative; overflow: hidden; }
footer::before {
  content: ''; position: absolute; top: -220px; right: -140px; width: 460px; height: 460px;
  border-radius: 50%; background: radial-gradient(circle, rgba(184,147,63,0.16) 0%, transparent 70%);
  pointer-events: none;
}
footer .container { position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-col:first-child .logo-mark img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(250,247,240,0.2); }
.footer-col:first-child .logo-mark { margin-bottom: 4px; }
.footer-tagline { color: rgba(250,247,240,0.65); font-size: 0.92rem; margin: 18px 0 22px; max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 22px; color: var(--gold-light); position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 26px; height: 1px; background: rgba(184,147,63,0.5); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 13px; }
.footer-col a { color: rgba(250,247,240,0.72); font-size: 0.9rem; transition: color .3s ease, padding-left .3s ease; }
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-col p { color: rgba(250,247,240,0.72); font-size: 0.9rem; margin-bottom: 10px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(250,247,240,0.12); font-size: 0.8rem; color: rgba(250,247,240,0.55); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(250,247,240,0.55); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal { display: flex; gap: 18px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 950;
  max-width: 620px; margin: 0 auto;
  background: var(--ink); color: var(--cream); border-radius: 18px;
  padding: 26px 28px; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
  display: flex; flex-direction: column; gap: 16px;
  transform: translateY(140%); transition: transform .5s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.88rem; color: rgba(250,247,240,0.85); }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 22px; font-size: 0.82rem; min-height: 44px; }
.cookie-actions .btn-ghost { background: transparent; color: rgba(250,247,240,0.8); border: 1px solid rgba(250,247,240,0.3); }
.cookie-actions .btn-ghost:hover { background: rgba(250,247,240,0.08); }

/* ===== STICKY CTA ===== */
.sticky-cta { position: fixed; bottom: 26px; right: 26px; z-index: 600; padding: 15px 26px; font-size: 0.85rem; box-shadow: 0 18px 40px -14px rgba(0,0,0,0.5); opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .4s ease, transform .4s ease; }
.sticky-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .contact-grid, .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps, .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-photo { aspect-ratio: 16/9; }
}
/* Between the burger breakpoint (760px) and full desktop, the full nav + both
   header buttons don't fit on one line without wrapping — tighten the gaps and
   drop the secondary "Sună acum" button (the gold "Rezervă" CTA stays). */
@media (max-width: 1100px) and (min-width: 761px) {
  nav ul { gap: 20px; }
  .nav-actions .btn-outline { display: none; }
}
@media (max-width: 760px) {
  nav, .nav-actions .btn-outline { display: none; }
  .burger { display: flex; }
  .logo-mark span { display: none; }
  .mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0; width: 78%; max-width: 320px;
    background: var(--ink); padding: 100px 32px 32px; z-index: 480;
    transform: translateX(100%); transition: transform .4s var(--ease);
    display: flex; flex-direction: column; gap: 4px;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { color: var(--cream); padding: 14px 0; border-bottom: 1px solid rgba(250,247,240,0.1); font-size: 1.02rem; display: flex; align-items: center; min-height: 44px; }
  .steps, .packages-grid, .benefits-grid { grid-template-columns: 1fr; }
  .booking-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .container { padding: 0 22px; }
  .about, .how, .benefits, .packages, .reviews, .contact, .price-page { padding: 90px 0; }
  .gift-banner { flex-direction: column; align-items: flex-start; }
  .sticky-cta { right: 18px; bottom: 18px; padding: 13px 22px; font-size: 0.8rem; min-height: 44px; }
  .page-hero { padding: 140px 0 50px; }
  .price-item { padding: 18px 22px; }
  .price-item-name { font-size: 1.08rem; }
  .price-item-amount { font-size: 1.2rem; }
}
