/* =================================================================
   Thailandflygresor — Design System
   Aesthetic: warm editorial · tropical · refined SE-Asian
   Type: Fraunces (display) + DM Sans (body)
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --cream: #FBF6EC;
  --cream-deep: #F3EAD8;
  --sand: #EFE3CC;
  --ink: #20211C;          /* warm near-black text */
  --ink-soft: #4A4A40;
  --jade: #0E5C4A;         /* deep jungle green */
  --jade-deep: #0A4135;
  --jade-bright: #128768;
  --saffron: #E8A33D;      /* temple gold */
  --saffron-deep: #C9871F;
  --coral: #E2674C;        /* sunset / chili */
  --coral-deep: #C24A30;
  --lotus: #D98AA6;        /* soft pink accent */

  /* Functional */
  --bg: var(--cream);
  --surface: #FFFFFF;
  --line: #E3D8C2;
  --shadow-sm: 0 1px 2px rgba(32, 33, 28, 0.06), 0 2px 6px rgba(32, 33, 28, 0.05);
  --shadow-md: 0 10px 30px -12px rgba(32, 33, 28, 0.22);
  --shadow-lg: 0 30px 60px -20px rgba(14, 92, 74, 0.30);

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing / layout */
  --container: 1200px;
  --container-wide: 1380px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --gutter: clamp(20px, 5vw, 64px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
/* subtle paper grain over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
input, button, textarea { font-family: inherit; font-size: inherit; }
::selection { background: var(--saffron); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { color: var(--ink-soft); }

.display-italic { font-style: italic; font-weight: 400; }
.text-jade { color: var(--jade); }
.text-coral { color: var(--coral); }
.text-saffron { color: var(--saffron-deep); }

/* Section eyebrow label */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--coral);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--coral);
  display: inline-block;
}

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - 2 * var(--gutter), var(--container-wide)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section-tight { padding: clamp(48px, 6vw, 84px) 0; }
.center { text-align: center; }
.stack-sm > * + * { margin-top: 0.75rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }
.section-head { max-width: 64ch; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 0.6rem; }
.section-head p { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.95em 1.7em;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--jade); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--jade-deep); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-gold { background: var(--saffron); color: var(--ink); box-shadow: 0 10px 24px -10px rgba(201,135,31,0.6); }
.btn-gold:hover { background: var(--saffron-deep); color: #fff; transform: translateY(-3px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--jade); color: var(--jade); transform: translateY(-3px); }
.btn-light { background: rgba(255,255,255,0.14); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); backdrop-filter: blur(6px); }
.btn-light:hover { background: #fff; color: var(--jade); transform: translateY(-3px); }
.btn-block { width: 100%; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; color: var(--jade);
  transition: gap 0.3s var(--ease), color 0.3s ease;
}
.link-arrow svg { transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--coral); gap: 0.8em; }
.link-arrow:hover svg { transform: translateX(2px); }

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(251, 246, 236, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -22px rgba(32,33,28,0.4);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; line-height: 1; letter-spacing: -0.02em; }
.brand-text small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral-deep); margin-top: 3px; }

