/* ==========================================================================
   Pin Lanka Travel — Design System v2 (Micato-structure rebuild)
   Palette:  forest #1F3B2C / forest-dark #142A1F / gold #C89B3C
             cinnamon #B85C38 / cream #F3EEE1 / ivory #FBF7EE / ink #22231F
   Type:     Libre Caslon Display (headlines, classic editorial serif)
             + Jost (nav/body/UI, geometric humanist sans)
   ========================================================================== */

:root {
  --forest: #1F3B2C;
  --forest-dark: #142A1F;
  --forest-soft: #2C4E3B;
  --gold: #C89B3C;
  --gold-soft: #E4C578;
  --cinnamon: #B85C38;
  --cinnamon-dark: #7C3F26;
  --cream: #F3EEE1;
  --ivory: #FBF7EE;
  --ink: #22231F;
  --line: #E4DCC8;
  --white: #ffffff;

  --font-display: 'Libre Caslon Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --header-h: 78px;
  --container: 1280px;
  --radius: 2px;
  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--forest-dark);
  letter-spacing: .002em;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; }

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cinnamon);
  font-weight: 500;
  margin-bottom: 16px;
}
.italic { font-style: italic; color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  border-radius: 0;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--cinnamon); color: var(--ivory); }
.btn-primary:hover { background: var(--cinnamon-dark); }
.btn-outline { border-color: currentColor; color: var(--ivory); }
.btn-outline:hover { background: var(--ivory); color: var(--forest-dark); }
.btn-outline-dark { border-color: var(--forest); color: var(--forest); }
.btn-outline-dark:hover { background: var(--forest); color: var(--ivory); }
.btn-gold { background: var(--gold); color: var(--forest-dark); }
.btn-gold:hover { background: var(--gold-soft); }

/* ==========================================================================
   Header + utility bar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: linear-gradient(to bottom, rgba(15,22,16,.6) 0%, rgba(15,22,16,.15) 70%, rgba(15,22,16,0) 100%);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  background: var(--forest-dark);
  box-shadow: 0 2px 18px rgba(0,0,0,.2);
}

.main-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 32px;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--ivory);
  letter-spacing: .01em;
}

.primary-nav { display: flex; align-items: center; gap: 40px; flex: 1; justify-content: center; }
.primary-nav > ul { display: flex; gap: 40px; }
.primary-nav > ul > li > button {
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  padding: 6px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
}
.primary-nav > ul > li > button::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.primary-nav > ul > li.is-open > button::after { width: 100%; }
.primary-nav > ul > li.is-open > button { color: var(--gold-soft); }
.primary-nav .chevron { transition: transform .25s var(--ease); font-size: .6rem; }
.primary-nav > ul > li.is-open .chevron { transform: rotate(180deg); }

.header-utility { display: flex; align-items: center; gap: 22px; font-size: .78rem; color: var(--cream); }
.header-utility a { display: inline-flex; align-items: center; gap: 7px; color: var(--cream); }
.header-utility a:hover { color: var(--gold-soft); }
.header-utility svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-expert {
  background: var(--gold);
  color: var(--forest-dark);
  padding: 7px 18px;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
/* Higher-specificity override so the generic ".header-utility a:hover" rule
   (which would otherwise turn this text the same gold as its own hover
   background, making it invisible) never wins against this button. */
.header-utility a.btn-expert:hover { background: var(--gold-soft); color: var(--forest-dark); }

.nav-toggle-mobile { display: none; background: none; border: none; width: 30px; height: 22px; position: relative; }
.nav-toggle-mobile span, .nav-toggle-mobile::before, .nav-toggle-mobile::after {
  content: ""; display: block; position: absolute; left: 0; right: 0; height: 2px; background: var(--cream);
}
.nav-toggle-mobile span { top: 10px; }
.nav-toggle-mobile::before { top: 0; }
.nav-toggle-mobile::after { bottom: 0; }

