*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── PRIMARY: Forest green — warmer, shifted toward savanna depth ── */
  --green:      #1a6b38;   /* was #1E8041 — 5° warmer, deeper, less generic */
  --green-dk:   #0f5c2e;   /* deeper anchor — Bwindi forest floor */
  --green-deep: #082d16;   /* near-black green — editorial dark backgrounds */
  --green-lt:   #e8f2ec;   /* barely-there tint for hover states */
  --green-md:   #a8ccb8;   /* mid-tone for borders, muted UI */

  /* ── PRIMARY: Gold — retained, slightly deepened for richness ── */
  --gold:       #F5C400;   /* warmer than #F7C502 — closer to Saharan sun */
  --gold-dk:    #b8920a;   /* deep gold for text on light — passes WCAG AA */
  --gold-lt:    #fdf5cc;   /* pale gold for footer, hover fills */

  /* ── SECONDARY: Terracotta / warm earth — NEW ── */
  --terra:      #c8793a;   /* laterite soil, savanna dust, Marrakech walls */
  --terra-dk:   #9a5520;   /* deep terracotta — West African mud cloth */
  --terra-lt:   #f8ece0;   /* pale terracotta — warm surface tint */

  /* ── NEUTRALS: Warm ink — not cold digital black ── */
  --white:      #ffffff;
  --paper:      #f6f3ed;   /* warmer off-white — aged editorial paper */
  --ink:        #1c1a14;   /* warm dark — organic, not digital black */
  --ink2:       #3d3a2e;   /* body text — warm dark brown */
  --ink3:       #7a7668;   /* muted — captions, meta, labels */

  /* ── BORDERS: keyed to warmer green ── */
  --bdr:        rgba(26,107,56,.10);
  --bdr2:       rgba(26,107,56,.20);

  /* ── TYPOGRAPHY ── */
  --ff:         'Poppins', sans-serif;
  --ff-serif:   'Playfair Display', Georgia, serif;
  --max:        1240px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff); background: var(--paper); color: var(--ink); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: 100%; object-fit: cover; }

