/* ═══════════════════════════════════════════════════════════
   CABO ELITE TRAVEL — Production Stylesheet
   Version 3.1 — Premium Readability Update · Black Tomato / Aman / Four Seasons Standard
   caboelitetravel.com
═══════════════════════════════════════════════════════════ */

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
figure { margin: 0; }

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Colors */
  --gold:         #C9A96E;
  --gold-light:   #E2CFA0;
  --gold-dim:     rgba(201,169,110,0.22);
  --gold-faint:   rgba(201,169,110,0.08);
  --dark:         #080808;
  --dark-2:       #101010;
  --dark-3:       #181818;
  --cream:        #F4EFE6;
  --cream-dim:    rgba(244,239,230,0.85);
  --cream-faint:  rgba(244,239,230,0.46);
  /* Typography */
  --serif:        'Playfair Display', Georgia, 'Times New Roman', serif;
  --serif-body:   'Cormorant Garamond', Georgia, serif;
  --sans:         'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Motion */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast:       0.25s var(--ease);
  --t-med:        0.5s  var(--ease);
  --t-slow:       0.85s var(--ease);
  /* Layout */
  --pad-x:        clamp(24px, 6vw, 80px);
  --pad-y:        clamp(80px, 10vw, 140px);
}

/* ── BASE ───────────────────────────────────────────────── */
body {
  background:  var(--dark);
  color:       var(--cream);
  font-family: var(--serif-body);
  font-size:   clamp(18px, 1.3vw, 20px);
  line-height: 1.75;
  -webkit-font-smoothing:  antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── ACCESSIBILITY ──────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ═══ TYPOGRAPHY SYSTEM ════════════════════════════════════ */

.label {
  font-family:    var(--sans);
  font-size:      12px;
  font-weight:    400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color:          var(--gold);
  display:        flex;
  align-items:    center;
  gap:            14px;
}
.label::before {
  content:    '';
  display:    block;
  width:      28px;
  height:     1px;
  background: var(--gold);
  flex-shrink: 0;
}
.label--center { justify-content: center; }
.label--center::before { display: none; }

.h-xl {
  font-family:    var(--serif);
  font-size:      clamp(44px, 6.5vw, 90px);
  font-weight:    400;
  line-height:    1.03;
  letter-spacing: -0.018em;
  color:          var(--cream);
}
.h-lg {
  font-family:    var(--serif);
  font-size:      clamp(32px, 4vw, 58px);
  font-weight:    400;
  line-height:    1.1;
  color:          var(--cream);
}
.h-md {
  font-family:    var(--serif);
  font-size:      clamp(24px, 2.8vw, 40px);
  font-weight:    400;
  line-height:    1.15;
  color:          var(--cream);
}
.h-sm {
  font-family:    var(--serif);
  font-size:      clamp(18px, 1.8vw, 26px);
  font-weight:    400;
  line-height:    1.2;
  color:          var(--cream);
}

em { font-style: italic; color: var(--gold-light); }

.body-lg {
  font-family: var(--serif-body);
  font-size:   clamp(16px, 1.25vw, 20px);
  font-weight: 300;
  line-height: 1.82;
  color:       var(--cream-dim);
}
.body-md {
  font-family: var(--serif-body);
  font-size:   clamp(18px, 1.3vw, 20px);
  font-weight: 300;
  line-height: 1.85;
  color:       rgba(244,239,230,0.85);
}
.body-italic { font-style: italic; }

.rule {
  width:      48px;
  height:     1px;
  background: var(--gold);
  margin:     28px 0;
}
.rule--center { margin: 28px auto; }

/* ═══ BUTTONS ══════════════════════════════════════════════ */

.btn {
  display:     inline-flex;
  align-items: center;
  gap:         10px;
  font-family:    var(--sans);
  font-size:      13px;
  font-weight:    500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:     var(--t-fast);
  white-space:    nowrap;
}

.btn-gold {
  background: var(--gold);
  color:      var(--dark);
  padding:    17px 40px;
}
.btn-gold:hover,
.btn-gold:focus-visible { background: var(--gold-light); }

.btn-outline {
  border:  1px solid var(--gold);
  color:   var(--gold);
  padding: 16px 38px;
}
.btn-outline:hover,
.btn-outline:focus-visible { background: var(--gold); color: var(--dark); }

.btn-ghost {
  color:   var(--cream);
  opacity: 0.72;
  padding: 14px 0;
}
.btn-ghost:hover,
.btn-ghost:focus-visible { opacity: 1; color: var(--gold); }

.btn-text {
  color:          var(--gold);
  font-family:    var(--sans);
  font-size:      12px;
  font-weight:    400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display:        inline-flex;
  align-items:    center;
  gap:            8px;
  transition:     var(--t-fast);
}
.btn-text::after { content: '→'; transition: transform var(--t-fast); }
.btn-text:hover::after { transform: translateX(5px); }

/* ═══ NAVIGATION ═══════════════════════════════════════════ */

#nav {
  position:       fixed;
  top: 0; left: 0; right: 0;
  z-index:        999;
  padding:        26px clamp(20px, 4vw, 60px);
  display:        flex;
  align-items:    center;
  justify-content: space-between;
  transition:     padding var(--t-fast), background var(--t-fast), border-color var(--t-fast);
  border-bottom:  1px solid transparent;
  /* Always readable — subtle top gradient anchor */
  background:     linear-gradient(to bottom, rgba(8,8,8,0.45) 0%, transparent 100%);
}
#nav.is-scrolled {
  padding:        18px var(--pad-x);
  background:     rgba(8,8,8,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--gold-dim);
}