/* ==========================================================================
   Mega menu panel — occupies the left 2/3 of the viewport; the remaining
   right third is a translucent cinnamon scrim (see .mega-menu-backdrop)
   that lets whatever's behind (the homepage hero, etc.) show through.
   ========================================================================== */
.mega-menu-panel {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 66.6667%;
  height: calc(100vh - var(--header-h));
  overflow: hidden;
  background: var(--ivory);
  border-top: 1px solid rgba(200,155,60,.35);
  box-shadow: 0 24px 48px rgba(0,0,0,.18);
  z-index: 850;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .45s var(--ease), opacity .3s var(--ease), visibility .45s;
  padding: 44px 0 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mega-menu-panel.is-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mega-menu-panel .container { max-width: none; padding: 0 48px; }

/* Prevent the page behind from scrolling while a mega-menu is open —
   the panel and scrim now cover the full remaining viewport, so there's
   nothing usable to scroll to underneath anyway. */
body.menu-open { overflow: hidden; }
.mega-menu-close {
  position: absolute;
  top: 20px;
  right: 32px;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cinnamon);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mega-menu-close:hover { color: var(--forest); }

.mega-menu-columns {
  display: grid;
  gap: 48px;
  align-items: start;
}
.mega-col h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cinnamon);
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.mega-col ul li { margin-bottom: 4px; }
.mega-col ul li a {
  display: block;
  padding: 9px 0;
  font-size: .95rem;
  color: var(--forest-dark);
  transition: color .2s, padding-left .2s;
  border-bottom: 1px solid transparent;
}
.mega-col ul li a:hover {
  color: var(--cinnamon);
  padding-left: 6px;
}
.mega-col .desc {
  display: block;
  font-size: .78rem;
  color: #7d7a6d;
  font-weight: 400;
  margin-top: 2px;
}
.mega-col ul li.has-flyout > a { font-weight: 500; }
.mega-col ul li.has-flyout > a::after { content: "›"; float: right; color: var(--gold); }

/* Three-level: Luxury Journeys' "Signature Journeys" flyout column —
   hidden until you hover Signature Journeys specifically. */
.mega-flyout {
  border-left: 1px solid var(--line);
  padding-left: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease);
}
.mega-flyout.is-active { opacity: 1; visibility: visible; }
.mega-flyout .journey-card { display: block; margin-bottom: 18px; }
.mega-flyout .journey-card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; margin-bottom: 10px;
}
.mega-flyout .journey-card .name { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest-dark); }
.mega-flyout .journey-card:hover .name { color: var(--cinnamon); }
.mega-flyout .journey-card .meta { font-size: .74rem; color: #8a8a80; letter-spacing: .04em; }

/* Guide mega menu: 3 static columns (Wildlife / Wellness / Journey Styles) */
.mega-guide .mega-menu-columns { grid-template-columns: 260px 340px; max-width: 640px; margin: 0; }
.mega-guide .mega-col:first-child { grid-row: 1 / -1; }
.mega-guide .mega-flyout { grid-column: 2; grid-row: 1; }

/* Journeys mega menu: left list + flyout */
.mega-journeys .mega-menu-columns { grid-template-columns: 300px 1fr; }

/* Why Pin Lanka: single flat column, kept left — never centered */
.mega-why .mega-menu-columns { grid-template-columns: 1fr; max-width: 380px; margin: 0; justify-content: start; }

/* The scrim covering the right third of the viewport while any menu is
   open — a translucent cinnamon/orange tint so the page behind (the
   homepage hero, etc.) remains visible through it. */
.mega-menu-backdrop {
  position: fixed; inset: 0; top: var(--header-h);
  background: linear-gradient(
    to right,
    rgba(20,26,20,.12) 0%,
    rgba(20,26,20,.12) 66.6667%,
    rgba(184,92,56,.5) 66.6667%,
    rgba(184,92,56,.5) 100%
  );
  z-index: 800;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.mega-menu-backdrop.is-active { opacity: 1; visibility: visible; }

/* Mobile nav drawer (unchanged pattern, reused) */
.mobile-nav {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--forest-dark);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
  padding: 90px 32px 40px;
  gap: 4px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a, .mobile-nav button {
  font-family: var(--font-body); font-size: 1rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ivory); padding: 14px 0; width: 100%; text-align: left; border-bottom: 1px solid rgba(243,238,225,.1);
}
.mobile-nav-close { position: absolute; top: 26px; right: 28px; color: var(--ivory); font-size: 1.6rem; }
.mobile-submenu { display: none; flex-direction: column; width: 100%; padding-left: 18px; }
.mobile-submenu.is-open { display: flex; }
.mobile-submenu a { font-size: .88rem; text-transform: none; letter-spacing: 0; color: #C9C4B4; padding: 10px 0; border-bottom: none; }

/* ==========================================================================
   Hero (static single image, Micato pattern)
   ========================================================================== */
.hero-static {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: var(--ivory);
}
.hero-static img { width: 100%; height: 100%; object-fit: cover; }
.hero-static::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,22,16,.78) 0%, rgba(15,22,16,.15) 45%, rgba(15,22,16,.45) 100%);
}
.hero-static-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: flex-end;
}
.hero-static-content .container {
  max-width: 480px;
  margin: 0;
  padding: 0 64px 0 0;
  text-align: left;
}
.hero-static h1 { color: var(--ivory); margin-bottom: .3em; font-size: clamp(2rem, 3.6vw, 3rem); }
.hero-static p.lead { font-size: 1.05rem; color: var(--cream); max-width: 480px; margin: 0 0 1.8em; }