/* ── TICKER ── */
.ticker { background: var(--green-deep); height: 34px; display: flex; align-items: center; overflow: hidden; }
.ticker-lbl { background: var(--gold); color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 0 16px; height: 100%; display: flex; align-items: center; white-space: nowrap; flex-shrink: 0; }
.ticker-track { flex: 1; overflow: hidden; height: 100%; display: flex; align-items: center; }
.ticker-scroll { display: flex; white-space: nowrap; animation: scroll 36s linear infinite; }
.ticker-scroll span { font-size: 12px; color: rgba(255,255,255,.78); padding: 0 36px; }
.ticker-scroll span::after { content: '·'; padding-left: 36px; opacity: .3; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── MASTHEAD — two-row: brand bar + nav bar ── */
.masthead { background: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 18px rgba(30,128,65,.09); }

/* TOP ROW — logo + tagline + utility buttons */
.mast-top { border-bottom: 1px solid var(--bdr); }
.mast-top-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.logo img { height: 36px; width: auto; }

/* TAGLINE — large, unmissable, serif italic, gold accent */
.mast-tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 20px;
  flex-shrink: 0;
}
.mast-tagline-bar {
  width: 3px; height: 26px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.mast-tagline-text {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
  white-space: nowrap;
}
.mast-tagline-text .gold { color: var(--gold); }

/* Utility buttons row */
.mast-utils { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* BOTTOM ROW — destination-first navigation (Rough Guides / Go2Africa pattern) */
.mast-nav-bar { background: var(--green); border-bottom: 3px solid var(--gold); }
.mast-nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; height: 40px; display: flex; align-items: center; justify-content: space-between; }
.nav { display: flex; list-style: none; height: 40px; align-items: center; }
.nav > li { position: relative; height: 100%; display: flex; align-items: center; }
.nav > li > a { font-size: 12px; font-weight: 600; color: #ffffff; padding: 0 14px; height: 100%; display: flex; align-items: center; letter-spacing: .02em; transition: color .15s, background .15s; white-space: nowrap; }
.nav > li > a:hover { color: var(--gold); background: rgba(255,255,255,.07); }
.nav > li.active > a { color: var(--gold); }
.nav > li.nav-highlight > a { color: #ffffff; font-weight: 700; }
.arr { width: 9px; height: 5px; margin-left: 3px; opacity: .5; }

/* Mega-dropdown — rich region menu (Go2Africa / andBeyond pattern) */
.drop-menu { position: absolute; top: 100%; left: 0; background: var(--white); border: none; border-top: 3px solid var(--gold); box-shadow: 0 12px 40px rgba(0,0,0,.14); min-width: 560px; display: none; padding: 0; z-index: 200; }
.drop:hover .drop-menu { display: block; }
/* Aviation dropdown aligns right when near the right edge of the nav */
.drop:last-of-type .drop-menu,
.drop.align-right .drop-menu { left: auto; right: 0; }
.drop-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.drop-col { padding: 18px 0; }
.drop-col + .drop-col { border-left: 1px solid var(--bdr); }
.drop-col-head { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink3); padding: 0 18px 8px; border-bottom: 1px solid var(--bdr); margin-bottom: 4px; }
.drop-menu a { display: flex; align-items: center; gap: 10px; padding: 8px 18px; font-size: 13px; color: var(--ink2); transition: background .1s, color .1s; font-weight: 400; }
.drop-menu a:hover { background: var(--green-lt); color: var(--green); }
.drop-menu a .dm-flag { font-size: 16px; flex-shrink: 0; }
.drop-menu a .dm-text { line-height: 1.2; }
.drop-menu a .dm-sub { font-size: 10px; color: var(--ink3); display: block; }

/* Simple dropdowns (non-mega) */
.drop-simple { min-width: 180px; grid-template-columns: 1fr; }
.drop-simple .drop-col { padding: 6px 0; }
.drop-simple .drop-col-head { display: none; }

/* Nav strip right — search + plan trip CTA */
.nav-strip-right { display: flex; align-items: center; gap: 0; }
.nav-plan-cta { background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 8px 16px; white-space: nowrap; transition: filter .15s; }
.nav-plan-cta:hover { filter: brightness(1.06); }

.mast-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-search { display: flex; align-items: center; gap: 5px; background: var(--paper); border: 1px solid var(--bdr2); border-radius: 4px; padding: 6px 11px; font-size: 12px; font-family: var(--ff); color: var(--ink3); cursor: pointer; transition: border-color .15s; }
.btn-search:hover { border-color: var(--green); color: var(--green); }
.btn-wwu { background: var(--green); color: var(--white); font-size: 12px; font-weight: 600; padding: 8px 16px; border-radius: 4px; white-space: nowrap; transition: background .15s; }
.btn-wwu:hover { background: var(--green-dk); }

.burger { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 21px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ── MOBILE NAV ── */
.mob-nav { display: none; position: fixed; inset: 0; background: var(--white); z-index: 300; overflow-y: auto; transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1); }
.mob-nav.open { transform: translateX(0); }
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 299; opacity: 0; transition: opacity .3s ease; }
.mob-overlay.open { opacity: 1; }
.mob-top { background: var(--green); padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; }
.mob-tagline-strip { background: var(--green-dk); padding: 10px 18px; font-family: var(--ff-serif); font-size: 15px; font-weight: 700; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; }
.mob-tagline-strip span { font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.mob-top img { height: 30px; filter: brightness(0) invert(1); }
.mob-close { color: var(--white); font-size: 24px; cursor: pointer; line-height: 1; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .15s; }
.mob-close:hover { background: rgba(255,255,255,.15); }
/* Nav links */
.mob-links { list-style: none; padding-bottom: 80px; }
.mob-links > li { border-bottom: 1px solid var(--bdr); }
/* Accordion trigger rows */
.mob-accordion-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; font-size: 15px; font-weight: 600;
  color: var(--ink); cursor: pointer; width: 100%;
  background: none; border: none; font-family: var(--ff);
  text-align: left; transition: color .15s, background .15s;
}
.mob-accordion-btn:hover { color: var(--green); background: var(--green-lt); }
.mob-accordion-btn.gold-link { color: var(--gold-dk); }
.mob-accordion-chevron { width: 18px; height: 18px; border-radius: 50%; background: var(--bdr); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .22s ease, background .15s; }
.mob-accordion-btn.open .mob-accordion-chevron { transform: rotate(180deg); background: var(--green-lt); }
/* Simple link rows */
.mob-links > li > a { display: block; padding: 14px 18px; font-size: 15px; font-weight: 600; color: var(--ink); transition: color .15s, background .15s; }
.mob-links > li > a:hover { color: var(--green); background: var(--green-lt); }
.mob-links > li > a.gold-link { color: var(--gold-dk); font-weight: 700; }
/* Sub-menus — hidden by default, accordion-revealed */
.mob-sub { list-style: none; background: var(--paper); display: none; border-top: 1px solid var(--bdr); }
.mob-sub.open { display: block; }
.mob-sub li { border-bottom: 1px solid var(--bdr); }
.mob-sub li:last-child { border-bottom: none; }
.mob-sub a { display: flex; align-items: center; gap: 10px; padding: 11px 18px 11px 32px; font-size: 13px; color: var(--ink2); transition: color .15s, background .15s; }
.mob-sub a:hover { color: var(--green); background: var(--green-lt); }
.mob-sub-text { line-height: 1.2; }
.mob-sub-meta { font-size: 10px; color: var(--ink3); display: block; }
/* Plan Your Trip button inside mobile drawer */
.mob-plan-cta { display: block; margin: 16px 18px 8px; background: var(--gold); color: var(--ink); font-size: 14px; font-weight: 700; padding: 13px 18px; border-radius: 6px; text-align: center; transition: filter .15s; }
.mob-plan-cta:hover { filter: brightness(1.05); }

/* ── HERO CAROUSEL — PHOTO VERSION ── */
.hero-carousel { position: relative; overflow: hidden; min-height: 600px; background: var(--green-deep); }
.carousel-track { position: relative; min-height: 600px; }
.c-slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; transition: opacity .9s ease; pointer-events: none; z-index: 0; min-height: 600px; }
.c-slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
.slide-photo-wrap { position: absolute; inset: 0; overflow: hidden; }
.slide-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.06); transition: transform 9s ease; } .c-slide.active .slide-photo-wrap img { transform: scale(1); }
.c-slide.active .slide-photo-wrap img { transform: scale(1); }
.c-slide:nth-child(1) .slide-overlay { background: linear-gradient(to right,rgba(9,40,60,.82) 0%,rgba(9,40,60,.50) 52%,rgba(9,40,60,.18) 100%),linear-gradient(to top,rgba(0,0,0,.45) 0%,transparent 50%); }
.c-slide:nth-child(2) .slide-overlay { background: linear-gradient(to right,rgba(40,25,8,.84) 0%,rgba(40,25,8,.50) 52%,rgba(40,25,8,.16) 100%),linear-gradient(to top,rgba(0,0,0,.45) 0%,transparent 50%); }
.c-slide:nth-child(3) .slide-overlay { background: linear-gradient(to right,rgba(13,50,25,.84) 0%,rgba(13,50,25,.50) 52%,rgba(13,50,25,.16) 100%),linear-gradient(to top,rgba(0,0,0,.45) 0%,transparent 50%); }
.c-slide:nth-child(4) .slide-overlay { background: linear-gradient(to right,rgba(60,15,10,.84) 0%,rgba(60,15,10,.50) 52%,rgba(60,15,10,.16) 100%),linear-gradient(to top,rgba(0,0,0,.45) 0%,transparent 50%); }
.slide-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.slide-grain { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 160px; }
.slide-content { position: relative; z-index: 3; max-width: var(--max); margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center; width: 100%; }
.slide-text { transform: translateX(-22px); opacity: 0; transition: transform .7s ease .2s, opacity .7s ease .2s; }
.c-slide.active .slide-text { transform: translateX(0); opacity: 1; }
.slide-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.slide-kicker::before { content: ''; width: 20px; height: 2px; background: var(--gold); display: block; }
.slide-h1 { font-family: var(--ff-serif); font-size: clamp(28px, 4vw, 50px); font-weight: 800; line-height: 1.10; letter-spacing: -.025em; color: var(--white); margin-bottom: 10px; }
.slide-h1 .gold { color: var(--gold); }
.slide-tagline { font-family: var(--ff-serif); font-size: 26px; font-weight: 800; font-style: italic; color: var(--gold); letter-spacing: -.01em; margin-bottom: 14px; line-height: 1.1; }
.slide-desc { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.88); line-height: 1.75; max-width: 480px; margin-bottom: 28px; letter-spacing: .01em; }
.slide-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.slide-regions { transform: translateX(22px); opacity: 0; transition: transform .7s ease .35s, opacity .7s ease .35s; }
.c-slide.active .slide-regions { transform: translateX(0); opacity: 1; }
.carousel-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; align-items: center; }
.c-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; cursor: pointer; padding: 0; transition: background .3s, transform .3s; }
.c-dot.active { background: var(--gold); transform: scale(1.5); }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 44px; height: 44px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--white); transition: background .2s; backdrop-filter: blur(4px); }
.carousel-arrow:hover { background: rgba(255,255,255,.22); }
.carousel-arrow.prev-btn { left: 20px; }
.carousel-arrow.next-btn { right: 20px; }
.carousel-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--gold); z-index: 10; width: 0%; }
.carousel-progress.running { transition: width 6s linear; }
.carousel-pause { position: absolute; bottom: 18px; right: 18px; z-index: 10; width: 34px; height: 34px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--white); backdrop-filter: blur(4px); transition: background .2s; }
.carousel-pause:hover { background: rgba(255,255,255,.22); }
.carousel-pause .icon-pause { display: block; }
.carousel-pause .icon-play  { display: none; }
.carousel-pause.paused .icon-pause { display: none; }
.carousel-pause.paused .icon-play  { display: block; }
.carousel-counter { position: absolute; bottom: 52px; right: 18px; z-index: 10; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); letter-spacing: .06em; }
.hero-video-ctrl { display: none; }
@media (prefers-reduced-motion: reduce) { .c-slide,.slide-text,.slide-regions,.carousel-progress,.slide-photo-wrap img { transition: none !important; animation: none !important; } }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hero-kicker::before { content: ''; width: 20px; height: 2px; background: var(--gold); display: block; }
.hero-h1 { font-family: var(--ff-serif); font-size: clamp(32px, 4.2vw, 52px); font-weight: 800; line-height: 1.10; letter-spacing: -.025em; color: var(--white); margin-bottom: 10px; }
.hero-h1 .gold { color: var(--gold); }
.hero-tagline-main { font-family: var(--ff-serif); font-size: 26px; font-weight: 800; font-style: italic; color: var(--gold); letter-spacing: -.01em; margin-bottom: 14px; line-height: 1.1; }
.hero-desc { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.88); line-height: 1.75; max-width: 480px; margin-bottom: 28px; letter-spacing: .01em; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: var(--ink); font-size: 13px; font-weight: 700; font-family: var(--ff); padding: 12px 26px; border-radius: 4px; border: none; cursor: pointer; transition: filter .15s; }
.btn-gold:hover { filter: brightness(1.07); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 500; padding: 12px 20px; border: 1.5px solid rgba(255,255,255,.28); border-radius: 4px; transition: border-color .15s, color .15s; }
.btn-ghost:hover { border-color: rgba(255,255,255,.65); color: var(--white); }
.regions-label { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 11px; }
.regions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.region-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); border-radius: 6px; padding: 13px 8px; text-align: center; cursor: pointer; transition: background .2s, border-color .2s, transform .15s; }
.region-card:hover { background: rgba(247,197,2,.13); border-color: rgba(247,197,2,.4); transform: translateY(-2px); }
.region-icon { font-size: 20px; margin-bottom: 5px; display: block; }
.region-name { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,.82); }
.region-count { font-size: 9.5px; color: rgba(255,255,255,.32); margin-top: 2px; }
@media (max-width: 960px) { .slide-content { grid-template-columns: 1fr; padding: 60px 20px; } .slide-regions { display: none; } .carousel-arrow { display: none; } }
@media (max-width: 640px) { .hero-carousel,.carousel-track,.c-slide { min-height: 480px; } .slide-h1,.hero-h1 { font-size: 26px; } .slide-tagline,.hero-tagline-main { font-size: 20px; } }
/* ── EDITORIAL PULL-QUOTE ── */
.editorial-quote { background: var(--ink); padding: 52px 24px; }
.eq-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.eq-kicker { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); margin-bottom: 20px; }
.eq-quote { font-family: var(--ff-serif); font-size: clamp(18px,3vw,26px); font-style: italic; font-weight: 400; color: var(--white); line-height: 1.6; letter-spacing: -.01em; margin-bottom: 18px; }
.eq-quote::before { content: '\201C'; color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -.2em; margin-right: 2px; }
.eq-quote::after  { content: '\201D'; color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -.2em; margin-left: 2px; }
.eq-source { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.48); letter-spacing: .02em; text-transform: none; }
.eq-source a { color: var(--gold); border-bottom: 1px solid rgba(247,197,2,.3); transition: border-color .15s; }
.eq-source a:hover { border-color: var(--gold); }


