/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
  --blue:    #2563eb;
  --blue-d:  #1d4ed8;
  --orange:  #f59e0b;
  --text:    #0f172a;
  --muted:   #64748b;
  --border:  #e2e8f0;
  --bg:      #f8fafc;
  --white:   #ffffff;
  --radius:  14px;
  --shadow:  0 4px 24px rgba(15,23,42,.08);
  --shadow-hover: 0 8px 32px rgba(15,23,42,.14);

  /* ── Typography tokens ──────────────────────── */
  --font-display: "Syne", sans-serif;
  --font-body:    "Outfit", "Segoe UI", sans-serif;
  --font-mono:    "DM Mono", "Courier New", monospace;

  /* ── Header tokens ──────────────────────────── */
  --header-bg:     rgba(255,255,255,.92);
  --header-blur:   12px;
  --header-height: 64px;
  --header-border: var(--border);

  /* ── Hero Editorial tokens ──────────────────── */
  --he-bg:   #0D0C09;
  --he-text: #EDE8DF;
  --he-mute: #7A7369;
  --he-gold: #C8A65D;
  --he-rule: rgba(237,232,223,0.1);
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Layout ────────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(var(--header-blur));
  border-bottom: 1px solid var(--header-border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-height);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 40px; width: auto; }
.logo-wordmark { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.logo-wordmark .logo-wave { color: #0ea5e9; }
.footer-logo-wordmark { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: rgba(255,255,255,0.92); letter-spacing: -0.02em; }
.footer-logo-wordmark .logo-wave { color: var(--he-gold); }
.logo-text { font-size: 20px; font-weight: 800; color: var(--text); }
.logo-accent { color: var(--blue); }

.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s;
}
.nav a:hover { color: var(--text); }

.header-right { display: flex; align-items: center; gap: 12px; }
.lang-dropdown { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color .15s;
}
.lang-current:hover { border-color: var(--blue); }
.lang-chevron { font-size: 10px; transition: transform .2s; }
.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 160px;
  padding: 6px;
  box-shadow: var(--shadow);
  list-style: none;
  z-index: 100;
}
.lang-menu.open { display: block; }
.lang-menu li {
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font-body);
  transition: background .1s;
}
.lang-menu li:hover { background: var(--bg); }
.btn-business {
  padding: 8px 16px;
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  transition: all .15s;
}
.btn-business:hover { border-color: var(--blue); color: var(--blue); }
.btn-signin {
  padding: 9px 22px;
  background: var(--blue);
  color: white;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  transition: background .15s;
}
.btn-signin:hover { background: var(--blue-d); }

/* ── Hero Editorial ────────────────────────────────────────────────────── */
.hero-editorial {
  --he-bg:    #0D0C09;
  --he-text:  #EDE8DF;
  --he-mute:  #7A7369;
  --he-gold:  #C8A65D;
  --he-rule:  rgba(237,232,223,0.1);
  position: relative;
  background:
    linear-gradient(to right, rgba(13,12,9,0.94) 0%, rgba(13,12,9,0.70) 55%, rgba(13,12,9,0.45) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=2070&q=80')
    center/cover no-repeat;
  min-height: calc(100svh - 64px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Grain overlay — background-image set by JS canvas */
.he-noise {
  position: absolute;
  inset: 0;
  background-size: 256px 256px;
  opacity: 0.07;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 1;
}

/* Single column — photo lives in background */
.he-grid {
  display: grid;
  grid-template-columns: 1fr;
  flex: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 48px 88px;
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 0;
}

/* ── Text column ── */
.he-text {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  padding-right: 0;
}

.he-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--he-mute);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.he-eyebrow.he-fade-in { opacity: 1; transform: none; }

.he-eyebrow-rule {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--he-gold);
  flex-shrink: 0;
}

/* Display headline */
.he-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.8rem, 7.8vw, 7.6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--he-text);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 0.06em;
}

/* Each line: clip-path stagger reveal */
.he-title-word {
  display: block;
  clip-path: inset(0 0 110% 0);
  transform: translateY(0.2em);
  transition:
    clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms),
    transform  0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms);
}
.he-title-word.visible {
  clip-path: inset(0 0 0% 0);
  transform: translateY(0);
}

/* Last line: italic gold — "Organic Discovery" warmth */
.he-italic {
  font-style: italic;
  color: var(--he-gold);
  font-weight: 700;
}

.he-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--he-mute);
  max-width: 400px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.he-sub.he-fade-in { opacity: 1; transform: none; }