/* nav color adapts to hero (light) vs scrolled (ink) */
.site-header .nav-link,
.site-header .brand-text,
.site-header .icon-btn { color: #fff; }
.site-header.scrolled .nav-link,
.site-header.scrolled .brand-text,
.site-header.scrolled .icon-btn { color: var(--ink); }
.site-header.solid .nav-link,
.site-header.solid .brand-text,
.site-header.solid .icon-btn { color: var(--ink); }
.site-header.solid { background: rgba(251,246,236,0.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }

.main-nav { display: flex; align-items: center; gap: 0.3rem; }
.nav-link {
  position: relative;
  padding: 0.5rem 0.9rem;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.32rem;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--saffron) !important; }

.header-actions { display: flex; align-items: center; gap: 0.4rem; }
.icon-btn {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  position: relative;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.icon-btn:hover { background: rgba(232,163,61,0.18); transform: translateY(-1px); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 4px; right: 2px;
  min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--coral); color: #fff;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  border-radius: var(--radius-pill);
  display: grid; place-items: center;
  transform: scale(0); transition: transform 0.3s var(--ease);
}
.cart-count.show { transform: scale(1); }
.nav-toggle { display: none; }

/* Mobile nav */
@media (max-width: 920px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(82vw, 360px);
    background: var(--jade-deep);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0.2rem;
    padding: 100px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    box-shadow: -30px 0 60px -30px rgba(0,0,0,0.6);
  }
  .main-nav.open { transform: translateX(0); }
  .site-header .main-nav .nav-link,
  .site-header.scrolled .main-nav .nav-link { color: #F3EAD8; font-size: 1.1rem; padding: 0.85rem 1rem; border-radius: var(--radius); }
  .main-nav .nav-link::after { display: none; }
  .main-nav .nav-link:hover, .main-nav .nav-link.active { background: rgba(255,255,255,0.08); color: #fff !important; }
  .nav-toggle { display: inline-grid; z-index: 1100; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(10,33,27,0.5);
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease; z-index: 999; backdrop-filter: blur(2px);
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 8vh, 96px);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,33,27,0.30) 0%, rgba(10,33,27,0.05) 30%, rgba(10,33,27,0.55) 78%, rgba(10,33,27,0.82) 100%),
    radial-gradient(120% 80% at 80% 10%, rgba(232,103,76,0.18), transparent 50%);
}
.hero-inner { max-width: 760px; }
.hero .eyebrow { color: #FBD9A0; }
.hero .eyebrow::before { background: var(--saffron); }
.hero h1 { color: #fff; margin: 1rem 0 1.2rem; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero h1 em { color: var(--saffron); }
.hero-lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: rgba(255,255,255,0.92); max-width: 54ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

/* hero search bar */
.hero-search {
  margin-top: 2.4rem;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius);
  padding: 8px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  max-width: 640px;
}
.hero-search .field { flex: 1 1 160px; display: flex; flex-direction: column; padding: 8px 16px; min-width: 0; }
.hero-search .field + .field { border-left: 1px solid var(--line); }
.hero-search label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-deep); }
.hero-search select, .hero-search input {
  border: none; background: none; color: var(--ink); font-weight: 600; padding: 2px 0; width: 100%;
  outline: none;
}
.hero-search .btn { flex: 0 0 auto; align-self: stretch; }

/* hero stats strip */
.hero-stats {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  display: none;
}

/* scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.8);
  z-index: 1;
}
.scroll-cue span.dot {
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,0.6); border-radius: 14px; position: relative;
}
.scroll-cue span.dot::after {
  content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; border-radius: 4px; background: #fff;
  transform: translateX(-50%); animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translate(-50%, 14px); } }

/* page hero (interior pages) */
.page-hero {
  position: relative; min-height: 62vh; display: flex; align-items: flex-end;
  color: #fff; padding-bottom: clamp(40px, 6vw, 72px); isolation: isolate; overflow: hidden;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; animation: heroZoom 16s var(--ease) forwards; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,33,27,0.35) 0%, rgba(10,33,27,0.15) 40%, rgba(10,33,27,0.78) 100%);
}
.page-hero h1 { color: #fff; max-width: 16ch; }
.page-hero .hero-lead { margin-top: 1rem; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-bottom: 0.5rem; }
.breadcrumb a:hover { color: var(--saffron); }
.breadcrumb svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.8; }

/* =================================================================
   MARQUEE / trust strip
   ================================================================= */
