/*
Theme Name: Revolution Kids
Theme URI: https://revolutionkids.ro
Author: Revolution Kids
Author URI: https://revolutionkids.ro
Description: Custom theme for Revolution Kids ski trips landing pages — Tignes / Val d'Isère design.
Version: 0.1.1
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: revolution-kids
*/

/* ============================================================
   REVOLUTION KIDS — Tignes / Val d'Isère
   Design system
============================================================ */

:root {
  /* Colors */
  --navy-900: #0a1124;
  --navy-800: #0e1830;
  --navy-700: #16223f;
  --navy-600: #1f2e52;
  --navy-500: #2a3a64;
  --navy-300: #6a7a9c;

  --orange-600: #d94a1c;
  --orange-500: #ee5b2a;
  --orange-400: #f7783f;
  --orange-300: #ffa371;

  --cream-50:  #faf6ef;
  --cream-100: #f5f0e8;
  --cream-200: #ebe4d6;
  --cream-300: #d8cfbe;

  --ink-900: #0a1124;
  --ink-700: #2a3142;
  --ink-500: #5b6377;
  --ink-400: #8a93a8;

  --line: rgba(10, 17, 36, 0.10);
  --line-strong: rgba(10, 17, 36, 0.20);
  --line-on-navy: rgba(255, 255, 255, 0.12);

  /* Type */
  --font-display: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  /* Spacing */
  --container: min(1200px, 100% - 32px);
  --container-tight: min(1040px, 100% - 32px);
  --section-y: clamp(56px, 9vw, 112px);

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.lang { display: none !important; }
a { color: inherit; text-decoration: none; }

.home-topnav,
.page-topnav,
.about-topnav,
.details-topnav {
  position: sticky !important;
  top: 0;
  z-index: 120;
  isolation: isolate;
}
.home-topnav,
.page-topnav,
.details-topnav {
  background: rgba(245, 240, 232, 0.96) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(10, 17, 36, 0.07);
}
.about-topnav {
  background: rgba(5, 18, 38, 0.96) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero > .container > .rk-sticky-topbar,
.cazare-hero > .container > .rk-sticky-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  margin-inline: 0;
  padding-inline: max(24px, calc((100vw - min(100% - 48px, 1200px)) / 2));
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(5, 18, 38, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ---------- Display type ---------- */
.h-display {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-wrap: balance;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.0;
  text-wrap: balance;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-500);
  font-weight: 500;
}
.eyebrow .bar {
  display: inline-block;
  flex: 0 0 auto;
  width: 28px;
  height: 2px;
  background: var(--orange-500);
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-2px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange-500);
  color: white;
}
.btn-primary:hover { background: var(--orange-600); }

.btn-ghost-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost-light:hover { border-color: white; background: rgba(255,255,255,0.08); }

.btn-ghost-dark {
  background: transparent;
  color: var(--navy-800);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost-dark:hover { border-color: var(--navy-800); }

.btn .arrow {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(2px); }
.btn-ghost-dark .arrow { background: var(--navy-800); color: white; }
.btn-ghost-light .arrow { background: rgba(255,255,255,0.18); }

/* ---------- Temporarily unavailable links / buttons ---------- */
.tba-label {
  color: #9ca3af;
  font-size: 0.82em;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
a.is-tba,
button.is-tba {
  cursor: not-allowed !important;
}
.dd-item.is-tba,
.dd-item.is-tba.active {
  background: #eef0f3 !important;
  color: #6b7280 !important;
}
.dd-item.is-tba:hover {
  background: #e5e7eb !important;
}
.dd-item.is-tba .dd-num,
.dd-item.is-tba .dd-body strong,
.dd-item.is-tba .dd-body em {
  color: #6b7280 !important;
}
.run-row.is-tba,
.run-row.is-tba.active,
.run-row.is-tba:hover {
  background: #eef0f3 !important;
  color: #6b7280 !important;
}
.run-row.is-tba .run-num,
.run-row.is-tba .run-body strong,
.run-row.is-tba .run-body em,
.run-row.is-tba .run-tag {
  color: #6b7280 !important;
}
.run-row.is-tba .run-arrow,
.run-row.is-tba:hover .run-arrow {
  background: #d1d5db !important;
  color: #4b5563 !important;
}
.trip-card.is-tba {
  --tc-overlay: 75, 85, 99 !important;
  --tc-accent: #9ca3af !important;
  --tc-pill: 75, 85, 99 !important;
  filter: saturate(0.32);
}
.trip-card.is-tba::before {
  background: linear-gradient(106deg,
    rgba(75, 85, 99, 0.92) 0%,
    rgba(75, 85, 99, 0.78) 22%,
    rgba(75, 85, 99, 0.42) 44%,
    rgba(75, 85, 99, 0.12) 64%,
    rgba(75, 85, 99, 0) 82%) !important;
}
.trip-card.is-tba .trip-card-run,
.trip-card.is-tba .trip-card-price {
  color: #d1d5db !important;
}
.footer-list a.is-tba,
.footer-list a.is-tba:hover {
  color: rgba(255, 255, 255, 0.54) !important;
}
.footer-list a.is-tba::before {
  color: #9ca3af !important;
}
.site-link.is-tba,
.site-link.is-tba:hover,
.btn.is-tba,
.btn.is-tba:hover,
.btn-back.is-tba,
.btn-back.is-tba:hover,
.service-nav-link.is-tba,
.service-nav-link.is-tba:hover,
.mobile-service-back.is-tba,
.mobile-service-back.is-tba:hover {
  background: #e5e7eb !important;
  border-color: #d1d5db !important;
  color: #4b5563 !important;
  transform: none !important;
}
.btn.is-tba .arrow,
.btn-back.is-tba .arrow-back,
.service-nav-link.is-tba .service-nav-icon,
.service-nav-link.is-tba .arrow,
.mobile-service-back.is-tba .arrow {
  background: #cbd5e1 !important;
  color: #4b5563 !important;
}

/* ---------- Layout ---------- */
.container { width: var(--container); margin-inline: auto; }
.container-tight { width: var(--container-tight); margin-inline: auto; }

section { position: relative; }

/* ---------- Brush-stroke divider (top of section) ---------- */
.brush-top {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  pointer-events: none;
  z-index: 2;
}
.brush-bottom {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  display: block;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 2;
  transform: scaleY(-1);
}
.brush-bottom.ridge {
  height: 70px;
  transform: none;
  bottom: -2px;
  z-index: 1;
}
@media (max-width: 760px) {
  .brush-bottom.ridge { height: 40px; }
}

/* ---------- Run badge (RUN #1) ---------- */
.run-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-500);
  font-weight: 600;
}
.run-badge::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--orange-500);
}