.nav-logo {
  flex-shrink: 0;
  display:     flex;
  align-items: center;
  line-height: 1;
}

.nav-logo-img {
  display:         block;
  height:          90px;
  width:           auto;
  image-rendering: crisp-edges;
  transition:      opacity var(--t-fast);
  /* Subtle glow so logo reads over any hero */
  filter:          drop-shadow(0 0 12px rgba(8,8,8,0.55));
}
.nav-logo:hover .nav-logo-img { opacity: 0.88; }


/* ── Logo: footer ── */
.footer-logo-wrap {
  margin-bottom: 20px;
}
.footer-logo-img {
  display: block;
  height:  56px;
  width:   auto;
  /* Opacity slightly reduced — logo reads as elegant, not garish */
  opacity: 0.92;
}
.footer-logo-img:hover { opacity: 1; }

/* ── Logo: mobile drawer ── */
.nav-drawer-logo {
  position: absolute;
  top: 28px;
  left: var(--pad-x);
}
.nav-drawer-logo img {
  display: block;
  height:  40px;
  width:   auto;
  opacity: 0.72;
}
.nav-links {
  display: flex;
  gap:     clamp(16px, 2vw, 32px);
  flex-wrap: nowrap;
}
.nav-links a {
  font-family:    var(--sans);
  font-size:      12px;
  font-weight:    400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--cream);
  opacity:        1;
  transition:     var(--t-fast);
}

/* Nav items never wrap */
.nav-links a { white-space: nowrap; }
.nav-links a:hover,
.nav-links a:focus-visible { opacity: 1; color: var(--gold); }

.nav-cta {
  font-family:    var(--sans);
  font-size:      12px;
  font-weight:    500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color:          var(--gold);
  border:         1px solid var(--gold-dim);
  padding:        11px 24px;
  transition:     var(--t-fast);
  flex-shrink:    0;
}
.nav-cta:hover,
.nav-cta:focus-visible { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.nav-toggle {
  display:        none;
  flex-direction: column;
  gap:            5px;
  width:          26px;
  padding:        4px 0;
  cursor:         pointer;
}
.nav-toggle span {
  display:    block;
  height:     1px;
  background: var(--cream);
  transition: var(--t-fast);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-drawer {
  display:         none;
  position:        fixed;
  inset:           0;
  z-index:         998;
  background:      rgba(8,8,8,0.98);
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  gap:             36px;
}
.nav-drawer.is-open { display: flex; }
.nav-drawer a {
  font-family: var(--serif);
  font-size:   clamp(28px, 5vw, 44px);
  font-weight: 400;
  color:       var(--cream);
  transition:  var(--t-fast);
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer-close {
  position:       absolute;
  top: 28px; right: var(--pad-x);
  font-family:    var(--sans);
  font-size:      12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:          var(--cream);
  opacity:        0.72;
  cursor:         pointer;
  transition:     var(--t-fast);
}
.nav-drawer-close:hover { opacity: 1; }

/* ═══ S1 — HERO ════════════════════════════════════════════ */

#hero {
  position:   relative;
  height:     100svh;
  min-height: 640px;
  display:    flex;
  align-items: flex-end;
  overflow:   hidden;
}

.hero-bg {
  position: absolute;
  inset:    0;
}
.hero-bg img {
  width:          100%;
  height:         100%;
  object-fit:     cover;
  object-position: center 30%;
}

.hero-gradient {
  position: absolute;
  inset:    0;
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,0.62) 0%,
      rgba(8,8,8,0.22) 22%,
      rgba(8,8,8,0.08) 40%,
      rgba(8,8,8,0.55) 72%,
      rgba(8,8,8,0.94) 100%
    ),
    linear-gradient(to right,
      rgba(8,8,8,0.52) 0%,
      transparent 58%
    );
}

.hero-content {
  position:   relative;
  z-index:    2;
  padding:    0 var(--pad-x) clamp(60px, 8vh, 104px);
  max-width:  min(880px, 95%);
}

.hero-eyebrow {
  font-family:    var(--sans);
  font-size:      12px;
  font-weight:    300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  22px;
  display:        flex;
  align-items:    center;
  gap:            14px;
  opacity:        0;
  transform:      translateY(16px);
  animation:      fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero-eyebrow::before {
  content:    '';
  width:      36px;
  height:     1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family:    var(--serif);
  font-size:      clamp(46px, 7vw, 98px);
  font-weight:    400;
  line-height:    1.02;
  letter-spacing: -0.02em;
  color:          var(--cream);
  margin-bottom:  18px;
  opacity:        0;
  transform:      translateY(22px);
  animation:      fadeUp 0.95s var(--ease) 0.5s forwards;
}

.hero-subheadline {
  font-family:  var(--sans);
  font-size:    clamp(14px, 1.1vw, 17px);
  font-weight:  400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:        var(--gold);
  margin-bottom: 16px;
  max-width:    560px;
  line-height:  1.5;
  opacity:      0;
  transform:    translateY(16px);
  animation:    fadeUp 0.85s var(--ease) 0.7s forwards;
}

.hero-supporting {
  font-family:  var(--serif-body);
  font-size:    clamp(16px, 1.35vw, 20px);
  font-weight:  300;
  font-style:   italic;
  color:        rgba(244,239,230,0.78);
  margin-bottom: 44px;
  max-width:    520px;
  line-height:  1.7;
  opacity:      0;
  transform:    translateY(16px);
  animation:    fadeUp 0.85s var(--ease) 0.85s forwards;
}

.hero-cta-wrap {
  display:   flex;
  gap:       20px;
  flex-wrap: wrap;
  opacity:   0;
  transform: translateY(12px);
  animation: fadeUp 0.75s var(--ease) 0.9s forwards;
}

.hero-scroll {
  position:       absolute;
  bottom:         clamp(28px, 4vh, 48px);
  right:          var(--pad-x);
  z-index:        2;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            10px;
  opacity:        0;
  animation:      fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-family:  var(--sans);
  font-size:    11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color:        rgba(244,239,230,0.52);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width:      1px;
  height:     60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation:  scrollPulse 2.5s ease-in-out 1.6s infinite;
}

/* ═══ S2 — MANIFESTO ════════════════════════════════════════ */

#manifesto {
  background:    var(--dark-2);
  padding:       clamp(80px, 12vh, 140px) var(--pad-x);
  text-align:    center;
  border-top:    1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}

