/* ═══════════════════════════════════════════════════════════
   STRIBOG – Redesign 2026
   Theme : Slavic Wind God · White-dominant · Premium Spa
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cinzel:wght@400;500&family=Inter:wght@400;500&display=swap');


/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --white:     #FFFFFF;
  --cream:     #F7F2E4;
  --gold:      #C4A23A;
  --gold-lt:   #F5E9C4;
  --forest:    #1E5248;
  --dark:      #0D2822;
  --hero-dark: #12342D;
  --ink:       #1C1810;
  --muted:     #7A7060;
  --divider:   #E8E0CC;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-label:   'Cinzel', serif;
  --f-body:    'Inter', system-ui, sans-serif;

  --text-xs:   0.6875rem;
  --text-sm:   0.8125rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   clamp(1.125rem, 1.4vw, 1.375rem);
  --text-2xl:  clamp(1.375rem, 2vw, 1.875rem);
  --text-3xl:  clamp(1.875rem, 3.5vw, 2.75rem);
  --text-4xl:  clamp(2.5rem, 6vw, 5rem);
  --text-hero: clamp(5rem, 13vw, 11rem);

  --gutter:    clamp(20px, 6vw, 100px);
  --section-py:clamp(64px, 9vw, 120px);
  --gap:       clamp(20px, 3vw, 48px);
  --container: min(1440px, 100%);
  --nav-h:     80px;
  --radius:    3px;
}


/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font: inherit; }


/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}


/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.78em 2em;
  border-radius: 100px;
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.15s, background 0.2s, color 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }

.btn--gold   { background: var(--gold); color: var(--white); }
.btn--gold:hover { opacity: 0.88; }

.btn--forest { background: var(--forest); color: var(--white); }
.btn--forest:hover { opacity: 0.88; }

.btn--ghost  { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.65); }
.btn--ghost:hover  { background: rgba(255,255,255,0.1); }

.btn--outline { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn--outline:hover { background: var(--forest); color: var(--white); }

.btn--outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn--outline-gold:hover { background: var(--gold); color: var(--white); }

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

/* ── Copy-to-clipboard icon shown inside a revealed call CTA (desktop) ── */
.btn-copy {
  display: inline-flex;
  align-items: center;
  margin-left: 0.6em;
  padding: 0.15em;
  cursor: pointer;
  opacity: 0.75;
  border-radius: 4px;
  transition: opacity 0.15s, transform 0.15s;
}
.btn-copy:hover { opacity: 1; transform: scale(1.1); }
.btn-copy:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
.btn-copy--done { opacity: 1; }


/* ─── SECTION HEADER ─────────────────────────────────────── */
.sect-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.sect-head__label {
  display: block;
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.sect-head__title {
  font-family: var(--f-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
}
.sect-head__rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem auto 0;
}


/* ─── NAVIGATION ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow 0.3s;
}
.site-nav--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.site-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav__logo img {
  height: clamp(52px, 6vw, 72px);
  width: auto;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 2.25rem);
  flex: 1;
  justify-content: center;
}
.site-nav__link {
  font-family: var(--f-label);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.site-nav__link:hover { color: var(--forest); }
.site-nav__link:hover::after,
.site-nav__link--active::after { transform: scaleX(1); }
.site-nav__link--active { color: var(--forest); }
.site-nav__cta-wrap { flex-shrink: 0; }

.site-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  margin-left: auto;
}
.site-nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.site-nav--open .site-nav__hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-nav--open .site-nav__hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-nav--open .site-nav__hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: var(--hero-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.hero__deity {
  position: absolute;
  right: -2%;
  top: 0;
  height: 110%;
  width: auto;
  object-fit: contain;
  object-position: top right;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--hero-dark) 38%, rgba(18,52,45,0.4) 72%, transparent 100%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--hero-dark));
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem var(--gutter);
  max-width: 760px;
}
.hero__label {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}
.hero__opening {
  display: inline-block;
  font-family: var(--f-label);
  font-size: clamp(0.875rem, 1.6vw, 1.125rem);
  letter-spacing: 0.22em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--f-display);
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero__tagline {
  font-family: var(--f-display);
  font-size: var(--text-2xl);
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ─── PHILOSOPHY STRIP ───────────────────────────────────── */
.philosophy {
  background: var(--dark);
  padding: clamp(48px, 7vw, 96px) var(--gutter);
  text-align: center;
}
.philosophy__inner {
  max-width: 760px;
  margin: 0 auto;
}
.philosophy__text {
  font-family: var(--f-display);
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}
.philosophy__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--white);
  line-height: 1.5;
  position: relative;
  padding: 0 2rem;
}
.philosophy__quote::before {
  content: '\201C';
  position: absolute;
  left: -0.1em;
  top: -0.3em;
  font-size: 4em;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}


