/* ==============================================
   Dunavantura 88 — Editorial light theme
   ============================================== */

:root {
  --ivory: #F6F1E8;
  --cream: #EFE7D8;
  --paper: #FFFFFF;
  --ink: #1C2A2E;
  --ink-soft: #4A5560;
  --ink-mute: #7A828A;
  --sage: #6C7C68;
  --water: #3B5C6B;
  --water-deep: #244550;
  --gold: #B18A54;
  --gold-soft: #D9B47C;
  --hair: rgba(28, 42, 46, 0.14);
  --hair-soft: rgba(28, 42, 46, 0.08);

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1360px;
  --gutter: clamp(18px, 4vw, 56px);
  --radius: 4px;

  --nav-h: 78px;
  --nav-h-mobile: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h-mobile); }
@media (min-width: 1025px) { html { scroll-padding-top: var(--nav-h); } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}
body.no-scroll { overflow: hidden; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease, opacity .3s ease; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ============ Typography helpers ============ */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-eyebrow.center { justify-content: center; display: flex; }
.section-eyebrow svg { flex-shrink: 0; }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 20px;
  margin-bottom: 22px;
}
.section-title em {
  font-style: italic;
  color: var(--water);
  font-weight: 300;
}
.section-title.center { text-align: center; }

.section-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-soft);
  text-align: center;
  font-size: clamp(15px, 1.6vw, 17px);
}

.section-head {
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto clamp(40px, 6vw, 88px);
  text-align: center;
}

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 26px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .35s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  min-height: 48px;
}
.btn svg { transition: transform .35s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn--dark { background: var(--ink); color: var(--ivory); }
.btn--dark:hover { background: var(--water-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }

.btn--gold { background: var(--gold-soft); color: var(--ink); }
.btn--gold:hover { background: var(--gold); color: var(--ivory); }

/* ============ Reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px var(--gutter);
  transition: padding .4s ease, background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease, color .4s ease;
  color: var(--ivory);
}
.nav.nav--solid {
  background: rgba(246, 241, 232, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hair-soft);
  color: var(--ink);
}
.nav.is-scrolled {
  padding: 6px var(--gutter);
  background: rgba(246, 241, 232, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hair-soft);
  color: var(--ink);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__left {
  display: flex;
  gap: 30px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__left a { position: relative; padding: 6px 0; white-space: nowrap; }
.nav__left a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.nav__left a:hover::after,
.nav__left a[aria-current="page"]::after { transform: scaleX(1); }

.nav__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav__logo-img {
  display: block;
  height: 66px;
  width: auto;
  max-width: none;
  transform-origin: center;
  transition: transform .4s ease;
}
.nav.is-scrolled .nav__logo-img,
.nav.nav--solid .nav__logo-img { transform: scale(0.818); }

.nav__right {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
}
.nav__cta {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background .35s ease, color .35s ease;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.nav.is-scrolled .nav__cta:hover,
.nav.nav--solid .nav__cta:hover { background: var(--ink); color: var(--ivory); }
.nav:not(.is-scrolled):not(.nav--solid) .nav__cta:hover { background: var(--ivory); color: var(--ink); }
.nav__ig { display: flex; align-items: center; opacity: .9; padding: 6px; }
.nav__ig:hover { opacity: 1; }

/* ---- Hamburger toggle ---- */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  color: inherit;
  z-index: 110;
}
.nav__toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.4px;
  background: currentColor;
  transition: transform .4s ease, opacity .3s ease, top .4s ease;
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 26px; }
body.menu-open .nav__toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
body.menu-open .nav__toggle,
body.menu-open .nav__ig,
body.menu-open .lang-switch { color: var(--ink); }