/* ── GOOGLE TRANSLATE WIDGET ── */
.translate-wrap { position: relative; }

/* Translate button — globe icon only at all sizes */
.translate-btn {
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid var(--bdr2);
  border-radius: 50%; width: 34px; height: 34px;
  color: var(--ink2); cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  flex-shrink: 0;
}
.translate-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-lt); }
.translate-btn.open { border-color: var(--green); background: var(--green-lt); color: var(--green); }
.translate-label { display: none; }
.translate-chevron { display: none; }
.translate-globe { flex-shrink: 0; }

/* Dropdown panel */
.translate-panel {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--bdr2);
  border-top: 3px solid var(--green);
  border-radius: 4px; box-shadow: 0 8px 28px rgba(0,0,0,.12);
  min-width: 240px; z-index: 500;
  display: none; padding: 0 0 10px;
}
.translate-panel.open { display: block; }

/* Language buttons grid inside panel */
.translate-panel-head {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 14px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink3);
  border-bottom: 1px solid var(--bdr);
  margin-bottom: 8px;
}
.translate-langs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px; padding: 4px 12px 8px;
}
.translate-lang-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 4px;
  font-size: 12px; font-weight: 500; color: var(--ink2);
  border: 1px solid var(--bdr); background: var(--white);
  cursor: pointer; transition: all .15s; text-align: left;
  font-family: var(--ff);
}
.translate-lang-btn:hover { background: var(--green-lt); border-color: var(--green); color: var(--green); }
.translate-lang-btn.active { background: var(--green); border-color: var(--green); color: var(--white); font-weight: 600; }
.translate-lang-flag { font-size: 16px; flex-shrink: 0; }
.translate-lang-name { font-size: 11px; line-height: 1.2; }
.translate-lang-native { font-size: 9px; opacity: .65; display: block; }
.translate-panel-note {
  font-size: 10px; color: var(--ink3);
  text-align: center; padding: 6px 14px 0;
  border-top: 1px solid var(--bdr); margin-top: 4px; padding-top: 8px;
}

/* Hidden Google element — still needed for actual translation */
#google_translate_element { display: none; }
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }
#google_translate_element select { display: none; }

/* MOBILE: show globe icon only — hide label and chevron */
@media (max-width: 680px) {
  .translate-label { display: none; }
  .translate-chevron { display: none; }
  .translate-btn { padding: 7px 9px; border-radius: 50%; width: 34px; height: 34px; justify-content: center; }
  .translate-panel { right: -10px; min-width: 260px; }
}

/* ── ABOVE-FOLD NEWSLETTER STRIP — visible without scrolling (competitor pattern) ── */
.nl-strip { background: var(--gold-lt); border-bottom: 1px solid rgba(200,137,0,.2); padding: 10px 24px; }
.nl-strip-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.nl-strip-text { font-size: 13px; font-weight: 600; color: var(--ink2); flex: 1; min-width: 200px; }
.nl-strip-text span { color: var(--green); }
.nl-strip-form { display: flex; gap: 8px; flex-shrink: 0; }
.nl-strip-input { background: var(--white); border: 1px solid rgba(200,137,0,.35); border-radius: 4px; padding: 7px 14px; font-size: 12px; font-family: var(--ff); color: var(--ink); outline: none; width: 220px; transition: border-color .15s; }
.nl-strip-input:focus { border-color: var(--green); }
.nl-strip-btn { background: var(--green); color: var(--white); border: none; border-radius: 4px; padding: 7px 18px; font-size: 12px; font-weight: 700; font-family: var(--ff); cursor: pointer; white-space: nowrap; transition: background .15s; }
.nl-strip-btn:hover { background: var(--green-dk); }
.nl-strip-note { font-size: 10px; color: var(--ink3); }
@media (max-width: 640px) { .nl-strip-form { width: 100%; } .nl-strip-input { flex: 1; } }