.marquee {
  background: var(--jade-deep); color: #F3EAD8; overflow: hidden; padding: 16px 0;
  border-block: 1px solid rgba(255,255,255,0.08);
}
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--font-display); font-size: 1.15rem; font-style: italic; white-space: nowrap; opacity: 0.92; }
.marquee-item svg { width: 18px; height: 18px; color: var(--saffron); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =================================================================
   DESTINATIONS GRID (editorial mosaic)
   ================================================================= */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 3rem;
}
.dest-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: 280px; display: flex; align-items: flex-end; isolation: isolate;
  color: #fff; box-shadow: var(--shadow-md);
}
.dest-card:nth-child(1) { grid-column: span 4; min-height: 420px; }
.dest-card:nth-child(2) { grid-column: span 2; }
.dest-card:nth-child(3) { grid-column: span 2; }
.dest-card:nth-child(4) { grid-column: span 2; }
.dest-card:nth-child(5) { grid-column: span 2; }
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.8s var(--ease); }
.dest-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,33,27,0) 35%, rgba(10,33,27,0.82) 100%); transition: background 0.5s ease; }
.dest-card:hover img { transform: scale(1.07); }
.dest-card:hover::after { background: linear-gradient(180deg, rgba(10,33,27,0.1) 20%, rgba(10,33,27,0.9) 100%); }
.dest-body { padding: clamp(18px, 2vw, 28px); width: 100%; }
.dest-body .kicker { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron); }
.dest-body h3 { color: #fff; margin: 0.3rem 0; font-size: clamp(1.4rem, 2.4vw, 2rem); }
.dest-body p { color: rgba(255,255,255,0.85); font-size: 0.92rem; max-width: 42ch; opacity: 0; max-height: 0; transition: opacity 0.4s ease, max-height 0.5s var(--ease), margin 0.4s ease; }
.dest-card:hover .dest-body p { opacity: 1; max-height: 80px; margin-top: 0.4rem; }
.dest-tag { display: inline-flex; align-items: center; gap: 0.4em; margin-top: 0.8rem; font-size: 0.85rem; font-weight: 600; color: #fff; }
.dest-tag svg { width: 1em; height: 1em; transition: transform 0.3s var(--ease); }
.dest-card:hover .dest-tag svg { transform: translateX(4px); }

/* =================================================================
   PACKAGES / trip cards (booking UI)
   ================================================================= */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 28px; margin-top: 3rem; }
.pkg-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.pkg-card:hover .pkg-media img { transform: scale(1.06); }
.pkg-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--saffron); color: var(--ink);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.4em 0.85em; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.pkg-fav {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(4px);
  display: grid; place-items: center; color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.pkg-fav:hover { transform: scale(1.1); color: var(--coral); }
.pkg-fav.active { color: var(--coral); }
.pkg-fav svg { width: 18px; height: 18px; }
.pkg-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pkg-meta { display: flex; gap: 1rem; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 0.6rem; flex-wrap: wrap; }
.pkg-meta span { display: inline-flex; align-items: center; gap: 0.35em; }
.pkg-meta svg { width: 1em; height: 1em; color: var(--jade-bright); }
.pkg-card h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.pkg-card .pkg-sub { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1rem; }
.pkg-rating { display: inline-flex; align-items: center; gap: 0.35em; font-size: 0.85rem; font-weight: 600; color: var(--saffron-deep); margin-bottom: 0.8rem; }
.pkg-rating svg { width: 15px; height: 15px; fill: var(--saffron); }
.pkg-rating .muted { color: var(--ink-soft); font-weight: 500; }
.pkg-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.pkg-price .from { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); }
.pkg-price .amount { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--jade); line-height: 1; }
.pkg-price .unit { font-size: 0.8rem; color: var(--ink-soft); }
.add-cart {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--jade); color: #fff; padding: 0.7em 1.2em;
  border-radius: var(--radius-pill); font-weight: 600; font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}
.add-cart svg { width: 1.05em; height: 1.05em; }
.add-cart:hover { background: var(--coral); transform: translateY(-2px); }
.add-cart.added { background: var(--jade-bright); }

/* =================================================================
   FEATURE / "why us" panels
   ================================================================= */