/* ---------- Sticky nav ---------- */
.sticky-nav {
  position: sticky;
  top: 76px;
  z-index: 50;
  margin: 0 auto;
  width: var(--container);
  background: white;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(10, 17, 36, 0.10), 0 1px 0 rgba(10,17,36,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.sticky-nav::-webkit-scrollbar { display: none; }

@media (max-width: 819px) {
  .sticky-nav {
    top: 76px;
  }
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
  scroll-snap-align: start;
  flex: 0 0 auto;
}
.nav-item:hover { color: var(--orange-500); }
.nav-item.active {
  background: var(--navy-800);
  color: white;
}
.nav-item.active .nav-icon { color: var(--orange-400); }
.nav-icon {
  width: 16px; height: 16px;
  color: var(--ink-500);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--navy-800);
  color: white;
  overflow: hidden;
  padding-top: 92px;
}
.cazare-hero {
  padding-top: 92px !important;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
  padding-bottom: clamp(36px, 6vw, 72px);
}
@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1.5fr;
    gap: 48px;
    align-items: stretch;
    min-height: 620px;
  }
}

.hero-copy { padding-top: clamp(16px, 4vw, 40px); }
.hero-copy h1 {
  font-size: clamp(36px, 6.5vw, 72px);
  margin: 18px 0 20px;
}
.hero-date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--orange-500);
  line-height: 1.1;
  margin: -8px 0 24px;
  text-transform: uppercase;
}
.hero-copy h1 span { display: block; }
.hero-copy h1 .slash { color: var(--orange-500); }
.hero-copy p {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255,255,255,0.78);
  max-width: 38ch;
  margin: 0 0 28px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero photo block with brush mask */
.hero-photo {
  position: relative;
  border-radius: var(--r-md);
  min-height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #233455 0%, #16223f 100%);
}
@media (min-width: 880px) {
  .hero-photo { min-height: 100%; }
}