.manifesto-line {
  width:      1px;
  height:     64px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin:     0 auto 52px;
}

.manifesto-quote {
  font-family:    var(--serif);
  font-size:      clamp(24px, 3.2vw, 48px);
  font-weight:    400;
  line-height:    1.48;
  color:          var(--cream);
  max-width:      820px;
  margin:         0 auto;
  letter-spacing: -0.01em;
}
.manifesto-quote .line-2 {
  font-style: italic;
  color:      var(--cream-dim);
  font-size:  clamp(18px, 2.4vw, 36px);
  display:    block;
  margin-top: 8px;
}

/* ═══ S3 — FOUNDERS ════════════════════════════════════════ */

#founders { background: var(--dark-3); overflow: hidden; }

.founders-main {
  display:               grid;
  grid-template-columns: 1fr;    /* stacked: image above, copy below */
  max-width:             var(--container);
  margin:                0 auto;
}

.founders-image {
  position: relative;
  overflow: hidden;
}
.founders-image img {
  width:       100%;
  height:      auto;     /* natural proportions — both founders always fully visible */
  display:     block;
  max-height:  600px;    /* cap on very wide screens */
  object-fit:  cover;
  object-position: center top;
  transition:  transform var(--t-slow);
}
.founders-image:hover img { transform: scale(1.03); }

.founders-copy {
  padding:        clamp(52px, 6vw, 80px) clamp(40px, 8vw, 120px);
  display:        grid;
  grid-template-columns: 1fr 1fr;
  gap:            clamp(40px, 6vw, 80px);
  align-items:    start;
  background:     var(--dark-3);
}

.founders-positioning {
  margin-top:  36px;
  padding:     28px 28px 28px 24px;
  border-left: 2px solid var(--gold);
  background:  var(--gold-faint);
}
.founders-positioning p {
  font-family: var(--serif-body);
  font-size:   clamp(15px, 1.1vw, 18px);
  font-style:  italic;
  font-weight: 300;
  color:       var(--cream-dim);
  line-height: 1.75;
}
.founders-positioning strong {
  font-weight: 400;
  font-style:  normal;
  color:       var(--gold-light);
}

.founders-portraits {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   2px;
  margin-top:            40px;
}

.founder-card {
  position: relative;
  overflow: hidden;
}
.founder-card img {
  width:          100%;
  height:         clamp(240px, 26vw, 320px);
  object-fit:     cover;
  object-position: center top;
  transition:     transform var(--t-slow), filter var(--t-slow);
  filter:         grayscale(10%);
}
.founder-card:hover img {
  transform: scale(1.04);
  filter:    grayscale(0%);
}
.founder-card-overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(to top, rgba(8,8,8,0.90) 0%, transparent 55%);
}
.founder-card-info {
  position: absolute;
  bottom:   0; left: 0; right: 0;
  padding:  20px;
}
.founder-card-role {
  font-family:    var(--sans);
  font-size:      11px;
  font-weight:    400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  4px;
}
.founder-card-name {
  font-family:   var(--serif);
  font-size:     clamp(18px, 1.6vw, 22px);
  font-weight:   400;
  color:         var(--cream);
  margin-bottom: 6px;
}
.founder-card-line {
  font-family: var(--serif-body);
  font-size:   13px;
  font-style:  italic;
  font-weight: 300;
  color:       var(--cream-dim);
  line-height: 1.5;
}

/* ═══ S4 — EXPERIENCES ══════════════════════════════════════ */

#experiences { background: var(--dark); }

.experiences-intro {
  padding:               var(--pad-y) var(--pad-x) 56px;
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   clamp(40px, 6vw, 100px);
  align-items:           end;
}

/* Narrative Panels */
.exp-panel {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  min-height:            clamp(460px, 55vh, 640px);
  border-bottom:         1px solid var(--gold-dim);
}
.exp-panel--reverse { direction: rtl; }
.exp-panel--reverse > * { direction: ltr; }

.exp-panel-img {
  position: relative;
  overflow: hidden;
}
.exp-panel-img img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.exp-panel:hover .exp-panel-img img { transform: scale(1.04); }

.exp-panel-copy {
  padding:        clamp(40px, 5vw, 72px);
  display:        flex;
  flex-direction: column;
  justify-content: center;
  background:     var(--dark-2);
}

.exp-num { display: none; }
.exp-title {
  font-family:   var(--serif);
  font-size:     clamp(22px, 2.4vw, 32px);
  font-weight:   400;
  line-height:   1.2;
  color:         var(--cream);
  margin-bottom: 16px;
}
.exp-body {
  font-family:   var(--serif-body);
  font-size:     clamp(15px, 1vw, 17px);
  font-style:    italic;
  font-weight:   300;
  color:         var(--cream-dim);
  line-height:   1.78;
  margin-bottom: 28px;
}