.feature-band { background: var(--jade); color: #fff; position: relative; overflow: hidden; }
.feature-band .motif-temple { position: absolute; right: -40px; bottom: -30px; width: 380px; opacity: 0.08; color: var(--saffron); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px 32px; margin-top: 3rem; position: relative; }
.feature { }
.feature-ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: var(--saffron);
  margin-bottom: 1.1rem;
}
.feature-ic svg { width: 28px; height: 28px; }
.feature h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.45rem; }
.feature p { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.feature-band .eyebrow { color: var(--saffron); }
.feature-band .eyebrow::before { background: var(--saffron); }
.feature-band h2 { color: #fff; }

/* stats row */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px; margin-top: 3.4rem; padding-top: 2.4rem; border-top: 1px solid rgba(255,255,255,0.16); position: relative; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; color: var(--saffron); line-height: 1; }
.stat .lbl { font-size: 0.86rem; color: rgba(255,255,255,0.8); margin-top: 0.4rem; }

/* =================================================================
   SPLIT / editorial intro
   ================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.split-media .img-2 {
  position: absolute; width: 46%; aspect-ratio: 1; bottom: -28px; right: -22px;
  border-radius: var(--radius); border: 6px solid var(--cream); box-shadow: var(--shadow-md);
}
.split-media .badge-float {
  position: absolute; top: 22px; left: -22px;
  background: var(--surface); border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.8rem;
}
.badge-float .bf-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--coral); color: #fff; display: grid; place-items: center; }
.badge-float .bf-ic svg { width: 22px; height: 22px; }
.badge-float .bf-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--jade); line-height: 1; }
.badge-float .bf-lbl { font-size: 0.78rem; color: var(--ink-soft); }

.info-list { margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list .ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; background: rgba(14,92,74,0.1); color: var(--jade); display: grid; place-items: center; margin-top: 2px; }
.info-list .ic svg { width: 17px; height: 17px; }
.info-list strong { display: block; color: var(--ink); }
.info-list span { font-size: 0.92rem; color: var(--ink-soft); }

/* =================================================================
   PRACTICAL INFO cards (destination pages)
   ================================================================= */
.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; margin-top: 2.6rem; }
.fact {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.fact:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fact .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--cream-deep); color: var(--coral-deep); display: grid; place-items: center; margin-bottom: 1rem; }
.fact .ic svg { width: 24px; height: 24px; }
.fact h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.fact .big { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--jade); margin: 0.2rem 0; }
.fact p { font-size: 0.9rem; }