/* ─── SERVICES SECTION (index) ───────────────────────────── */
.services {
  background: var(--white);
  padding: var(--section-py) var(--gutter);
}
.services__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}

.svc-card {
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.svc-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.svc-card__img {
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.svc-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.svc-card__img--relax img {
  object-position: center bottom;
  transform-origin: center bottom;
}
.svc-card__img--therapeutic img {
  object-position: center 88%;
  transform-origin: center bottom;
}
.svc-card__img--corporate img {
  object-position: center 42%;
  transform-origin: center 42%;
}
.svc-card:hover .svc-card__img img { transform: scale(1.04); }
.svc-card__body {
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__label {
  font-family: var(--f-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.svc-card__name {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.svc-card__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}
.svc-card__link {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 0.25rem;
  transition: border-color 0.2s, color 0.2s;
  align-self: flex-start;
}
.svc-card__link:hover { border-color: var(--gold); color: var(--gold); }

.services__cta {
  text-align: center;
  margin-top: clamp(32px, 4vw, 56px);
}


/* ─── FEATURED SPA ───────────────────────────────────────── */
.featured-spa {
  background: var(--cream);
  padding: var(--section-py) var(--gutter);
}
.featured-spa__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.featured-spa__label {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.featured-spa__title {
  font-family: var(--f-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.featured-spa__rule {
  display: block;
  width: 48px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.featured-spa__text {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.featured-spa__names {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.featured-spa__name-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.featured-spa__name-title {
  font-family: var(--f-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--forest);
}
.featured-spa__name-meaning {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--muted);
}
.featured-spa__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.featured-spa__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}


/* ─── LOYALTY STRIP ──────────────────────────────────────── */
.loyalty {
  background: var(--gold-lt);
  padding: clamp(40px, 5vw, 64px) var(--gutter);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.loyalty__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 96px);
  flex-wrap: wrap;
}
.loyalty__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.loyalty__icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.loyalty__pct {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.loyalty__desc {
  font-size: var(--text-sm);
  color: var(--ink);
  line-height: 1.5;
  max-width: 200px;
}


/* ─── VOUCHER PROMO ──────────────────────────────────────── */
.voucher-promo {
  background: var(--dark);
  padding: var(--section-py) var(--gutter);
  overflow: hidden;
}
.voucher-promo__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.voucher-promo__label {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.voucher-promo__title {
  font-family: var(--f-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.voucher-promo__text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}
.voucher-promo__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.voucher-promo__card {
  width: 100%;
  max-width: 440px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: rotate(-2deg);
  transition: transform 0.4s;
}
.voucher-promo__img-wrap:hover .voucher-promo__card { transform: rotate(0deg); }


/* ─── IMAGE STRIP ────────────────────────────────────────── */
.img-strip {
  background: var(--white);
  padding: 0;
}
.img-strip__grid {
  display: flex;
  gap: 4px;
}
.img-strip__grid > * {
  flex: 1;
  min-width: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.img-strip__grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.img-strip__img--massage-elbow { object-position: center center; }
.img-strip__img--massage-table { object-position: center center; }
.img-strip__img--loyalty { object-position: center center; }
.img-strip__img--spa-detail { object-position: center center; }
.img-strip__grid > *:hover img { transform: scale(1.04); }


/* ─── FIND US (landing map) ─────────────────────────────── */
.find-us {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.find-us__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--gap);
  align-items: stretch;
}
.find-us__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.find-us__title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.25;
  margin-top: 0.5rem;
}
.find-us__details p {
  font-family: var(--f-body);
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.8;
}
.find-us__phone {
  font-family: var(--f-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.find-us__phone:hover { color: var(--forest); }
.find-us__map {
  min-height: 380px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--divider);
}
.find-us__map iframe { height: 100%; }

@media (max-width: 700px) {
  .find-us__inner { grid-template-columns: 1fr; }
  .find-us__map { min-height: 280px; }
}


/* ─── PAGE HERO (sub-pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  height: clamp(300px, 42vh, 500px);
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,40,34,0.5), rgba(13,40,34,0.75));
}
.page-hero__label {
  position: relative;
  z-index: 1;
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--f-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.05;
}


/* ─── SUB-NAV (rituali.html) ─────────────────────────────── */
.sub-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  overflow-x: auto;
  scrollbar-width: none;
}
.sub-nav::-webkit-scrollbar { display: none; }
.sub-nav__list {
  display: flex;
  min-width: max-content;
  padding: 0 var(--gutter);
}
.sub-nav__link {
  display: block;
  padding: 0.9rem 1.1rem;
  font-family: var(--f-label);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.sub-nav__link:hover,
.sub-nav__link--active { color: var(--forest); border-bottom-color: var(--gold); }


/* ─── RITUAL SECTIONS ────────────────────────────────────── */
.ritual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 50vw, 620px);
}
.ritual__img {
  overflow: hidden;
}
.ritual__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.ritual:hover .ritual__img img { transform: scale(1.03); }

.ritual__body {
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.ritual--alt .ritual__body { background: var(--cream); }
.ritual--alt .ritual__img { order: -1; }

.ritual__group {
  font-family: var(--f-label);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.ritual__title {
  font-family: var(--f-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.ritual__rule {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}
.ritual__intro {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.ritual__text {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.ritual__note {
  font-size: var(--text-xs);
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.ritual__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.ritual__list li {
  font-size: var(--text-sm);
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}
.ritual__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 0.3em;
}

.ritual__prices {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
}
.ritual--alt .ritual__prices { background: var(--white); }
.ritual__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--divider);
  font-size: var(--text-sm);
  gap: 1rem;
}
.ritual__price-row:last-child { border-bottom: none; }
.ritual__price-label { color: var(--ink); }
.ritual__price-amount {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
}

.ritual__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }


/* ─── SPA DAYS ───────────────────────────────────────────── */
.spa-days {
  background: var(--cream);
  padding: var(--section-py) var(--gutter);
}
.spa-days__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: clamp(40px, 5vw, 64px);
}
.spa-card {
  background: var(--white);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.spa-card__label {
  font-family: var(--f-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.spa-card__name {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.spa-card__etymology {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--divider);
}
.spa-card__subtitle {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.spa-card__includes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  margin-bottom: 1.5rem;
}
.spa-card__includes li {
  font-size: var(--text-sm);
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.spa-card__includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 0.3em;
}
.spa-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1.25rem;
  border-top: 1px solid var(--divider);
  margin-bottom: 1.25rem;
}
.spa-card__duration {
  font-size: var(--text-sm);
  color: var(--muted);
}
.spa-card__price {
  font-family: var(--f-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--forest);
}


/* ─── PRICE PAGE ─────────────────────────────────────────── */
.price-page {
  padding: var(--section-py) var(--gutter);
}
.price-page__inner { max-width: 900px; margin: 0 auto; }

.price-loyalty {
  background: var(--gold-lt);
  border: 1px solid rgba(196,162,58,0.3);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.price-loyalty__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.price-loyalty__pct {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.price-loyalty__desc {
  font-size: var(--text-sm);
  color: var(--ink);
  line-height: 1.4;
}

.price-category {
  margin-bottom: 2.5rem;
}
.price-category__name {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gold);
  margin-bottom: 0;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--divider);
  gap: 1rem;
}
.price-row:last-child { border-bottom: none; }
.price-row__desc { font-size: var(--text-sm); color: var(--ink); }
.price-row__amt {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--forest);
  font-size: var(--text-lg);
  white-space: nowrap;
}

.price-methods {
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius);
  margin-top: 2rem;
}
.price-methods__title {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  color: var(--forest);
  margin-bottom: 1rem;
}
.price-methods__list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.price-methods__list li {
  font-size: var(--text-sm);
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-methods__list li::before { content: '✓'; color: var(--gold); font-weight: 700; }

.price-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--divider);
}


/* ─── VOUCHER PAGE ───────────────────────────────────────── */
.v-showcase {
  background: var(--cream);
  padding: var(--section-py) var(--gutter);
}
.v-showcase__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.v-cards {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  margin-top: clamp(32px, 4vw, 56px);
  justify-content: center;
  flex-wrap: wrap;
}
.v-cards__item {
  flex: 1;
  min-width: 280px;
  max-width: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  transition: transform 0.35s, box-shadow 0.35s;
}
.v-cards__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.2);
}
.v-cards__item img { width: 100%; height: auto; display: block; }
.v-cards__caption {
  text-align: center;
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 0.75rem;
}

.v-showcase__actions {
  text-align: center;
  margin-top: 2.5rem;
}

/* Steps */
.v-steps {
  background: var(--white);
  padding: var(--section-py) var(--gutter);
}
.v-steps__inner {
  max-width: 720px;
  margin: 0 auto;
}
.v-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: clamp(32px, 4vw, 56px);
  position: relative;
}
.v-steps__grid--two {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.v-steps__grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.666% + 1rem);
  right: calc(16.666% + 1rem);
  height: 1px;
  background: var(--divider);
  z-index: 0;
}
.v-steps__grid--two::before {
  left: calc(25% + 1rem);
  right: calc(25% + 1rem);
}
.v-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.v-step__num {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: var(--f-display);
  font-size: var(--text-xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.v-step__title {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--forest);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.v-step__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.55;
}

/* Voucher details section */
.v-details {
  background: var(--cream);
  padding: var(--section-py) var(--gutter);
}
.v-details__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.v-details__heading {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  color: var(--forest);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold);
}
.v-payment__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.v-payment__list li {
  font-size: var(--text-sm);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.v-payment__list li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.v-duration__options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.v-duration__badge {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--forest);
  border-radius: 100px;
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--forest);
}
.v-duration__note {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 0.75rem;
  font-style: italic;
}

/* Voucher contact row */
.v-contact {
  background: var(--white);
  padding: clamp(40px, 5vw, 72px) var(--gutter);
  text-align: center;
}
.v-contact__note {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: 2rem;
  font-style: italic;
}
.v-contact__row {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 80px);
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.v-contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.v-contact__label {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
}
.v-contact__value {
  font-family: var(--f-display);
  font-size: var(--text-xl);
  color: var(--forest);
  font-weight: 600;
}
.v-contact__icon { font-size: 1.75rem; }

/* Voucher closing */
.v-closing {
  background: var(--dark);
  padding: clamp(48px, 7vw, 96px) var(--gutter);
  text-align: center;
}
.v-closing__inner { max-width: 640px; margin: 0 auto; }
.v-closing p {
  font-family: var(--f-display);
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.v-closing__cta {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--gold);
  margin: 1.5rem 0 2rem;
}
.v-closing .btn-group { justify-content: center; }


/* ─── CORPORATE ──────────────────────────────────────────── */
.corp-hero {
  position: relative;
  height: clamp(360px, 48vh, 560px);
  margin-top: var(--nav-h);
  overflow: hidden;
  background: var(--dark);
}
.corp-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.corp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,40,34,0.85) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: clamp(32px, 5vw, 64px) var(--gutter);
}
.corp-hero__title {
  font-family: var(--f-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 600px;
}

.corp-content {
  padding: var(--section-py) var(--gutter);
  background: var(--white);
}
.corp-content__inner { max-width: 780px; margin: 0 auto; }
.corp-content__lead {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--forest);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.corp-content__text {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.corp-content__heading {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  color: var(--forest);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold);
}
.corp-content__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.corp-content__list li {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}
.corp-content__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 0.35em;
}
.corp-content__cta-text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--muted);
  margin-bottom: 1.75rem;
}


/* ─── ABOUT (O Stribogu) ─────────────────────────────────── */
.about-hero {
  position: relative;
  height: clamp(380px, 55vh, 620px);
  margin-top: var(--nav-h);
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero__deity {
  position: absolute;
  right: 10%;
  top: 0;
  height: 110%;
  opacity: 0.35;
  object-fit: contain;
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 30%, rgba(13,40,34,0.5) 65%, transparent 100%);
}
.about-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter);
  max-width: 700px;
  width: 100%;
}
.about-hero__label {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.about-hero__title {
  font-family: var(--f-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.myth {
  background: var(--white);
  padding: var(--section-py) var(--gutter);
}
.myth__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.myth__body .sect-head { text-align: left; }
.myth__body .sect-head__rule { margin: 1.25rem 0 0; }
.myth__text {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.85;
  margin-top: 1.5rem;
}
.myth__text + .myth__text { margin-top: 1rem; }
.myth__text strong { color: var(--forest); font-weight: 500; }
.myth__quote-col {
  padding-top: 4rem;
}
.myth__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--forest);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.myth__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.myth__img img { width: 100%; height: 100%; object-fit: cover; }

.about-us {
  background: var(--cream);
  padding: var(--section-py) var(--gutter);
}
.about-us__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.about-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: clamp(32px, 4vw, 56px);
}
.about-us__stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}
.about-us__stat-num {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about-us__stat-label {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.4;
}
.about-us__text {
  max-width: 720px;
  margin: 2.5rem auto 0;
  text-align: center;
  font-family: var(--f-display);
  font-size: var(--text-xl);
  color: var(--muted);
  font-style: italic;
  line-height: 1.65;
}

.about-gallery {
  background: var(--white);
  padding: var(--section-py) var(--gutter);
}
.about-gallery__inner { max-width: var(--container); margin: 0 auto; }
.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: clamp(32px, 4vw, 56px);
}
.about-gallery__grid > * { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); }
.about-gallery__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.about-gallery__grid > *:hover img { transform: scale(1.04); }