/* CTA: ghost button with gold fill sweep */
.he-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 28px;
  border: 1px solid rgba(237,232,223,0.2);
  background: transparent;
  color: var(--he-text);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  width: fit-content;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.6s ease 0.15s,
    transform 0.6s ease 0.15s,
    color 0.35s;
}
.he-cta.he-fade-in { opacity: 1; transform: none; }

.he-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--he-gold);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.he-cta:hover { color: #0D0C09; }
.he-cta:hover::before { transform: translateX(0); }
.he-cta > * { position: relative; z-index: 1; }

.he-cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.he-cta:hover .he-cta-arrow { transform: translateX(5px); }

/* Stats strip */
.he-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.he-stats.he-fade-in { opacity: 1; transform: none; }

.he-stat-item { display: flex; flex-direction: column; gap: 3px; }
.he-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--he-text);
  line-height: 1;
}
.he-stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--he-mute);
}
.he-stat-rule {
  display: block;
  width: 1px;
  height: 30px;
  background: var(--he-rule);
  flex-shrink: 0;
}

/* ── Visual column ── */
.he-visual {
  position: relative;
  min-height: 560px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease 0.05s, transform 0.8s ease 0.05s;
}
.he-visual.he-fade-in { opacity: 1; transform: none; }

/* Vertical coordinate label — top-right */
.he-coord {
  position: absolute;
  top: 20px;
  right: -8px;
  font-family: 'Outfit', sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--he-mute);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 3;
}

/* Portrait image frame — tall, slightly inset from right edge */
.he-img-frame {
  position: absolute;
  top: 0;
  left: 6%;
  width: 80%;
  bottom: 0;
  overflow: hidden;
}
.he-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.he-img-frame:hover img { transform: scale(1.04); }

.he-img-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Pin badge — overlaps into text column (breaks the grid) */
.he-pin {
  position: absolute;
  bottom: 64px;
  left: -10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--he-bg);
  border: 1px solid var(--he-rule);
  padding: 10px 18px 10px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--he-text);
  letter-spacing: 0.06em;
  z-index: 5;
}
.he-pin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--he-gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(200,166,93,0.2);
  animation: hePinPulse 2.5s ease-in-out infinite;
}
@keyframes hePinPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(200,166,93,0.20); }
  50%       { box-shadow: 0 0 0 7px rgba(200,166,93,0.07); }
}

/* ── Tags strip — bottom border of hero ── */
.he-tags {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  padding: 15px 48px;
  border-top: 1px solid var(--he-rule);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.he-tags span {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--he-mute);
  white-space: nowrap;
}
.he-sep { color: var(--he-gold) !important; opacity: 0.4; flex-shrink: 0; }

/* ── Hero responsive ── */
@media (max-width: 900px) {
  .he-grid {
    grid-template-columns: 1fr;
    padding: 56px 28px 48px;
    gap: 40px;
  }
  .he-text { padding-right: 0; }
  .he-visual {
    min-height: 360px;
  }
  .he-img-frame {
    position: relative;
    left: 0; top: 0; bottom: auto;
    width: 100%;
    height: 320px;
  }
  .he-pin { bottom: -18px; left: 16px; }
  .he-coord { display: none; }
}
@media (max-width: 640px) {
  .he-grid { padding: 48px 20px 40px; }
  .he-title { font-size: clamp(3rem, 14vw, 5rem); }
  .he-tags  { gap: 10px; padding: 12px 20px; }
  .he-stats { gap: 18px; }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .he-title-word {
    clip-path: inset(0 0 0% 0) !important;
    transform: none !important;
  }
  .he-eyebrow, .he-sub, .he-cta, .he-stats, .he-visual {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Destinations ──────────────────────────────────────────────────────── */
.destinations { padding: 72px 0; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--blue);
  margin-bottom: 8px;
}
.destinations h2, .cities h2, .features-detail h2, .cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
}
.dest-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dest-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: box-shadow .2s, transform .2s;
}
.dest-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.dest-card-icon { font-size: 32px; margin-bottom: 12px; }
.dest-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.dest-card p  { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 16px; }
.dest-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: opacity .15s;
}
.dest-link:hover { opacity: .7; }
.dest-card-map { }

/* ── Cities ────────────────────────────────────────────────────────────── */
.cities { padding: 0 0 72px; }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.city-card {
  height: 200px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: #dbeafe;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s;
}
.city-card:hover { transform: scale(1.02); }
.city-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  padding: 16px 14px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.city-name { color: white; font-size: 14px; font-weight: 700; }
.city-rating {
  color: white;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0,0,0,.3);
  padding: 2px 8px;
  border-radius: 20px;
}