/* ---- Mobile overlay — balloon reveal from top-right ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: calc(var(--nav-h-mobile) + 28px) var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
  pointer-events: none;
  background: transparent;
  transform: none;
}
/* The expanding circle itself — a fixed-size pseudo-element scaled up */
.mobile-menu::before {
  content: '';
  position: fixed;
  top: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ivory);
  transform: scale(0);
  transform-origin: center;
  transition: transform .6s cubic-bezier(.7,0,.2,1);
  z-index: -1;
  will-change: transform;
}
.mobile-menu > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .45s ease;
}
body.menu-open .mobile-menu { pointer-events: auto; }
body.menu-open .mobile-menu::before { transform: scale(80); }
body.menu-open .mobile-menu > * {
  opacity: 1;
  transform: none;
  transition-delay: .32s;
}
body.menu-open .mobile-menu > *:nth-child(2) { transition-delay: .38s; }
body.menu-open .mobile-menu > *:nth-child(3) { transition-delay: .44s; }

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--hair);
  padding-top: 20px;
}
.mobile-menu__links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 4px;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--hair);
  line-height: 1;
}
.mobile-menu__links a[aria-current="page"] { color: var(--gold); }
.mobile-menu__links a span {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
  font-weight: 500;
}
.mobile-menu__foot {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu__foot .btn { align-self: flex-start; }
.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}
.mobile-menu__contact a { color: var(--ink); font-weight: 500; }
.mobile-menu__socials { display: flex; gap: 14px; }
.mobile-menu__socials a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hair);
  border-radius: 999px;
}

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--water-deep);
  padding: 120px var(--gutter) 60px;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,42,46,0.55) 0%, rgba(28,42,46,0.15) 30%, rgba(28,42,46,0.7) 100%);
  z-index: 1;
}

.hero__frame {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-soft);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 9vw, 128px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 12ch;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 300;
}
.hero__lead {
  margin-top: 24px;
  max-width: 480px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
  color: rgba(246, 241, 232, 0.88);
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__actions .btn--dark {
  background: var(--ivory);
  color: var(--ink);
}
.hero__actions .btn--dark:hover { background: var(--gold-soft); color: var(--ink); }
.hero__actions .btn--ghost {
  color: var(--ivory);
  border-color: rgba(246, 241, 232, 0.6);
}
.hero__actions .btn--ghost:hover {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

.hero__meta {
  margin-top: 56px;
  display: flex;
  gap: clamp(24px, 6vw, 80px);
  padding-top: 26px;
  border-top: 1px solid rgba(246, 241, 232, 0.22);
  max-width: 700px;
  flex-wrap: wrap;
}
.hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__meta-num {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1;
  color: var(--ivory);
}
.hero__meta-lbl {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.68);
  line-height: 1.5;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 30px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(246, 241, 232, 0.72);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll svg {
  writing-mode: horizontal-tb;
  animation: scrollHint 2.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ============ SUB-PAGE HERO ============ */
.page-hero {
  position: relative;
  min-height: 60vh;
  min-height: 60svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 60px;
  overflow: hidden;
  background: var(--water-deep);
  color: var(--ivory);
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero__bg img,
.page-hero__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.85);
}
.page-hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(28,42,46,0.4) 0%, rgba(28,42,46,0.2) 45%, rgba(28,42,46,0.75) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
.page-hero__crumbs {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.7);
  margin-bottom: 22px;
}
.page-hero__crumbs a:hover { color: var(--gold-soft); }
.page-hero__crumbs svg { opacity: 0.6; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.page-hero h1 em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.page-hero p {
  margin-top: 22px;
  max-width: 560px;
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(246,241,232,0.85);
}

/* ============ STORY ============ */

.story {
  padding: clamp(64px, 12vw, 160px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
}
.story__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}
.story__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.story__figure:hover img { transform: scale(1.04); }
.story__figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 24px;
  color: var(--ivory);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  background: linear-gradient(0deg, rgba(28,42,46,0.55), transparent);
}
.story__text p {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 52ch;
}

.story__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--hair);
}
.story__badges li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.story__badges li svg { color: var(--gold); flex-shrink: 0; }

/* ============ TOURS ============ */

.tours {
  background: var(--cream);
  padding: clamp(64px, 10vw, 140px) 0;
}
.tours__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.tour {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 var(--hair-soft);
  transition: transform .5s ease, box-shadow .5s ease;
}
.tour:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(28,42,46,0.18);
}
.tour__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.tour__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.tour:hover .tour__media img { transform: scale(1.06); }
.tour__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--ivory);
  color: var(--ink);
  border-radius: 999px;
}
.tour__body {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tour__icon { color: var(--water); margin-bottom: 4px; }
.tour h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  color: var(--ink);
}
.tour__meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.tour__body > p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.tour__price {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 30px);
  color: var(--ink);
  font-weight: 500;
}
.price-sub { font-size: 12px; color: var(--ink-mute); }