.hero-photo .photo-fill {
  position: absolute; inset: 0;
}
.hero-photo .hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo .photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,24,48,0.0) 40%, rgba(14,24,48,0.55) 100%);
}
/* Hero photo: irregular skewed cut */
.hero-photo.skew-hero {
  clip-path: polygon(4% 2%, 98% 0, 100% 88%, 88% 100%, 2% 96%);
  border-radius: 0;
}

/* ---------- Photo placeholder ---------- */
.photo-placeholder {
  width: 100%; height: 100%;
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--navy-700) 0 18px,
      var(--navy-600) 18px 36px
    );
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}
.photo-placeholder.light {
  background:
    repeating-linear-gradient(
      135deg,
      var(--cream-200) 0 18px,
      var(--cream-300) 18px 36px
    );
  color: rgba(10,17,36,0.45);
}
.photo-placeholder .ph-label {
  background: rgba(0,0,0,0.35);
  padding: 6px 10px;
  border-radius: 3px;
}
.photo-placeholder.light .ph-label {
  background: rgba(255,255,255,0.5);
}

/* ---------- 3-card highlights ---------- */
.highlights {
  background: var(--cream-100);
  padding: clamp(40px, 6vw, 64px) 0 clamp(20px, 3vw, 32px);
}
.highlights-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .highlights-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.hcard {
  position: relative;
  background: var(--navy-800);
  color: white;
  border-radius: var(--r-md);
  padding: 26px 22px 70px;
  overflow: hidden;
  min-height: 220px;
}
.hcard.skew-1 {
  clip-path: polygon(0 4%, 96% 0, 100% 92%, 4% 100%);
}
.hcard.skew-2 {
  clip-path: polygon(2% 0, 100% 5%, 98% 100%, 0 95%);
}
.hcard.skew-3 {
  clip-path: polygon(0 0, 98% 3%, 100% 96%, 3% 100%);
}
.hcard.light {
  background: white;
  color: var(--ink-900);
  box-shadow: 0 1px 0 rgba(10,17,36,0.05), 0 8px 24px rgba(10,17,36,0.04);
}
.hcard-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.hcard .hicon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 8px;
  background: rgba(238, 91, 42, 0.14);
  color: var(--orange-500);
  flex: 0 0 auto;
}
.hcard .hcard-arrow {
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--orange-500);
  flex: 0 0 auto;
  margin-right: 2px;
}
.hcard h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
}
.hcard p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  max-width: 26ch;
}
.hcard.light p { color: var(--ink-500); }
.hcard .hnumber {
  position: absolute;
  right: 20px; bottom: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.10);
  line-height: 1;
}
.hcard.light .hnumber { color: rgba(10,17,36,0.08); }

/* ---------- Two-up section (image + text) ---------- */
.split {
  padding: var(--section-y) 0;
}
.split.tight {
  padding: clamp(28px, 4vw, 48px) 0;
}
.split-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) {
  .split-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
  }
  .split-grid.reverse > .split-media { order: 2; }
}
.mobile-cazare-eyebrow { display: none; }
@media (max-width: 859px) {
  #cazare .split-grid {
    display: flex;
    flex-direction: column;
  }
  #cazare .mobile-cazare-eyebrow {
    display: inline-flex;
    order: -2;
    align-self: flex-start;
    justify-content: flex-start;
    margin: 0;
  }
  #cazare .split-copy .eyebrow { display: none; }
  #cazare .split-copy { align-self: stretch; }
  #cazare .split-media {
    order: -1;
    width: 100%;
  }
}

.split-media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-200);
}
.split-media.skew-a {
  clip-path: polygon(0 6%, 97% 0, 100% 94%, 3% 100%);
  border-radius: 0;
}
.split-media.skew-b {
  clip-path: polygon(3% 0, 100% 5%, 96% 100%, 0 92%);
  border-radius: 0;
}
.split-media .split-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.split-media .badge-tl {
  position: absolute;
  top: clamp(24px, 5vw, 32px);
  left: clamp(22px, 4vw, 30px);
  z-index: 2;
  background: var(--orange-500);
  color: white;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 3px;
  font-weight: 600;
}

.split-copy h2 {
  font-size: clamp(30px, 4.5vw, 44px);
  margin: 14px 0 18px;
}
.split-copy p {
  color: var(--ink-500);
  font-size: 15px;
  margin: 0 0 24px;
  max-width: 44ch;
}

