/* ==========================================================================
   CIREE CO., LIMITED — Editorial Travel Magazine Theme
   Palette: Warm Ivory + Deep Teal + Terracotta
   Fonts: Fraunces (serif display) + Work Sans (sans body)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Work+Sans:wght@300;400;500;600;700&family=Noto+Serif+SC:wght@400;600;700&family=Noto+Sans+SC:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #FBF6EE;
  --cream-deep: #F3E9D8;
  --paper: #FFFDF9;
  --ink: #211D18;
  --ink2: #5B5347;
  --muted: #8C8271;

  --teal: #0E3B3A;
  --teal-deep: #082625;
  --terracotta: #C9633F;
  --terracotta-light: #E08355;
  --gold: #C79A4B;

  --border: rgba(33, 29, 24, 0.12);
  --border-soft: rgba(33, 29, 24, 0.07);
  --shadow-sm: 0 2px 10px rgba(33, 29, 24, 0.06);
  --shadow-md: 0 12px 30px rgba(33, 29, 24, 0.10);
  --shadow-lg: 0 24px 60px rgba(33, 29, 24, 0.16);

  --font-display: 'Fraunces', 'Noto Serif SC', serif;
  --font-body: 'Work Sans', 'Noto Sans SC', sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4.5rem;
  --space-xl: 8rem;

  --transition: 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section { position: relative; }

/* ==========================================================================
   Typography helpers
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: currentColor;
}

.display-xl {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.05;
}
.display-lg {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 600;
}
.display-md { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.85;
  max-width: 60ch;
}

.italic-accent {
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.85rem;
  height: 54px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-solid {
  background: var(--terracotta);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(201, 99, 63, 0.28);
}
.btn-solid:hover { background: var(--teal); box-shadow: 0 10px 24px rgba(14, 59, 58, 0.28); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--ink); background: rgba(33,29,24,0.04); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; }

/* ==========================================================================
   Navigation
   ========================================================================== */
#site-nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 200;
  padding: 1.6rem 0;
  transition: var(--transition);
}
#site-nav.solid {
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(33,29,24,0.06);
  border-bottom: 1px solid var(--border-soft);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  transition: color var(--transition);
}
#site-nav:not(.solid) .nav-logo { color: #fff; }
.nav-logo span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink2);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
#site-nav:not(.solid) .nav-link { color: rgba(255,255,255,0.85); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: currentColor;
  transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--terracotta); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
#site-nav:not(.solid) .nav-toggle { border-color: rgba(255,255,255,0.4); }
.nav-toggle span {
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: var(--transition);
}
#site-nav:not(.solid) .nav-toggle span { background: #fff; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,38,37,0.35) 0%, rgba(8,38,37,0.15) 35%, rgba(8,38,37,0.75) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: var(--space-lg);
  padding-top: calc(var(--space-xl) + 40px);
}
.hero-eyebrow {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.hero-eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--terracotta-light);
}
.hero-title {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 600;
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 1.6rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta-light);
}
.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 46ch;
  margin-bottom: 2.4rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stat-row {
  display: flex;
  gap: var(--space-lg);
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.25);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}

.scroll-cue {
  position: absolute;
  right: var(--space-md);
  bottom: var(--space-md);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
}
.scroll-cue-line {
  width: 1px; height: 46px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0; width: 100%; height: 100%;
  background: #fff;
  animation: scrollDrip 1.8s ease-in-out infinite;
}
@keyframes scrollDrip {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}
.scroll-cue-text { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; writing-mode: vertical-rl; }

/* ==========================================================================
   Intro statement
   ========================================================================== */
.intro-statement {
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
}
.intro-statement .container { max-width: 920px; }
.intro-statement p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--teal);
  line-height: 1.5;
}
.intro-statement .drop {
  font-size: 4.4rem;
  line-height: 0.7;
  font-weight: 600;
  float: left;
  padding-right: 0.7rem;
  padding-top: 0.5rem;
  color: var(--terracotta);
}

/* ==========================================================================
   Destination Masonry Gallery
   ========================================================================== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.section-head .lede { margin-bottom: 0; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 1.1rem;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.dest-card:hover { box-shadow: var(--shadow-lg); }
.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,38,37,0.82) 100%);
  transition: var(--transition);
}
.dest-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 1.4rem 1.5rem;
  color: #fff;
}
.dest-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 0.4rem;
}
.dest-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.dest-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dest-1 { grid-column: span 3; grid-row: span 3; }
.dest-2 { grid-column: span 3; grid-row: span 2; }
.dest-3 { grid-column: span 3; grid-row: span 2; }
.dest-4 { grid-column: span 2; grid-row: span 2; }
.dest-5 { grid-column: span 2; grid-row: span 2; }
.dest-6 { grid-column: span 2; grid-row: span 2; }

/* ==========================================================================
   Zigzag feature rows
   ========================================================================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg) 0;
}
.feature-row.reverse .feature-media { order: 2; }
.feature-row.reverse .feature-copy { order: 1; }
.feature-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3.1;
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-num {
  position: absolute;
  top: 1.4rem; left: 1.4rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--terracotta);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-copy .display-md { margin-bottom: 1.1rem; }
.feature-list { display: grid; gap: 0.7rem; margin-top: 1.5rem; }
.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--ink2);
}
.feature-list-item svg { flex-shrink: 0; margin-top: 3px; color: var(--terracotta); }

/* ==========================================================================
   Stat Banner (parallax-esque)
   ========================================================================== */