.exp-all-bar {
  padding:      44px var(--pad-x);
  text-align:   center;
  border-top:   1px solid var(--gold-dim);
  overflow:     visible;
}
.exp-all-label {
  font-family:    var(--sans);
  font-size:      12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          rgba(244,239,230,0.60);
  margin-bottom:  14px;
}
.exp-all-links {
  display:         flex;
  flex-wrap:       wrap;
  gap:             8px 20px;
  justify-content: center;
  padding:         0 var(--pad-x);
  max-width:       100%;
}
.exp-all-links a {
  font-family:    var(--sans);
  font-size:      12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color:          var(--gold);
  opacity:        0.88;
  transition:     var(--t-fast);
}
.exp-all-links a:hover { opacity: 1; }

/* ═══ S5 — TWO WORLDS ═══════════════════════════════════════ */

#two-worlds { position: relative; }

.two-worlds-visual {
  position:   relative;
  height:     clamp(65vh, 82vh, 920px);
  overflow:   hidden;
}
.two-worlds-visual img {
  width:      100%;
  height:     100%;
  object-fit: cover;
}
.two-worlds-overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.18) 0%,
    rgba(8,8,8,0.05) 38%,
    rgba(8,8,8,0.70) 100%
  );
}
.two-worlds-text {
  position: absolute;
  bottom:   clamp(40px, 6vw, 72px);
  left: 0; right: 0;
  text-align: center;
  padding:  0 var(--pad-x);
}
.two-worlds-heading {
  font-family:    var(--serif);
  font-size:      clamp(40px, 5.8vw, 80px);
  font-weight:    400;
  color:          var(--cream);
  line-height:    1.06;
  margin-top:     14px;
}


/* ── Two Worlds: warm/cool color contrast overlay ── */
.two-worlds-visual {
  position: relative;
}

/* Warm golden wash over the left half (Los Cabos) */
.two-worlds-visual::before {
  content:  '';
  position: absolute;
  inset:    0;
  z-index:  2;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(200, 120, 20, 0.22) 0%,    /* warm amber — Los Cabos sun */
    rgba(200, 120, 20, 0.08) 38%,   /* fade to center */
    rgba(60,  90, 140, 0.08) 62%,   /* fade from center */
    rgba(60,  90, 140, 0.20) 100%   /* cool blue-silver — Prague */
  );
  mix-blend-mode: multiply;
}

/* Subtle vignette to frame the diptych */
.two-worlds-visual::after {
  content:  '';
  position: absolute;
  inset:    0;
  z-index:  2;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 80% at center,
    transparent 40%,
    rgba(8,8,8,0.28) 100%
  );
}

/* Thin vertical divider line at center — marks the split */
.two-worlds-overlay::after {
  content:  '';
  position: absolute;
  top:      10%;
  bottom:   10%;
  left:     50%;
  width:    1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201,169,110,0.55) 30%,
    rgba(201,169,110,0.55) 70%,
    transparent
  );
  pointer-events: none;
}


/* ── Two Worlds: gold centerline marks the split ── */
.two-worlds-visual::after {
  content:    '';
  position:   absolute;
  top:        8%;
  bottom:     8%;
  left:       calc(50% - 0.5px);
  width:      1px;
  z-index:    3;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201,169,110,0.7) 20%,
    rgba(201,169,110,0.9) 50%,
    rgba(201,169,110,0.7) 80%,
    transparent 100%
  );
}
.two-worlds-bar {
  background:            var(--dark-2);
  display:               grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items:           center;
  border-bottom:         1px solid var(--gold-dim);
  overflow:              visible;
}
.dest-col {
  padding: clamp(44px, 6vw, 80px) clamp(40px, 6vw, 80px);
  min-width: 0;          /* prevent grid blowout */
  overflow: visible;
}
.dest-col--right {
  text-align: right;
  padding-right: clamp(48px, 7vw, 96px);  /* extra breathing room at right edge */
}
.dest-coords {
  font-family:    var(--sans);
  font-size:      12px;
  font-weight:    300;
  letter-spacing: 0.18em;
  color:          var(--gold);
  opacity:        0.82;
  margin-bottom:  10px;
}
.dest-name {
  font-family:   var(--serif);
  font-size:     clamp(28px, 3.4vw, 46px);
  font-weight:   400;
  color:         var(--cream);
  margin-bottom: 14px;
  line-height:   1.1;
}
.dest-desc {
  font-family: var(--serif-body);
  font-size:   clamp(15px, 1.1vw, 17px);
  font-style:  italic;
  font-weight: 300;
  color:       var(--cream-dim);
  line-height: 1.78;
  max-width:   340px;
  word-wrap:   break-word;
  overflow-wrap: break-word;
}
.dest-col--right .dest-desc { margin-left: auto; }
.dest-divider {
  text-align: center;
  font-family: var(--serif);
  font-size:  22px;
  color:      var(--gold);
  opacity:    0.32;
}

/* ═══ S6 — CONCIERGE ════════════════════════════════════════ */

#concierge {
  position:    relative;
  height:      clamp(480px, 62vh, 760px);
  overflow:    hidden;
  display:     flex;
  align-items: center;
}
.concierge-bg {
  position: absolute;
  inset:    0;
}
.concierge-bg img {
  width:          100%;
  height:         100%;
  object-fit:     cover;
  object-position: center 42%;
}
.concierge-gradient {
  position:   absolute;
  inset:      0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.90) 0%,
    rgba(8,8,8,0.52) 42%,
    rgba(8,8,8,0.14) 80%,
    transparent 100%
  );
}
.concierge-content {
  position:  relative;
  z-index:   2;
  padding:   0 var(--pad-x);
  max-width: min(580px, 90%);
}