/* ---------- Stats row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat:nth-child(2) {
  align-items: center;
  text-align: center;
}
.stat:nth-child(3) {
  align-items: flex-end;
  text-align: right;
}
.stat-icon {
  width: 22px; height: 22px;
  color: var(--orange-500);
  margin-bottom: 6px;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 12px;
  color: var(--ink-500);
}
.domain-map-cta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}
.domain-map-cta .btn {
  grid-column: 2;
  justify-self: center;
}

/* ---------- Price and registration ---------- */
.price-register {
  background: var(--cream-50);
  padding: clamp(22px, 3.6vw, 38px) 0 0;
}
.price-register-panel {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 24px;
  padding: clamp(29px, 4.2vw, 47px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 50% 0%, var(--price-accent-soft, rgba(238, 91, 42, 0.13)), transparent 32%),
    radial-gradient(circle at 8% 100%, rgba(42, 58, 100, 0.38), transparent 38%),
    linear-gradient(145deg, var(--navy-900), #08152a 62%, #071020);
  box-shadow: 0 28px 80px rgba(10, 17, 36, 0.18);
}
.price-register-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}
.price-register-head {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 28px);
}
.price-register .eyebrow {
  justify-content: center;
  color: var(--orange-400);
}
.price-register .eyebrow .bar {
  background: var(--orange-400);
}
.price-register-title {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  border: 1.5px solid var(--price-accent-border, rgba(238, 91, 42, 0.65));
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07), 0 22px 70px rgba(0, 0, 0, 0.18);
}
.price-main {
  text-align: center;
}
.price-kicker {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}
.price-amount {
  margin: 8px 0 6px;
  color: var(--orange-500);
  font-family: var(--font-display);
  font-size: clamp(52px, 7.2vw, 82px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-shadow: 0 10px 38px var(--price-accent-shadow, rgba(238, 91, 42, 0.28));
}
.price-includes {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  line-height: 1.1;
}
.price-features {
  display: grid;
  gap: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: clamp(24px, 3vw, 42px);
}
.price-feature {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.price-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--orange-500);
  border-radius: 999px;
  color: var(--orange-500);
}
.price-icon svg {
  width: 21px;
  height: 21px;
}
.price-feature strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}
.price-feature span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.price-divider {
  height: 1px;
  margin: clamp(24px, 3.5vw, 34px) 2px;
  background: rgba(255, 255, 255, 0.18);
}
.price-alt {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  grid-template-columns: 58px minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}
.price-alt .price-icon {
  width: 52px;
  height: 52px;
  border-color: rgba(255, 255, 255, 0.74);
  color: #fff;
}
.price-alt-title {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}
.price-alt-price {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.price-alt-price small {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
}
.price-vline {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.25);
}
.price-alt-note strong {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}
.price-options {
  max-width: 940px;
  margin: 0 auto;
}
.price-options-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.price-options-head .price-icon {
  width: 46px;
  height: 46px;
  border-color: rgba(255, 255, 255, 0.74);
  color: #fff;
  flex: 0 0 auto;
}
.price-options-head h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.price-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.price-option {
  min-height: 100%;
  padding: 16px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}