/* highlight list (top places) */
.highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; margin-top: 3rem; }
.hl-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 360px; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-md); isolation: isolate; }
.hl-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.8s var(--ease); }
.hl-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(10,33,27,0.85) 100%); }
.hl-card:hover img { transform: scale(1.06); }
.hl-body { padding: 26px; }
.hl-num { font-family: var(--font-display); font-size: 0.9rem; color: var(--saffron); font-weight: 600; }
.hl-body h3 { color: #fff; margin: 0.3rem 0 0.5rem; }
.hl-body p { color: rgba(255,255,255,0.85); font-size: 0.92rem; }

/* =================================================================
   BLOG cards
   ================================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 30px; margin-top: 3rem; }
.blog-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-deep); }
.blog-card h3 { font-size: 1.3rem; margin: 0.5rem 0 0.6rem; transition: color 0.25s ease; }
.blog-card:hover h3 { color: var(--jade); }
.blog-card p { font-size: 0.93rem; margin-bottom: 1rem; }
.blog-foot { margin-top: auto; display: flex; align-items: center; gap: 0.6rem; font-size: 0.84rem; color: var(--ink-soft); padding-top: 0.9rem; border-top: 1px solid var(--line); }
.blog-foot .avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.blog-feature { grid-column: 1 / -1; }
@media (min-width: 760px) {
  .blog-feature { display: grid; grid-template-columns: 1.15fr 1fr; }
  .blog-feature .blog-media { aspect-ratio: auto; }
  .blog-feature .blog-body { padding: clamp(28px, 4vw, 52px); justify-content: center; }
  .blog-feature h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
}

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; margin-top: 3rem; }
.testi { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); position: relative; }
.testi .quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.5; color: var(--saffron); height: 30px; display: block; }
.testi p { color: var(--ink); font-size: 1.02rem; margin: 0.4rem 0 1.4rem; }
.testi-who { display: flex; align-items: center; gap: 0.8rem; }
.testi-who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-who strong { display: block; }
.testi-who span { font-size: 0.85rem; color: var(--ink-soft); }
.testi-stars { color: var(--saffron); display: inline-flex; gap: 2px; }
.testi-stars svg { width: 15px; height: 15px; fill: currentColor; }

/* =================================================================
   NEWSLETTER / CTA band
   ================================================================= */
.cta-band {
  position: relative; overflow: hidden; color: #fff; isolation: isolate;
  border-radius: var(--radius-lg);
}
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(10,33,27,0.92), rgba(10,33,27,0.55)); }
.cta-inner { padding: clamp(44px, 7vw, 88px) clamp(28px, 6vw, 80px); max-width: 640px; }
.cta-inner h2 { color: #fff; }
.cta-inner .eyebrow { color: var(--saffron); }
.cta-inner .eyebrow::before { background: var(--saffron); }
.subscribe { display: flex; gap: 10px; margin-top: 1.8rem; flex-wrap: wrap; max-width: 480px; }
.subscribe input {
  flex: 1 1 220px; padding: 1em 1.4em; border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.12);
  color: #fff; outline: none; transition: border 0.3s ease, background 0.3s ease;
}
.subscribe input::placeholder { color: rgba(255,255,255,0.7); }
.subscribe input:focus { border-color: var(--saffron); background: rgba(255,255,255,0.18); }
.subscribe .note { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 0.9rem; }
.subscribe-msg { margin-top: 1rem; font-weight: 600; color: var(--saffron); min-height: 1.2em; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--ink); color: #C9C5B6; padding-top: clamp(56px, 7vw, 96px); position: relative; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand-text { color: #fff; }
.footer-about { font-size: 0.94rem; margin: 1.2rem 0 1.5rem; color: #A8A496; max-width: 38ch; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); display: grid; place-items: center; color: #C9C5B6; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--saffron); color: var(--ink); border-color: var(--saffron); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col a { display: block; padding: 0.4rem 0; color: #A8A496; font-size: 0.94rem; transition: color 0.25s ease, padding 0.25s ease; }
.footer-col a:hover { color: var(--saffron); padding-left: 6px; }
.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.4rem 0; font-size: 0.94rem; color: #A8A496; }
.footer-contact svg { width: 17px; height: 17px; color: var(--saffron); flex: 0 0 auto; margin-top: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 28px 0; flex-wrap: wrap; font-size: 0.85rem; color: #87836f; }
.footer-bottom .pays { display: flex; gap: 0.6rem; align-items: center; }
.footer-bottom .pays span { padding: 4px 10px; border: 1px solid rgba(255,255,255,0.12); border-radius: 7px; font-weight: 600; font-size: 0.72rem; letter-spacing: 0.05em; }

/* =================================================================
   CART DRAWER
   ================================================================= */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 2000;
  width: min(92vw, 420px); background: var(--cream);
  transform: translateX(100%); transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column; box-shadow: -30px 0 70px -30px rgba(0,0,0,0.5);
}
.cart-drawer.open { transform: translateX(0); }
.cart-overlay { position: fixed; inset: 0; background: rgba(10,33,27,0.5); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity 0.4s ease; z-index: 1999; }
.cart-overlay.show { opacity: 1; pointer-events: auto; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.3rem; }
.cart-head .close { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; transition: background 0.25s ease; }
.cart-head .close:hover { background: var(--cream-deep); }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.cart-empty svg { width: 64px; height: 64px; color: var(--line); margin: 0 auto 1rem; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 76px; height: 76px; border-radius: 12px; object-fit: cover; flex: 0 0 auto; }
.cart-item .ci-body { flex: 1; min-width: 0; }
.cart-item h4 { font-family: var(--font-body); font-size: 0.97rem; font-weight: 600; }
.cart-item .ci-sub { font-size: 0.82rem; color: var(--ink-soft); }
.cart-item .ci-price { font-family: var(--font-display); color: var(--jade); font-weight: 600; margin-top: 0.2rem; }
.cart-item .ci-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; }
.qty button { width: 28px; height: 28px; display: grid; place-items: center; color: var(--ink); transition: background 0.2s ease; }
.qty button:hover { background: var(--cream-deep); }
.qty span { min-width: 28px; text-align: center; font-weight: 600; font-size: 0.9rem; }
.ci-remove { font-size: 0.8rem; color: var(--coral-deep); margin-left: auto; transition: opacity 0.2s ease; }
.ci-remove:hover { opacity: 0.7; text-decoration: underline; }
.cart-foot { padding: 22px 24px 26px; border-top: 1px solid var(--line); background: var(--cream-deep); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.cart-total .lbl { font-size: 0.92rem; color: var(--ink-soft); }
.cart-total .val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--jade); }
.cart-foot .note { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-top: 0.8rem; }