/* ── DESTINATION SEARCH BAR (Go2Africa / SafariBookings pattern) ── */
.dest-search-bar { background: rgba(0,0,0,.55); backdrop-filter: blur(8px); padding: 0; }
.dest-search-inner { max-width: var(--max); margin: 0 auto; padding: 16px 24px; }
.dest-search-label { font-size: 11px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.dest-search-form { display: flex; gap: 8px; flex-wrap: wrap; }
.dest-search-select { flex: 1; min-width: 140px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 4px; padding: 10px 14px; font-size: 13px; font-family: var(--ff); color: var(--white); cursor: pointer; outline: none; transition: border-color .15s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,.5)' stroke-width='1.4' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.dest-search-select:focus { border-color: var(--gold); }
.dest-search-select option { background: var(--green-deep); color: var(--white); }
.dest-search-btn { background: var(--gold); color: var(--ink); border: none; border-radius: 4px; padding: 10px 24px; font-size: 13px; font-weight: 700; font-family: var(--ff); cursor: pointer; white-space: nowrap; transition: filter .15s; }
.dest-search-btn:hover { filter: brightness(1.06); }

/* ── RCA DESK SLIDER (Black Tomato editorial pattern) ── */
.eq-slider { position: relative; overflow: hidden; min-height: 140px; }
.eq-slide { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity .8s ease; pointer-events: none; }
.eq-slide.active { opacity: 1; pointer-events: auto; }
.eq-dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; position: relative; z-index: 2; }
.eq-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.25); border: none; cursor: pointer; padding: 0; transition: background .3s, transform .3s; }
.eq-dot.active { background: var(--gold); transform: scale(1.4); }

/* ── AVIATION & HOSPITALITY SECTION (VoyagesAfriq pattern) ── */
.avia-section { background: var(--ink); padding: 40px 24px; }
.avia-inner { max-width: var(--max); margin: 0 auto; }
.avia-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.avia-title { font-family: var(--ff-serif); font-size: 18px; font-weight: 700; color: var(--white); }
.avia-title span { color: var(--gold); }
.avia-more { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(247,197,2,.3); padding-bottom: 1px; }
.avia-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.avia-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 6px; padding: 16px; transition: background .2s, border-color .2s; cursor: pointer; }
.avia-card:hover { background: rgba(255,255,255,.09); border-color: rgba(247,197,2,.3); }
.avia-tag { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--terra-lt); margin-bottom: 7px; opacity: .9; }
.avia-card-title { font-family: var(--ff-serif); font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: 8px; }
.avia-card:hover .avia-card-title { color: var(--gold); }
.avia-card-meta { font-size: 10px; color: rgba(255,255,255,.35); }
@media (max-width: 768px) { .avia-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .avia-grid { grid-template-columns: 1fr; } }