/* ═══ S7 — PRAGUE ═══════════════════════════════════════════ */

#prague {
  background: var(--dark);
  padding:    var(--pad-y) var(--pad-x);
}

.prague-intro { margin-bottom: 52px; max-width: 620px; }

.prague-grid {
  display:               grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap:                   3px;
}

.prague-card {
  position: relative;
  overflow: hidden;
}
.prague-card img {
  width:      100%;
  height:     clamp(440px, 50vw, 580px);
  object-fit: cover;
  transition: transform var(--t-slow);
}
/* prague-card:first-child height override removed — all cards equal */
.prague-card:hover img { transform: scale(1.04); }

.prague-card-overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(to top,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.18) 48%,
    transparent 70%
  );
}
.prague-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(18px, 2.5vw, 30px);
}
.prague-card-cat {
  font-family:    var(--sans);
  font-size:      11px;
  font-weight:    400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  6px;
}
.prague-card-title {
  font-family: var(--serif);
  font-size:   clamp(16px, 1.5vw, 21px);
  font-weight: 400;
  color:       var(--cream);
  line-height: 1.2;
}

.prague-footer {
  margin-top: 44px;
  text-align: center;
}

/* ═══ S8 — SOCIAL PROOF ════════════════════════════════════ */

#social-proof {
  background:    var(--dark-2);
  padding:       var(--pad-y) var(--pad-x);
  border-top:    1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}

.proof-header { text-align: center; margin-bottom: 56px; }

.testimonials {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   clamp(28px, 4vw, 60px);
}

.testimonial {
  position:   relative;
  padding-top: 28px;
  border-top: 1px solid var(--gold-dim);
}
.testimonial-mark {
  position:    absolute;
  top:         -18px;
  font-family: var(--serif);
  font-size:   58px;
  line-height: 1;
  color:       var(--gold);
  opacity:     0.18;
}
.testimonial-text {
  font-family:   var(--serif-body);
  font-size:     clamp(15px, 1.05vw, 17px);
  font-style:    italic;
  font-weight:   300;
  color:         var(--cream-dim);
  line-height:   1.82;
  margin-bottom: 20px;
}
.testimonial-author {
  font-family:    var(--sans);
  font-size:      11px;
  font-weight:    400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color:          var(--gold);
  opacity:        0.88;
}

/* ═══ S9 — GALLERY ══════════════════════════════════════════ */

#gallery { background: var(--dark-3); }

.gallery-header {
  padding:         clamp(56px,7vw,80px) var(--pad-x) 0;
  display:         flex;
  align-items:     flex-end;
  justify-content: space-between;
  gap:             24px;
  flex-wrap:       wrap;
  margin-bottom:   clamp(28px, 4vw, 44px);
}

.gallery-strip {
  display:               grid;
  grid-template-columns: 1.3fr 1fr 1.15fr 1fr 1.1fr 1.2fr;
  gap:                   3px;
}
.gallery-strip figure {
  overflow: hidden;
  height:   clamp(210px, 26vw, 370px);
}
.gallery-strip img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-strip figure:hover img { transform: scale(1.06); }

.gallery-footer {
  padding:    clamp(32px, 4vw, 48px) var(--pad-x);
  border-top: 1px solid var(--gold-dim);
}

/* ═══ S10 — INQUIRY ════════════════════════════════════════ */

#inquiry { position: relative; overflow: hidden; }

.inquiry-bg {
  position: absolute;
  inset:    0;
}
.inquiry-bg img {
  width:          100%;
  height:         100%;
  object-fit:     cover;
  object-position: center 38%;
}
.inquiry-bg-overlay {
  position:   absolute;
  inset:      0;
  background: rgba(8,8,8,0.82);
}

.inquiry-inner {
  position:              relative;
  z-index:               2;
  padding:               var(--pad-y) var(--pad-x);
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   clamp(48px, 7vw, 120px);
  align-items:           center;
}

.inquiry-direct {
  margin-top:    36px;
  padding-top:   28px;
  border-top:    1px solid var(--gold-dim);
}
.inquiry-direct .label { margin-bottom: 12px; }
.inquiry-direct a {
  display:     block;
  font-family: var(--serif-body);
  font-size:   16px;
  font-weight: 300;
  color:       var(--cream-dim);
  margin-bottom: 7px;
  transition:  var(--t-fast);
}
.inquiry-direct a:hover { color: var(--cream); }

/* ── Form ── */
.form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-field label {
  font-family:    var(--sans);
  font-size:      11px;
  font-weight:    400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color:          var(--gold);
  opacity:        0.92;
}

.form-field input,
.form-field select,
.form-field textarea {
  width:       100%;
  background:  rgba(244,239,230,0.04);
  border:      1px solid rgba(201,169,110,0.18);
  color:       var(--cream);
  font-family: var(--serif-body);
  font-size:   clamp(15px, 1vw, 17px);
  font-weight: 300;
  padding:     14px 18px;
  outline:     none;
  transition:  var(--t-fast);
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color:      rgba(244,239,230,0.22);
  font-style: italic;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background:   rgba(201,169,110,0.05);
}
.form-field select { cursor: pointer; }
.form-field select option { background: var(--dark-3); color: var(--cream); }
.form-field textarea { resize: vertical; min-height: 114px; }

.form-footer {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             20px;
  flex-wrap:       wrap;
}
.form-privacy {
  font-family: var(--serif-body);
  font-size:   14px;
  font-style:  italic;
  font-weight: 300;
  color:       rgba(244,239,230,0.52);
  max-width:   280px;
  line-height: 1.6;
}

/* ═══ FOOTER ════════════════════════════════════════════════ */

