/* ============================================================
   KIWI GRAND TOURS -- style.css
   Fonts: Cormorant Garamond (display) + Inter (body)
   Palette:
     Forest Green  #0A1628  (primary dark)
     Gold          #c9a84c  (accent)
     Cream         #f7f3ed  (light bg)
     Charcoal      #1c1c1c  (dark text)
     Stone         #6b6b6b  (muted)
     White         #ffffff
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #1c1c1c;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

em { font-style: italic; }
strong { font-weight: 500; }

/* ─── LAYOUT UTILITIES ──────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 760px; }

.section { padding: 6rem 0; }
.section--dark  { background: #0A1628; color: #fff; }
.section--cream { background: #f7f3ed; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn--large { padding: 1.1rem 2.6rem; font-size: 0.9rem; }

.btn-primary {
  background: #c9a84c;
  color: #1c1c1c;
  border: 1.5px solid #c9a84c;
}
.btn-primary:hover {
  background: #b8922e;
  border-color: #b8922e;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #1c1c1c;
  border: 1.5px solid #1c1c1c;
}
.btn-outline:hover {
  background: #1c1c1c;
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ─── SECTION HEADERS ──────────────────────────────────────── */
.section-header { margin-bottom: 3.5rem; }
.section-header--light h2,
.section-header--light .section-eyebrow { color: #fff; }
.section-header--light .section-eyebrow::after { background: rgba(255,255,255,0.4); }

.section-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.9rem;
}
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #c9a84c;
  vertical-align: middle;
  margin-left: 0.7rem;
}

/* ─── NAVIGATION ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Always solid -- readable on any page background */
  background: #0A1628;
  transition: box-shadow 0.3s ease;
  padding: 0;
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

/* ── Top utility bar -- sister brand + quick contact ── */
.top-bar {
  background: #122a1e;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.35rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top-bar-label {
  color: rgba(255,255,255,0.38);
}
.top-bar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #c9a84c;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.top-bar-brand:hover { color: #e8c870; }
.top-bar-brand svg  { opacity: 0.7; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.top-bar-right a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.top-bar-right a:hover { color: #fff; }
@media (max-width: 768px) {
  .top-bar { padding: 0.3rem 1rem; }
  .top-bar-right { display: none; }
  .top-bar-label { display: none; }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  min-height: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Logo: image version ── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(1.05);
}

/* ── Logo: text fallback ── */
.logo-kiwi,
.logo-tours {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
}
.logo-grand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: #c9a84c;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover { color: #c9a84c; }

.nav-cta {
  background: #c9a84c !important;
  color: #1c1c1c !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: #b8922e !important; color: #1c1c1c !important; }

/* Sister brand link -- desktop hidden, mobile shown (controlled by header.php inline style) */
.nav-sister-mobile { display: none !important; }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;        /* flush -- no gap, ::before bridges it */
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 200px;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  padding: 0.5rem 0;
  z-index: 200;
}

/* Invisible 20px bridge above the dropdown --
   keeps hover active while mouse travels from link to menu */
.dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -10px;
  right: -10px;
  height: 20px;
}

/* Pure CSS hover -- works without JS */
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
}

/* JS-toggled class (mobile / keyboard) */
.has-dropdown.dropdown-open .dropdown {
  opacity: 1;
  pointer-events: all;
}