/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-hero {
  position: relative;
  margin-top: var(--nav-h);
  min-height: 100svh;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
}
.contact-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,40,34,0.92) 55%, rgba(13,40,34,0.4) 100%);
}
.contact-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) clamp(32px, 6vw, 100px);
  max-width: 600px;
  width: 100%;
}
.contact-panel__label {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.contact-panel__title {
  font-family: var(--f-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}
.contact-panel__salon {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.contact-panel__hours-label {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}
.contact-panel__hours-row {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.2rem;
}
.contact-panel address {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-panel address p,
.contact-panel address a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
}
.contact-panel address a:hover { color: var(--gold); }
.contact-panel__social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact-panel__social a img { width: 28px; height: 28px; opacity: 0.8; transition: opacity 0.2s; }
.contact-panel__social a:hover img { opacity: 1; }
.contact-panel__social-phone { font-size: 1.4rem; }
.contact-panel__cta { margin-top: 2.5rem; }


/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: clamp(48px, 7vw, 80px) var(--gutter) clamp(24px, 4vw, 40px);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__logo img {
  height: clamp(52px, 5vw, 70px);
  width: auto;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.site-footer__salon {
  font-family: var(--f-display);
  font-size: var(--text-xl);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.site-footer__address {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}
.site-footer__address p,
.site-footer__address a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.site-footer__address a:hover { color: var(--gold); }
.site-footer__hours-label {
  font-family: var(--f-label);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}
.site-footer__hours p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.2rem;
}
.site-footer__cta { margin-top: 1.75rem; }
.site-footer__media {
  width: clamp(160px, 22vw, 280px);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 3/4;
}
.site-footer__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-footer__social a img { width: 24px; height: 24px; opacity: 0.7; transition: opacity 0.2s; }
.site-footer__social a:hover img { opacity: 1; }
.site-footer__phone { font-size: 1.25rem; }
.site-footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}


/* ─── FLOATING WHATSAPP ──────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 300;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: wa-appear 1s ease 3s both;
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.float-wa svg { width: 28px; height: 28px; }
@keyframes wa-appear {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}


/* ─── RESPONSIVE ─────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .ritual { min-height: clamp(360px, 45vw, 500px); }
  .myth__inner { grid-template-columns: 1fr; }
  .myth__quote-col { padding-top: 0; }
  .myth__img { max-width: 500px; }
  .spa-days__grid { grid-template-columns: repeat(2, 1fr); }
  .about-us__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Small tablet */
@media (max-width: 900px) {
  :root { --nav-h: 68px; }

  .site-nav__links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 150;
  }
  .site-nav__link {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    color: var(--white);
    letter-spacing: 0.03em;
    font-weight: 400;
  }
  .site-nav__link::after { background: var(--gold); }
  .site-nav--open .site-nav__links { opacity: 1; visibility: visible; }

  .site-nav__hamburger { display: flex; }
  .site-nav__cta-wrap { display: none; }

  .hero__deity { opacity: 0.12; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .featured-spa__inner { grid-template-columns: 1fr; }
  .featured-spa__img { max-width: 480px; }

  .voucher-promo__inner { grid-template-columns: 1fr; }
  .voucher-promo__img-wrap { order: -1; }
  .voucher-promo__card { transform: rotate(-1deg); }

  .ritual { grid-template-columns: 1fr; min-height: auto; }
  .ritual__img { aspect-ratio: 16/9; order: -1 !important; }
  .ritual--alt .ritual__img { order: -1; }

  .spa-days__grid { grid-template-columns: 1fr; }
  .spa-card { max-width: 480px; margin: 0 auto; width: 100%; }

  .v-steps__grid { grid-template-columns: repeat(2, 1fr); }
  .v-steps__grid::before { display: none; }

  .v-details__inner { grid-template-columns: 1fr; }

  .about-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .about-us__grid { grid-template-columns: repeat(2, 1fr); }

  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__media { width: 100%; max-width: 320px; aspect-ratio: 16/9; }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --nav-h: 60px; }

  .hero__title { font-size: clamp(3.5rem, 18vw, 6rem); }
  .hero__deity { display: none; }
  .hero__content { padding: 3rem var(--gutter); }

  .services__grid { grid-template-columns: 1fr; }

  .loyalty__inner { gap: 2rem; }
  .loyalty__item { flex-direction: column; text-align: center; }

  .img-strip__grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 0;
    height: 220px;
  }
  .img-strip__grid::-webkit-scrollbar { display: none; }
  .img-strip__grid > * {
    flex: 0 0 100%;
    scroll-snap-align: start;
    height: 220px;
    aspect-ratio: unset;
    min-width: 0;
    overflow: hidden;
  }
  .img-strip__grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .v-steps__grid { grid-template-columns: 1fr; }

  .about-gallery__grid { grid-template-columns: 1fr; }
  .about-us__grid { grid-template-columns: 1fr; }

  .price-loyalty { flex-direction: column; gap: 1.5rem; }

  .site-footer__bottom { flex-direction: column; text-align: center; }

  .contact-hero { flex-direction: column; min-height: auto; }
  .contact-panel { max-width: 100%; padding: 3rem var(--gutter); }

  .v-cards { flex-direction: column; }
  .v-cards__item { min-width: unset; }
}