/* Generic two-column split (image + text) for simple content pages */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: 90px 0; }
.split .frame { position: relative; }
.split .frame::after { content: ""; position: absolute; top: 22px; left: 22px; right: -22px; bottom: -22px; border: 1px solid var(--gold); z-index: -1; }
.split img { width: 100%; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; padding: 60px 0; } }

/* ==========================================================================
   Homepage feature sections (icon + eyebrow + heading + text + CTA, image alongside)
   ========================================================================== */
.feature-section { padding: 110px 0; overflow: hidden; }
.feature-section .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0;
}
.feature-section.reverse .split { direction: rtl; }
.feature-section.reverse .split > * { direction: ltr; }
.feature-section .icon-mark { width: 42px; height: 42px; margin: 0 auto 18px; display: block; color: var(--gold); }
.feature-section .feature-text { text-align: left; }
.feature-section .feature-text .eyebrow { justify-content: flex-start; }
.feature-section .feature-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.feature-section.section-cream { background: var(--cream); }

/* Explore in style: two-up cards */
.explore-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.explore-card { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.explore-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.explore-card:hover img { transform: scale(1.06); }
.explore-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,22,16,.82) 0%, rgba(15,22,16,.15) 55%); }
.explore-card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 40px; color: var(--ivory); text-align: center; }
.explore-card-body h3 { color: var(--ivory); font-size: 1.7rem; }
.explore-card-body p { color: var(--cream); font-size: .9rem; max-width: 320px; margin: 0 auto 20px; }

/* Guest stories slider */
.stories-slider { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.story-slide { display: none; }
.story-slide.is-active { display: block; }
.story-slide img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 24px; }
.story-slide blockquote { font-family: var(--font-display); font-size: clamp(1.2rem, 2.2vw, 1.6rem); color: var(--forest-dark); font-style: italic; margin: 0 0 18px; }
.story-slide cite { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cinnamon); font-style: normal; }
.stories-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.stories-dots button { width: 28px; height: 2px; background: var(--line); }
.stories-dots button.is-active { background: var(--cinnamon); }