.price-option-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.price-option-row strong,
.price-option-row span {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
}
.price-option-row strong {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}
.price-option-row span {
  color: var(--price-accent, var(--orange-500));
  font-size: 24px;
  white-space: nowrap;
}
.price-option-row small {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
}
.price-option p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.45;
}
.apt-disclaimer {
  max-width: 980px;
  margin: clamp(24px, 4vw, 42px) auto 0;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(10, 17, 36, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(10, 17, 36, 0.08);
}
.apt-disclaimer h3 {
  margin: 0 0 14px;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}
.apt-disclaimer p {
  margin: 0;
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.62;
}
.apt-disclaimer p + p {
  margin-top: 8px;
}
.apt-details-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.btn-apartment-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid rgba(10, 17, 36, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(10, 17, 36, 0.08);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn-apartment-details:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 17, 36, 0.26);
  box-shadow: 0 14px 32px rgba(10, 17, 36, 0.12);
}
.btn-apartment-details .arrow {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(10, 17, 36, 0.08);
}
.payment-row {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  grid-template-columns: 58px 170px minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}
.payment-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.payment-dot {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.7);
}
.payment-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--orange-500);
  box-shadow: 0 0 14px var(--price-accent-dot-shadow, rgba(238, 91, 42, 0.65));
}
.payment-dot strong {
  color: #fff;
}
@media (max-width: 760px) {
  .price-register {
    padding-top: 18px;
  }
  .price-register .container {
    width: min(100% - 24px, 1200px);
  }
  .price-register-panel {
    border-radius: 20px;
    padding: 28px 16px 34px;
  }
  .price-register-title {
    font-size: clamp(24px, 7vw, 30px);
  }
  .price-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 16px;
    border-radius: 18px;
  }
  .price-amount {
    font-size: clamp(56px, 17vw, 72px);
  }
  .price-features {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
    padding-top: 24px;
    padding-left: 0;
  }
  .price-feature {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }
  .price-icon,
  .price-alt .price-icon {
    width: 42px;
    height: 42px;
  }
  .price-icon svg {
    width: 21px;
    height: 21px;
  }
  .price-alt {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
  }
  .price-vline {
    display: none;
  }
  .price-alt-note {
    grid-column: 2;
  }
  .price-alt-price {
    font-size: 34px;
  }
  .price-options-head {
    gap: 12px;
    margin-bottom: 14px;
  }
  .price-options-head h3 {
    font-size: 24px;
  }
  .price-option-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .price-option {
    padding: 14px;
    border-radius: 16px;
  }
  .price-option-row strong {
    font-size: 16px;
  }
  .price-option-row span {
    font-size: 22px;
  }
  .payment-row {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px 16px;
  }
  .payment-dot {
    grid-column: 1 / -1;
  }
}

/* ---------- Services ---------- */
.services {
  background: white;
  padding: clamp(48px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-head {
  text-align: center;
  margin-bottom: 36px;
}
.services-head h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  margin: 14px auto 0;
  max-width: none;
  white-space: nowrap;
}
.services-subtitle {
  margin: 10px auto 0;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.45;
  max-width: 42ch;
}
@media (max-width: 859px) {
  .services-head {
    text-align: left;
  }
  .services-head h2 {
    margin-left: 0;
    margin-right: 0;
    white-space: normal;
  }
  .services-subtitle { margin-left: 0; margin-right: 0; }
}
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; } }

.service {
  padding: 20px 18px;
  border-left: 1px solid var(--line);
}
@media (max-width: 979px) {
  .service { border-left: 0; border-top: 1px solid var(--line); padding: 18px 4px; }
  .service:first-child { border-top: 0; }
}
@media (min-width: 980px) {
  .service:first-child { border-left: 0; padding-left: 0; }
}
.service-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.service-icon {
  width: 26px; height: 26px;
  color: var(--orange-500);
  flex: 0 0 auto;
}
.service h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin: 0;
}
.service p {
  font-size: 13.5px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.5;
  max-width: 24ch;
}

/* ---------- Services as buttons (centered) ---------- */
.services-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.service-btn {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: var(--navy-800);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
  border: 1px solid var(--navy-800);
}
.service-btn.is-disabled {
  cursor: not-allowed;
}
.service-btn.is-disabled::after {
  content: attr(data-soon);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translate(-50%, 6px);
  width: max-content;
  max-width: min(260px, calc(100vw - 32px));
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--navy-900);
  color: white;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 24px rgba(10,17,36,0.20);
  transition: opacity .16s ease, transform .16s ease;
  z-index: 2;
}
.service-btn.is-disabled:hover::after,
.service-btn.is-disabled:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.service-btn:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  transform: translateY(-1px);
}
.service-btn-icon {
  width: 22px; height: 22px;
  color: var(--orange-400);
  flex: 0 0 auto;
}
.service-btn:hover .service-btn-icon { color: white; }
.service-btn-label { white-space: nowrap; }
.service-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: white;
  flex: 0 0 auto;
  transition: background .2s ease;
}
.service-btn:hover .service-btn-arrow { background: rgba(255,255,255,0.22); }
@media (max-width: 640px) {
  .services-buttons { flex-direction: column; align-items: stretch; }
  .service-btn { justify-content: space-between; }
}