footer[role="contentinfo"] {
  background:  #040404;
  border-top:  1px solid var(--gold-dim);
  padding:     clamp(64px,9vw,110px) var(--pad-x) clamp(28px,4vw,48px);
}

/* Top: Logo + brand statement — centered */
.footer-top {
  text-align:    center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.footer-top .footer-logo-wrap {
  margin-bottom: 20px;
}
.footer-top .footer-logo-img {
  margin: 0 auto;
  display: block;
}
.footer-top .footer-tagline {
  font-family: var(--serif-body);
  font-size:   clamp(17px, 1.3vw, 19px);
  font-style:  italic;
  font-weight: 300;
  color:       var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-top .footer-dest-line {
  font-family:    var(--sans);
  font-size:      11px;
  font-weight:    400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color:          var(--gold);
  opacity:        0.82;
  margin-bottom:  10px;
}
.footer-top .footer-coords-block {
  font-family:    var(--sans);
  font-size:      11px;
  font-weight:    300;
  letter-spacing: 0.14em;
  color:          var(--gold);
  opacity:        0.72;
}

/* Gold rule */
.footer-rule {
  width:         100%;
  height:        1px;
  background:    var(--gold-dim);
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* Nav: 4 equal columns */
.footer-nav {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   clamp(24px, 4vw, 60px);
  margin-bottom:         clamp(40px, 5vw, 64px);
}
.footer-nav-col { }

/* Reuse existing .footer-col-title, .footer-links */

/* Override .footer-grid for backward compat */
.footer-grid { display: none; }

.footer-brand  { font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-tagline { font-family: var(--serif-body); font-size: 17px; font-style: italic; font-weight: 300; color: var(--cream-dim); line-height: 1.7; margin-bottom: 20px; max-width: 320px; }
.footer-coords { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; color: var(--gold); opacity: 0.82; }

.footer-col-title { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-family: var(--serif-body); font-size: 17px; font-weight: 300; color: rgba(244,239,230,0.78); transition: var(--t-fast); }
.footer-links a:hover { color: var(--cream); }

.footer-bottom { border-top: 1px solid var(--gold-dim); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-legal  { font-family: var(--sans); font-size: 11px; letter-spacing: 0.06em; color: rgba(244,239,230,0.48); }
.footer-social { display: flex; gap: 22px; }
.footer-social a { font-family: var(--sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,239,230,0.58); transition: var(--t-fast); }
.footer-social a:hover { color: var(--gold); }


/* ═══ S10.5 — BEYOND ═══════════════════════════════════════ */

#beyond {
  background:    var(--dark-2);
  padding:       var(--pad-y) var(--pad-x);
  border-top:    1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}

.beyond-intro {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   clamp(48px, 7vw, 96px);
  align-items:           start;
  max-width:             var(--container);
  margin:                0 auto clamp(56px, 7vw, 96px);
}
.beyond-intro-left  { }   /* headline + rule */
.beyond-intro-right { }   /* paragraphs */
.beyond-intro .body-lg { color: var(--cream-dim); }

/* Destinations grid — 5 cards in a row */
.beyond-destinations {
  display:               grid;
  grid-template-columns: repeat(5, 1fr);
  gap:                   3px;
  margin-bottom:         clamp(56px, 7vw, 96px);
}

.beyond-dest {
  padding:       clamp(28px, 3.5vw, 48px) clamp(20px, 2.5vw, 36px);
  background:    var(--dark-3);
  border-top:    2px solid var(--gold-dim);
  transition:    border-color var(--t-fast), background var(--t-fast);
  cursor:        default;
}
.beyond-dest:hover {
  border-top-color: var(--gold);
  background:       rgba(201,169,110,0.04);
}

.beyond-dest-coords {
  font-family:    var(--sans);
  font-size:      11px;
  font-weight:    300;
  letter-spacing: 0.14em;
  color:          var(--gold);
  opacity:        0.72;
  margin-bottom:  16px;
  line-height:    1;
}

.beyond-dest-name {
  font-family:   var(--serif);
  font-size:     clamp(22px, 2.8vw, 38px);
  font-weight:   400;
  color:         var(--cream);
  line-height:   1.05;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.beyond-dest-places {
  font-family:    var(--sans);
  font-size:      11px;
  font-weight:    300;
  letter-spacing: 0.08em;
  color:          var(--gold);
  opacity:        0.65;
  margin-bottom:  16px;
  line-height:    1.5;
}

.beyond-dest-note {
  font-family: var(--serif-body);
  font-size:   clamp(14px, 1vw, 15px);
  font-weight: 300;
  font-style:  italic;
  color:       var(--cream-dim);
  line-height: 1.72;
}

/* Closing note + CTA */
.beyond-note {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             clamp(32px, 5vw, 80px);
  padding-top:     clamp(40px, 5vw, 64px);
  border-top:      1px solid var(--gold-dim);
  flex-wrap:       wrap;
}

.beyond-note-text {
  font-family: var(--serif-body);
  font-size:   clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  font-style:  italic;
  color:       var(--cream-dim);
  line-height: 1.78;
  max-width:   680px;
}

/* Responsive */
@media (max-width: 1100px) {
  .beyond-destinations { grid-template-columns: repeat(3, 1fr); }
  .beyond-dest:nth-child(4),
  .beyond-dest:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 768px) {
  .beyond-destinations { grid-template-columns: 1fr 1fr; gap: 2px; }
  .beyond-dest:nth-child(5) { grid-column: span 2; }
  .beyond-note { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .beyond-destinations { grid-template-columns: 1fr; }
  .beyond-dest:nth-child(5) { grid-column: span 1; }
}


/* ── Language Switcher ── */
.lang-switcher {
  display:     flex;
  align-items: center;
  gap:         6px;
  flex-shrink: 0;
  margin-left: 20px;
}
.lang-btn {
  font-family:    var(--sans);
  font-size:      11px;
  font-weight:    500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:          rgba(244,239,230,0.55);
  background:     none;
  border:         none;
  cursor:         pointer;
  padding:        4px 2px;
  transition:     var(--t-fast);
  line-height:    1;
}
.lang-btn:hover,
.lang-btn.active {
  color:          var(--gold);
}
.lang-btn.active {
  border-bottom: 1px solid var(--gold);
}
.lang-sep {
  color:          rgba(244,239,230,0.2);
  font-size:      11px;
  line-height:    1;
}

/* Google Translate — hide default widget, use our own trigger */
#google_translate_element { display: none; }
.goog-te-banner-frame,
.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { font-size: 0 !important; }
.goog-te-gadget .goog-te-combo {
  font-family: var(--sans) !important;
  font-size:   11px !important;
  background:  var(--dark-2) !important;
  color:       var(--cream) !important;
  border:      1px solid var(--gold-dim) !important;
  padding:     6px 10px !important;
  cursor:      pointer !important;
}

@media (max-width: 768px) {
  .lang-switcher { margin-left: 8px; }
  .lang-btn { font-size: 11px; }
}

/* ═══ WHATSAPP FLOAT ════════════════════════════════════════ */

#wa-btn {
  position:    fixed;
  bottom:      32px;
  right:       32px;
  z-index:     990;
  width:       52px;
  height:      52px;
  background:  var(--gold);
  display:     flex;
  align-items: center;
  justify-content: center;
  transition:  var(--t-fast);
  box-shadow:  0 4px 24px rgba(201,169,110,0.22);
}
#wa-btn:hover,
#wa-btn:focus-visible {
  background: var(--gold-light);
  transform:  translateY(-3px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.32);
}
#wa-btn svg { width: 24px; height: 24px; fill: var(--dark); }
.wa-tip {
  position:       absolute;
  right:          calc(100% + 12px);
  top:            50%;
  transform:      translateY(-50%);
  background:     var(--dark-3);
  border:         1px solid var(--gold-dim);
  color:          var(--cream);
  font-family:    var(--sans);
  font-size:      11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding:        8px 14px;
  white-space:    nowrap;
  opacity:        0;
  pointer-events: none;
  transition:     var(--t-fast);
}
#wa-btn:hover .wa-tip { opacity: 1; }

/* ═══ REVEAL ANIMATION ══════════════════════════════════════ */

.reveal {
  opacity:    0;
  transform:  translateY(32px);
  transition: opacity 0.78s var(--ease), transform 0.78s var(--ease);
}
.reveal.visible     { opacity: 1; transform: translateY(0); }
.reveal-d1          { transition-delay: 0.10s; }
.reveal-d2          { transition-delay: 0.21s; }
.reveal-d3          { transition-delay: 0.33s; }

/* ═══ KEYFRAMES ═════════════════════════════════════════════ */

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%,100% { opacity:0.32; transform:scaleY(1); }
  50%     { opacity:0.90; transform:scaleY(1.12); }
}


/* ── Footer brand column — official logo + full identity block ── */
.footer-brand-col { display: flex; flex-direction: column; gap: 0; }

.footer-dest-line {
  font-family:    var(--sans);
  font-size:      11px;
  font-weight:    400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--gold);
  opacity:        0.78;
  margin-bottom:  14px;
}

.footer-coords-block {
  font-family:    var(--sans);
  font-size:      12px;
  font-weight:    300;
  letter-spacing: 0.14em;
  color:          var(--gold);
  opacity:        0.82;
  line-height:    1.8;
  margin-bottom:  18px;
}

.footer-contact {
  display:        flex;
  flex-direction: column;
  gap:            6px;
}

.footer-contact-link {
  font-family:    var(--serif-body);
  font-size:      14px;
  font-weight:    300;
  color:          rgba(244,239,230,0.62);
  transition:     var(--t-fast);
  border-bottom:  1px solid transparent;
  padding-bottom: 1px;
  display:        inline-block;
  width:          fit-content;
}
.footer-contact-link:hover {
  color:          var(--gold);
  border-bottom-color: var(--gold-dim);
}


/* ═══ TRUST SECTION ═════════════════════════════════════════ */

#trust {
  background:    var(--dark-2);
  padding:       var(--pad-y) var(--pad-x);
  border-top:    1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}

.trust-header {
  text-align:    center;
  max-width:     620px;
  margin:        0 auto clamp(56px, 7vw, 88px);
}
.trust-header .h-md { color: var(--cream); }
.trust-header .body-lg { color: var(--cream-dim); }

.trust-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   3px;
  max-width:             var(--container);
  margin:                0 auto;
}