.tour--feature { background: var(--ink); color: var(--ivory); }
.tour--feature h3 { color: var(--ivory); }
.tour--feature .tour__body > p { color: rgba(246,241,232,0.75); }
.tour--feature .price { color: var(--gold-soft); }
.tour--feature .price-sub { color: rgba(246,241,232,0.6); }
.tour--feature .tour__price { border-color: rgba(246,241,232,0.18); }
.tour--feature .tour__icon { color: var(--gold-soft); }
.tour--feature .tour__meta { color: var(--gold-soft); }

/* Detailed tour listing (ture.html) */
.tour-list {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 140px) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.tour-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  padding: clamp(24px, 4vw, 40px) 0;
  border-top: 1px solid var(--hair);
  align-items: center;
}
.tour-row:last-of-type { border-bottom: 1px solid var(--hair); }
.tour-row--reverse .tour-row__media { order: 2; }
.tour-row__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}
.tour-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.tour-row:hover .tour-row__media img { transform: scale(1.04); }
.tour-row__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  color: var(--ink);
  margin: 16px 0 20px;
  letter-spacing: -0.01em;
}
.tour-row__body h3 em { font-style: italic; color: var(--water); font-weight: 300; }
.tour-row__body p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 50ch;
}
.tour-row__specs {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
}
.tour-row__specs > div span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
  font-weight: 500;
}
.tour-row__specs > div strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
}
.tour-row__cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ SPLIT — RUTE ============ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.split__left {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.split__left img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split__right {
  background: var(--ivory);
  padding: clamp(50px, 8vw, 120px) clamp(24px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.routes {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}
.routes li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--hair);
  transition: padding .35s ease;
}
.routes li:last-child { border-bottom: 1px solid var(--hair); }
.routes li:hover { padding-left: 8px; }
.routes__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}
.routes h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--ink);
  margin-bottom: 6px;
}
.routes p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 46ch;
}

/* Rute page — detailed */
.route-block {
  padding: clamp(50px, 8vw, 120px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.route-block:nth-child(even) { direction: rtl; }
.route-block:nth-child(even) > * { direction: ltr; }

.route-block__media {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: var(--radius);
}
.route-block__media img { width: 100%; height: 100%; object-fit: cover; }
.route-block__label {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 8px;
}
.route-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.route-block__body p {
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 52ch;
}
.route-block__stats {
  margin-top: 26px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
}
.route-block__stats > div span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.route-block__stats > div strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
}

/* ============ CENOVNIK ============ */

.pricing {
  padding: clamp(64px, 12vw, 160px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.pricing__table { border-top: 1px solid var(--hair); margin-top: 20px; }
.pricing__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 24px 8px;
  align-items: center;
  border-bottom: 1px solid var(--hair);
  transition: background .35s ease;
  font-size: 15.5px;
}
.pricing__row:not(.pricing__row--head):hover { background: rgba(255,255,255,0.7); }
.pricing__row--head {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  padding: 16px 8px;
}
.pricing__row > span:first-child {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}
.pricing__row--head > span:first-child {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-mute);
}
.pricing__row .price { font-size: 22px; text-align: right; }
.pricing__note {
  margin-top: 22px;
  color: var(--ink-mute);
  font-size: 14px;
  font-style: italic;
}

/* Cards grid on Ture i cene */
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 6px;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .pricing__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing__cards { grid-template-columns: 1fr; gap: 20px; }
}

/* Split layout for price + CTA on the pricing cards */
.tour__price--split {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.tour__price--split > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.tour__cta {
  padding: 12px 20px;
  min-height: 44px;
  font-size: 11px;
  letter-spacing: 0.2em;
  gap: 8px;
  flex-shrink: 0;
}
.tour__cta svg { transition: transform .35s ease; }
.tour__cta:hover svg { transform: translate(2px, -2px); }

/* Center-align pricing note */
.pricing__note.center {
  text-align: center;
  margin-top: 26px;
}

/* Perks strip above the pricing table */
.pricing__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-bottom: 36px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--hair-soft);
  border-radius: 999px;
  box-shadow: 0 10px 30px -22px rgba(28,42,46,0.25);
}
.pricing__perk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 6px 4px;
}
.pricing__perk svg { color: var(--gold); flex-shrink: 0; }
@media (max-width: 900px) {
  .pricing__perks {
    border-radius: var(--radius);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
  }
  .pricing__perk { font-size: 13px; }
}