/* ── DESTINATION CARDS WITH PHOTOS (andBeyond pattern) ── */
.dest-photo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.dest-photo-card { position: relative; height: 180px; border-radius: 6px; overflow: hidden; cursor: pointer; transition: transform .2s; }
.dest-photo-card:hover { transform: translateY(-4px); }
.dest-photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.dest-photo-card:hover img { transform: scale(1.06); }
.dest-photo-card .dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%); }
.dest-photo-card .dest-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 12px 10px; }
.dest-photo-card .dest-card-flag { font-size: 16px; display: block; margin-bottom: 3px; }
.dest-photo-card .dest-card-name { font-size: 13px; font-weight: 700; color: var(--white); display: block; }
.dest-photo-card .dest-card-sub { font-size: 10px; color: rgba(255,255,255,.6); }
.dest-photo-card .dest-card-guide { font-size: 10px; font-weight: 600; color: var(--terra-lt); margin-top: 4px; display: block; letter-spacing: .04em; }
/* Colour-coded placeholder backgrounds per region when no image */
.dest-bg-1 { background: linear-gradient(135deg, #1a3a2a 0%, #2d6040 100%); }
.dest-bg-2 { background: linear-gradient(135deg, #3a2a0a 0%, #8a5a1a 100%); }
.dest-bg-3 { background: linear-gradient(135deg, #0a2a3a 0%, #1a5a6a 100%); }
.dest-bg-4 { background: linear-gradient(135deg, #2a0a3a 0%, #5a1a6a 100%); }
.dest-bg-5 { background: linear-gradient(135deg, #3a1a0a 0%, #7a3a1a 100%); }
@media (max-width: 960px) { .dest-photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .dest-photo-grid { grid-template-columns: 1fr 1fr; } .dest-photo-card { height: 140px; } }

/* ── DESTINATION SEARCH — MOBILE MODAL (Fix 3) ── */
/* Desktop: keep existing dropdowns. Mobile: show modal */
.dest-search-bar { background: rgba(0,0,0,.55); backdrop-filter: blur(8px); }
.dest-search-inner { max-width: var(--max); margin: 0 auto; padding: 16px 24px; }
.dest-search-label { font-size: 11px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.dest-search-form { display: flex; gap: 8px; flex-wrap: wrap; }
.dest-search-select { flex: 1; min-width: 140px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 4px; padding: 10px 14px; font-size: 13px; font-family: var(--ff); color: var(--white); cursor: pointer; outline: none; transition: border-color .15s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,.5)' stroke-width='1.4' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.dest-search-select:focus { border-color: var(--gold); }
.dest-search-select option { background: var(--green-deep); color: var(--white); }
.dest-search-btn { background: var(--gold); color: var(--ink); border: none; border-radius: 4px; padding: 10px 24px; font-size: 13px; font-weight: 700; font-family: var(--ff); cursor: pointer; white-space: nowrap; transition: filter .15s; }
.dest-search-btn:hover { filter: brightness(1.06); }

/* Mobile tap-to-select button (replaces selects at ≤640px) */
.dest-mobile-search { display: none; }
.dest-mobile-btn { width: 100%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 4px; padding: 12px 16px; color: var(--white); font-size: 14px; font-family: var(--ff); font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: border-color .15s; }
.dest-mobile-btn:hover, .dest-mobile-btn:focus { border-color: var(--gold); outline: none; }
.dest-mobile-btn-icon { font-size: 18px; }
.dest-mobile-go { background: var(--gold); color: var(--ink); border: none; border-radius: 4px; padding: 12px; font-size: 14px; font-weight: 700; font-family: var(--ff); cursor: pointer; width: 100%; margin-top: 8px; transition: filter .15s; }
/* Destination modal overlay */
.dest-modal { display: none; position: fixed; inset: 0; z-index: 400; align-items: flex-end; }
.dest-modal.open { display: flex; }
.dest-modal-bg { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.dest-modal-sheet { position: relative; background: var(--white); width: 100%; border-radius: 16px 16px 0 0; padding: 0 0 24px; max-height: 80vh; overflow-y: auto; animation: slideUp .28s cubic-bezier(.4,0,.2,1); }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.dest-modal-handle { width: 36px; height: 4px; background: var(--bdr2); border-radius: 2px; margin: 12px auto 0; }
.dest-modal-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--bdr); }
.dest-modal-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.dest-modal-close { font-size: 22px; color: var(--ink3); cursor: pointer; line-height: 1; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .15s; }
.dest-modal-close:hover { background: var(--bdr); }
.dest-modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px 16px 8px; }
.dest-modal-item { border: 2px solid var(--bdr); border-radius: 8px; padding: 14px 10px; text-align: center; cursor: pointer; transition: border-color .15s, background .15s; }
.dest-modal-item:hover, .dest-modal-item.selected { border-color: var(--green); background: var(--green-lt); }
.dest-modal-flag { font-size: 26px; display: block; margin-bottom: 5px; }
.dest-modal-name { font-size: 12px; font-weight: 700; color: var(--ink); }
.dest-modal-sub { font-size: 10px; color: var(--ink3); margin-top: 2px; }

/* TRUST BAR ── */
.trust { background: var(--green-dk); padding: 9px 24px; }
.trust-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { font-size: 11.5px; color: rgba(255,255,255,.62); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.trust-item strong { color: var(--gold); font-weight: 700; }
.trust-sep { color: var(--terra-lt); opacity: .6; }

/* ── BODY LAYOUT ── */
/* AUDIT FIX: single-column main feed, NO sidebar categories widget */
.body-wrap { max-width: var(--max); margin: 0 auto; padding: 36px 24px 48px; display: grid; grid-template-columns: 1fr 296px; gap: 34px; align-items: start; }

/* ── SECTION HEAD ── */
.sec-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 3px solid var(--green); padding-bottom: 9px; margin-bottom: 18px; }
.sec-title { font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; font-family: var(--ff-serif); }
.sec-more { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--terra); border-bottom: 1px solid var(--terra-lt); padding-bottom: 1px; transition: border-color .15s, color .15s; }
.sec-more:hover { border-color: var(--terra); color: var(--terra-dk); }

/* ── FEATURED LEAD (with real photo) ── */
.featured { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); border: 1px solid var(--bdr); border-radius: 6px; overflow: hidden; margin-bottom: 28px; transition: box-shadow .2s; }
.featured:hover { box-shadow: 0 6px 28px rgba(30,128,65,.12); }
.feat-img { position: relative; min-height: 300px; overflow: hidden; }
.feat-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.featured:hover .feat-img img { transform: scale(1.03); }
.feat-badge { position: absolute; top: 12px; left: 12px; background: var(--terra); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; z-index: 1; }
.feat-body { padding: 26px 24px; display: flex; flex-direction: column; justify-content: center; }
.art-cat { font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); margin-bottom: 7px; }
.feat-title { font-size: 19px; font-weight: 700; line-height: 1.28; letter-spacing: -.015em; color: var(--ink); margin-bottom: 11px; transition: color .15s; font-family: var(--ff-serif); }
.featured:hover .feat-title { color: var(--green); }
.feat-excerpt { font-size: 13px; font-weight: 300; color: var(--ink2); line-height: 1.7; margin-bottom: 16px; }
.art-meta { font-size: 11px; color: var(--ink3); display: flex; align-items: center; gap: 8px; }
.art-meta .author { font-weight: 600; color: var(--ink2); }
.art-meta .dot { color: var(--bdr2); }

/* ── ARTICLE GRID (3-col with photos) ── */
.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.art-card { background: var(--white); border: 1px solid var(--bdr); border-radius: 6px; overflow: hidden; transition: box-shadow .2s, transform .15s; }
.art-card:hover { box-shadow: 0 4px 18px rgba(30,128,65,.10); transform: translateY(-2px); }
.card-img { height: 150px; overflow: hidden; position: relative; background: var(--green-lt); }
.card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.art-card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 14px; }
.card-cat { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); margin-bottom: 5px; }
.card-title { font-size: 13px; font-weight: 700; line-height: 1.4; color: var(--ink); margin-bottom: 8px; transition: color .15s; font-family: var(--ff-serif); }
.art-card:hover .card-title { color: var(--green); }
.card-meta { font-size: 10px; color: var(--ink3); }

/* ── LIST ARTICLES ── */
.art-list { margin-bottom: 28px; }
.list-item { display: grid; grid-template-columns: 96px 1fr; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--bdr); align-items: start; }
.list-item:last-child { border-bottom: none; }
.list-img { height: 70px; border-radius: 4px; overflow: hidden; position: relative; background: var(--green-lt); }
.list-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.list-item:hover .list-img img { transform: scale(1.05); }
.list-cat { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); margin-bottom: 3px; }
.list-title { font-size: 13px; font-weight: 700; line-height: 1.38; color: var(--ink); margin-bottom: 5px; transition: color .15s; font-family: var(--ff-serif); }
.list-item:hover .list-title { color: var(--green); }
.list-meta { font-size: 10px; color: var(--ink3); }

/* ── SIDEBAR ── */
/* AUDIT FIX: NO Categories widget. Only: Trending, Newsletter, Popular Posts (filtered) */
.widget { background: var(--white); border: 1px solid var(--bdr); border-radius: 6px; overflow: hidden; margin-bottom: 20px; }
.widget-head { padding: 12px 16px 10px; border-bottom: 2.5px solid var(--green); font-size: 13.5px; font-weight: 700; color: var(--ink); }

/* Trending */
.trend-item { display: flex; gap: 9px; padding: 9px 16px; align-items: start; cursor: pointer; transition: background .1s; border-bottom: 1px solid var(--bdr); }
.trend-item:last-child { border-bottom: none; }
.trend-item:hover { background: var(--green-lt); }
.trend-num { font-size: 17px; font-weight: 800; font-style: italic; color: var(--terra-lt); line-height: 1.1; flex-shrink: 0; width: 20px; text-align: right; }
.trend-title { font-size: 12px; font-weight: 500; line-height: 1.4; color: var(--ink2); }
.trend-item:hover .trend-title { color: var(--green); }

/* Newsletter — AUDIT FIX: working form rendered, not just heading */
.nl-widget { background: var(--green); }
.nl-widget .widget-head { background: var(--green-dk); border-bottom-color: rgba(255,255,255,.15); color: var(--white); }
.nl-body { padding: 15px; }
.nl-body p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.68); line-height: 1.65; margin-bottom: 11px; }
.nl-input { width: 100%; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.2); border-radius: 4px; padding: 9px 11px; font-size: 12px; font-family: var(--ff); color: var(--white); margin-bottom: 8px; outline: none; transition: border-color .15s; }
.nl-input::placeholder { color: rgba(255,255,255,.32); }
.nl-input:focus { border-color: var(--gold); }
.nl-btn { width: 100%; background: var(--gold); color: var(--ink); border: none; border-radius: 4px; padding: 9px; font-size: 12px; font-weight: 700; font-family: var(--ff); cursor: pointer; transition: filter .15s; letter-spacing: .03em; }
.nl-btn:hover { filter: brightness(1.06); }
.nl-note { font-size: 10px; color: rgba(255,255,255,.28); margin-top: 7px; line-height: 1.5; }

/* Popular Posts — AUDIT FIX: only travel/culture/adventure articles */
.pop-item { display: flex; gap: 10px; padding: 10px 16px; border-bottom: 1px solid var(--bdr); cursor: pointer; transition: background .1s; align-items: start; }
.pop-item:last-child { border-bottom: none; }
.pop-item:hover { background: var(--green-lt); }
.pop-img { width: 58px; height: 46px; border-radius: 3px; overflow: hidden; flex-shrink: 0; position: relative; background: var(--green-lt); }
.pop-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pop-title { font-size: 11.5px; font-weight: 500; line-height: 1.38; color: var(--ink2); }
.pop-item:hover .pop-title { color: var(--green); }
.pop-cat { font-size: 9px; color: var(--terra); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-top: 3px; }

