/* ============================================================
   TravelAtlas – Luxury Dark Editorial Stylesheet
   Palette: Deep charcoal + warm gold + ivory
   Fonts: Playfair Display (serif) + Jost (sans)
   ============================================================ */

/* ── Variables ── */
:root {

  /* Light background palette */
  --bg:        #f7f6f3;
  --bg-2:      #ffffff;
  --bg-3:      #faf9f6;
  --bg-card:   #ffffff;
  --border:    rgba(0,0,0,0.08);
  --border-md: rgba(0,0,0,0.12);

  /* Text */
  --text:      #1f1f1f;
  --text-muted:#6a6a6a;
  --text-dim:  rgba(0,0,0,0.55);

  /* Accent gold */
  --gold:      #c9a55a;
  --gold-lt:   #e8c97a;
  --gold-dim:  rgba(201,165,90,0.15);

  /* Ivory highlight */
  --ivory:     #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', -apple-system, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-gold: 0 8px 40px rgba(201,165,90,0.18);
  --shadow-dark: 0 20px 60px rgba(0,0,0,0.15);

  --max-w: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
abbr { text-decoration: none; }

/* ── Grain overlay ── */
.grain {
  pointer-events: none;
  position: fixed;
  inset: -200%;
  z-index: 9999;
  width: 400%;
  height: 400%;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grain 0.5s steps(2) infinite;
}
@keyframes grain {
  0%  { transform: translate(0,0); }
  25% { transform: translate(-2%, -3%); }
  50% { transform: translate(1%, 2%); }
  75% { transform: translate(3%, -1%); }
  100%{ transform: translate(-1%, 3%); }
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Sections ── */
.section { padding: 100px 0; }

/* ── Section header ── */
.sec-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}
.sec-head--center-light { color: var(--text); }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold); }

.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.sec-sub {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
}

.sec-foot { text-align: center; margin-top: 52px; }

/* ── Ghost button ── */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: all 0.28s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
}
.logo-wordmark {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
}
.logo-wordmark em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.22s var(--ease), background 0.22s var(--ease);
}
.main-nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.nav-pill {
  background: var(--gold-dim) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(201,165,90,0.3) !important;
}
.nav-pill:hover {
  background: rgba(201,165,90,0.25) !important;
  color: var(--gold-lt) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.28s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 12px 28px 24px;
  gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Slight dark tint fallback while loading */
  background: #0e0e0e;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.15) 60%, rgba(255,255,255,0.25) 100%);
}

.hero-body {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 100px;
  max-width: 860px;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-line {
  flex: 0 0 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* H1 */
.hero-body h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 28px;
}
.hero-body h1 em {
  font-style: italic;
  color: rgba(245,240,232,0.7);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: rgba(240,236,228,0.7);
  margin-bottom: 52px;
  line-height: 1.8;
}

/* Hero search form */
.hero-form {
  display: flex;
  align-items: stretch;
  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 28px;
}

.hf-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  gap: 4px;
  min-width: 0;
}

.hf-field label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.hf-field input,
.hf-field select {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  width: 100%;
  cursor: pointer;
}
.hf-field input::placeholder { color: var(--text-muted); }
.hf-field select { appearance: none; }
.hf-field select option { background: #1a1a1a; color: var(--text); }

.hf-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 14px 0;
}

.hf-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  background: var(--gold);
  color: #0e0e0e;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s var(--ease);
  flex-shrink: 0;
}
.hf-btn:hover { background: var(--gold-lt); }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(240,236,228,0.4);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.35);
  transition: color 0.2s;
}
.hero-scroll:hover { color: var(--gold); }

.scroll-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,165,90,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  animation: scrollBob 2.2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
.dest-section { background: var(--bg); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Large cards span 2 cols */
.dc--large { grid-column: span 2; }

.dc {
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
}

.dc a { display: block; height: 100%; }

.dc-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111;
}
.dc--large .dc-img { aspect-ratio: 16/10; }

.dc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: brightness(1.05) saturate(1.05);
}
.dc:hover .dc-img img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1);
}

.dc-info {
  padding: 22px 24px 26px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.28s var(--ease);
}
.dc:hover .dc-info { background: var(--bg-3); }

.dc-region {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.dc-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}

.dc-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 14px;
  line-height: 1.6;
}

.dc-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.dc:hover .dc-cta { opacity: 1; }

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cat-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px 32px;
  transition: border-color 0.28s var(--ease), background 0.28s var(--ease), transform 0.28s var(--ease);
  cursor: pointer;
}
.cat-card:hover {
  border-color: rgba(201,165,90,0.3);
  background: var(--bg-3);
  transform: translateY(-3px);
}

.cat-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,165,90,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 22px;
  transition: border-color 0.28s, background 0.28s;
}
.cat-card:hover .cat-icon {
  border-color: rgba(201,165,90,0.5);
  background: var(--gold-dim);
}

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