/* =================================================================
   MISC — section dividers, motifs
   ================================================================= */
.alt-bg { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.divider-wave { display: block; width: 100%; height: 40px; color: var(--cream); }
.pill-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.4rem; }
.pill { padding: 0.5em 1.05em; border-radius: var(--radius-pill); background: var(--surface); border: 1px solid var(--line); font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 0.4em; }
.pill svg { width: 1em; height: 1em; color: var(--coral); }

/* blog post page */
.post-hero h1 { max-width: 24ch; margin-top: 0.6rem; }
.post-cat { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--saffron); }
.post-meta { display: flex; align-items: center; gap: 0.55rem; margin-top: 1.3rem; font-size: 0.92rem; color: rgba(255,255,255,0.92); flex-wrap: wrap; }
.post-meta img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.5); }
.post-meta .dot { opacity: 0.5; }
.post-layout { display: flex; flex-direction: column; align-items: center; }
.post-body { margin-inline: auto; }
.post-lead { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.4; color: var(--ink); font-weight: 400; }
.post-back { margin-top: 3rem; }

/* prose for blog/about body text */
.prose { max-width: 70ch; }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose p, .prose li { font-size: 1.07rem; color: var(--ink-soft); }
.prose ul { display: grid; gap: 0.6rem; }
.prose ul li { display: flex; gap: 0.7rem; }
.prose ul li::before { content: ""; flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; background: var(--saffron); margin-top: 0.6rem; }
.prose blockquote { border-left: 3px solid var(--coral); padding-left: 1.4rem; font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--ink); }

/* =================================================================
   TOUR PAGE (day-by-day itinerary)
   ================================================================= */
.tour-hero h1 { max-width: 24ch; margin-top: 0.5rem; }
.tour-badge { display: inline-block; background: var(--saffron); color: var(--ink); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; padding: 0.42em 0.9em; border-radius: var(--radius-pill); margin-bottom: 0.5rem; }
.tour-hero-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.4rem; font-size: 0.95rem; color: rgba(255,255,255,0.94); }
.tour-hero-meta span { display: inline-flex; align-items: center; gap: 0.45em; }
.tour-hero-meta svg { width: 1.05em; height: 1.05em; }

.tour-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(32px, 5vw, 64px); align-items: start; }
.tour-content { min-width: 0; }

/* sticky booking card */
.tour-aside { position: sticky; top: 96px; }
.book-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-md); }
.book-price { display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap; }
.book-price .from { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }
.book-price .amount { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--jade); line-height: 1; }
.book-price .unit { font-size: 0.85rem; color: var(--ink-soft); }
.book-rating { display: flex; align-items: center; gap: 0.4em; margin: 0.7rem 0 1.2rem; font-size: 0.9rem; }
.book-rating svg { width: 16px; height: 16px; fill: var(--saffron); }
.book-rating .muted { color: var(--ink-soft); }
.book-facts { display: grid; gap: 0.75rem; padding: 1.2rem 0; margin-bottom: 1.3rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.book-facts li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.94rem; color: var(--ink); }
.book-facts svg { width: 18px; height: 18px; color: var(--jade-bright); flex: 0 0 auto; }
.book-add { width: 100%; justify-content: center; padding: 0.95em; font-size: 1rem; }
.book-note { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-top: 0.9rem; }

