/* ===== NOKTURN — Brand CSS (Bootstrap 5 overrides) ===== */

/* Fonts laetakse index.html <head>-is (preconnect + display=swap) — mitte siit
   @import'iga (see blokeeriks renderi). */

/* ── CSS Variables ── */
:root {
  --purple-dark:   #39063b;
  --purple-deeper: #1b0524;
  --purple-mid:    #5a1060;
  --gold:          #d4a853;
  --gold-light:    #e8c87a;
  --font-body:    'Quicksand', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
}

/* ── Base ── */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: #2a0a2e;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; }
a { text-decoration: none; color: inherit; }

/* ── Page system ── */
.page { display: none; }
.page.active { display: block; animation: page-in 280ms ease both; }
.page.page--leaving { display: block !important; animation: page-out 200ms ease both; pointer-events: none; }
@keyframes page-out { to   { opacity: 0; } }
@keyframes page-in  { from { opacity: 0; } }

/* ── NAVBAR ── */
.navbar {
  height: 76px;
  background: linear-gradient(180deg, rgba(57,6,59,0.97) 0%, rgba(57,6,59,0.72) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 200ms ease, box-shadow 200ms ease;
}
.navbar.scrolled {
  background: rgba(27,5,36,0.98) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.navbar-logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: opacity 180ms ease;
}
.navbar-brand:hover .navbar-logo-img { opacity: 0.8; }

.navbar-brand {
  display: flex; align-items: center; gap: 0.65rem;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7a2080, #c060d0);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
}
.nav-burger {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  width: 42px; height: 42px;
  padding: 9px !important;
  position: relative;
  z-index: 1035;               /* burger/X jääb overlay peale */
}
.nav-burger:focus { box-shadow: none !important; outline: none; }
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar-collapse {
  background: rgba(27,5,36,0.98);
}
@media (min-width: 992px) {
  .navbar-collapse { background: transparent; }
}
.nav-link-custom {
  color: rgba(255,255,255,0.72) !important;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0.1rem !important;
  transition: color 180ms;
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms;
}
.nav-link-custom:hover,
.nav-link-custom.active {
  color: #fff !important;
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 0.4rem 1.25rem !important;
  border: 1.5px solid rgba(255,255,255,0.6) !important;
  border-radius: 9999px;
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms;
}
.nav-cta:hover { background: rgba(255,255,255,0.15) !important; }

@media (max-width: 991.98px) {
  /* logo jääb avatud overlay peale nähtavaks */
  .navbar-brand { position: relative; z-index: 1035; }
  /* Full-page overlay-menüü — itemid jaotatud ülevalt alla, võrdsed vahed */
  .navbar-collapse {
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    display: flex !important;         /* võida Bootstrapi .collapse{display:none} */
    flex-direction: column;
    align-items: stretch;
    padding: 76px 1.5rem calc(2rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(160deg, #39063b 0%, #1b0524 100%);
    z-index: 1020;                    /* navbari riba (1030) jääb peale */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .34s ease, transform .34s ease, visibility .34s;
  }
  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .navbar-collapse .navbar-nav {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;    /* võrdsed vahed ülevalt alla */
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .navbar-collapse .nav-item {
    margin: 0 !important;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .4s ease, transform .4s ease;
  }
  .navbar-collapse.show .nav-item { opacity: 1; transform: none; }
  .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: .10s; }
  .navbar-collapse.show .nav-item:nth-child(2) { transition-delay: .16s; }
  .navbar-collapse.show .nav-item:nth-child(3) { transition-delay: .22s; }
  .navbar-collapse.show .nav-item:nth-child(4) { transition-delay: .28s; }
  .navbar-collapse.show .nav-item:nth-child(5) { transition-delay: .36s; }
  .navbar-collapse .nav-link-custom {
    font-family: var(--font-display);
    font-size: 1.9rem !important;
    line-height: 1 !important;
    letter-spacing: 0.06em;
    text-transform: none;
    padding: 0 !important;
    color: rgba(255,255,255,0.88) !important;
  }
  .navbar-collapse .nav-link-custom::after { display: none; }
  .navbar-collapse .nav-link-custom.active,
  .navbar-collapse .nav-link-custom:hover { color: var(--gold-light) !important; }
  .navbar-collapse .nav-cta {
    margin: 0 !important;
    font-family: var(--font-body);
    font-size: 0.95rem !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.9rem 2.6rem !important;
    text-transform: uppercase;
    background: var(--gold) !important;   /* full-color kuldne */
    border-color: var(--gold) !important;
    color: #2a0629 !important;
  }
  .navbar-collapse .nav-cta:hover { background: var(--gold-light) !important; }
}

/* ── HERO ── */
.hero {
  min-height: 100dvh;
  background: linear-gradient(145deg, var(--purple-dark) 0%, var(--purple-deeper) 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(192,96,208,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 600px;
  align-items: stretch;
  min-height: 100dvh;
  max-width: 1290px;
  margin: 0 auto;
  padding-right: 0;
  position: relative;
  z-index: 2;
}
.hero__content {
  padding: calc(76px + 4rem) 3rem 4rem 0rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative; z-index: 2;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero__eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--gold);
}
.hero__eyebrow-text {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 0.5rem + 7vw, 8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__subtitle {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero__stats {
  display: flex; gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  font-weight: 300; color: var(--gold-light);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em; margin-top: 0.25rem;
}
.hero__image {
  position: relative; z-index: 2;
  align-self: stretch;
  overflow: hidden;
}
.hero__image img {
  position: absolute;
  top: 0; right: 0;
  height: 100%; width: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

@media (max-width: 991.98px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-inline: 0;
  }
  .hero__image {
    aspect-ratio: 1 / 1;
    height: auto;
    width: 100%;
    order: -1;
    position: relative;
  }
  .hero__image { background: var(--purple-deeper); }
  .hero__image img {
    position: absolute;
    top: 20px;                     /* lükka pilt 20px alla — ülemine serv ei lõika nägusid */
    object-position: center;
  }
  .hero__content { padding: 2.5rem 1.5rem 3rem; }
  .hero__stats { gap: 1.5rem; }
}
@media (max-width: 575.98px) {
  .hero__image { aspect-ratio: 1 / 1; height: auto; }
  .hero__stats { flex-wrap: wrap; gap: 1rem; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gold);
  color: var(--purple-deeper) !important;
  font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  border: none;
  transition: opacity 180ms, transform 180ms;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff !important;
  font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.8rem 1.75rem;
  border-radius: 9999px;
  transition: background 180ms;
  cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── SECTION HELPERS ── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--soft { background: #faf8fb; }
.section--dark { background: linear-gradient(145deg, #39063b 0%, #1b0524 100%); }
.section__eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  font-weight: 300; color: #2a0a2e;
  margin-bottom: 1rem; line-height: 1.2;
}
.section__title em { font-style: italic; color: var(--purple-mid); }
.section--dark .section__title { color: #fff; }
.section--dark .section__title em { color: var(--gold-light); }
.section__lead {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  color: #6b4a70; line-height: 1.7;
  max-width: 640px; margin-bottom: 3rem;
}

/* ── SERVICE CARDS ── */
.service-card {
  background: #fff;
  border: 1px solid #e8e0ec;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 200ms, box-shadow 200ms;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(57,6,59,0.14);
}
.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.sc-visual {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
/* Card gradients */
.sc-varvimine   { background: linear-gradient(145deg, #1b0524 0%, #4a0d6e 60%, #7b30b8 100%); }
.sc-kuivatamine { background: linear-gradient(145deg, #2e0635 0%, #5c1068 55%, #8b2898 100%); }
.sc-laste       { background: linear-gradient(145deg, #350540 0%, #7020a0 55%, #a040c8 100%); }
.sc-jvarvimine  { background: linear-gradient(145deg, #1b0524 0%, #4a0d6e 60%, #7b30b8 100%); }
.sc-soengud     { background: linear-gradient(145deg, #24052a 0%, #5a0f60 55%, #913098 100%); }
.sc-punutised   { background: linear-gradient(145deg, #0d0214 0%, #39063b 55%, #6b1878 100%); }
.sc-annetamine  { background: linear-gradient(145deg, #2e0635 0%, #5c1068 55%, #8b2898 100%); }
.sc-hooldus     { background: linear-gradient(145deg, #350540 0%, #7020a0 55%, #a040c8 100%); }
.sc-naiste      { background: linear-gradient(145deg, #3a0640 0%, #6a1570 60%, #9b30a8 100%); }
.sc-meeste      { background: linear-gradient(145deg, #1a0420 0%, #42086a 60%, #7028a0 100%); }
/* Glow orbs */
.sc-visual::before {
  content: ''; position: absolute;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -40px; right: -40px;
}
.sc-visual::after {
  content: ''; position: absolute;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(212,168,83,0.12);
  bottom: 10px; left: -20px;
}
.sc-icon-wrap {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.75rem;
}
.sc-svg { filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35)); }
.sc-label {
  font-family: var(--font-display);
  font-size: 0.8125rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.sc-price-chip {
  position: absolute; bottom: 1rem; right: 1rem;
  background: rgba(212,168,83,0.18);
  border: 1px solid rgba(212,168,83,0.4);
  border-radius: 9999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem; font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em; z-index: 2;
}
.service-card__body { padding: 1.25rem 1.25rem 1.25rem; }
.service-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  font-weight: 400; color: #2a0a2e;
  margin-bottom: 0.4rem;
}
.service-card__desc {
  font-size: 0.875rem; color: #6b4a70;
  line-height: 1.55; margin-bottom: 0.75rem;
}
.service-card__footer {
  display: flex; justify-content: space-between; align-items: center;
}
.service-card__price {
  font-size: 0.875rem; font-weight: 700;
  color: var(--purple-mid);
}
.service-card__arrow {
  color: var(--gold); font-weight: 700;
  transition: transform 180ms;
}
.service-card:hover .service-card__arrow { transform: translateX(4px); }

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-split__img { overflow: hidden; }
.about-split__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.about-split__body {
  background: linear-gradient(135deg, #39063b 0%, #1b0524 100%);
  padding: 4rem;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
}
.about-split__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  font-style: italic; font-weight: 300;
  color: var(--gold-light); line-height: 1.3;
  margin-bottom: 1.5rem;
}
.about-split__text {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 1rem;
}
.about-split__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  font-weight: 400; margin-top: 1.5rem;
}
.about-split__role {
  font-size: 0.75rem; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 0.25rem;
}

@media (max-width: 767.98px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split__img {
    height: 80vw; min-height: 280px; max-height: 440px;
  }
  .about-split__img img { object-position: center 15%; }
  .about-split__body { padding: 2.5rem 1.5rem; }
}

/* ── REVIEWS ── */
.review-card {
  background: #fff;
  border: 1px solid #e8e0ec;
  border-radius: 1.25rem;
  padding: 2rem;
}
.review-card__stars {
  color: var(--gold); font-size: 1rem; letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.review-card__text {
  font-size: 0.9375rem; color: #2a0a2e;
  line-height: 1.65; font-style: italic;
  margin-bottom: 1.25rem;
}
.review-card__author {
  font-weight: 700; font-size: 0.875rem; color: #2a0a2e;
}
.review-card__date {
  font-size: 0.75rem; color: #b09ab5; margin-top: 0.2rem;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(145deg, #39063b 0%, #1b0524 100%);
  padding: calc(76px + 3.5rem) 0 3.5rem;
  position: relative; overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(192,96,208,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-header__kristi {
  position: absolute; right: 0; bottom: 0;
  height: 100%; width: auto; max-width: 360px;
  object-fit: cover; object-position: top;
  opacity: 0.88;
  filter: drop-shadow(-8px 0 24px rgba(57,6,59,0.55));
}
.page-header__inner {
  position: relative; z-index: 2;
  padding-right: 400px;
}

@media (max-width: 767.98px) {
  .page-header__kristi { display: none; }
  .page-header__inner { padding-right: 0; }
}

/* ── SERVICE PAGE HERO (sp-hero) ── */
.sp-hero {
  min-height: 78vh;
  background: linear-gradient(145deg, #39063b 0%, #1b0524 100%);
  overflow: hidden;
  position: relative;
}
.sp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 600px;
  align-items: stretch;
  min-height: 78vh;
  max-width: 1290px;
  margin: 0 auto;
  padding-right: 0;
  position: relative;
  z-index: 2;
}
.sp-hero__content {
  padding: calc(76px + 3.5rem) 3.5rem 3.5rem 0rem;
}
.sp-hero__img {
  position: relative;
  align-self: stretch;
  overflow: hidden;
}
.sp-hero__img img {
  position: absolute;
  top: 0; right: 0;
  height: 100%; width: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.sp-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.04em; margin-bottom: 2rem;
  background: none; border: none; cursor: pointer;
  transition: gap 200ms; padding: 0;
}
.sp-back:hover { gap: 0.75rem; }
.sp-price-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,168,83,0.12);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  color: var(--gold); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 2rem;
}

@media (max-width: 991.98px) {
  .sp-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-inline: 0;
  }
  .sp-hero__img {
    aspect-ratio: 1 / 1;
    height: auto;
    width: 100%;
    order: -1;
    position: relative;
  }
  .sp-hero__img { background: var(--purple-deeper); }
  .sp-hero__img img { top: 20px; object-position: center; }   /* lükka pilt 20px alla */
  .sp-hero__content { padding: 2.5rem 1.5rem 2rem; }
}
@media (max-width: 575.98px) {
  .sp-hero__img { aspect-ratio: 1 / 1; height: auto; }
}

/* ── PROCESS CARDS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  counter-reset: steps;
}
.process-grid--3 { grid-template-columns: repeat(3, 1fr); }
.process-card {
  background: #fff;
  border: 1px solid #e8e0ec;
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
}
.process-card::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  font-weight: 300; color: #e8e0ec; line-height: 1;
}
.process-card__icon {
  font-size: 1.75rem; margin-bottom: 1rem;
  color: var(--purple-mid);
}
.process-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 400; margin-bottom: 0.5rem;
}
.process-card__desc {
  font-size: 0.875rem; color: #6b4a70; line-height: 1.65;
}

@media (max-width: 991.98px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .process-grid, .process-grid--3 { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── PRICE TABLE ── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.5rem;
}
.price-table th {
  text-align: left; padding: 0.75rem 1rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #b09ab5; border-bottom: 2px solid #e8e0ec;
}
.price-table td {
  padding: 1rem;
  font-size: 0.9375rem;
  border-bottom: 1px solid #f0ebf4;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table__name { color: #2a0a2e; font-weight: 500; }
.price-table__desc { color: #6b4a70; font-size: 0.8125rem; margin-top: 0.2rem; }
.price-table__price { color: var(--purple-mid); font-weight: 700; white-space: nowrap; }
.price-table__duration { color: #b09ab5; font-size: 0.8125rem; }

/* ── CONTACT ── */
.contact-info__item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, #f4f0f6 0%, #e8e0ec 100%);
  border: 1px solid #e8e0ec;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-mid);
}
.contact-info__label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #b09ab5; margin-bottom: 0.2rem;
}
.contact-info__value { font-size: 0.9375rem; color: #2a0a2e; line-height: 1.5; }

/* ── FOOTER BOOKING ── */
.footer-booking {
  background: linear-gradient(145deg, #39063b 0%, #2a0535 50%, #1b0524 100%);
  padding: clamp(3rem, 6vw, 6rem) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.footer-booking::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(192,96,208,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.footer-booking__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  font-weight: 300; color: #fff;
  margin-bottom: 1rem; position: relative;
}
.footer-booking__title em { font-style: italic; color: var(--gold-light); }
.footer-booking__sub {
  font-size: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem; position: relative;
}
.booking-widget-box {
  background: transparent;
  border: none;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

/* ── FOOTER MAP ROW ── */
.footer-map-row { background: #242424; }
.footer-map-row__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.footer-map-frame { background: #1a1a1a; }
.footer-map-frame iframe {
  width: 100%; height: 100%; min-height: 420px;
  border: none; display: block;
}
.footer-map-info {
  padding: 3rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center; gap: 0;
}
.footer-map-info__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  font-weight: 300; color: #fff; margin-bottom: 1.5rem;
}
.footer-map-info__title em { font-style: italic; color: var(--gold-light); }
.footer-map-info__item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
}
.footer-map-info__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(87,20,96,0.55) 0%, rgba(57,6,59,0.35) 100%);
  border: 1px solid rgba(212,168,83,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.footer-map-info__icon svg { width: 18px; height: 18px; }
.footer-map-info__label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 0.2rem;
}
.footer-map-info__value {
  font-size: 0.9375rem; color: rgba(255,255,255,0.8); line-height: 1.5;
}
.footer-map-info__value a { color: var(--gold); text-decoration: none; }

@media (max-width: 767.98px) {
  .footer-map-row__inner { grid-template-columns: 1fr; }
  .footer-map-frame iframe { min-height: 260px; }
  .footer-map-info { padding: 2.5rem 1.5rem; }
}

/* ── CLASSIC FOOTER ── */
.footer-classic {
  background: #2a2a2a;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-classic__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0 3rem;
}
.footer-classic__brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  color: #fff; margin-bottom: 0.75rem;
}
.footer-classic__brand-desc {
  font-size: 0.875rem; color: rgba(255,255,255,0.45);
  line-height: 1.65; margin-bottom: 1.25rem;
}
.footer-classic__heading {
  color: #e5e5e5; font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-classic__links { display: flex; flex-direction: column; gap: 0.4rem; list-style: none; padding: 0; margin: 0; }
.footer-classic__link {
  font-size: 0.875rem; color: rgba(255,255,255,0.45);
  cursor: pointer; transition: color 180ms; text-decoration: none;
}
.footer-classic__link:hover { color: #fff; }
.footer-classic__bottom {
  background: #1e1e1e;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
}

@media (max-width: 767.98px) {
  .footer-classic__top { grid-template-columns: 1fr; gap: 2rem; }
}

/* (Splash-ekraan eemaldatud — FCP. Sisu on kohe nähtav.) */

/* ── HERO REVEAL (stagger) — puhas CSS, jookseb kohe renderil (ei sõltu JS-ist) ── */
.reveal-hero {
  animation: hero-item-in 500ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--ri, 0) * 90ms);
}
@keyframes hero-item-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL FADE-IN ── */
.fade-in {
  opacity: 1;
}
@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }
}
@keyframes reveal-fade {
  to { opacity: 1; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-hero { animation: none; opacity: 1; transform: none; }
  .fade-in { opacity: 1 !important; animation: none !important; }
}
