/* ═══════════════════════════════════════════════════════════
   HANSEN'S HIKES — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --cream:        #f4f0e8;
  --cream-dark:   #ede8dc;
  --white:        #ffffff;
  --ink:          #191917;
  --ink-muted:    #5c5c52;
  --forest:       #1a3f24;
  --forest-mid:   #2d6b3a;
  --forest-lite:  #4a9160;
  --gold:         #c8921a;
  --gold-lite:    #e8b040;
  --sand:         #d4c9a8;

  --ff-display:   'Cormorant Garamond', Georgia, serif;
  --ff-body:      'Inter', system-ui, sans-serif;
  --ff-mono:      'Space Mono', monospace;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font-family: inherit; cursor: pointer; border: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-mid);
}
.eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}
.section-heading em { color: var(--forest); font-style: italic; }

.see-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1.5px solid var(--forest);
  padding-bottom: 2px;
  transition: gap 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.see-all:hover { gap: 12px; color: var(--gold); border-color: var(--gold); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(244,240,232,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 0.75rem; }

.nav-search {
  width: 36px; height: 36px;
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-muted);
  transition: all 0.2s;
}
.nav-search:hover { border-color: var(--forest); color: var(--forest); }

.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 100px;
  background: var(--forest);
  color: var(--white);
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,63,36,0.3);
}

.nav-burger {
  display: none;
  width: 36px; height: 36px;
  background: none;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--r-sm);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}

.hero-bg-word {
  position: absolute;
  bottom: -0.1em; left: -0.05em;
  font-family: var(--ff-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(26,63,36,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--white);
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  width: fit-content;
}
.hero-badge .pulse {
  width: 6px; height: 6px;
  background: var(--gold-lite);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-h1 em { font-style: italic; color: var(--forest); }
.hero-h1 .underline {
  position: relative;
  display: inline-block;
}
.hero-h1 .underline::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-desc {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 2.25rem;
  position: relative;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  position: relative;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}
.hero-avatars { display: flex; }
.hero-avatars img {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  object-fit: cover;
  margin-left: -8px;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-trust-text { font-size: 0.82rem; color: var(--ink-muted); }
.hero-trust-text strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
}
.hero-stars { color: var(--gold); letter-spacing: 1px; font-size: 0.75rem; }

.hero-right { position: relative; overflow: hidden; background: var(--forest); }
.hero-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 3px;
}
.hero-img-cell { overflow: hidden; position: relative; }
.hero-img-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hero-img-cell:hover img { transform: scale(1.05); }
.hero-img-cell:nth-child(1) { grid-row: span 2; }

.hero-float {
  position: absolute;
  bottom: 2rem; right: 2rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  min-width: 190px;
  box-shadow: var(--shadow-lg);
}
.hero-float-label {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.hero-float-value {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero-float-sub {
  font-size: 0.76rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-float-live {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--ink-muted);
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
}
.scroll-line {
  width: 1.5px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ─── TICKER ─────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--forest);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 32s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}
.ticker-sep {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── STATS ──────────────────────────────────────────────── */
.stats-section {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}
.stat:last-child { border-right: none; }
.stat-icon {
  width: 36px; height: 36px;
  background: rgba(26,63,36,0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
  color: var(--forest);
}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.stat-num .accent { color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--ink-muted); }

/* ─── DESTINATIONS ───────────────────────────────────────── */
.dest-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--cream);
}
.dest-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.dest-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 420px;
  gap: 1rem;
}
.dest-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover img { transform: scale(1.07); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,12,0.82) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  transition: background 0.4s;
}
.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(10,20,12,0.88) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.dest-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.dest-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}
.dest-name {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.dest-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}
.dest-cta {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transform: scale(0) rotate(-45deg);
  transition: transform 0.3s ease;
}
.dest-card:hover .dest-cta { transform: scale(1) rotate(0deg); }

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery-section {
  background: var(--white);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.gallery-header { margin-bottom: 2rem; text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 260px 180px;
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 5; grid-row: 1 / span 2; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  display: grid;
  place-items: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(26,63,36,0.3); }
.gallery-zoom { color: white; opacity: 0; transform: scale(0.8); transition: all 0.3s; }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* ─── ABOUT ──────────────────────────────────────────────── */
.about-section {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 520px;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about-accent-box {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 200px; height: 200px;
  background: var(--forest);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 6px solid var(--cream);
}
.about-badge {
  position: absolute;
  top: 1.5rem; left: -1.5rem;
  width: 90px; height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--cream);
  text-align: center;
}
.about-badge-num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about-badge-label {
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
}
.about-desc {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--ink-muted);
  line-height: 1.8;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}
.about-feats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--cream-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-feat:hover { border-color: var(--forest-lite); box-shadow: var(--shadow-sm); }
.feat-icon {
  width: 40px; height: 40px;
  background: rgba(26,63,36,0.08);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--forest);
}
.feat-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.feat-desc { font-size: 0.8rem; color: var(--ink-muted); }

/* ─── MORE DESTINATIONS ──────────────────────────────────── */
.more-section {
  background: var(--forest);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.more-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.more-card:hover { transform: translateY(-4px); border-color: rgba(200,146,26,0.4); }
.more-card-img { height: 200px; overflow: hidden; }
.more-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.more-card:hover .more-card-img img { transform: scale(1.06); }
.more-card-body { padding: 1.25rem; }
.more-card-tag {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.more-card-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}
.more-card-loc { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ─── CTA / NEWSLETTER ───────────────────────────────────── */
.cta-section { position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,20,12,0.88) 0%, rgba(26,63,36,0.75) 100%);
}
.cta-inner { position: relative; z-index: 1; padding: clamp(4rem, 8vw, 7rem) 0; text-align: center; }
.cta-eyebrow {
  color: rgba(255,255,255,0.6);
  justify-content: center;
  margin-bottom: 1rem;
}
.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-title em { color: var(--gold-lite); font-style: italic; }
.cta-desc {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.cta-form {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto;
}
.cta-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.cta-input::placeholder { color: rgba(255,255,255,0.5); }
.cta-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }
.cta-btn {
  padding: 13px 28px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.cta-btn:hover { background: var(--gold-lite); transform: translateY(-2px); }
.cta-note { font-size: 0.74rem; color: rgba(255,255,255,0.45); margin-top: 1rem; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--ink); color: rgba(255,255,255,0.75); }
.footer-top {
  padding: clamp(3rem, 6vw, 5rem) 0 2.5rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-logo-name { color: var(--white); }
.footer-desc {
  font-size: 0.83rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.social-btn:hover { background: var(--forest-mid); border-color: var(--forest-mid); color: var(--white); }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.77rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.77rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 320px; }
  .dest-card:nth-child(1) { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 200px 200px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: 3; grid-row: 1 / span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 1.5rem 2.5rem; }
  .hero-right { display: none; }
  .hero-scroll { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .stat:nth-child(odd) { border-right: 1px solid var(--cream-dark); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .dest-grid { grid-template-columns: 1fr; grid-template-rows: unset; }
  .dest-card { height: 280px; }
  .dest-card:nth-child(1) { grid-column: 1; }
  .dest-cta { transform: scale(1) rotate(0deg) !important; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; }
  .gallery-item:nth-child(5) { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .more-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-form { flex-direction: column; align-items: stretch; }
  .cta-input { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}