.cat-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   QUOTE / LEAD CAPTURE
   ============================================================ */
.quote-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left */
.quote-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.quote-left h2 em {
  font-style: italic;
  color: var(--text-muted);
}

.quote-intro {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.perks {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 40px;
}
.perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.perk-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.quote-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.quote-stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quote-stats strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.quote-stats span {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Right: form */
.quote-form {
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.quote-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.qf-sub {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.qf-field {
  margin-bottom: 16px;
}
.qf-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.qf-field input,
.qf-field select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  appearance: none;
}
.qf-field input::placeholder { color: var(--text-muted); opacity: 0.6; }
.qf-field select option { background: #1a1a1a; }

.qf-field input:focus,
.qf-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,165,90,0.1);
}

.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.qf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--gold);
  color: #0e0e0e;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.qf-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.qf-privacy {
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 12px;
  opacity: 0.7;
}

/* ============================================================
   TRAVEL GUIDES
   ============================================================ */
.guides-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.28s var(--ease), transform 0.28s var(--ease);
}
.guide-card:hover {
  border-color: rgba(201,165,90,0.25);
  transform: translateY(-4px);
}

.guide-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: #111;
}
.guide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
  filter: brightness(1.05) saturate(1);
}
.guide-card:hover .guide-img img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1);
}

.guide-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(14,14,14,0.85);
  border: 1px solid var(--border-md);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.guide-body {
  padding: 24px 24px 28px;
}
.guide-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.guide-body p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.guide-link {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.guide-card:hover .guide-link { opacity: 1; }

/* ============================================================
   SEO CONTENT
   ============================================================ */
.seo-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.seo-inner { max-width: 820px; }

.seo-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 40px;
  color: var(--text);
}

.seo-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.seo-body p {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.95;
}
.seo-body strong { color: var(--text); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 64px;
  align-items: start;
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.fn-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(240,236,228,0.5);
  margin-bottom: 20px;
}

.fn-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fn-col a {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.fn-col a:last-child { border-bottom: none; }
.fn-col a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid var(--border); }

.footer-btm-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-btm-inner p {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(240,236,228,0.2);
}

/* ============================================================
   NAV DROPDOWN  (desktop)
   ============================================================ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.22s var(--ease), background 0.22s var(--ease);
}
.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--text);
  background: rgba(0,0,0,0.04);
}

.dropdown-caret {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.nav-dropdown.is-open .dropdown-caret {
  transform: rotate(180deg);
}

/* Panel */
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 330px;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,165,90,.3) transparent;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark), 0 0 0 1px rgba(201,165,90,0.06);
  padding: 20px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  z-index: 200;
}
.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Triangle arrow */
.nav-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--border-md);
  border-left: 1px solid var(--border-md);
}

/* Sections inside panel */
.ndp-section {
  padding: 6px 16px;
}
.ndp-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 8px 8px;
}
.ndp-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 16px;
}

/* Each link row */
.ndp-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 10px;
  border-radius: var(--radius-md);
  transition: background 0.2s var(--ease);
  color: var(--text);
}
.ndp-link:hover {
  background: var(--gold-dim);
}
.ndp-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.ndp-link strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.ndp-link em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
}
.ndp-link:hover strong { color: var(--gold); }

/* ============================================================
   MOBILE NAV – Accordion
   ============================================================ */
.mob-accordion {
  border-bottom: 1px solid var(--border);
}
.mob-acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.mob-acc-trigger:hover,
.mob-acc-trigger[aria-expanded="true"] { color: var(--gold); }
.mob-acc-trigger[aria-expanded="true"] .dropdown-caret {
  transform: rotate(180deg);
}

.mob-acc-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
}
.mob-acc-panel.open { max-height: 500px; }

.mob-sub-link {
  display: block;
  padding: 10px 0 10px 16px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mob-sub-link:hover { color: var(--gold); }

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

@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dc--large { grid-column: span 2; }
  .quote-wrap { grid-template-columns: 1fr; gap: 52px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }

  .hero-body h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .d-br { display: none; }

  .hero-form {
    flex-direction: column;
    border-radius: var(--radius-md);
  }
  .hf-sep { width: 100%; height: 1px; margin: 0; }
  .hf-btn {
    padding: 16px 24px;
    justify-content: center;
  }

  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dc--large { grid-column: span 2; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .quote-form { padding: 28px 24px; }
}

@media (max-width: 520px) {
  .section { padding: 56px 0; }
  .dest-grid { grid-template-columns: 1fr; gap: 1px; }
  .dc--large { grid-column: span 1; }
  .cat-grid { grid-template-columns: 1fr; }
  .qf-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .quote-stats { gap: 20px; }
}

@media print {
  .site-header, .hero-form, .quote-section, .site-footer { display: none; }
}