.trust-pillar {
  background:  var(--dark-3);
  padding:     clamp(36px, 4vw, 52px) clamp(28px, 3vw, 44px);
  border-top:  2px solid var(--gold-dim);
  transition:  border-color var(--t-fast), background var(--t-fast);
}
.trust-pillar:hover {
  border-top-color: var(--gold);
  background: rgba(201,169,110,0.03);
}

.trust-num {
  font-family:   var(--serif);
  font-size:     clamp(2rem, 3.5vw, 3.2rem);
  font-weight:   400;
  color:         var(--gold);
  opacity:       0.7;
  line-height:   1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.trust-title {
  font-family:   var(--serif);
  font-size:     clamp(16px, 1.4vw, 20px);
  font-weight:   400;
  color:         var(--cream);
  line-height:   1.3;
  margin-bottom: 14px;
}

.trust-body {
  font-family: var(--serif-body);
  font-size:   clamp(14px, 1vw, 16px);
  font-weight: 300;
  font-style:  italic;
  color:       var(--cream-dim);
  line-height: 1.78;
}

/* ═══ DAMARIS AUTHORITY BLOCK ══════════════════════════════ */

.authority-block {
  margin-top:   32px;
  padding:      24px 0 0;
  border-top:   1px solid var(--gold-dim);
}

.authority-label {
  font-family:    var(--sans);
  font-size:      11px;
  font-weight:    500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--gold);
  opacity:        0.75;
  margin-bottom:  14px;
}