/* Flip .voucher grid so the image sits on the left */
.voucher.voucher--flip .voucher__image { order: 0; }
.voucher.voucher--flip .voucher__panel { order: 1; }
@media (max-width: 768px) {
  .voucher.voucher--flip .voucher__image { order: 0; }
  .voucher.voucher--flip .voucher__panel { order: 1; }
}

/* ---- Mobile pricing as cards ---- */
.pricing__cell-lbl {
  display: none;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
  font-weight: 500;
}

/* ============ PLEDGE — Bez iznenađenja ============ */
.pledge {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(56px, 8vw, 104px) var(--gutter);
}
.pledge__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.pledge__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(24px, 4vw, 60px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(246, 241, 232, 0.18);
}
.pledge__eyebrow { color: var(--gold-soft); }
.pledge__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-top: 22px;
  max-width: 10ch;
}
.pledge__sub {
  margin-top: 18px;
  color: rgba(246, 241, 232, 0.72);
  font-size: clamp(15px, 1.5vw, 16px);
  max-width: 44ch;
}
.pledge__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ivory);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(246, 241, 232, 0.55);
  align-self: end;
  white-space: nowrap;
  transition: color .3s ease, border-color .3s ease, gap .3s ease;
}
.pledge__cta:hover {
  color: var(--gold-soft);
  border-color: var(--gold-soft);
  gap: 16px;
}
.pledge__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
}
.pledge__items li {
  padding: 4px clamp(18px, 3vw, 40px);
  border-left: 1px solid rgba(246, 241, 232, 0.15);
}
.pledge__items li:first-child {
  padding-left: 0;
  border-left: 0;
}
.pledge__items li:last-child {
  padding-right: 0;
}
.pledge__num {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 44px;
}
.pledge__items h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.pledge__items p {
  color: rgba(246, 241, 232, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pledge__head {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .pledge__cta { align-self: flex-start; }
  .pledge__items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
  .pledge__items li {
    padding: 22px clamp(16px, 3vw, 24px);
    border-left: 0;
    border-top: 1px solid rgba(246, 241, 232, 0.15);
  }
  .pledge__items li:nth-child(1),
  .pledge__items li:nth-child(2) {
    padding-top: 22px;
    border-top: 0;
  }
  .pledge__items li:nth-child(odd) { padding-left: 0; }
  .pledge__items li:nth-child(even) { padding-right: 0; }
  .pledge__num { margin-bottom: 24px; }
}
@media (max-width: 560px) {
  .pledge__items { grid-template-columns: 1fr; }
  .pledge__items li {
    padding: 24px 0;
    border-top: 1px solid rgba(246, 241, 232, 0.15);
  }
  .pledge__items li:first-child { padding-top: 24px; border-top: 0; }
  .pledge__num { margin-bottom: 18px; }
}

/* ============ FEATURES ============ */

.features {
  background: var(--cream);
  padding: clamp(50px, 8vw, 100px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: var(--container);
  margin: 0 auto;
}
.feature { text-align: center; padding: 12px 6px; }
.feature__ic {
  display: inline-flex;
  padding: 20px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--water);
  margin-bottom: 20px;
  box-shadow: 0 6px 24px -12px rgba(28,42,46,0.15);
}
.feature h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}
.feature p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 26ch;
  margin: 0 auto;
}

/* ============ VOUCHER ============ */