.stat-banner {
  position: relative;
  padding: var(--space-lg) 0;
  overflow: hidden;
}
.stat-banner-media { position: absolute; inset: 0; z-index: 0; }
.stat-banner-media img { width: 100%; height: 100%; object-fit: cover; }
.stat-banner-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(8,38,37,0.92) 0%, rgba(8,38,37,0.72) 60%, rgba(8,38,37,0.5) 100%);
}
.stat-banner-inner { position: relative; z-index: 1; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item { color: #fff; text-align: left; border-left: 1px solid rgba(255,255,255,0.25); padding-left: 1.4rem; }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--terracotta-light); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.78); line-height: 1.6; }

/* ==========================================================================
   Journal / Stories
   ========================================================================== */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.journal-card { display: block; }
.journal-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.journal-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.journal-card:hover .journal-media img { transform: scale(1.06); }
.journal-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
  display: block;
}
.journal-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.journal-desc { font-size: 0.9rem; color: var(--ink2); line-height: 1.7; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.testi-card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}
.testi-quote-mark { font-family: var(--font-display); font-size: 3rem; color: var(--terracotta-light); line-height: 1; margin-bottom: 0.6rem; opacity: 0.7; }
.testi-text { font-size: 0.98rem; color: var(--ink2); line-height: 1.8; margin-bottom: 1.4rem; }
.testi-person { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.testi-trip { font-size: 0.78rem; color: var(--muted); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto;
  max-width: 1320px;
}
.cta-banner-media { position: absolute; inset: 0; z-index: 0; }
.cta-banner-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,38,37,0.55) 0%, rgba(8,38,37,0.85) 100%);
}
.cta-banner-inner {
  position: relative; z-index: 1;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.cta-banner-inner .display-lg { color: #fff; margin-bottom: 1.1rem; }
.cta-banner-inner .lede { color: rgba(255,255,255,0.82); margin: 0 auto 2.2rem; }
.cta-banner-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-lg);
  align-items: start;
}
.contact-info-list { display: grid; gap: 1.5rem; margin-top: 2.2rem; }
.contact-info-row {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
}
.contact-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-label { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.contact-info-value { font-size: 0.9rem; color: var(--ink2); line-height: 1.6; }

.contact-card {
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.6rem;
}
.contact-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 1rem; }
.contact-card p { color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.8; margin-bottom: 1.8rem; }
.contact-field { margin-bottom: 1.1rem; }
.contact-field-label { display: block; font-size: 0.76rem; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-field-value {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  color: #fff;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-wrap { display: grid; gap: 0; max-width: 880px; margin: 0 auto; }
.faq-row {
  border-bottom: 1px solid var(--border-soft);
  padding: 1.8rem 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  gap: 1rem;
}
.faq-num { font-family: var(--font-body); color: var(--terracotta); font-weight: 700; font-size: 0.85rem; margin-right: 0.8rem; }
.faq-a { color: var(--ink2); font-size: 0.94rem; line-height: 1.8; margin-top: 0.8rem; max-width: 70ch; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.72);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-desc { font-size: 0.9rem; line-height: 1.8; max-width: 320px; color: rgba(255,255,255,0.6); }
.footer-heading { color: #fff; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-link { display: block; font-size: 0.88rem; margin-bottom: 0.7rem; color: rgba(255,255,255,0.62); transition: color var(--transition); }
.footer-link:hover { color: var(--terracotta-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms cubic-bezier(0.22,1,0.36,1), transform 700ms cubic-bezier(0.22,1,0.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 100ms; }
.d2 { transition-delay: 200ms; }
.d3 { transition-delay: 300ms; }
.d4 { transition-delay: 400ms; }
.d5 { transition-delay: 500ms; }
.d6 { transition-delay: 600ms; }

/* Mobile nav drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--cream);
  display: none;
  flex-direction: column;
  padding: 2rem var(--space-md);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.mobile-drawer a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-drawer .btn { margin-top: 2rem; align-self: flex-start; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .dest-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; }
  .dest-1 { grid-column: span 4; grid-row: span 3; }
  .dest-2 { grid-column: span 2; grid-row: span 2; }
  .dest-3 { grid-column: span 2; grid-row: span 2; }
  .dest-4 { grid-column: span 2; grid-row: span 2; }
  .dest-5 { grid-column: span 2; grid-row: span 2; }
  .dest-6 { grid-column: span 2; grid-row: span 2; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 2rem; }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media { order: 1; }
  .feature-row.reverse .feature-copy { order: 2; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  :root { --space-xl: 5rem; --space-lg: 3rem; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .dest-1, .dest-2, .dest-3, .dest-4, .dest-5, .dest-6 { grid-column: span 2; grid-row: span 2; }
  .stat-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .journal-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stat-row { gap: 2rem; }
}