/* ── WHY RCA AUTHORITY SECTION ── */
.why-rca { background: var(--paper); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); padding: 52px 24px; }
.why-inner { max-width: var(--max); margin: 0 auto; }
.why-head { text-align: center; margin-bottom: 40px; }
.why-kicker { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); margin-bottom: 10px; }
.why-title { font-family: var(--ff-serif); font-size: 28px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--white); border: 1px solid var(--bdr); border-radius: 8px; padding: 28px 24px; text-align: center; transition: box-shadow .2s, transform .15s; }
.why-card:hover { box-shadow: 0 6px 24px rgba(200,121,58,.12); border-color: var(--terra-lt); transform: translateY(-3px); }
.why-icon { width: 52px; height: 52px; background: var(--terra-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--terra-dk); }
.why-card-title { font-family: var(--ff-serif); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.why-card-desc { font-size: 13px; font-weight: 300; color: var(--ink2); line-height: 1.72; }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } .why-title { font-size: 22px; } }

/* ── DESTINATIONS HUB — AUDIT FIX: new section ── */
.destinations { background: var(--green-deep); padding: 46px 24px; }
.dest-inner { max-width: var(--max); margin: 0 auto; }
.dest-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 22px; }
.dest-h { font-size: 25px; font-weight: 800; letter-spacing: -.02em; color: var(--white); }
.dest-sub { font-size: 12.5px; color: rgba(255,255,255,.48); margin-top: 3px; }
.dest-all { font-size: 11px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(247,197,2,.3); padding-bottom: 1px; transition: border-color .15s; }
.dest-all:hover { border-color: var(--gold); }
.dest-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.dest-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: 6px; padding: 15px 10px; text-align: center; cursor: pointer; transition: background .2s, border-color .2s, transform .15s; }
.dest-card:hover { background: rgba(247,197,2,.10); border-color: rgba(247,197,2,.28); transform: translateY(-3px); }
.dest-flag { font-size: 22px; margin-bottom: 7px; display: block; }
.dest-name { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.82); }
.dest-stories { font-size: 9.5px; color: rgba(255,255,255,.28); margin-top: 2px; }

/* ── WORK WITH US — AUDIT FIX: visible on homepage ── */
.work-strip { background: var(--gold); padding: 24px; }
.work-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.work-h { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.work-sub { font-size: 12.5px; color: var(--ink2); margin-top: 3px; font-weight: 300; }
.work-cta { background: var(--green); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 11px 26px; border-radius: 4px; transition: background .15s; flex-shrink: 0; }
.work-cta:hover { background: var(--green-dk); }

/* ── FLOATING PLAN YOUR TRIP CTA — mobile only (Fix 5) ── */
.mob-float-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--gold);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.mob-float-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: var(--white);
  font-size: 15px; font-weight: 700; font-family: var(--ff);
  padding: 13px; border-radius: 8px; transition: background .15s;
}
.mob-float-cta a:hover { background: var(--green-dk); }
@media (max-width: 960px) { .mob-float-cta { display: block; } }

/* Pad body so content isn't hidden behind floating bar */
@media (max-width: 960px) { body { padding-bottom: 64px; } }


/* ═══════════════════════════════════════════════════
   ABOUT THE PLATFORM SECTION (Gap 1)
   ═══════════════════════════════════════════════════ */