.voucher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.voucher__panel {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(50px, 8vw, 120px) clamp(24px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.voucher__panel .section-eyebrow { color: var(--gold-soft); }
.voucher__panel .section-title { color: var(--ivory); }
.voucher__panel .section-title em { color: var(--gold-soft); }
.voucher__panel p {
  color: rgba(246,241,232,0.78);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: 30px;
}
.voucher__panel .btn--dark {
  background: var(--gold-soft);
  color: var(--ink);
  align-self: flex-start;
}
.voucher__panel .btn--dark:hover { background: var(--ivory); }
.voucher__image { overflow: hidden; min-height: 340px; }
.voucher__image img { width: 100%; height: 100%; object-fit: cover; }

/* ============ GALLERY ============ */

.gallery {
  padding: clamp(64px, 12vw, 160px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery__item img,
.gallery__item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter .5s ease;
  filter: saturate(0.95);
}
.gallery__item:hover img,
.gallery__item:hover video { transform: scale(1.06); filter: saturate(1.08); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* Gallery filter chips */
.gallery__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.gallery__chip {
  padding: 10px 18px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  transition: all .3s ease;
}
.gallery__chip:hover,
.gallery__chip.is-active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

/* ============ QUOTE ============ */

.quote {
  background: var(--water-deep);
  color: var(--ivory);
  padding: clamp(64px, 10vw, 140px) var(--gutter);
  text-align: center;
}
.quote__mark { color: var(--gold-soft); opacity: 0.6; margin: 0 auto 26px; }
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3.4vw, 42px);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
  color: var(--ivory);
}
.quote cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ============ CONTACT ============ */

.contact {
  padding: clamp(64px, 12vw, 160px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 100px);
  align-items: center;
}
.contact__text p {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 46ch;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 34px;
  padding: 22px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  color: var(--ink);
}
.contact__list svg { color: var(--gold); flex-shrink: 0; }
.contact__list a { min-height: 32px; display: inline-flex; align-items: center; }
.contact__list a:hover { color: var(--water); }
.contact__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.contact__card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(28,42,46,0.35);
}
.contact__card img { width: 100%; height: 100%; object-fit: cover; }
.contact__card-info {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  padding: 20px 22px;
  background: rgba(246, 241, 232, 0.94);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
}
.contact__card-lbl {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.contact__card-info h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink);
  margin: 6px 0 4px;
}
.contact__card-info p { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* Contact form */
.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { position: relative; }
.form-field label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .3s ease, box-shadow .3s ease;
  min-height: 48px;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--water);
  box-shadow: 0 0 0 4px rgba(59, 92, 107, 0.12);
}
.contact-form .btn { justify-self: start; }

/* FAQ */
.faq {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(64px, 10vw, 140px) var(--gutter);
}
.faq details {
  border-bottom: 1px solid var(--hair);
  padding: 22px 0;
}
.faq details:first-child { border-top: 1px solid var(--hair); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink);
  line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 22px; height: 22px;
  flex-shrink: 0;
  background:
    linear-gradient(currentColor, currentColor) center/12px 1px no-repeat,
    linear-gradient(currentColor, currentColor) center/1px 12px no-repeat;
  transition: transform .3s ease;
}
.faq details[open] summary::after {
  background: linear-gradient(currentColor, currentColor) center/12px 1px no-repeat;
}
.faq details > p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 66ch;
}

/* Info cards row */
.info-row {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card {
  background: var(--paper);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--hair-soft);
}
.info-card svg { color: var(--gold); margin-bottom: 16px; }
.info-card h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}
.info-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }
.info-card a { color: var(--ink); font-weight: 500; }
.info-card a:hover { color: var(--water); }