/* ---------- How it works ---------- */
.how {
  position: relative;
  background: var(--navy-800);
  color: white;
  padding: clamp(72px, 10vw, 132px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.how.tight {
  padding: clamp(40px, 5vw, 60px) 0 clamp(36px, 4vw, 52px);
}
.how::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 80% 30%, rgba(238,91,42,0.10), transparent 60%),
    radial-gradient(700px 300px at 10% 80%, rgba(238,91,42,0.06), transparent 60%);
  pointer-events: none;
}
.how-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .how-grid { grid-template-columns: 1.5fr 1fr; gap: 48px; }
}
.how h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  margin: 12px 0 22px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
  position: relative;
}
@media (min-width: 600px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  position: relative;
  padding: 0 14px 0 0;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.30);
  margin-bottom: 8px;
}
.step h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.step p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.step-arrow {
  position: absolute;
  right: -2px; top: 6px;
  color: var(--orange-500);
  width: 14px; height: 14px;
}
.step:last-child .step-arrow { display: none; }

/* Testimonial side */
.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-on-navy);
  border-radius: var(--r-md);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.community {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.community-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.community-body {
  padding: 22px 22px 26px;
}
.community-body h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.01em;
  margin: 10px 0 12px;
  line-height: 1.05;
}
.community-body p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  margin: 0 0 14px;
}
.community-body cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.testimonial h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  line-height: 1.05;
}
.testimonial p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
}
.testimonial cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--cream-50);
  padding: clamp(56px, 8vw, 96px) 0;
}
.faq h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  margin: 12px 0 28px;
}
.faq-grid {
  display: grid;
  gap: 10px 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .faq-grid { grid-template-columns: 1fr 1fr; }
}
.qa {
  border-top: 1px solid var(--line);
  padding: 16px 4px;
  cursor: pointer;
  user-select: none;
}
.qa[open] { padding-bottom: 18px; }
.qa summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-900);
}
.qa summary::-webkit-details-marker { display: none; }
.qa .chev {
  width: 18px; height: 18px;
  color: var(--ink-500);
  transition: transform .2s ease;
  flex: 0 0 auto;
}
.qa[open] .chev { transform: rotate(180deg); color: var(--orange-500); }
.qa p {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.55;
  max-width: 60ch;
}

/* Decorative dots */
.dots {
  display: grid;
  grid-template-columns: repeat(8, 4px);
  gap: 8px;
  opacity: 0.5;
}
.dots span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--orange-500);
}

/* ---------- Booking footer ---------- */
.book {
  background: var(--navy-900);
  color: white;
  padding: clamp(40px, 6vw, 64px) 0 clamp(24px, 4vw, 40px);
  text-align: center;
  position: relative;
}
.book .run-badge { color: var(--orange-400); justify-content: center; }
.book .run-badge::before { background: var(--orange-400); }
.book h2 {
  font-size: clamp(36px, 7vw, 78px);
  margin: 14px 0 8px;
  letter-spacing: -0.03em;
}
.book .subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin: 0 0 28px;
}
.book-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 859px) {
  .book {
    text-align: left;
  }
  .book .run-badge {
    justify-content: flex-start;
  }
  .book-cta {
    justify-content: flex-start;
  }
}

/* Mobile bottom CTA */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-800);
  border-top: 1px solid var(--line-on-navy);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  z-index: 60;
  display: none;
  gap: 10px;
  align-items: center;
}
.mobile-cta .price-line {
  flex: 1;
  color: white;
}
.mobile-cta .price-line .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-400);
  display: block;
}
.mobile-cta .price-line .val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.mobile-cta .btn { padding: 12px 16px; font-size: 12px; }

@media (max-width: 760px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 84px; }
}