/* Pull quote */
.pull-quote { padding: 100px 0; text-align: center; }
.pull-quote blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); font-style: italic; color: var(--forest-dark); max-width: 780px; margin: 0 auto 20px; line-height: 1.4; }
.pull-quote cite { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cinnamon); font-style: normal; }

/* Journal grid */
.journal-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.journal-card-v2 figure { margin: 0 0 20px; aspect-ratio: 4/3; overflow: hidden; }
.journal-card-v2 img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.journal-card-v2:hover img { transform: scale(1.05); }
.journal-card-v2 .tag { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cinnamon); }
.journal-card-v2 h3 { font-size: 1.2rem; margin: 10px 0 8px; }
.journal-card-v2 .meta { font-size: .78rem; color: #8a8a80; }

/* Fixed page banner (inner pages) */
.page-banner-v2 {
  position: relative;
  height: 42vh;
  min-height: 320px;
  margin-top: 0;
  display: flex; align-items: flex-end;
  color: var(--ivory);
  overflow: hidden;
}
.page-banner-v2 img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner-v2::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,22,16,.82) 0%, rgba(15,22,16,.2) 60%, rgba(15,22,16,.5) 100%);
}
.page-banner-v2 .container { position: relative; z-index: 2; padding-bottom: 44px; }
.page-banner-v2 h1 { color: var(--ivory); margin-bottom: 8px; }
.breadcrumb-v2 { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-soft); }
.breadcrumb-v2 a { color: var(--cream); opacity: .8; }
.breadcrumb-v2 a:hover { opacity: 1; }
.breadcrumb-v2 span { margin: 0 8px; opacity: .5; }

/* Meet with an Expert page (distinct from the general Contact Us page) */
.expert-intro { max-width: 700px; margin: 0 auto 50px; text-align: center; }
.expert-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin: 30px 0 10px; }
.expert-links a { font-size: .85rem; text-decoration: underline; color: var(--cinnamon); }
.expert-links a:hover { color: var(--cinnamon-dark); }
.expert-form-wrap { max-width: 640px; margin: 0 auto; background: var(--cream); padding: 46px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; padding: 90px 0; }
.contact-card { background: var(--forest-dark); color: var(--cream); padding: 40px; }
.contact-card h3 { color: var(--ivory); }
.contact-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(243,238,225,.12); }
.contact-list li:last-child { border: none; }
.contact-list .ic { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: #6a6a5f; margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); background: var(--ivory);
  font-family: var(--font-body); font-size: .95rem;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.map-embed { border: 0; width: 100%; height: 340px; filter: grayscale(.25) sepia(.08); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } .form-row { grid-template-columns: 1fr; } }

/* Generic content page body */
.content-body { padding: 90px 0; max-width: 760px; margin: 0 auto; }
.content-body h2 { margin-top: 1.4em; }
.link-list-page ul { display: grid; gap: 14px; margin-top: 30px; }
.link-list-page ul li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; background: var(--cream); border: 1px solid var(--line);
  font-size: 1rem; color: var(--forest-dark);
}
.link-list-page ul li a:hover { border-color: var(--cinnamon); color: var(--cinnamon); }
.link-list-page ul li a::after { content: "→"; }

/* Signature journeys index */
.journey-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.journey-index-card { display: block; }
.journey-index-card figure { margin: 0 0 18px; aspect-ratio: 4/3; overflow: hidden; }
.journey-index-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.journey-index-card:hover img { transform: scale(1.06); }
.journey-index-card .meta { font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--cinnamon); margin-bottom: 8px; }
.journey-index-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.journey-index-card .price { font-family: var(--font-display); font-style: italic; color: var(--forest); }