/* Contact tiles (kontakt.html) */
.contact-tiles {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-tile {
  background: var(--paper);
  padding: 32px 28px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--hair-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  color: inherit;
}
.contact-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(28,42,46,0.18);
  border-color: var(--hair);
}
.contact-tile__icon {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-tile__body { display: flex; flex-direction: column; gap: 6px; }
.contact-tile__lbl {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.contact-tile__val {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  line-height: 1.15;
  word-break: break-word;
  transition: color .3s ease;
  display: block;
}
.contact-tile:hover .contact-tile__val { color: var(--water); }
.contact-tile p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
.contact-tile__arrow {
  margin-top: auto;
  padding-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.contact-tile__arrow svg { transition: transform .3s ease; }
.contact-tile:hover .contact-tile__arrow svg { transform: translateX(4px); }
@media (max-width: 900px) {
  .contact-tiles { grid-template-columns: 1fr; gap: 12px; padding-top: 20px; padding-bottom: 20px; }
  .contact-tile { padding: 24px 22px 22px; gap: 12px; }
  .contact-tile__icon { width: 44px; height: 44px; }
  .contact-tile__val { font-size: 24px; }
  .contact-tile p { font-size: 14px; }
  .contact-tile__arrow { justify-content: flex-end; }
}

/* ============ PRESS / MEDIA ============ */

.press {
  padding: clamp(60px, 9vw, 110px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.press__feature {
  margin: 0 auto clamp(40px, 6vw, 70px);
  max-width: 960px;
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: clamp(16px, 2.4vw, 28px);
  box-shadow: 0 40px 80px -50px rgba(28, 42, 46, 0.45);
}
.press__feature img {
  width: 100%;
  height: auto;
  display: block;
}
.press__feature figcaption {
  margin-top: 18px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.press__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.press__item a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 24px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.press__item a:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -28px rgba(28, 42, 46, 0.35);
}
.press__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
}
.press__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.press__source {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.press__body h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink);
}
.press__year {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}
.press__arrow {
  color: var(--ink-mute);
  transition: transform .3s ease, color .3s ease;
}
.press__item a:hover .press__arrow {
  color: var(--ink);
  transform: translate(4px, -4px);
}
@media (max-width: 900px) {
  .press__grid { grid-template-columns: 1fr; gap: 12px; }
  .press__item a { padding: 20px; gap: 16px; }
  .press__body h4 { font-size: 18px; }
}

/* CTA band */
.cta-band {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(50px, 8vw, 100px) var(--gutter);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.cta-band h2 em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.cta-band p { color: rgba(246,241,232,0.78); max-width: 500px; margin: 0 auto 30px; }
.cta-band__actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-band .btn--dark { background: var(--gold-soft); color: var(--ink); }
.cta-band .btn--dark:hover { background: var(--ivory); }
.cta-band .btn--ghost { color: var(--ivory); border-color: rgba(246,241,232,0.5); }
.cta-band .btn--ghost:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }

/* ============ FOOTER ============ */

.foot {
  background: var(--ink);
  color: rgba(246,241,232,0.75);
  padding: 64px var(--gutter) 30px;
}
.foot__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(246,241,232,0.14);
}
.foot__brand-name {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.28em;
  color: var(--ivory);
  display: block;
  margin-bottom: 18px;
}
.foot__brand-img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 100%;
  margin-bottom: 18px;
}
.foot__brand p { font-size: 14px; line-height: 1.7; max-width: 40ch; }
.foot__socials {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.foot__socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246,241,232,0.22);
  border-radius: 999px;
  color: rgba(246,241,232,0.78);
  transition: color .3s ease, border-color .3s ease, background-color .3s ease, transform .3s ease;
}
.foot__socials a:hover {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--ivory);
  transform: translateY(-2px);
}
.foot__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.foot__cols h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
  font-weight: 500;
}
.foot__cols a, .foot__cols span {
  display: block;
  padding: 6px 0;
  color: rgba(246,241,232,0.75);
  font-size: 14px;
  transition: color .3s ease, padding-left .3s ease;
}
.foot__cols a:hover { color: var(--ivory); padding-left: 6px; }
.foot__bottom {
  max-width: var(--container);
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(246,241,232,0.55);
  letter-spacing: 0.06em;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
  .nav__left { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__inner {
    display: flex;
    grid-template-columns: none;
    position: static;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: auto;
  }
  .nav__logo {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    max-width: none;
    grid-column: auto;
    justify-self: auto;
    z-index: auto;
    min-width: 0;
    margin-left: clamp(16px, 8vw, 80px);
  }
  .nav__logo-img { max-width: 100%; height: auto; max-height: 78px; }
  .nav__right { grid-column: auto; gap: 12px; justify-self: auto; flex-shrink: 0; }
  .tours__grid { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr 1fr; gap: 22px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .info-row { grid-template-columns: 1fr; }
  .nav { padding: 14px var(--gutter); }
  .nav.is-scrolled { padding: 10px var(--gutter); }
}

@media (max-width: 768px) {
  .story__grid,
  .split,
  .voucher,
  .contact__grid,
  .foot__inner,
  .tour-row,
  .route-block {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .route-block:nth-child(even) { direction: ltr; }
  .split { min-height: auto; }
  .split__left { aspect-ratio: 4 / 3; min-height: 0; }
  .voucher__image { aspect-ratio: 4 / 3; min-height: 0; }
  .voucher__panel { padding: 50px 24px; }
  .split__right { padding: 50px 24px; }
  .tours__grid { grid-template-columns: 1fr; }
  .tour-row--reverse .tour-row__media { order: 0; }
  .tour-row__specs { grid-template-columns: 1fr 1fr; }

  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 10px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .pricing__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 20px 12px;
    background: var(--paper);
    border-bottom: 1px solid var(--hair-soft);
    border-radius: var(--radius);
    margin-bottom: 10px;
  }
  .pricing__table { border: 0; }
  .pricing__row--head { display: none; }
  .pricing__row .price { text-align: left; }
  .pricing__row > span:first-child { margin-bottom: 4px; }
  .pricing__cell-lbl { display: block; }

  .features { grid-template-columns: 1fr 1fr; }
  .hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 22px;
    margin-top: 44px;
  }
  .hero__scroll { display: none; }

  .foot__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .foot__inner { padding-bottom: 40px; gap: 32px; }
  .foot__bottom { justify-content: center; text-align: center; font-size: 11px; }

  .form-row { grid-template-columns: 1fr; }
  .contact__list li { align-items: flex-start; }

  .hero { padding: 100px var(--gutter) 50px; }
  .page-hero { padding: calc(var(--nav-h-mobile) + 30px) var(--gutter) 44px; min-height: 44svh; }

  .story__figure { aspect-ratio: 4 / 4; }

  .cta-band__actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .cta-band__actions .btn { justify-content: center; }

  .tour__body { padding: 24px 22px 26px; }

  .quote blockquote { font-size: clamp(20px, 5.5vw, 30px); }
}

@media (max-width: 480px) {
  :root { --gutter: 12px; }
  .nav__logo { margin-left: 18px; max-width: none; }
  .nav__logo-img { max-height: 62px; height: auto; width: auto; max-width: 100%; }
  .nav__right { gap: 10px; }
  .nav__ig { padding: 4px; }
  .nav.is-scrolled .nav__logo-img,
  .nav.nav--solid .nav__logo-img { transform: scale(0.9); }
  .foot__brand-img { height: 56px; }
  .nav { padding: 10px var(--gutter); }
  .nav.is-scrolled { padding: 8px var(--gutter); }
  .nav__right { gap: 12px; }
  .nav__ig { padding: 4px; }
  .nav__toggle { width: 38px; height: 38px; }
  .nav__toggle span:nth-child(1) { top: 13px; }
  .nav__toggle span:nth-child(2) { top: 18px; }
  .nav__toggle span:nth-child(3) { top: 23px; }
  body.menu-open .nav__toggle span:nth-child(1),
  body.menu-open .nav__toggle span:nth-child(3) { top: 18px; }

  .btn { padding: 13px 22px; font-size: 11px; letter-spacing: 0.2em; min-height: 46px; }
  .hero__actions,
  .contact__cta,
  .tour-row__cta,
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn,
  .contact__cta .btn,
  .tour-row__cta .btn { justify-content: center; width: 100%; }

  .hero__title { font-size: clamp(42px, 12vw, 60px); }
  .hero__lead { font-size: 15px; }
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .hero__meta > div:last-child { grid-column: span 2; }
  .hero { padding: 90px var(--gutter) 40px; }

  .page-hero h1 { font-size: clamp(38px, 11vw, 54px); }

  .gallery__grid { grid-auto-rows: 150px; }

  .story__badges { gap: 14px 22px; }
  .story__badges li { font-size: 11px; }

  .contact__card-info { left: 14px; right: 14px; bottom: 14px; padding: 16px 18px; }

  .mobile-menu__links a { font-size: 36px; padding: 18px 4px; }
  .mobile-menu__links a span { font-size: 12px; }
  .mobile-menu { gap: 20px; padding-top: calc(var(--nav-h-mobile) + 20px); }
}

/* ============ LANG SWITCH ============ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.lang-switch button {
  padding: 6px 4px;
  color: inherit;
  opacity: 0.65;
  transition: opacity .3s ease;
}
.lang-switch button:hover { opacity: 1; }
.lang-switch button.active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.lang-switch .sep {
  width: 1px;
  height: 12px;
  background: currentColor;
  opacity: 0.4;
}
@media (max-width: 1024px) {
  .lang-switch {
    gap: 4px;
    font-size: 10px;
    letter-spacing: 0.18em;
    margin-right: 2px;
  }
  .lang-switch button { padding: 6px 2px; }
  .lang-switch .sep { height: 10px; }
}
@media (max-width: 380px) {
  .nav__ig { display: none; }
}

/* ============ MINI STRIPS & COLLAGES ============ */

/* Full-bleed marquee of small moments */
.moments {
  padding: clamp(56px, 9vw, 110px) 0 clamp(56px, 9vw, 110px);
  background: var(--ivory);
  overflow: hidden;
  position: relative;
}
.moments__head {
  text-align: center;
  padding: 0 var(--gutter);
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.moments__head .section-eyebrow { justify-content: center; display: flex; }
.moments__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 14px 0 10px;
}
.moments__head h2 em { font-style: italic; color: var(--gold); }
.moments__head p { color: var(--ink-soft); font-size: 15px; }

.moments__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: momentsScroll 55s linear infinite;
}
.moments:hover .moments__track { animation-play-state: paused; }
.moments__item {
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 300px);
  height: clamp(220px, 26vw, 360px);
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.moments__item img,
.moments__item video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform 1.2s ease, filter .5s ease;
}
.moments__item:hover img,
.moments__item:hover video { transform: scale(1.05); filter: saturate(1.1); }
.moments__item--tall { height: clamp(260px, 30vw, 420px); }
.moments__item--wide { width: clamp(280px, 34vw, 460px); }
@keyframes momentsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .moments__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; padding: 0 var(--gutter); }
}