.dropdown li a {
  color: #1c1c1c !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.85rem !important;
  padding: 0.7rem 1.4rem;
  display: block;
  transition: color 0.15s, background 0.15s;
}
.dropdown li a:hover,
.dropdown li a.dropdown-active { color: #c9a84c !important; background: #f7f3ed; }

/* Chevron rotates when open */
.nav-dropdown-trigger .chevron {
  display: inline-block;
  transition: transform 0.2s ease;
  vertical-align: middle;
  margin-left: 3px;
}
.has-dropdown.dropdown-open .nav-dropdown-trigger .chevron {
  transform: rotate(180deg);
}

/* Active nav link indicator */
.nav-links a.nav-active { color: #c9a84c !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,25,18,0.55) 0%,
    rgba(10,25,18,0.35) 50%,
    rgba(10,25,18,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: var(--nav-h, 72px);
}
.hero-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1.2rem;
}
.hero-headline {
  color: #fff;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-dot {
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { cy: 7; opacity: 1; }
  50% { cy: 13; opacity: 0.4; }
}

/* ─── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  background: #0A1628;
  color: #fff;
  padding: 1.6rem 0;
}
.trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.6rem 2.5rem;
}
.trust-list li strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #c9a84c;
}
.trust-list li span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
  padding: 0 !important;
}

/* ─── PILLARS ────────────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: #f7f3ed;
  padding: 2.5rem 2rem;
  border-radius: 4px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.pillar-card--featured {
  background: #0A1628;
  color: #fff;
}
.pillar-card--featured .pillar-num { color: rgba(255,255,255,0.12); }
.pillar-card--featured h3 { color: #c9a84c; }
.pillar-card--featured p { color: rgba(255,255,255,0.8); }
.pillar-card--featured .pillar-link { color: rgba(255,255,255,0.7); }
.pillar-card--featured .pillar-link:hover { color: #c9a84c; }
.pillar-card--featured svg { stroke: rgba(255,255,255,0.8); }

.pillar-num {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(10,22,40,0.1);
  line-height: 1;
}
.pillar-icon {
  margin-bottom: 1.5rem;
  color: #c9a84c;
}
.pillar-card--featured .pillar-icon { color: #c9a84c; }
.pillar-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.pillar-card p {
  font-size: 0.9rem;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.pillar-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0A1628;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.pillar-link:hover { color: #c9a84c; }

/* ─── DESTINATIONS ──────────────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 260px;
  grid-template-rows: 300px 300px;
  gap: 1rem;
}
.dest-col-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: block;
}
.dest-card--tall { grid-row: 1 / 3; }
.dest-col-right .dest-card { flex: 1; }
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.04); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,18,0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
}
.dest-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.3rem;
}
.dest-overlay h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.dest-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}
.dest-card--cta {
  background: #c9a84c;
  grid-row: 1 / 3;
  cursor: pointer;
  transition: background 0.25s;
}
.dest-card--cta:hover { background: #b8922e; }
.dest-cta-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #0A1628;
  text-align: center;
  padding: 1.5rem;
}
.dest-cta-content span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dest-cta-content h3 {
  font-size: 2rem;
  color: #0A1628;
}

/* ─── WHY US ─────────────────────────────────────────────────── */
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-us-text h2 { margin-bottom: 1rem; }
.why-us-text > p { font-size: 0.95rem; color: #4a4a4a; margin-bottom: 2rem; }
.why-list { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #2a2a2a;
}
.why-list li svg { flex-shrink: 0; margin-top: 3px; stroke: #c9a84c; }

.why-us-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: #f7f3ed;
  padding: 1.8rem 1.5rem;
  border-radius: 4px;
  border-left: 3px solid #c9a84c;
}
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #0A1628;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: #5a5a5a;
  line-height: 1.4;
}

/* ─── TESTIMONIAL ────────────────────────────────────────────── */
.testimonial-quote {
  text-align: center;
  border: none;
}
.testimonial-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: #0A1628;
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonial-quote p::before {
  content: '\201C';
  font-size: 5rem;
  color: #c9a84c;
  opacity: 0.3;
  line-height: 0;
  position: absolute;
  left: -1.5rem;
  top: 1rem;
}
.testimonial-quote footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.testimonial-quote footer strong {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1c1c1c;
}
.testimonial-quote footer span {
  font-size: 0.78rem;
  color: #888;
}

/* ─── TRADE CTA ──────────────────────────────────────────────── */
.trade-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem;
  background: #f7f3ed;
  border-radius: 6px;
  border-left: 4px solid #c9a84c;
}
.trade-cta-inner h2 { margin-bottom: 0.6rem; }
.trade-cta-inner p { font-size: 0.9rem; color: #4a4a4a; max-width: 480px; }
.trade-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ─── ENQUIRY STRIP ──────────────────────────────────────────── */
.enquiry-strip {
  background: #0A1628;
  padding: 5rem 0;
  text-align: center;
}
.enquiry-strip h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.enquiry-strip p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #0f2018;
  color: rgba(255,255,255,0.72);
}