.about-section { background: var(--white); padding: 72px 24px; }
.about-inner { max-width: var(--max); margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-left {}
.about-kicker { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); margin-bottom: 14px; }
.about-headline { font-family: var(--ff-serif); font-size: clamp(26px,3vw,38px); font-weight: 800; color: var(--ink); line-height: 1.18; letter-spacing: -.02em; margin-bottom: 20px; }
.about-headline span { color: var(--green); font-style: italic; }
.about-body { font-size: 15px; font-weight: 300; color: var(--ink2); line-height: 1.85; margin-bottom: 24px; }
.about-body strong { font-weight: 600; color: var(--ink); }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 32px 0; }
.about-stat { text-align: center; padding: 20px 12px; background: var(--paper); border-radius: 6px; border-top: 3px solid var(--gold); }
.about-stat-num { font-family: var(--ff-serif); font-size: 30px; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 6px; }
.about-stat-label { font-size: 11px; color: var(--ink3); line-height: 1.45; }
.about-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: var(--white); font-size: 13px; font-weight: 700; padding: 12px 24px; border-radius: 4px; transition: background .15s; margin-top: 8px; }
.about-cta:hover { background: var(--green-dk); }
.about-right {}
.about-pillars { display: flex; flex-direction: column; gap: 0; }
.about-pillar { padding: 24px 0; border-bottom: 1px solid var(--bdr); }
.about-pillar:first-child { padding-top: 0; }
.about-pillar:last-child { border-bottom: none; padding-bottom: 0; }
.about-pillar-num { font-family: var(--ff-serif); font-size: 13px; font-weight: 700; font-style: italic; color: var(--terra); margin-bottom: 6px; }
.about-pillar-title { font-family: var(--ff-serif); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.about-pillar-body { font-size: 14px; font-weight: 300; color: var(--ink2); line-height: 1.78; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 560px) { .about-stats { grid-template-columns: 1fr 1fr; } .about-section { padding: 48px 16px; } }

/* ═══════════════════════════════════════════════════
   WORK WITH US — MEDIA PARTNERSHIPS (Gap 2)
   ═══════════════════════════════════════════════════ */
.wwu-section { background: var(--green-deep); padding: 72px 24px; }
.wwu-inner { max-width: var(--max); margin: 0 auto; }
.wwu-top { text-align: center; margin-bottom: 52px; }
.wwu-kicker { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); margin-bottom: 12px; }
.wwu-headline { font-family: var(--ff-serif); font-size: clamp(24px,3vw,36px); font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.wwu-sub { font-size: 14px; color: rgba(255,255,255,.55); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.wwu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 48px; }
.wwu-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 28px 22px; transition: background .2s, border-color .2s; }
.wwu-card:hover { background: rgba(255,255,255,.09); border-color: rgba(247,197,2,.25); }
.wwu-card-icon { width: 44px; height: 44px; background: rgba(247,197,2,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.wwu-card-title { font-family: var(--ff-serif); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.wwu-card-body { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 14px; }
.wwu-card-detail { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: .04em; }
.wwu-careers { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 32px; }
.wwu-careers-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.wwu-careers-title { font-family: var(--ff-serif); font-size: 20px; font-weight: 700; color: var(--white); }
.wwu-careers-email { font-size: 12px; color: var(--gold); border-bottom: 1px solid rgba(247,197,2,.3); padding-bottom: 1px; }
.wwu-roles { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.wwu-role { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 6px; padding: 16px; }
.wwu-role-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.wwu-role-type { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--terra); }
.wwu-role-desc { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 6px; line-height: 1.6; }
.wwu-contact-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--ink); font-size: 13px; font-weight: 700; padding: 12px 28px; border-radius: 4px; margin-top: 24px; transition: filter .15s; }
.wwu-contact-btn:hover { filter: brightness(1.06); }
@media (max-width: 900px) { .wwu-grid { grid-template-columns: 1fr; } .wwu-roles { grid-template-columns: 1fr; } .wwu-section { padding: 48px 16px; } }

/* ═══════════════════════════════════════════════════
   REGION HUB SECTION (Gap 6)
   ═══════════════════════════════════════════════════ */
.region-hub { background: var(--paper); padding: 72px 24px; }
.region-hub-inner { max-width: var(--max); margin: 0 auto; }
.region-hub-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 12px; }
.region-hub-kicker { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.region-hub-title { font-family: var(--ff-serif); font-size: clamp(22px,3vw,32px); font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.region-hub-all { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); border-bottom: 1px solid var(--green-md); padding-bottom: 1px; }
.region-hub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.region-hub-card { background: var(--white); border: 1px solid var(--bdr); border-radius: 8px; overflow: hidden; transition: box-shadow .2s, transform .15s; }
.region-hub-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.10); transform: translateY(-3px); }
.region-hub-card-img { height: 160px; background: var(--green-deep); position: relative; overflow: hidden; }
.region-hub-card-img-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 64px; opacity: .25; }
.region-hub-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(8,45,22,.85) 0%,rgba(8,45,22,.2) 60%); }
.region-hub-card-region { position: absolute; bottom: 12px; left: 14px; }
.region-hub-card-name { font-family: var(--ff-serif); font-size: 20px; font-weight: 800; color: var(--white); line-height: 1; }
.region-hub-card-nations { font-size: 10px; font-weight: 600; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; margin-top: 3px; }
.region-hub-card-body { padding: 16px 18px 18px; }
.region-hub-card-desc { font-size: 13px; color: var(--ink2); line-height: 1.65; margin-bottom: 14px; font-weight: 300; }
.region-hub-card-stories { display: flex; align-items: center; justify-content: space-between; }
.region-hub-card-count { font-size: 11px; color: var(--ink3); }
.region-hub-card-link { font-size: 12px; font-weight: 700; color: var(--terra); border-bottom: 1px solid var(--terra-lt); padding-bottom: 1px; transition: border-color .15s; }
.region-hub-card-link:hover { border-color: var(--terra); }
@media (max-width: 900px) { .region-hub-grid { grid-template-columns: 1fr 1fr; } .region-hub { padding: 48px 16px; } }
@media (max-width: 560px) { .region-hub-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════
   EDITORIAL TEAM (Gap 10)
   ═══════════════════════════════════════════════════ */
.team-section { background: var(--white); padding: 72px 24px; border-top: 1px solid var(--bdr); }
.team-inner { max-width: var(--max); margin: 0 auto; }
.team-top { text-align: center; margin-bottom: 48px; }
.team-kicker { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); margin-bottom: 12px; }
.team-headline { font-family: var(--ff-serif); font-size: clamp(22px,3vw,32px); font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin-bottom: 12px; }
.team-sub { font-size: 14px; color: var(--ink3); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 36px; }
.team-card { text-align: center; }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--green-lt); border: 3px solid var(--bdr2); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-family: var(--ff-serif); font-size: 22px; font-weight: 800; color: var(--green); overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--ff-serif); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.team-role { font-size: 11px; font-weight: 600; color: var(--terra); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.team-bio { font-size: 12px; color: var(--ink3); line-height: 1.6; }
.team-authors-row { border-top: 1px solid var(--bdr); padding-top: 28px; }
.team-authors-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink3); margin-bottom: 16px; text-align: center; }
.team-authors-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.team-author-card { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--paper); border: 1px solid var(--bdr); border-radius: 6px; transition: border-color .15s, background .15s; }
.team-author-card:hover { border-color: var(--green); background: var(--green-lt); }
.team-author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green-lt); border: 2px solid var(--bdr2); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--green); flex-shrink: 0; }
.team-author-name { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.team-author-beat { font-size: 10px; color: var(--ink3); margin-top: 2px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2,1fr); } .team-authors-grid { grid-template-columns: repeat(2,1fr); } .team-section { padding: 48px 16px; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr 1fr; } .team-authors-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════
   OMIREN STYLES FEATURE SECTION (Gap 12)
   ═══════════════════════════════════════════════════ */
.omiren-section { background: var(--green-deep); padding: 72px 24px; }
.omiren-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.omiren-left {}
.omiren-kicker { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.omiren-kicker::before { content: ''; width: 24px; height: 2px; background: var(--terra); display: block; }
.omiren-headline { font-family: var(--ff-serif); font-size: clamp(24px,3vw,38px); font-weight: 800; color: var(--white); line-height: 1.18; letter-spacing: -.02em; margin-bottom: 16px; }
.omiren-headline span { color: var(--gold); font-style: italic; }
.omiren-body { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.85; margin-bottom: 28px; }
.omiren-pillars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.omiren-pillar { display: flex; align-items: flex-start; gap: 12px; }
.omiren-pillar-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.omiren-pillar-text { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }
.omiren-pillar-text strong { color: var(--white); font-weight: 600; }
.omiren-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--ink); font-size: 13px; font-weight: 700; padding: 12px 24px; border-radius: 4px; transition: filter .15s; }
.omiren-cta:hover { filter: brightness(1.06); }
.omiren-right {}
.omiren-articles { display: flex; flex-direction: column; gap: 14px; }
.omiren-article { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: 6px; padding: 16px 18px; display: flex; gap: 14px; align-items: flex-start; transition: background .2s, border-color .2s; }
.omiren-article:hover { background: rgba(255,255,255,.09); border-color: rgba(247,197,2,.2); }
.omiren-article-num { font-family: var(--ff-serif); font-size: 24px; font-weight: 800; color: rgba(247,197,2,.25); flex-shrink: 0; line-height: 1; }
.omiren-article-cat { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); margin-bottom: 5px; }
.omiren-article-title { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.45; transition: color .15s; }
.omiren-article:hover .omiren-article-title { color: var(--gold); }
.omiren-article-meta { font-size: 10px; color: rgba(255,255,255,.3); margin-top: 5px; }
@media (max-width: 900px) { .omiren-inner { grid-template-columns: 1fr; gap: 40px; } .omiren-section { padding: 48px 16px; } }

/* ═══════════════════════════════════════════════════
   CONTACT SECTION (Gap 3)
   ═══════════════════════════════════════════════════ */