/* Small photo band — 3 wide tiles inline in a section */
.photo-band {
  padding: clamp(56px, 9vw, 110px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.photo-band__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 3.5vw, 40px);
  flex-wrap: wrap;
}
.photo-band__head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-top: 10px;
}
.photo-band__head h3 em { font-style: italic; color: var(--gold); }
.photo-band__head p { color: var(--ink-soft); max-width: 46ch; }
.photo-band__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: clamp(200px, 26vw, 340px);
  gap: 14px;
}
.photo-band__grid > * {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.photo-band__grid img,
.photo-band__grid video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter .5s ease;
  filter: saturate(0.95);
}
.photo-band__grid > *:hover img,
.photo-band__grid > *:hover video { transform: scale(1.05); filter: saturate(1.1); }
.photo-band__grid .pb--tall { grid-row: span 2; }
@media (max-width: 820px) {
  .photo-band__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .photo-band__grid .pb--tall { grid-row: span 1; }
  .photo-band__grid .pb--hide-sm { display: none; }
}

/* Marina mini trio for kontakt page */
.marina-trio {
  padding: clamp(48px, 7vw, 90px) var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
}
.marina-trio__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: clamp(180px, 22vw, 280px);
  gap: 12px;
}
.marina-trio__grid > * {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.marina-trio__grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  filter: saturate(0.95);
}
.marina-trio__grid > *:hover img { transform: scale(1.05); }
@media (max-width: 720px) {
  .marina-trio__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .marina-trio__grid > *:first-child { grid-column: span 2; }
}

/* ============ LIGHTBOX ============ */
.gallery__item,
.moments__item:not([aria-hidden="true"]),
.photo-band__grid > *,
.marina-trio__grid > * { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 18, 22, 0.94);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 60px);
  opacity: 0;
  transition: opacity .3s ease;
  color: var(--ivory);
}
.lightbox.is-open { display: flex; opacity: 1; }
body.lb-open { overflow: hidden; }

.lightbox__stage {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}
.lightbox__img {
  max-width: min(1200px, 100%);
  max-height: 82svh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
  pointer-events: auto;
  animation: lbFadeIn .35s ease;
  background: rgba(0,0,0,0.4);
}
@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.985); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox__counter {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.75;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.09);
  color: var(--ivory);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .3s ease, transform .3s ease, opacity .3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__close {
  top: clamp(14px, 3vw, 32px);
  right: clamp(14px, 3vw, 32px);
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav--prev { left: clamp(10px, 2vw, 24px); }
.lightbox__nav--next { right: clamp(10px, 2vw, 24px); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__nav[disabled] { opacity: 0.25; cursor: default; }
@media (max-width: 640px) {
  .lightbox { padding: 14px; }
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__img { max-height: 72svh; }
  .lightbox__counter { font-size: 10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