/* ── Row 1: brand + 3 nav columns ── */
.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 2rem 3.5rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.9rem;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}
.footer-social { display: flex; gap: 0.9rem; }
.footer-social a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-social a:hover { color: #c9a84c; }

.footer-nav h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.1rem;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #c9a84c; }

/* Sister brand link in nav col */
.footer-sister-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #c9a84c !important;
  font-weight: 500;
}
.footer-sister-link:hover { color: #e8c870 !important; }

/* ── Row 2: contact strip ── */
.footer-contact-strip {
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-contact-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 1rem;
}

.fcs-office {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 280px;
}
.fcs-flag-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.fcs-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}
.fcs-details a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.fcs-details a:hover { color: #c9a84c; }
.fcs-dot {
  color: rgba(255,255,255,0.2);
  font-size: 0.9rem;
  line-height: 1;
  margin: 0 0.1rem;
}

.fcs-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  margin: 0 2.5rem;
  flex-shrink: 0;
}

.fcs-cta {
  flex-shrink: 0;
  margin-left: auto;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #c9a84c;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.fcs-cta:hover { color: #e8c870; border-color: rgba(232,200,112,0.6); }

/* ── Bottom bar ── */
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.28); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2.5rem; }
  .footer-contact-strip-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .fcs-divider { width: 40px; height: 1px; margin: 0; }
  .fcs-cta { margin-left: 0; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.3rem; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .destinations-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .dest-card--tall { grid-row: auto; grid-column: 1 / -1; height: 280px; }
  .dest-card--cta { grid-column: 1 / -1; height: 120px; }
  .dest-col-right { flex-direction: row; grid-column: 1 / -1; }
  .dest-col-right .dest-card { height: 200px; flex: 1; }
  .why-us-inner { grid-template-columns: 1fr; gap: 3rem; }
  /* footer responsive now handled in footer CSS */
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    top: var(--nav-h, 115px);
    background: rgba(15, 32, 24, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 2rem 0;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { padding: 1rem 2rem; font-size: 1rem; text-transform: none; letter-spacing: 0; }
  .nav-cta { margin: 1rem 2rem; padding: 0.8rem 1.5rem !important; }
  .dropdown { position: static; transform: none; opacity: 1; pointer-events: all; box-shadow: none; background: rgba(255,255,255,0.05); }
  .dropdown li a { color: rgba(255,255,255,0.7) !important; }
  .nav-toggle { display: flex; }

  /* Aussie Grand Tours -- shows in mobile menu only */
  .nav-sister-mobile { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 0.5rem; padding-top: 0.5rem; }
  .nav-sister-mobile a { color: #c9a84c !important; font-weight: 500; }

  .hero-headline { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero-sub { font-size: 0.92rem; }
  .trust-list { flex-direction: column; }
  .trust-divider { width: 40px; height: 1px; }
  .destinations-grid { display: flex; flex-direction: column; }
  .dest-card { height: 220px; }
  .dest-card--cta { height: 100px; }
  .dest-col-right { flex-direction: column; }
  .why-us-stats { grid-template-columns: 1fr; }
  .trade-cta-inner { flex-direction: column; align-items: flex-start; }
  /* footer responsive now handled in footer CSS */
}

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero--short { height: 46vh; min-height: 340px; }
.page-hero--minimal {
  height: auto;
  background: #0A1628;
  /* Top padding = nav height + breathing room */
  padding: calc(var(--nav-h, 72px) + 5rem) 0 4rem;
}
.page-hero--minimal .page-hero-content h1 { color: #fff; }
.page-hero--minimal .page-hero-content p  { color: rgba(255,255,255,0.75); margin-top:1rem; font-size:1rem; }

.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width:100%; height:100%; object-fit:cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,18,0.75) 0%, rgba(10,25,18,0.25) 60%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding-bottom: 3.5rem;
  /* Ensures content clears the fixed nav on all inner pages */
  padding-top: calc(var(--nav-h, 72px) + 2.5rem);
}
.page-hero-content h1 { color: #fff; }

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro-text h2 { margin-bottom: 1rem; }
.about-intro-text p  { font-size:0.95rem; color:#4a4a4a; margin-bottom:1rem; line-height:1.8; }
.about-intro-image { position: relative; }
.about-intro-image img { border-radius: 4px; width:100%; }
.about-image-caption {
  font-size: 0.75rem; color: #888; text-align: center; margin-top: 0.7rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 4px;
  border-top: 3px solid #c9a84c;
}
.value-icon { color:#c9a84c; margin-bottom:1.2rem; }
.value-card h3 { font-size:1.3rem; margin-bottom:0.7rem; }
.value-card p  { font-size:0.88rem; color:#5a5a5a; line-height:1.7; }

.team-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:2rem; }
.team-card { }
.team-photo img { width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:4px; margin-bottom:1rem; }
.team-card h3   { font-size:1.4rem; margin-bottom:0.2rem; }
.team-role      { display:block; font-size:0.75rem; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:#c9a84c; margin-bottom:0.7rem; }
.team-card p    { font-size:0.88rem; color:#5a5a5a; line-height:1.7; }

/* ─── DESTINATIONS PAGE ─────────────────────────────────────── */
.dest-tab-nav {
  background: #fff;
  border-bottom: 1px solid #e8e4de;
  position: sticky;
  top: 70px;
  z-index: 100;
}
.dest-tab-nav .container { display:flex; gap:0; }
.dest-tab {
  padding: 1rem 2rem;
  font-size:0.8rem; font-weight:500; letter-spacing:0.08em; text-transform:uppercase;
  color: #888; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.dest-tab:hover { color:#0A1628; }
.dest-tab.active { color:#0A1628; border-bottom-color:#c9a84c; }

.dest-list { display:flex; flex-direction:column; gap:4rem; }
.dest-detail {
  display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center;
}
.dest-detail--flip .dest-detail-image { order:2; }
.dest-detail--flip .dest-detail-content { order:1; }

.dest-detail-image { position:relative; }
.dest-detail-image img { width:100%; height:400px; object-fit:cover; border-radius:4px; }
.dest-detail-tag {
  position:absolute; top:1rem; left:1rem;
  background:#c9a84c; color:#1c1c1c;
  font-size:0.65rem; font-weight:500; letter-spacing:0.12em; text-transform:uppercase;
  padding:0.3rem 0.8rem; border-radius:2px;
}
.dest-detail-content h3 { font-size:2rem; margin-bottom:1rem; }
.dest-detail-content p  { font-size:0.95rem; color:#4a4a4a; line-height:1.8; margin-bottom:1.5rem; }
.dest-highlights { display:flex; flex-direction:column; gap:0.5rem; margin-bottom:2rem; }
.dest-highlights li {
  display:flex; align-items:center; gap:0.6rem;
  font-size:0.88rem; color:#2a2a2a;
}
.dest-highlights li svg { stroke:#c9a84c; flex-shrink:0; }

/* ─── WHY US PAGE ────────────────────────────────────────────── */
.diff-grid {
  display:grid; grid-template-columns:repeat(3, 1fr); gap:1.5rem;
}
.diff-card {
  background:#fff; padding:2.5rem 2rem; border-radius:4px;
  border: 1px solid #e8e4de; position:relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.diff-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,0.08); }
.diff-num {
  position:absolute; top:1.5rem; right:1.5rem;
  font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:300;
  color:rgba(10,22,40,0.08); line-height:1;
}
.diff-icon { color:#c9a84c; margin-bottom:1.5rem; }
.diff-card h3 { font-size:1.4rem; margin-bottom:0.8rem; }
.diff-card p  { font-size:0.88rem; color:#5a5a5a; line-height:1.7; }

.process-steps {
  display:flex; align-items:flex-start; gap:0; justify-content:center; flex-wrap:wrap;
}
.process-step {
  flex:1; min-width:160px; max-width:220px; text-align:center; padding:1.5rem 1rem;
}
.process-step-num {
  width:48px; height:48px; border-radius:50%; background:#0A1628; color:#c9a84c;
  font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:400;
  display:flex; align-items:center; justify-content:center; margin:0 auto 1rem;
}
.process-step h4 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; margin-bottom:0.5rem; font-weight:400; letter-spacing:0; text-transform:none; }
.process-step p  { font-size:0.85rem; color:#5a5a5a; line-height:1.6; }
.process-arrow {
  font-size:1.5rem; color:#c9a84c; padding:1.5rem 0.5rem; margin-top:1.2rem;
  flex-shrink:0;
}

.testimonials-grid {
  display:grid; grid-template-columns:repeat(3, 1fr); gap:1.5rem;
}
.testi-card {
  background:#fff; padding:2rem; border-radius:4px;
  border-left:3px solid #c9a84c;
}
.testi-card p {
  font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-style:italic;
  color:#0A1628; line-height:1.6; margin-bottom:1.2rem;
}
.testi-card footer { display:flex; flex-direction:column; gap:0.15rem; }
.testi-card footer strong { font-size:0.88rem; font-weight:500; }
.testi-card footer span   { font-size:0.78rem; color:#888; }

/* ─── PARTNERS PAGE ──────────────────────────────────────────── */
.benefits-grid {
  display:grid; grid-template-columns:repeat(3, 1fr); gap:2rem;
}
.benefit-item { display:flex; gap:1.2rem; align-items:flex-start; }
.benefit-icon { color:#c9a84c; flex-shrink:0; margin-top:3px; }
.benefit-item h4 {
  font-family:'Inter',sans-serif; font-size:0.9rem; font-weight:500;
  letter-spacing:0; text-transform:none; margin-bottom:0.4rem;
}
.benefit-item p { font-size:0.88rem; color:#5a5a5a; line-height:1.6; }

.partner-types {
  display:grid; grid-template-columns:repeat(3, 1fr); gap:2rem;
}
.partner-type {
  padding:2.5rem 2rem; background:#f7f3ed; border-radius:4px;
  border-top:3px solid #0A1628;
}
.partner-type h3 { font-size:1.5rem; margin-bottom:0.8rem; }
.partner-type p  { font-size:0.9rem; color:#4a4a4a; line-height:1.7; margin-bottom:1.5rem; }

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-layout {
  display:grid; grid-template-columns:1fr 380px; gap:5rem; align-items:flex-start;
}
.contact-form-title { font-size:2rem; margin-bottom:0.5rem; }
.contact-form-sub   { font-size:0.9rem; color:#5a5a5a; margin-bottom:2.5rem; }

.contact-form { display:flex; flex-direction:column; gap:1.2rem; }
.form-row { display:flex; gap:1.2rem; }
.form-row--two { gap:1.2rem; }
.form-group { display:flex; flex-direction:column; gap:0.4rem; flex:1; }
.form-group label { font-size:0.8rem; font-weight:500; color:#2a2a2a; letter-spacing:0.03em; }
.req { color:#c9a84c; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:0.75rem 1rem;
  border:1px solid #ddd8d0; border-radius:3px;
  font-family:'Inter',sans-serif; font-size:0.9rem; color:#1c1c1c;
  background:#fff; transition:border-color 0.2s, box-shadow 0.2s;
  appearance:none; -webkit-appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:none; border-color:#0A1628;
  box-shadow: 0 0 0 3px rgba(10,22,40,0.1);
}
.form-group textarea { resize:vertical; min-height:130px; }
.form-group--check { flex-direction:row; align-items:flex-start; }
.check-label { display:flex; gap:0.75rem; align-items:flex-start; cursor:pointer; font-size:0.85rem; color:#5a5a5a; line-height:1.5; }
.check-label input[type="checkbox"] { width:18px; height:18px; margin-top:1px; flex-shrink:0; accent-color:#0A1628; }

.form-msg { padding:0.8rem 1rem; border-radius:3px; font-size:0.88rem; display:none; }
.form-msg:not(:empty) { display:block; }
.form-msg--success { background:#e8f5e9; color:#2e7d32; border:1px solid #a5d6a7; }
.form-msg--error   { background:#fdecea; color:#c62828; border:1px solid #ef9a9a; }

.btn--full { width:100%; justify-content:center; }

.contact-info { display:flex; flex-direction:column; gap:1.5rem; padding-top:5rem; }
.contact-info-card {
  background:#f7f3ed; padding:1.8rem; border-radius:4px;
}
.contact-info-card h3 { font-size:1.2rem; margin-bottom:1rem; }
.contact-info-card p  { font-size:0.88rem; color:#5a5a5a; line-height:1.6; }
.contact-info-card--green { background:#0A1628; }
.contact-info-card--green h3 { color:#c9a84c; }
.contact-info-card--green p  { color:rgba(255,255,255,0.75); }

.contact-info-list { display:flex; flex-direction:column; gap:0.8rem; margin-bottom:1.2rem; }
.contact-info-list li {
  display:flex; align-items:flex-start; gap:0.7rem;
  font-size:0.88rem; color:#2a2a2a;
}
.contact-info-list li svg { stroke:#c9a84c; flex-shrink:0; margin-top:1px; }
.contact-info-list a { color:#0A1628; border-bottom:1px solid rgba(10,22,40,0.2); }
.contact-info-list a:hover { color:#c9a84c; border-color:#c9a84c; }

.contact-response-time {
  display:flex; align-items:center; gap:0.6rem;
  background:#fff; border-radius:3px; padding:0.75rem 1rem;
  font-size:0.82rem; color:#5a5a5a;
}
.contact-response-time svg { stroke:#c9a84c; flex-shrink:0; }

/* ─── RESPONSIVE additions ───────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid   { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { padding-top:0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-types { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; gap:2.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .diff-grid   { grid-template-columns: 1fr; }
  .dest-detail { grid-template-columns: 1fr; gap:2rem; }
  .dest-detail--flip .dest-detail-image { order:0; }
  .dest-detail--flip .dest-detail-content { order:0; }
  .dest-detail-image img { height:260px; }
  .process-steps { flex-direction:column; align-items:center; }
  .process-arrow { transform:rotate(90deg); padding:0; margin:0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .form-row--two { flex-direction:column; }
}

/* ─── EXPERIENCE PAGES (shared) ────────────────────────────── */
.page-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  max-width: 540px;
  margin-top: 1rem;
  line-height: 1.7;
}

.exp-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.exp-intro--flip .exp-intro-image { order: -1; }

.exp-intro-text { }
.exp-intro-text h2  { margin-bottom: 1rem; }
.exp-intro-text p   { font-size: 0.95rem; color: #4a4a4a; line-height: 1.8; margin-bottom: 1rem; }

.exp-intro-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

.exp-intro-stats {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid #e8e4de;
  padding-top: 1.5rem;
}
.exp-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-right: 1.5rem;
  border-right: 1px solid #e8e4de;
  margin-right: 1.5rem;
}
.exp-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.exp-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #0A1628;
  line-height: 1;
}
.exp-stat-label {
  font-size: 0.72rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── FIT PAGE ──────────────────────────────────────────────── */
.arrange-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.arrange-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 4px;
  border-top: 3px solid #c9a84c;
  transition: transform 0.25s, box-shadow 0.25s;
}
.arrange-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.arrange-icon { color: #c9a84c; margin-bottom: 1.2rem; }
.arrange-card h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.arrange-card p  { font-size: 0.88rem; color: #5a5a5a; line-height: 1.7; }

.itin-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: flex-start;
}
.itin-intro h2  { font-size: 2.2rem; margin-bottom: 1rem; }
.itin-intro > p { font-size: 0.9rem; color: #4a4a4a; line-height: 1.8; margin-bottom: 0.8rem; }
.itin-note {
  font-size: 0.78rem;
  color: #999;
  font-style: italic;
  border-left: 2px solid #e8e4de;
  padding-left: 0.8rem;
}

.itin-days { display: flex; flex-direction: column; gap: 0; }
.itin-day {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e8e4de;
  align-items: flex-start;
}
.itin-day:first-child { padding-top: 0; }
.itin-day-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c9a84c;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 70px;
  padding-top: 0.2rem;
}
.itin-day-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.4rem;
  color: #0A1628;
}
.itin-day-content p { font-size: 0.88rem; color: #5a5a5a; line-height: 1.7; }

.fit-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.fit-for-card {
  padding: 2rem 1.5rem;
  background: #f7f3ed;
  border-radius: 4px;
  position: relative;
}
.fit-for-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(10,22,40,0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.fit-for-card h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.fit-for-card p  { font-size: 0.85rem; color: #5a5a5a; line-height: 1.7; }

/* ─── MICE PAGE ─────────────────────────────────────────────── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.capability-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2rem 1.5rem;
  border-radius: 4px;
  transition: background 0.25s;
}
.capability-card:hover { background: rgba(255,255,255,0.1); }
.capability-icon { color: #c9a84c; margin-bottom: 1.2rem; }
.capability-card h3 { font-size: 1.3rem; color: #fff; margin-bottom: 0.7rem; }
.capability-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.7; }

.mice-process {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
.mice-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e8e4de;
  align-items: flex-start;
}
.mice-step:last-child { border-bottom: none; }
.mice-step-icon {
  width: 56px;
  height: 56px;
  background: #f7f3ed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  flex-shrink: 0;
}
.mice-step-num {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.3rem;
}
.mice-step-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.5rem;
}
.mice-step-body p { font-size: 0.88rem; color: #5a5a5a; line-height: 1.7; }

.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.venue-card {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.venue-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}
.venue-card:hover img { transform: scale(1.04); }
.venue-info { padding: 1.5rem; }
.venue-location {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.4rem;
}
.venue-info h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.venue-info p  { font-size: 0.85rem; color: #5a5a5a; line-height: 1.6; }

/* ─── ADVENTURE PAGE ────────────────────────────────────────── */
.adv-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.adv-detail--flip .adv-detail-image { order: 2; }
.adv-detail--flip .adv-detail-content { order: 1; }

.adv-detail-image { position: relative; }
.adv-detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.adv-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #c9a84c;
  color: #1c1c1c;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}
.adv-detail-content h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.adv-detail-content p  { font-size: 0.95rem; color: #4a4a4a; line-height: 1.8; margin-bottom: 1.5rem; }
.adv-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.adv-highlights li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #2a2a2a;
}
.adv-highlights li svg { stroke: #c9a84c; flex-shrink: 0; }

/* ─── DESTINATION DETAIL PAGES ──────────────────────────────── */
.dest-breadcrumb {
  background: #f7f3ed;
  border-bottom: 1px solid #e8e4de;
  padding: 0.7rem 0;
}
.dest-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #888;
}
.dest-breadcrumb a { color: #0A1628; transition: color 0.2s; }
.dest-breadcrumb a:hover { color: #c9a84c; }
.dest-breadcrumb span:last-child { color: #1c1c1c; font-weight: 500; }

.dest-page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}
.dest-page-intro-text p { font-size: 0.95rem; color: #4a4a4a; line-height: 1.8; margin-bottom: 1rem; }
.dest-page-intro-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

.dest-quick-facts {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f7f3ed;
  border-radius: 4px;
  border-left: 3px solid #c9a84c;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dest-fact { display: flex; flex-direction: column; gap: 0.4rem; }
.dest-fact-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a84c;
}
.dest-fact-value { font-size: 0.88rem; color: #2a2a2a; }
.dest-fact-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.2rem; }
.dest-fact-tag {
  background: #fff;
  border: 1px solid #e0dbd4;
  border-radius: 2px;
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  color: #4a4a4a;
}

/* Highlights grid on destination page */
.dest-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.dest-highlight-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.dest-highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.dest-highlight-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dest-highlight-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.dest-highlight-card--wide .dest-highlight-img img { height: 100%; min-height: 240px; }
.dest-highlight-body { padding: 1.5rem; }
.dest-highlight-body h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.dest-highlight-body p  { font-size: 0.88rem; color: #5a5a5a; line-height: 1.7; }

/* Related destinations */
.related-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.related-dest-card {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.related-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.related-dest-card:hover img { transform: scale(1.05); }
.related-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,18,0.78) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
}
.related-dest-overlay h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.related-dest-overlay span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a84c;
}

/* dest-detail-actions (two buttons on listing) */
.dest-detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ─── RESPONSIVE -- experience & destination pages ───────────── */
@media (max-width: 1024px) {
  .exp-intro        { grid-template-columns: 1fr; gap: 2.5rem; }
  .exp-intro--flip .exp-intro-image { order: 0; }
  .arrange-grid     { grid-template-columns: repeat(2, 1fr); }
  .itin-layout      { grid-template-columns: 1fr; }
  .fit-for-grid     { grid-template-columns: repeat(2, 1fr); }
  .capabilities-grid{ grid-template-columns: repeat(2, 1fr); }
  .venues-grid      { grid-template-columns: 1fr; }
  .adv-detail       { grid-template-columns: 1fr; gap: 2rem; }
  .adv-detail--flip .adv-detail-image  { order: 0; }
  .adv-detail--flip .adv-detail-content{ order: 0; }
  .dest-page-intro  { grid-template-columns: 1fr; gap: 2.5rem; }
  .dest-highlights-grid { grid-template-columns: 1fr; }
  .dest-highlight-card--wide { grid-template-columns: 1fr; }
  .related-dest-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .arrange-grid     { grid-template-columns: 1fr; }
  .fit-for-grid     { grid-template-columns: 1fr; }
  .capabilities-grid{ grid-template-columns: 1fr; }
  .adv-detail-image img { height: 260px; }
  .mice-step        { grid-template-columns: 1fr; }
  .mice-step-icon   { display: none; }
  .itin-day         { flex-direction: column; gap: 0.4rem; }
  .related-dest-grid{ grid-template-columns: 1fr; }
  .dest-detail-actions { flex-direction: column; }
  .exp-intro-stats  { flex-direction: column; }
  .exp-stat         { border-right: none; border-bottom: 1px solid #e8e4de; padding-right: 0; padding-bottom: 1rem; margin-right: 0; margin-bottom: 0; }
  .exp-stat:last-child { border-bottom: none; }
}

/* ─── EXPERIENCES HUB PAGE ───────────────────────────────────── */
.exp-hub-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.exp-hub-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.exp-hub-card:nth-child(even) .exp-hub-img  { order: 2; }
.exp-hub-card:nth-child(even) .exp-hub-body { order: 1; }

.exp-hub-card--dark .exp-hub-body { background: #0A1628; color: #fff; }
.exp-hub-card--dark .exp-hub-body h2 { color: #c9a84c; }
.exp-hub-card--dark .exp-hub-body p  { color: rgba(255,255,255,0.78); }
.exp-hub-card--dark .exp-hub-list li { color: rgba(255,255,255,0.85); }
.exp-hub-card--dark .exp-hub-list li svg { stroke: #c9a84c; }
.exp-hub-card--dark .section-eyebrow { color: rgba(255,255,255,0.55); }
.exp-hub-card--dark .section-eyebrow::after { background: rgba(255,255,255,0.25); }

.exp-hub-img {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.exp-hub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.exp-hub-card:hover .exp-hub-img img { transform: scale(1.04); }

.exp-hub-num {
  position: absolute;
  bottom: 1.2rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}

.exp-hub-body {
  background: #fff;
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.exp-hub-body h2 { font-size: 2.2rem; margin: 0.5rem 0 1rem; }
.exp-hub-body > p { font-size: 0.92rem; color: #4a4a4a; line-height: 1.8; margin-bottom: 1.5rem; }

.exp-hub-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.exp-hub-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #2a2a2a;
}
.exp-hub-list li svg { stroke: #c9a84c; flex-shrink: 0; }

.exp-hub-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .exp-hub-card { grid-template-columns: 1fr; }
  .exp-hub-card:nth-child(even) .exp-hub-img  { order: 0; }
  .exp-hub-card:nth-child(even) .exp-hub-body { order: 0; }
  .exp-hub-img { min-height: 280px; }
  .exp-hub-body { padding: 2rem; }
}
@media (max-width: 600px) {
  .exp-hub-body { padding: 1.5rem; }
  .exp-hub-body h2 { font-size: 1.7rem; }
  .exp-hub-actions { flex-direction: column; }
}

/* footer country labels -- superseded by .fcs-* classes */

/* ─── CONTACT PAGE -- two-office layout ──────────────────────── */
.contact-office-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0A1628;
  margin-bottom: 0.8rem;
}
.contact-office-partner {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #c9a84c;
}
.contact-office-partner a {
  color: #c9a84c;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 1px;
}
.contact-office-partner a:hover { color: #b8922e; border-color: #b8922e; }
.contact-office-divider {
  border: none;
  border-top: 1px solid #e8e4de;
  margin: 1.2rem 0;
}

/* Logo size override */
.nav-logo img { height: 68px !important; width: auto !important; }