/* Journey detail page */
.journey-detail-hero { position: relative; height: 62vh; min-height: 420px; color: var(--ivory); overflow: hidden; }
.journey-detail-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.journey-detail-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,22,16,.85) 0%, rgba(15,22,16,.15) 55%); }
.journey-detail-hero .container { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 50px; }
.journey-detail-hero h1 { color: var(--ivory); }
.journey-detail-meta { display: flex; gap: 24px; font-size: .85rem; letter-spacing: .04em; color: var(--cream); }
.journey-detail-body { padding: 80px 0; max-width: 760px; margin: 0 auto; }
.journey-detail-cta { text-align: center; padding: 70px 0; background: var(--cream); }

/* CTA band (dark, centered — used on inner pages; override background inline where needed) */
.cta-band { background: var(--forest-dark); color: var(--ivory); }
.cta-band h2 { color: var(--ivory); }
.cta-band .eyebrow { color: var(--gold-soft); }
.cta-band.cta-band-light { background: var(--cream); color: var(--ink); }
.cta-band.cta-band-light h2 { color: var(--forest-dark); }
.cta-band.cta-band-light .eyebrow { color: var(--cinnamon); }

/* Wave divider (kept from v1, still used between sections) */
.wave-divider { line-height: 0; width: 100%; overflow: hidden; }
.wave-divider svg { width: 100%; height: 34px; display: block; }
.wave-divider.on-forest { background: var(--forest-dark); }
.wave-divider.on-ivory { background: var(--ivory); }
.wave-divider.on-cream { background: var(--cream); }

/* ==========================================================================
   Footer (Micato-structure: logo, link columns, newsletter/social, contact, legal bar)
   ========================================================================== */
.site-footer { background: var(--forest-dark); color: var(--cream); }
.footer-top { padding: 80px 0 50px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 44px; }
.footer-top h4 { color: var(--gold-soft); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-body); font-weight: 600; }
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p { color: #C9C4B4; font-size: .9rem; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { font-size: .9rem; color: #C9C4B4; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(243,238,225,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .82rem;
  transition: background .3s, border-color .3s;
}
.footer-social a:hover { background: var(--cinnamon); border-color: var(--cinnamon); }
.footer-contact-block { font-size: .92rem; color: #C9C4B4; line-height: 1.9; }
.footer-contact-block a { color: var(--cream); }
.footer-contact-block a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(243,238,225,.12);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .78rem; color: #9a9587;
}
.footer-bottom a { color: #9a9587; }
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-legal { display: flex; gap: 18px; }

/* ==========================================================================
   Floating action buttons (unchanged)
   ========================================================================== */
.float-actions { position: fixed; right: 22px; bottom: 26px; z-index: 950; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; box-shadow: 0 6px 20px rgba(0,0,0,.28); transition: transform .25s var(--ease); position: relative; }
.float-btn:hover { transform: scale(1.08); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--cinnamon); }
.float-btn .ping { position: absolute; inset: 0; border-radius: 50%; border: 2px solid currentColor; opacity: .6; animation: pingPulse 2.2s ease-out infinite; }
@keyframes pingPulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.7); opacity: 0; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .feature-section .split { grid-template-columns: 1fr; gap: 40px; }
  .feature-section.reverse .split { direction: ltr; }
  .journal-grid-v2, .journey-index-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .mega-journeys .mega-menu-columns, .mega-guide .mega-menu-columns { grid-template-columns: 1fr; max-width: none; }
  .mega-guide .mega-col:first-child { grid-row: auto; }
  .mega-guide .mega-flyout { grid-column: auto; grid-row: auto; }
  .mega-flyout { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; margin-top: 10px; }
}
@media (max-width: 880px) {
  .primary-nav, .header-utility { display: none; }
  .nav-toggle-mobile { display: block; }
  .explore-grid { grid-template-columns: 1fr; }
  .journal-grid-v2, .journey-index-grid { grid-template-columns: 1fr; }
  .mega-menu-panel { display: none; } /* mobile uses the slide-down mobile-nav instead */
}
@media (max-width: 620px) {
  .feature-section { padding: 70px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .page-banner-v2 { height: 34vh; min-height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