/* ── Features Detail ───────────────────────────────────────────────────── */
.features-detail {
  padding: 72px 0;
  background: var(--bg);
}
.features-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.feat-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
}
.feat-num {
  font-size: 28px;
  font-weight: 800;
  color: #dbeafe;
  margin-bottom: 12px;
  line-height: 1;
}
.feat-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feat-item p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── AI Demo ────────────────────────────────────────────────────────────── */
.ai-demo {
  background: #0f172a;
  padding: 96px 0;
  text-align: center;
}
.ai-demo-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C8A65D;
  margin-bottom: 40px;
}
.ai-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  text-align: left;
}
.ai-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.ai-card:hover {
  border-color: #C8A65D;
  transform: translateY(-2px);
}
.ai-card-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 12px;
}
.ai-card p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.5;
  font-family: var(--font-body);
  margin: 0;
}
.ai-demo .he-cta {
  opacity: 1;
  transform: none;
  margin: 0 auto;
  transition: color 0.35s;
}
@media (max-width: 640px) {
  .ai-cards-row { grid-template-columns: 1fr; }
}

/* ── Biz Teaser ─────────────────────────────────────────────────────────── */
.biz-teaser {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(10,8,6,0.6) 0%, rgba(10,8,6,0.72) 100%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2073&q=80')
    center/cover no-repeat;
  text-align: center;
  color: var(--he-text);
}
.biz-teaser-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 24px;
}
.biz-teaser-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C8A65D;
  margin-bottom: 16px;
}
.biz-teaser h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 16px;
}
.biz-teaser p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 36px;
}
.biz-teaser-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background: #0D0C09;
  color: #C8A65D;
  border: 1px solid rgba(200,166,93,0.5);
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background .2s, border-color .2s;
}
.biz-teaser-btn:hover {
  background: rgba(200,166,93,0.12);
  border-color: #C8A65D;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer { background: #ffffff; border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-center { text-align: center; }
.footer .logo-text { color: var(--text); }
.footer p { font-size: 13px; color: var(--muted); }
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  justify-content: center;
}
.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .15s;
}
.footer-links a:hover { color: var(--text); }
.footer-links span { font-size: 12px; color: var(--border); }
.footer-logo { display: flex; align-items: center; }
.footer-logo-img { height: 36px; width: auto; opacity: 0.85; filter: none; transition: opacity .15s; }
.footer-logo:hover .footer-logo-img { opacity: 1; }
.footer-social { display: flex; gap: 8px; }
.social-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.social-pill:hover { background: var(--border); color: var(--text); }

/* ── Benefits section ──────────────────────────────────────────────────── */
.section-benefits {
  padding: 64px 0 72px;
  background: var(--bg);
}
.section-benefits .section-eyebrow {
  color: var(--muted);
  margin-bottom: 40px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: box-shadow .2s, transform .2s;
}
.benefit-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
a.benefit-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
a.benefit-card--link:hover {
  border-color: var(--blue);
}
.benefit-card-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  transition: transform .2s;
}
a.benefit-card--link:hover .benefit-card-arrow {
  transform: translateX(4px);
}
.benefit-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.benefit-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text);
}
.benefit-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ── Travel Editorial — Typography utilities ────────────────────────────── */
.t-display  { font-family: var(--font-display); font-weight: 800; }
.t-heading  { font-family: var(--font-display); font-weight: 700; }
.t-body     { font-family: var(--font-body);    font-weight: 400; }
.t-mono     { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: .02em; }
.t-eyebrow  { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

/* ── Travel Editorial — Background utilities ────────────────────────────── */
.bg-editorial { background: var(--he-bg); color: var(--he-text); }
.bg-light     { background: var(--bg); }

/* .bg-grain adds the grain noise overlay used in .hero-editorial */
.bg-grain { position: relative; }
.bg-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .07;
  mix-blend-mode: soft-light;
  /* grain canvas is painted by app.js paintGrain() on elements with this class */
  background-image: var(--grain-url, none);
  background-size: 256px 256px;
}
.bg-grain > * { position: relative; z-index: 1; }

/* ── Travel Editorial — Nav active state ────────────────────────────────── */
.nav-active { color: var(--text) !important; font-weight: 600 !important; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dest-cards, .cities-grid, .features-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .nav { display: none; }
  .dest-cards, .cities-grid, .features-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-center { text-align: center; }
}

@media (max-width: 480px) {
  .dest-cards, .features-detail-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
}