.authority-tags {
  display:   flex;
  flex-wrap: wrap;
  gap:       8px;
}

.authority-tags span {
  font-family:    var(--sans);
  font-size:      11px;
  font-weight:    400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          var(--cream);
  border:         1px solid var(--gold-dim);
  padding:        5px 12px;
  opacity:        0.82;
  transition:     var(--t-fast);
}
.authority-tags span:hover {
  border-color: var(--gold);
  color:        var(--gold);
  opacity:      1;
}

/* ═══ TESTIMONIAL META ══════════════════════════════════════ */

.testimonial-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gold-dim);
}

.testimonial-name {
  font-family:    var(--sans);
  font-size:      13px;
  font-weight:    500;
  letter-spacing: 0.1em;
  color:          var(--cream);
  margin-bottom:  4px;
}

.testimonial-origin {
  font-family:    var(--sans);
  font-size:      11px;
  font-weight:    300;
  letter-spacing: 0.08em;
  color:          var(--gold);
  opacity:        0.75;
}

/* ═══ WHAT HAPPENS NEXT ════════════════════════════════════ */

#process {
  background:    var(--dark-3);
  padding:       var(--pad-y) var(--pad-x);
  border-bottom: 1px solid var(--gold-dim);
}

.process-steps {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   3px;
  max-width:             var(--container);
  margin:                clamp(48px, 6vw, 72px) auto 0;
}

.process-step {
  background:  var(--dark-2);
  padding:     clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
  position:    relative;
  overflow:    hidden;
}
.process-step::after {
  content:    '';
  position:   absolute;
  top: 0; left: 0; right: 0;
  height:     2px;
  background: linear-gradient(to right, var(--gold) 0%, transparent 100%);
  opacity:    0;
  transition: opacity var(--t-fast);
}
.process-step:hover::after { opacity: 1; }

.process-num {
  font-family: var(--serif);
  font-size:   clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  font-style:  italic;
  color:       var(--gold);
  opacity:     0.22;
  line-height: 1;
  margin-bottom: 20px;
}

.process-title {
  font-family:   var(--serif);
  font-size:     clamp(17px, 1.5vw, 22px);
  font-weight:   400;
  color:         var(--cream);
  margin-bottom: 12px;
  line-height:   1.2;
}

.process-body {
  font-family: var(--serif-body);
  font-size:   clamp(14px, 1vw, 16px);
  font-weight: 300;
  font-style:  italic;
  color:       var(--cream-dim);
  line-height: 1.78;
}

/* Responsive */
@media (max-width: 1024px) {
  .trust-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .trust-grid    { grid-template-columns: 1fr; gap: 2px; }
  .beyond-intro  { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr; gap: 2px; }
  .authority-tags span { font-size:      11px; padding: 4px 10px; }
  .authority-tags { gap: 6px; }
  .authority-tags span:nth-child(n+6) { display: none; }
}

/* ═══ RESPONSIVE ════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .experiences-intro { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-logo-img  { height: 56px; }
  .footer-logo-img { height: 44px; }

  .nav-cta    { display: none; }
  .nav-toggle { display: flex; }

  .founders-main { grid-template-columns: 1fr; max-width: 100%; }
  .founders-image { height: auto; }
  .founders-copy  { padding: 40px 24px; grid-template-columns: 1fr; gap: 32px; }
  .founders-portraits { grid-template-columns: 1fr 1fr; }
  .founder-card img { height: 220px; }

  .exp-panel              { grid-template-columns: 1fr; min-height: auto; }
  .exp-panel--reverse     { direction: ltr; }
  .exp-panel-img          { order: -1; }
  .exp-panel-img img      { height: 260px; }
  .exp-panel-copy         { padding: 32px 24px 40px; }

  .two-worlds-bar         { grid-template-columns: 1fr; }
  .dest-divider           { text-align: center; padding: 8px 0; }
  .dest-col--right        { text-align: left; }
  .dest-col--right .dest-desc { margin-left: 0; }

  .prague-grid            { grid-template-columns: 1fr; }
  .prague-card img,
  .prague-card:first-child img { height: 280px; }

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

  .gallery-strip          { grid-template-columns: 1fr 1fr; }
  .gallery-strip figure   { height: 180px; }

  .inquiry-inner          { grid-template-columns: 1fr; gap: 48px; }
  .form-row               { grid-template-columns: 1fr; }

  .footer-nav             { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid            { display: none; }
  .footer-bottom          { flex-direction: column; align-items: center; text-align: center; }

  #wa-btn { bottom: 20px; right: 20px; width: 48px; height: 48px; }
  .wa-tip { display: none; }
}

/* Small mobile */
@media (max-width: 480px) {
  .footer-grid            { grid-template-columns: 1fr; }
  .gallery-strip          { grid-template-columns: 1fr; }
  .gallery-strip figure   { height: 230px; }
  .hero-cta-wrap          { flex-direction: column; align-items: flex-start; }
}