/* accordion */
.itinerary { display: flex; flex-direction: column; gap: 0.7rem; }
.day { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.3s ease, border-color 0.3s ease; }
.day[open] { box-shadow: var(--shadow-sm); border-color: rgba(14,92,74,0.45); }
.day summary { display: flex; align-items: center; gap: 1rem; padding: 17px 22px; cursor: pointer; list-style: none; }
.day summary::-webkit-details-marker { display: none; }
.day summary:hover .day-title { color: var(--jade); }
.day-num { flex: 0 0 auto; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; background: var(--jade); padding: 0.5em 0.75em; border-radius: var(--radius-pill); }
.day[open] .day-num { background: var(--coral); }
.day-title { flex: 1; font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--ink); transition: color 0.25s ease; }
.day-chev { flex: 0 0 auto; color: var(--jade); display: inline-flex; transition: transform 0.35s var(--ease); }
.day-chev svg { width: 18px; height: 18px; transform: rotate(90deg); }
.day[open] .day-chev { transform: rotate(180deg); }
.day-body { padding: 0 22px 20px 22px; }
.day-body p { color: var(--ink-soft); max-width: 64ch; }

/* includes / excludes */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.incl, .excl { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.incl-grid h4 { display: flex; align-items: center; gap: 0.5em; font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; margin-bottom: 1.1rem; color: var(--ink); }
.incl h4 svg { width: 18px; height: 18px; color: var(--jade-bright); }
.excl h4 svg { width: 16px; height: 16px; color: var(--coral); }
.incl-grid ul { display: grid; gap: 0.7rem; }
.incl-grid li { position: relative; padding-left: 1.3rem; font-size: 0.93rem; color: var(--ink-soft); }
.incl-grid li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 7px; height: 7px; border-radius: 50%; }
.incl li::before { background: var(--jade-bright); }
.excl li::before { background: var(--line); }

/* gallery */
.tour-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gal-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gal-item.gal-wide { grid-column: 1 / -1; aspect-ratio: 16/7; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gal-item:hover img { transform: scale(1.05); }

/* make package cards clickable (stretched link) */
.pkg-card { position: relative; }
.pkg-stretch { position: absolute; inset: 0; z-index: 1; }
.pkg-card .pkg-fav { z-index: 3; }
.pkg-card .pkg-foot { position: relative; z-index: 2; }
.pkg-card .pkg-media, .pkg-card h3 { cursor: pointer; }

@media (max-width: 980px) {
  .tour-grid { grid-template-columns: 1fr; }
  .tour-aside { position: static; order: -1; }
}
@media (max-width: 560px) {
  .incl-grid { grid-template-columns: 1fr; }
  .tour-gallery { grid-template-columns: 1fr; }
  .gal-item.gal-wide { aspect-ratio: 4/3; }
}

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1000px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card:nth-child(1) { grid-column: span 2; min-height: 340px; }
  .dest-card { grid-column: span 1 !important; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero { min-height: auto; align-items: stretch; padding-top: 104px; padding-bottom: 52px; }
  .hero .eyebrow { font-size: 0.7rem; }
  .scroll-cue { display: none; }
  .page-hero { min-height: 52vh; padding-top: 96px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 16/11; }
  .split-media .img-2 { display: none; }
  .split-media .badge-float { left: 12px; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card, .dest-card:nth-child(1) { grid-column: span 1 !important; min-height: 300px; }
  .dest-body p { opacity: 1; max-height: none; margin-top: 0.4rem; }
  .hero-search { flex-direction: column; }
  .hero-search .field + .field { border-left: none; border-top: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