.contact-section { background: var(--paper); padding: 72px 24px; border-top: 1px solid var(--bdr); }
.contact-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-left {}
.contact-kicker { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); margin-bottom: 14px; }
.contact-headline { font-family: var(--ff-serif); font-size: clamp(24px,3vw,34px); font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin-bottom: 16px; line-height: 1.2; }
.contact-body { font-size: 14px; color: var(--ink2); line-height: 1.8; margin-bottom: 32px; font-weight: 300; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon { width: 38px; height: 38px; background: var(--green-lt); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); }
.contact-detail-label { font-size: 10px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; color: var(--ink3); margin-bottom: 3px; }
.contact-detail-value { font-size: 14px; font-weight: 500; color: var(--ink); }
.contact-detail-value a { color: var(--green); border-bottom: 1px solid var(--green-lt); transition: border-color .15s; }
.contact-detail-value a:hover { border-color: var(--green); }
.contact-right {}
.contact-enquiry-types { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.contact-type { border: 1.5px solid var(--bdr2); border-radius: 6px; padding: 14px; cursor: pointer; transition: border-color .15s, background .15s; }
.contact-type:hover, .contact-type.selected { border-color: var(--green); background: var(--green-lt); }
.contact-type-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.contact-type-sub { font-size: 11px; color: var(--ink3); }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-field { display: flex; flex-direction: column; gap: 5px; }
.cf-label { font-size: 11px; font-weight: 600; color: var(--ink2); letter-spacing: .03em; }
.cf-input, .cf-select, .cf-textarea { border: 1.5px solid var(--bdr2); border-radius: 5px; padding: 10px 13px; font-size: 13px; font-family: var(--ff); color: var(--ink); background: var(--white); outline: none; transition: border-color .15s; }
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: var(--green); }
.cf-textarea { resize: vertical; min-height: 100px; }
.cf-submit { background: var(--green); color: var(--white); border: none; border-radius: 5px; padding: 13px; font-size: 14px; font-weight: 700; font-family: var(--ff); cursor: pointer; transition: background .15s; margin-top: 4px; }
.cf-submit:hover { background: var(--green-dk); }
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 40px; } .contact-section { padding: 48px 16px; } }
@media (max-width: 560px) { .cf-row { grid-template-columns: 1fr; } .contact-enquiry-types { grid-template-columns: 1fr; } }

/* ── FOOTER — gold brand background ── */
.footer { background: var(--gold); color: #000000; padding: 46px 24px 22px; }
.foot-logo img { height: 36px; filter: none; opacity: 1; }
.foot-tagline-brand { font-size: 14px; font-style: italic; color: #000000; font-weight: 700; margin-bottom: 10px; }
.foot-desc { font-size: 12px; font-weight: 300; color: #000000; line-height: 1.7; max-width: 256px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 38px; margin-bottom: 34px; padding-bottom: 34px; border-bottom: 1px solid rgba(0,0,0,.25); }
.foot-logo { margin-bottom: 8px; }
.foot-col-lbl { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #000000; margin-bottom: 13px; }
.foot-links { list-style: none; }
.foot-links li { margin-bottom: 8px; }
.foot-links a { font-size: 12px; color: #000000; transition: color .15s; }
.foot-links a:hover { color: #000000; font-weight: 700; text-decoration: underline; }
.foot-socials { display: flex; gap: 7px; margin-top: 17px; }
.social { width: 30px; height: 30px; border: 1.5px solid rgba(0,0,0,.35); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #000000; transition: border-color .15s, background .15s, color .15s; }
.social:hover { border-color: var(--green); background: var(--green); color: var(--white); }
.foot-btm { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: #000000; flex-wrap: wrap; gap: 10px; }
.foot-btm a { color: #000000; margin-left: 16px; transition: color .15s; }
.foot-btm a:hover { color: #000000; text-decoration: underline; }
/* AUDIT FIX: "Africa, In Full." tagline prominent in footer brand section, not just copyright line */

/* foot-inner handled by existing class */
.foot-inner { max-width: var(--max); margin: 0 auto; }

/* Accessibility: pause video animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap video { animation: none; }
  .hero-grain { animation: none; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile-first breakpoints
   ══════════════════════════════════════════ */

/* ── TABLET: 960px and below ── */
@media (max-width: 960px) {
  /* Nav: hide desktop nav, show burger */
  .nav { display: none; }
  .burger { display: flex; }
  .mob-nav { display: block; }

  /* Tagline: smaller, hide sub-label */
  .mast-tagline-sub { display: none; }
  .mast-tagline-text { font-size: 15px; }

  /* Work With Us: hide on tablet — lives in mobile drawer */
  .btn-wwu { display: none; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .slide-content { grid-template-columns: 1fr; padding: 60px 20px; }
  .slide-regions { display: none; }
  .carousel-arrow { display: none; }

  /* Layout */
  .body-wrap { grid-template-columns: 1fr; }
  .art-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .avia-grid { grid-template-columns: 1fr 1fr; }
  .dest-photo-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── MOBILE: 640px and below ── */
@media (max-width: 640px) {
  /* Masthead: compact */
  .mast-top-inner { height: 48px; padding: 0 16px; }

  .logo img { height: 30px; }

  /* Nav bar: hide plan cta text, compress */
  .mast-nav-bar { display: none; }

  /* Ticker: smaller text */
  .ticker { height: 30px; }
  .ticker-scroll span { font-size: 11px; padding: 0 24px; }
  .ticker-lbl { font-size: 9px; padding: 0 10px; }

  /* Hero */
  .hero-carousel, .carousel-track, .c-slide { min-height: 420px; }
  .slide-h1, .hero-h1 { font-size: 24px; }
  .slide-tagline, .hero-tagline-main { font-size: 18px; }
  .slide-content { padding: 40px 16px 60px; }
  .slide-btns { flex-direction: column; gap: 8px; }
  .btn-gold, .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .carousel-dots { bottom: 14px; }
  .carousel-counter { display: none; }
  .carousel-pause { bottom: 10px; right: 10px; }

  /* Destination search: hide desktop selects, show mobile button */
  .dest-search-inner { padding: 12px 16px; }
  .dest-desktop-only { display: none; }
  .dest-mobile-search { display: block; }

  /* Newsletter strip */
  .nl-strip-inner { flex-direction: column; gap: 10px; }
  .nl-strip-form { width: 100%; }
  .nl-strip-input { flex: 1; width: 100%; }

  /* Main content */
  .body-wrap { padding: 20px 16px 36px; }
  .featured { grid-template-columns: 1fr; }
  .feat-img { min-height: 200px; }
  .art-grid { grid-template-columns: 1fr; }

  /* Sections */
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-photo-grid { grid-template-columns: 1fr 1fr; }
  .dest-photo-card { height: 130px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-title { font-size: 22px; }
  .avia-grid { grid-template-columns: 1fr; }

  /* Aviation section */
  .avia-section { padding: 28px 16px; }

  /* Editorial quote slider */
  .editorial-quote { padding: 36px 16px; }
  .eq-quote { font-size: clamp(16px, 4vw, 20px); }

  /* Destinations */
  .destinations { padding: 32px 16px; }
  .dest-top { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Work With Us strip */
  .work-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .work-strip { padding: 20px 16px; }

  /* Footer */
  .foot-grid { grid-template-columns: 1fr; }
  .footer { padding: 32px 16px 20px; }
  .foot-btm { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Translate panel on mobile: full-width friendly */
  .translate-panel { right: -8px; min-width: 280px; }
  .translate-langs { grid-template-columns: 1fr 1fr; gap: 5px; }
}

/* Hide tagline at very small screens only */
@media (max-width: 480px) {
  .mast-tagline { display: none; }
}
/* ── SMALL MOBILE: 380px and below ── */
@media (max-width: 380px) {
  .slide-h1 { font-size: 22px; }
  .mast-utils { gap: 6px; }
  .translate-langs { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-photo-grid { grid-template-columns: 1fr; }
}