/* ---------- Logo placeholder ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: white;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0;
  transform: none !important;
  -webkit-tap-highlight-color: transparent;
}
.logo:hover,
.logo:focus,
.logo:active,
.hero-topbar .logo:hover,
.hero-topbar .logo:focus,
.hero-topbar .logo:active {
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}
.logo img {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.hero-topbar .logo img {
  display: block !important;
}
.hero-topbar .logo::after {
  content: none;
}
.page-topnav .logo,
.details-topnav .logo,
body.contact-page .home-topnav .logo,
body.faq-page .home-topnav .logo {
  color: var(--navy-900);
}
.logo-mark {
  width: 36px; height: 36px;
  border: 1.5px dashed rgba(255,255,255,0.4);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 clamp(20px, 3vw, 32px);
  position: relative;
  z-index: 3;
}

/* Site nav */
.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
@media (min-width: 820px) {
  .site-nav { display: flex; }
}
/* Mobile drawer state */
@media (max-width: 819px) {
  body {
    padding-top: 80px;
  }
  body:has(.hero > .container > .rk-sticky-topbar),
  body:has(.cazare-hero > .container > .rk-sticky-topbar) {
    padding-top: 0;
  }
  .home-topnav,
  .page-topnav,
  .about-topnav,
  .details-topnav {
    position: fixed !important;
    inset: 0 0 auto 0;
    z-index: 1100;
  }
  .hero > .container > .rk-sticky-topbar,
  .cazare-hero > .container > .rk-sticky-topbar,
  .rk-sticky-topbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-inline: 0;
    padding: 14px 16px;
    background: rgba(5, 18, 38, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  .home-topnav .rk-sticky-topbar,
  .page-topnav .rk-sticky-topbar,
  .about-topnav .rk-sticky-topbar,
  .details-topnav .rk-sticky-topbar {
    position: relative !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .page-topnav .rk-sticky-topbar,
  .details-topnav .rk-sticky-topbar {
    background: transparent !important;
    box-shadow: none !important;
  }
  .page-topnav .site-link,
  .details-topnav .site-link {
    color: var(--ink-700);
  }
  .page-topnav .site-link:hover,
  .details-topnav .site-link:hover {
    color: var(--navy-900);
    background: rgba(10, 17, 36, 0.06);
  }
  .page-topnav .nav-burger,
  .details-topnav .nav-burger {
    border-color: rgba(10, 17, 36, 0.18);
  }
  .page-topnav .nav-burger span,
  .details-topnav .nav-burger span {
    background: var(--navy-900);
  }
  body.contact-page .home-topnav .rk-sticky-topbar,
  body.faq-page .home-topnav .rk-sticky-topbar {
    background: transparent !important;
    box-shadow: none !important;
  }
  body.contact-page .home-topnav .site-link,
  body.faq-page .home-topnav .site-link {
    color: var(--ink-700);
  }
  body.contact-page .home-topnav .site-link:hover,
  body.faq-page .home-topnav .site-link:hover {
    color: var(--orange-500);
    background: rgba(238, 91, 42, 0.08);
  }
  body.contact-page .home-topnav .nav-burger,
  body.faq-page .home-topnav .nav-burger {
    border-color: rgba(10, 17, 36, 0.18);
  }
  body.contact-page .home-topnav .nav-burger span,
  body.faq-page .home-topnav .nav-burger span {
    background: var(--navy-900);
  }
  .hero:has(.site-nav.open),
  .cazare-hero:has(.site-nav.open) {
    overflow: visible;
  }
  .hero-topbar:has(.site-nav.open) {
    z-index: 300;
  }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    background: var(--navy-800);
    padding: 14px 18px 18px;
    z-index: 1100;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.16);
    animation: navDrawerIn .22s ease;
  }
  .site-nav.open .site-link {
    justify-content: space-between;
    padding: 18px 4px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    color: white;
  }
  body.contact-page .site-nav.open,
  body.faq-page .site-nav.open {
    background: rgba(245, 240, 232, 0.98);
    border-color: rgba(10, 17, 36, 0.10);
    box-shadow: 0 24px 60px rgba(10, 17, 36, 0.18), 0 2px 8px rgba(10, 17, 36, 0.08);
  }
  body.contact-page .site-nav.open .site-link,
  body.faq-page .site-nav.open .site-link {
    color: var(--ink-700);
    border-bottom-color: rgba(10, 17, 36, 0.08);
  }
  body.contact-page .site-nav.open .site-dropdown,
  body.faq-page .site-nav.open .site-dropdown {
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink-900);
  }
  body.contact-page .site-nav.open .dd-body strong,
  body.faq-page .site-nav.open .dd-body strong {
    color: var(--ink-900);
  }
  body.contact-page .site-nav.open .dd-body em,
  body.faq-page .site-nav.open .dd-body em {
    color: var(--ink-500);
  }
  .site-nav.open .site-link.has-menu { flex-direction: column; align-items: flex-start; gap: 12px; }
  .site-nav.open .site-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    color: white;
    padding: 6px;
    margin-top: 8px;
  }
  .site-nav.open .site-link.has-menu:hover .site-dropdown,
  .site-nav.open .site-link.has-menu:focus-within .site-dropdown {
    transform: none;
  }
  .site-nav.open .dd-item {
    box-sizing: border-box;
    width: 100%;
    color: white;
  }
  .site-nav.open .dd-item.active {
    transform: none;
  }
  .site-nav.open .dd-body strong { color: white; }
  .site-nav.open .dd-body em { color: rgba(255,255,255,0.55); }
  .site-nav.open .dd-item:hover,
  .site-nav.open .dd-item.active { background: rgba(255,255,255,0.06); }
}
@keyframes navDrawerIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hamburger button */
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  cursor: pointer;
  z-index: 90;
  flex: 0 0 auto;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.8px;
  background: white;
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 819px) {
  .nav-burger { display: inline-flex; }
}
@media (max-width: 819px) {
  .hero-topbar {
    display: grid;
    grid-template-columns: 70px 1fr 70px;
    align-items: center;
    gap: 0;
  }
  .hero-topbar .nav-burger {
    order: 1;
    grid-column: 1;
    justify-self: start;
  }
  .hero-topbar .logo {
    order: 2;
    grid-column: 2;
    justify-self: center;
  }
  .hero-topbar .site-nav {
    order: 4;
  }
  .hero-topbar .right {
    order: 3;
    grid-column: 3;
    width: 70px;
    justify-self: end;
    justify-content: flex-end;
  }
}
.site-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-radius: 4px;
  cursor: pointer;
  transition: color .15s ease, background .15s ease;
}
.site-link:hover { color: white; background: rgba(255,255,255,0.06); }
.site-link.has-menu { position: relative; }
.site-link.has-menu::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  pointer-events: auto;
}
.site-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: white;
  color: var(--ink-900);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 60;
}
.site-link.has-menu:hover .site-dropdown,
.site-link.has-menu:focus-within .site-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  text-transform: none;
  letter-spacing: 0;
}
.dd-item:hover { background: var(--cream-100); }
.dd-item.active { background: var(--cream-100); }
.dd-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange-500);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.dd-body strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
}
.dd-body em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
}

/* Runs switcher (floating) */
.runs-switcher {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
}
@media (max-width: 760px) {
  .runs-switcher { bottom: 80px; right: 12px; }
}
.runs-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-800);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 28px rgba(10,17,36,0.30);
  transition: transform .15s ease, background .2s ease;
}
.runs-toggle:hover { transform: translateY(-1px); background: var(--navy-700); }
.runs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(238,91,42,0.25);
}
.runs-chev { transition: transform .2s ease; }
.runs-switcher.open .runs-chev { transform: rotate(180deg); }
.runs-panel {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 320px;
  max-width: calc(100vw - 24px);
  background: white;
  border-radius: 12px;
  padding: 14px 12px 12px;
  box-shadow: 0 20px 50px rgba(10,17,36,0.30), 0 2px 8px rgba(10,17,36,0.10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.runs-switcher.open .runs-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.runs-head { padding: 4px 8px 10px; }
.run-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 10px;
  border-radius: 8px;
  transition: background .15s ease;
}
.run-row + .run-row { border-top: 1px solid var(--line); }
.run-row:hover { background: var(--cream-50); }
.run-row.active { background: var(--navy-800); color: white; }
.run-row.active + .run-row { border-top-color: transparent; }
.run-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--orange-500);
  letter-spacing: -0.02em;
  flex: 0 0 auto;
}
.run-body { flex: 1; }
.run-body strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.run-body em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.run-row.active .run-body em { color: rgba(255,255,255,0.6); }
.run-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-400);
  border: 1px solid rgba(255,163,113,0.4);
  padding: 4px 8px;
  border-radius: 999px;
  flex: 0 0 auto;
}
.run-arrow {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cream-100);
  border-radius: 50%;
  color: var(--ink-700);
  flex: 0 0 auto;
}
.run-row:hover .run-arrow { background: var(--orange-500); color: white; }
.hero-topbar .right {
  display: flex; align-items: center; gap: 18px;
}
.hero-topbar .lang {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-topbar .lang strong { color: white; font-weight: 600; }

/* Tiny utilities */
.mt-0 { margin-top: 0 !important; }
.tac { text-align: center; }

/* Section anchors offset for sticky nav */
[id] { scroll-margin-top: 84px; }
body:has(.sticky-nav) [id],
body:has(.accommodation-nav) [id] {
  scroll-margin-top: 150px;
}
