/* ============================================================
   Velvet Wild Safaris — stylesheet
   Premium safari brand. No gradients. Flat, editorial, clean.
   ============================================================ */

:root {
  --green:        #145225;
  --green-dark:   #0E3D1B;
  --green-light:  #1E6B38;
  --gold:         #B88A27;
  --gold-dark:    #9A7320;
  --gold-light:   #DAB97A;
  --brown:        #593A20;
  --brown-dark:   #2F1206;
  --sandstone:    #7F6140;
  --cream:        #F5F1E8;
  --cream-dim:    #c9c4b4;
  --sand-light:   #D6D9C7;
  --white:        #FFFFFF;

  --ink:          #2F1206;
  --ink-soft:     #593A20;
  --muted:        #593A20;
  --line:         #D6D9C7;

  --maxw:         1200px;
  --gutter:       20px;
  --section-y:    64px;
  --radius:       10px;
  --radius-lg:    16px;

  --serif:        "Fraunces", Georgia, "Times New Roman", serif;
  --sans:         "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shadow-sm:    0 1px 3px rgba(47,18,6,.10);
  --shadow:       0 1px 2px rgba(47,18,6,.06), 0 6px 24px rgba(47,18,6,.08);
  --shadow-lg:    0 24px 60px -20px rgba(47,18,6,.25);

  --ease:         cubic-bezier(.2,.7,.2,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: var(--green); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 600; line-height: 1.2; letter-spacing: -.01em; color: var(--green); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1em; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: 40px; }
.section--cream { background: var(--cream); color: var(--ink); }
.section--white { background: var(--white); color: var(--ink); }
.section--green { background: var(--green); color: var(--white); }
.section--green h1, .section--green h2, .section--green h3, .section--green h4 { color: var(--white); }
.section--green a { color: var(--gold-light); }
.section--green .lead { color: var(--sand-light); }
.section--dark { background: var(--brown-dark); color: var(--sand-light); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--brown { background: var(--brown-dark); }

.eyebrow {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: inline-block;
}
.eyebrow--center { display: block; text-align: center; }
.section--green .eyebrow { color: var(--gold-light); }

.h-display {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.h-section {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
}
.h-card { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }

.lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 60ch;
}
.section--cream .lead { color: var(--ink-soft); }

.text-gold { color: var(--gold); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- divider (CSS-only, no SVG) ---------- */
.divider {
  height: 1px; background: var(--line); margin: 32px 0; border: none;
  max-width: 200px; margin-inline: auto;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: .85em 1.6em; border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
  line-height: 1; text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-dark); color: var(--white); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-dark); color: var(--white); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--green); }
.btn--outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline-green:hover { background: var(--green); color: var(--white); }
.btn--cream { background: var(--cream); border-color: var(--cream); color: var(--green); }
.btn--cream:hover { background: var(--white); color: var(--green); }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 1em 2em; font-size: 1.1rem; }
.btn--sm { padding: .6em 1.1em; font-size: .9rem; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- header (white sticky bar) ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 8px 0; min-height: 72px;
}
.brand { display: flex; align-items: center; color: var(--green); flex-shrink: 0; }
.brand:hover { color: var(--green); }
.brand-logo {
  height: 100%; width: auto; max-height: 64px;
  display: block; object-fit: contain;
}
.brand-logo-footer {
  max-height: 80px; margin-bottom: 14px;
}

.nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav__link {
  font-size: .95rem; font-weight: 500;
  padding: .5em .85em; border-radius: 6px;
  color: var(--brown-dark);
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover { background: var(--cream); color: var(--green); }
.nav__link.is-active { color: var(--green); font-weight: 600; }
.nav__cta {
  background: var(--gold); color: var(--white) !important;
  font-weight: 600; margin-left: 6px; border-radius: var(--radius);
  padding: .5em 1.2em !important;
}
.nav__cta:hover { background: var(--gold-dark); color: var(--white) !important; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 28px; height: 22px; background: none; border: none; padding: 0;
}
.nav-toggle span {
  display: block; height: 3px; width: 100%; background: var(--green);
  border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(47,18,6,.4);
  opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 99;
}
body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

.nav-close {
  display: none;
  position: absolute; top: 14px; right: 14px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--green); border-radius: 8px;
  transition: background .15s ease;
}
.nav-close:hover { background: var(--cream); }

@media (max-width: 940px) {
  .brand-logo { max-height: 48px; }
  .header-inner { min-height: 60px; padding-top: 6px; padding-bottom: 6px; }
  .nav-toggle { display: flex; align-self: center; }
  .nav-close { display: flex; }
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh;
    width: min(300px, 82vw); background: var(--white);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 76px 18px 24px;
    box-shadow: -8px 0 32px rgba(47,18,6,.18);
    transform: translateX(100%); transition: transform .25s ease;
    overflow-y: auto; z-index: 110;
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav__link {
    padding: 14px 12px; border-radius: 8px; font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
    min-height: 48px; display: flex; align-items: center;
  }
  .nav__link:hover { background: var(--cream); }
  .nav__link.is-active { background: var(--cream); }
  .nav__cta { margin: 14px 0 0; text-align: center; min-height: 48px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: clamp(520px, 82vh, 760px);
  display: flex; align-items: flex-end;
  padding-top: 56px; padding-bottom: clamp(4.5rem, 8vw, 5.5rem);
  overflow: hidden; background: var(--green);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__veil { position: absolute; inset: 0; background: rgba(20,82,37,.65); z-index: 1; }
.hero__content { position: relative; z-index: 2; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.2rem;
}
.hero__kicker::before { content: ""; width: 28px; height: 1px; background: var(--gold-light); }
.hero__title { color: var(--white); max-width: 18ch; }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__sub {
  margin-top: 1.4rem; max-width: 54ch; font-size: 1.25rem;
  color: var(--sand-light); line-height: 1.55;
}
.hero__sub strong { color: var(--gold-light); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.hero__trust span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(218,185,122,.28);
  border-radius: 100px;
  font-size: .8rem; color: var(--sand-light);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero__trust strong {
  color: var(--gold-light); font-weight: 700;
  font-family: var(--serif); font-size: .95rem; line-height: 1;
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  z-index: 2; color: var(--cream-dim); font-size: .68rem; letter-spacing: .25em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero__scroll .line { width: 1px; height: 34px; background: var(--gold-dark); position: relative; overflow: hidden; }
.hero__scroll .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 50%; background: var(--gold);
  animation: scrollline 2.2s var(--ease) infinite;
}
@keyframes scrollline { 0%{top:-50%} 60%{top:120%} 100%{top:120%} }

/* ---------- stats band ---------- */
.stats {
  background: var(--green);
  color: var(--white);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stats__item { text-align: center; }
.stats__num { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--gold-light); line-height: 1; }
.stats__label { font-size: .9rem; color: var(--sand-light); margin-top: 6px; }
@media (max-width: 760px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .stats__num { font-size: 1.8rem; }
}

/* ---------- destination pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: clamp(320px, 38vw, 440px);
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--green-dark);
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  isolation: isolate;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar__img { position: absolute; inset: 0; z-index: -1; }
.pillar__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.pillar:hover .pillar__img img { transform: scale(1.05); }
.pillar__veil { position: absolute; inset: 0; z-index: -1; background: var(--green-dark); opacity: .5; }
.pillar__body { padding: clamp(1.2rem, 2.4vw, 1.8rem); }
.pillar__kicker { font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.pillar__name { font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--cream); margin-top: .3rem; }
.pillar__tag { color: var(--cream-dim); font-size: .92rem; margin-top: .4rem; }
.pillar__cta {
  margin-top: 1rem; display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--gold);
}
.pillar__cta .arrow { transition: transform .25s var(--ease); }
.pillar:hover .pillar__cta .arrow { transform: translateX(5px); }

/* ---------- editorial split ---------- */
.split {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}
.split__media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__list { margin: 1.2rem 0 0; display: grid; gap: .7rem; }
.split__list li { display: flex; gap: .7rem; align-items: flex-start; }
.split__list .tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; margin-top: .15rem;
}
.section--cream .split__list .tick { border-color: var(--brown); color: var(--brown); }

/* ---------- package list (hub) ---------- */
.pkg-list { display: grid; gap: 24px; }
.pkg-row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1rem, 3vw, 2.4rem);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.pkg-row:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow); }
@media (max-width: 720px) { .pkg-row { grid-template-columns: 1fr; padding: 18px; } }
.pkg-row__kicker { font-size: .72rem; letter-spacing: .03em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.pkg-row__name { font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--green); margin-top: .25rem; }
.pkg-row__meta { display: flex; flex-wrap: wrap; gap: .4rem .9rem; margin-top: .8rem; font-size: .85rem; color: var(--muted); }
.pkg-row__meta span { display: inline-flex; align-items: center; gap: .35rem; }
.pkg-row__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.pkg-row__price { text-align: right; }
@media (max-width: 720px) { .pkg-row__price { text-align: left; } }
.pkg-row__from { font-size: .72rem; color: var(--muted); }
.pkg-row__amount { font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 2.5rem); color: var(--green); font-weight: 600; line-height: 1; margin-top: .25rem; }
.pkg-row__amount small { font-size: 1rem; color: var(--muted); font-family: var(--sans); font-weight: 400; }
.pkg-row__cta { margin-top: .9rem; }

/* ---------- package detail ---------- */
.pkg-hero { position: relative; padding-top: 56px; padding-bottom: clamp(2rem, 5vw, 3rem); overflow: hidden; background: var(--green); }
.pkg-hero__bg { position: absolute; inset: 0; z-index: 0; }
.pkg-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.pkg-hero__veil { position: absolute; inset: 0; background: rgba(20,82,37,.65); z-index: 1; }
.pkg-hero__content { position: relative; z-index: 2; }
.pkg-crumb { font-size: .78rem; color: var(--cream-dim); margin-bottom: 1rem; }
.pkg-crumb a { color: var(--gold-light); }
.pkg-hero__title { font-size: clamp(2.2rem, 5.5vw, 3.6rem); color: var(--white); }
.pkg-hero__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 1.2rem; }
.pkg-hero__meta div { display: flex; flex-direction: column; }
.pkg-hero__meta dt { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); }
.pkg-hero__meta dd { margin: .15rem 0 0; font-size: .98rem; color: var(--sand-light); }
.pkg-hero__price {
  margin-top: 1.6rem; display: inline-flex; flex-direction: column;
  background: rgba(14,61,27,.7); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: .9rem 1.3rem;
}
.pkg-hero__price .from { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sand-light); }
.pkg-hero__price .amt { font-family: var(--serif); font-size: 2rem; color: var(--gold-light); line-height: 1; }
.pkg-hero__price .amt small { font-size: .9rem; color: var(--sand-light); font-family: var(--sans); }

.pkg-body { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
@media (max-width: 1024px) { .pkg-body { grid-template-columns: 1fr; } }
.pkg-block { margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.pkg-block h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .9rem; margin-top: 36px; }
.pkg-block h2:first-child { margin-top: 0; }
.pkg-highlights { display: grid; gap: .6rem; }
.pkg-highlights li { display: flex; gap: .7rem; align-items: flex-start; padding-left: 26px; position: relative; }
.pkg-highlights li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }

.itin { border-left: 1px solid var(--line); }
.itin__day { position: relative; padding: 0 0 1.6rem 1.6rem; }
.itin__day::before {
  content: ""; position: absolute; left: -5px; top: .35rem; width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 3px var(--cream);
}
.itin__day:last-child { padding-bottom: 0; }
.itin__label { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.itin__title { font-family: var(--serif); font-size: 1.2rem; color: var(--green); margin: .15rem 0 .3rem; }
.itin__desc { color: var(--muted); font-size: .94rem; }

.inex { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 520px) { .inex { grid-template-columns: 1fr; } }
.inex__col h3 { font-size: 1.1rem; margin-bottom: .7rem; }
.inex__col ul { display: grid; gap: .5rem; }
.inex__col li { display: flex; gap: .6rem; font-size: .92rem; color: var(--ink); padding-left: 26px; position: relative; }
.inex__col li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; }
.inex__col--in li::before { background: var(--green); }
.inex__col--ex li::before { background: var(--sandstone); }

.pkg-aside {
  position: sticky; top: 90px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.pkg-aside__price { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; font-weight: 600; }
.pkg-aside__price small { font-size: .9rem; color: var(--muted); font-family: var(--sans); font-weight: 400; }
.pkg-aside__from { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--sandstone); font-weight: 600; margin-bottom: .3rem; }
.pkg-aside dl { display: grid; gap: 12px; margin: 18px 0; }
.pkg-aside dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--sandstone); font-weight: 600; }
.pkg-aside dd { font-size: .95rem; color: var(--ink); margin-top: 2px; }
.pkg-aside .btn { margin-top: .4rem; }
.pkg-aside__note { font-size: .76rem; color: var(--muted); margin-top: .8rem; text-align: center; }
@media (max-width: 1024px) { .pkg-aside { position: static; } }

/* ---------- testimonials (smooth infinite marquee, single line) ---------- */
.testimonials-section { overflow: hidden; padding-bottom: 60px; }
.testimonials-marquee {
  overflow: hidden; width: 100%; margin-top: 40px;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.testimonials-track {
  display: flex; gap: 22px; width: max-content;
  animation: tmarquee 60s linear infinite;
  will-change: transform;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes tmarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  flex-shrink: 0; width: 380px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; padding: 26px 28px 22px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  margin: 4px 0;
}
.section--dark .quote { background: rgba(255,255,255,.06); border-color: rgba(214,217,199,.15); color: var(--sand-light); }
.section--dark .quote__text { color: var(--sand-light); }
.section--dark .quote__name { color: var(--white); }
.section--dark .quote__trip { color: var(--gold-light); }
.section--dark .quote__loc { color: var(--sandstone); }
.section--dark .quote__by { border-top-color: rgba(214,217,199,.15); }
.quote__stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 3px; line-height: 1; }
.section--dark .quote__stars { color: var(--gold-light); }
.quote__mark { font-family: var(--serif); font-size: 3rem; color: var(--gold); line-height: .6; opacity: .4; }
.quote__text {
  font-size: .93rem; line-height: 1.68; color: var(--ink); font-style: italic; margin: 0; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.quote__by { display: flex; gap: 13px; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); margin-top: auto; }
.quote__photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; border: 2px solid var(--gold); }
.quote__name { font-weight: 700; font-size: .92rem; color: var(--green); }
.quote__trip { font-size: .73rem; color: var(--green); font-weight: 600; }
.quote__loc { font-size: .76rem; color: var(--muted); }

@media (max-width: 760px) {
  .quote { width: 310px; padding: 22px 22px 18px; }
  .quote__photo { width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .quote { width: 280px; padding: 18px 18px 14px; }
}

/* ---------- faq (native <details>) ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer; padding: 18px 0;
  font-family: var(--serif); font-weight: 600; color: var(--green);
  font-size: 1.05rem; list-style: none;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; font-weight: 400; transition: transform .2s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding-bottom: 18px; color: var(--muted); }
.section--dark .faq__item { border-bottom-color: rgba(214,217,199,.15); }
.section--dark .faq__item summary { color: var(--white); }
.section--dark .faq__item p { color: var(--sand-light); }

/* ---------- photo gallery (CKS-style mosaic grid) ---------- */
.photo-gallery-section { background: var(--cream); }
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 32px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--green-dark);
  position: relative;
  text-decoration: none;
}
.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 8 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease), filter .45s var(--ease);
  filter: brightness(.93);
}
.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.045);
  filter: brightness(1.05);
}
.gallery-item:focus { outline: 3px solid var(--gold); outline-offset: 2px; }
.gallery-caption {
  text-align: center;
  font-size: .88rem;
  color: var(--brown-dark);
  margin-top: 18px;
}
.gallery-caption a { color: var(--green-dark); font-weight: 600; }
.gallery-caption a:hover { color: var(--gold-dark); }

@media (max-width: 880px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .gallery-wide { grid-column: span 2; aspect-ratio: 16 / 7; }
}
@media (max-width: 560px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .gallery-wide { aspect-ratio: 2 / 1; }
}

/* ---------- photo lightbox modal ---------- */
.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 20, 14, .94);
  padding: 20px;
}
.photo-modal[hidden] { display: none; }
.photo-modal-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: .7;
  padding: 6px 12px;
  z-index: 2001;
  border-radius: 4px;
  transition: opacity .15s var(--ease), background .15s var(--ease);
}
.photo-modal-close:hover,
.photo-modal-close:focus { opacity: 1; background: rgba(244,241,232,.12); outline: none; }
.photo-modal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(92vw, 1100px);
}
.photo-modal-inner img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.photo-modal-caption {
  color: var(--cream-dim);
  font-size: .88rem;
  margin-top: 14px;
  text-align: center;
  max-width: 640px;
  line-height: 1.5;
}

/* ---------- about ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
@media (max-width: 820px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .values { grid-template-columns: 1fr; } }
.value {
  background: var(--cream); color: var(--ink); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem); border: 1px solid var(--line);
}
.value__icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 1rem; }
.value h3 { font-size: 1.3rem; color: var(--green); }
.value p { color: var(--muted); font-size: .95rem; margin-top: .5rem; }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info__row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-info__row:last-child { border-bottom: 0; }
.contact-info__icon { flex: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; }
.contact-info__label { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--sandstone); font-weight: 600; }
.contact-info__value { font-size: 1.05rem; color: var(--ink); margin-top: .15rem; }

.form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 480px) { .form__grid { grid-template-columns: 1fr; gap: 0; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 600; color: var(--brown-dark); }
.field input, .field select, .field textarea {
  background: var(--cream); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 14px; font: inherit; font-size: 1rem;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: var(--white); }
.field textarea { resize: vertical; min-height: 120px; }
.field .err { color: #B85C3C; font-size: .8rem; min-height: 1em; }
.form__consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }
.form__consent input { margin-top: .25rem; }

.alert { border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px; font-size: .94rem; font-weight: 500; }
.alert--ok { background: var(--green); border: 1px solid var(--green); color: var(--white); }
.alert--err { background: #FDF0EC; border: 1px solid #B85C3C; color: #B85C3C; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gold); color: var(--white);
  text-align: center; padding: 48px 0;
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 600px; margin: 0 auto 24px; font-size: 1.1rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band .btn--cream { background: var(--white); border-color: var(--white); color: var(--brown-dark); }
.cta-band .btn--cream:hover { background: var(--cream); }

/* ---------- footer ---------- */
/* ---------- footer ---------- */
.site-footer { background: var(--brown-dark); color: var(--sand-light); padding-top: 56px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } .footer-brand { grid-column: 1 / -1; } .footer-brand .brand-logo-footer { max-height: 56px; } }
.footer-brand .brand-logo-footer { max-height: 80px; }
.footer-brand p { color: var(--sand-light); font-size: .92rem; margin: 14px 0; max-width: 34ch; }
.footer h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 14px; }
.footer ul { display: grid; gap: 9px; }
.footer ul a { color: var(--sand-light); font-size: .92rem; }
.footer ul a:hover { color: var(--gold-light); }
.footer-contact li { color: var(--sand-light); font-size: .92rem; display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact a { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(214,217,199,.15); padding: 18px 0;
  font-size: .85rem; display: flex; flex-wrap: wrap; gap: 6px 16px;
  justify-content: space-between; align-items: center;
}
.footer-bottom p { margin: 0; color: var(--sandstone); }
.footer-bottom a { color: var(--sandstone); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- whatsapp float (green circle) ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 90; transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); color: var(--white); }
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 760px) { .wa-float { width: 50px; height: 50px; right: 14px; bottom: 14px; } .wa-float svg { width: 24px; height: 24px; } }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .08s; }
.reveal--d2 { transition-delay: .16s; }
.reveal--d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll .line::after { animation: none; }
}

/* ---------- 404 ---------- */
.notfound { min-height: 70vh; display: flex; align-items: center; text-align: center; padding-top: 56px; }
.notfound__code { font-family: var(--serif); font-size: clamp(4rem, 14vw, 9rem); color: var(--gold); line-height: 1; }

/* ---------- utility ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; }
.maxw-prose { max-width: 65ch; }
.breadcrumbs { font-size: .85rem; color: var(--sand-light); margin-bottom: 14px; }
.breadcrumbs a { color: var(--gold-light); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { color: var(--sandstone); margin: 0 .4rem; }

/* ================================================================== */
/* HOMEPAGE REDESIGN — CKS-inspired components                         */
/* ================================================================== */

/* ---------- destination quick-link cards ---------- */
.dest-cards-section { padding-top: 0; margin-top: -3rem; position: relative; z-index: 5; }
.dest-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.8rem, 1.8vw, 1.3rem);
}
@media (max-width: 980px) { .dest-cards { grid-template-columns: repeat(2, 1fr); } }

.dest-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.dest-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.dest-card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.dest-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.dest-card:hover .dest-card__img img { transform: scale(1.04); }
.dest-card__body { padding: clamp(1rem, 2vw, 1.4rem); }
.dest-card__kicker { font-size: .72rem; letter-spacing: .03em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.dest-card__name { font-size: clamp(1.3rem, 2.4vw, 1.65rem); color: var(--green); margin-top: .25rem; }
.dest-card__meta { display: block; font-size: .85rem; color: var(--muted); margin-top: .3rem; }
.dest-card__cta {
  margin-top: .9rem; display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 600; color: var(--green);
}
.dest-card__cta .arrow { transition: transform .25s var(--ease); }
.dest-card:hover .dest-card__cta .arrow { transform: translateX(5px); }

/* ---------- services strip ---------- */
.services-strip {
  background: var(--white);
  border-block: 1px solid var(--line);
}
.services-strip__head { margin-bottom: clamp(1.2rem, 3vw, 2rem); }
.services-strip__head .eyebrow { margin-bottom: .4rem; }
.services-strip__head p { color: var(--muted); font-size: 1rem; margin: 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 2rem);
}
@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-item { display: flex; gap: .9rem; align-items: flex-start; }
.service-item__icon {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
}
.service-item__title { font-family: var(--sans); font-size: .95rem; font-weight: 600; color: var(--green); margin: 0 0 .25rem; }
.service-item__desc { font-size: .85rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ---------- package section heading ---------- */
.pkg-section-head { margin-bottom: clamp(1.5rem, 3vw, 2.2rem); max-width: 70ch; }
.pkg-section-head .eyebrow { margin-bottom: .5rem; }
.pkg-section-head .lead { margin-top: .8rem; }

/* ---------- package cards (homepage + destination grid) ---------- */
.pkg-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 1100px) { .pkg-cards { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (max-width: 900px) { .pkg-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.pkg-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.pkg-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }

.pkg-card__img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--sand-light); }
.pkg-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.pkg-card:hover .pkg-card__img img { transform: scale(1.04); }
.pkg-card__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: var(--white);
  font-size: .72rem; font-weight: 600; padding: 4px 10px;
  border-radius: 20px; letter-spacing: .03em; text-transform: uppercase;
}

.pkg-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.pkg-card__name { font-size: 1.2rem; color: var(--green); margin-bottom: 8px; }
.pkg-card__meta {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  font-size: .85rem; color: var(--muted); margin-bottom: 12px;
}
.pkg-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.pkg-card__meta svg { color: var(--gold); flex: none; }

.pkg-card__desc { font-size: .95rem; color: var(--muted); line-height: 1.55; margin: 0 0 16px; flex: 1; }

.pkg-card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: auto;
}
.pkg-card__price { font-family: var(--serif); color: var(--green); font-size: 1.3rem; font-weight: 600; }
.pkg-card__price small { display: block; font-family: var(--sans); font-size: .72rem; color: var(--muted); font-weight: 400; }
.pkg-card__view {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .82rem; font-weight: 600; color: var(--green); white-space: nowrap;
}
.pkg-card__view .arrow { transition: transform .25s var(--ease); }
.pkg-card:hover .pkg-card__view .arrow { transform: translateX(5px); }

/* ---------- gallery preview (homepage, 6 items) ---------- */
.photo-gallery--preview { grid-template-columns: repeat(3, 1fr); }
.photo-gallery--preview .gallery-wide { grid-column: span 2; aspect-ratio: 2 / 1; }
@media (max-width: 880px) { .photo-gallery--preview { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .photo-gallery--preview { grid-template-columns: repeat(2, 1fr); } }

/* ---------- trust badges ---------- */
.trust-badges-section { background: var(--green); color: var(--white); }
.trust-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .9rem; font-weight: 600; color: var(--sand-light); white-space: nowrap;
}
.trust-badge svg { color: var(--gold-light); flex: none; }
@media (max-width: 760px) {
  .trust-badges {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px;
  }
  .trust-badge {
    padding: 7px 13px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(218,185,122,.28);
    border-radius: 100px;
    font-size: .78rem; justify-content: center; text-align: center;
    white-space: nowrap;
  }
  .trust-badge svg { width: 16px; height: 16px; }
}
@media (max-width: 480px) {
  .trust-badge { padding: 6px 10px; font-size: .72rem; gap: .4rem; }
  .trust-badge svg { width: 14px; height: 14px; }
}
@media (max-width: 380px) {
  .trust-badge { padding: 5px 8px; font-size: .66rem; gap: .35rem; }
  .trust-badge svg { width: 13px; height: 13px; }
}

/* ==========================================================================
   Responsive — layered breakpoints for optimal mobile UX
   Strategy: 760px (phone) → 480px (small phone) → 380px (tiny)
   ========================================================================== */

/* ---- Phone (≤760px) ---- */
@media (max-width: 760px) {
  body { font-size: 16px; line-height: 1.6; }

  /* Tighter sections to reduce scroll debt */
  section { padding: 36px 0; }
  .section--tight { padding: 24px 0; }
  .container { padding-inline: 16px; }

  /* Hero — more compact */
  .hero { padding: 40px 0 36px; min-height: clamp(420px, 60vh, 560px); }
  .hero__scroll { display: none; }
  .hero__title { font-size: 1.85rem; }
  .hero__sub { font-size: 1.05rem; margin-bottom: 20px; }
  .hero__actions { display: flex; flex-wrap: nowrap; gap: 8px; margin-bottom: 20px; }
  .hero__actions .btn { flex: 1 1 0; min-width: 0; padding: .7em .6em; font-size: .85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero__actions .btn .arrow { flex-shrink: 0; }
  .hero__actions .btn svg { flex-shrink: 0; }
  .hero__phone { display: none; }
  .hero__trust { flex-wrap: nowrap; gap: 6px; }
  .hero__trust span { padding: 5px 9px; font-size: .72rem; gap: 5px; white-space: nowrap; }
  .hero__trust strong { font-size: .82rem; }
  .dest-cards-section { margin-top: 0; }

  /* Package cards — 2 columns, compact */
  .pkg-card__img { aspect-ratio: 16 / 10; }
  .pkg-card__body { padding: 14px; }
  .pkg-card__name { font-size: 1rem; margin-bottom: 6px; line-height: 1.25; }
  .pkg-card__meta { gap: 6px 10px; font-size: .78rem; margin-bottom: 8px; }
  .pkg-card__desc { font-size: .85rem; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; display: -webkit-box; margin-bottom: 12px; }
  .pkg-card__foot { flex-direction: column; align-items: stretch; gap: 8px; }
  .pkg-card__price { font-size: 1.1rem; }
  .pkg-card__tag { font-size: .65rem; padding: 3px 8px; }

  /* Destination cards — compact 2-col */
  .dest-card__body { padding: 12px 14px; }
  .dest-card__name { font-size: 1.1rem; }
  .dest-card__meta { font-size: .78rem; }

  /* Package rows — stacked */
  .pkg-row { padding: 18px; }
  .pkg-row__name { font-size: 1.3rem; }

  /* Buttons — minimum 44px tap targets */
  .btn { padding: .8em 1.4em; min-height: 44px; }
  .btn--lg { padding: .9em 1.6em; min-height: 48px; }
  .btn--sm { padding: .65em 1.1em; min-height: 40px; }

  /* Section heads — tighter */
  .h-section { font-size: 1.5rem; }
  .lead { font-size: 1rem; }
  .eyebrow { font-size: .75rem; }

  /* Split — stacked */
  .split { grid-template-columns: 1fr; gap: 24px; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 16 / 10; }

  /* Package detail */
  .pkg-hero { padding: 32px 0; }
  .pkg-hero__title { font-size: 1.5rem; }
  .pkg-hero__meta { gap: 6px 16px; font-size: .9rem; }
  .pkg-aside { padding: 18px; }

  /* CTA band — stacked buttons */
  .cta-band { padding: 36px 0; }
  .cta-band h2 { font-size: 1.4rem; }
  .cta-band p { font-size: 1rem; margin-bottom: 18px; }
  .cta-band__actions .btn { width: 100%; margin-bottom: 10px; }
  .cta-band__actions .btn:last-child { margin-bottom: 0; }

  /* Form — 16px font to prevent iOS zoom, larger touch targets */
  .field input, .field select, .field textarea {
    padding: 14px 16px; font-size: 16px; min-height: 48px;
  }
  .form { padding: 18px; }

  /* Gallery preview — 2 columns */
  .photo-gallery--preview { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand .brand-logo-footer { max-height: 56px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* Testimonials marquee cards */
  .quote { width: 310px; padding: 22px 22px 18px; }
  .quote__photo { width: 44px; height: 44px; }

  /* WhatsApp float — smaller */
  .wa-float { width: 50px; height: 50px; right: 14px; bottom: 14px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ---- Small phone (≤480px) ---- */
@media (max-width: 480px) {
  .container { padding-inline: 14px; }
  section { padding: 30px 0; }
  .section--tight { padding: 20px 0; }

  /* Hero — even tighter */
  .hero { padding: 32px 0 28px; }
  .hero__title { font-size: 1.6rem; margin-bottom: 10px; }
  .hero__sub { font-size: .98rem; margin-bottom: 16px; }
  .hero__actions { gap: 6px; margin-bottom: 16px; }
  .hero__actions .btn { padding: .6em .5em; font-size: .78rem; }
  .hero__trust { flex-wrap: nowrap; gap: 5px; }
  .hero__trust span { padding: 4px 7px; font-size: .66rem; gap: 4px; white-space: nowrap; }
  .hero__trust strong { font-size: .74rem; }

  /* Cards stay 2 columns — but very compact */
  .pkg-cards { gap: 10px; }
  .pkg-card__img { aspect-ratio: 16 / 10; }
  .pkg-card__body { padding: 12px; }
  .pkg-card__name { font-size: .92rem; margin-bottom: 5px; }
  .pkg-card__desc { font-size: .82rem; -webkit-line-clamp: 2; margin-bottom: 10px; }
  .pkg-card__meta { font-size: .72rem; gap: 4px 8px; }
  .pkg-card__price { font-size: 1rem; }
  .pkg-card__price small { font-size: .68rem; }
  .pkg-card__foot .btn { font-size: .8rem; padding: .6em .9em; }
  .pkg-card__tag { font-size: .6rem; padding: 2px 7px; }

  /* Destination cards — compact */
  .dest-cards { gap: 10px; }
  .dest-card__body { padding: 10px 12px; }
  .dest-card__name { font-size: 1rem; }
  .dest-card__kicker { font-size: .65rem; }
  .dest-card__meta { font-size: .72rem; }

  /* Stats — smaller */
  .stats__num { font-size: 1.5rem; }
  .stats__label { font-size: .78rem; }

  /* Section heads */
  .h-section { font-size: 1.35rem; }
  .lead { font-size: .95rem; }

  /* CTA band */
  .cta-band { padding: 28px 0; }
  .cta-band h2 { font-size: 1.25rem; }

  /* Package detail */
  .pkg-hero__title { font-size: 1.3rem; }
  .pkg-aside__price { font-size: 1.5rem; }

  /* Testimonials marquee — narrower cards */
  .quote { width: 280px; padding: 18px 18px 14px; }

  /* Footer */
  .footer-grid { gap: 20px; }
  .footer h4 { font-size: .92rem; margin-bottom: 10px; }
  .footer ul li { margin-bottom: 7px; }
  .footer ul a { font-size: .88rem; }
}

/* ---- Tiny phone (≤380px) ---- */
@media (max-width: 380px) {
  .container { padding-inline: 12px; }
  section { padding: 24px 0; }

  /* Hero — minimal */
  .hero { padding: 28px 0 24px; }
  .hero__title { font-size: 1.45rem; }
  .hero__actions .btn { padding: .55em .4em; font-size: .72rem; gap: .3em; }
  .hero__actions .btn svg { width: 16px; height: 16px; }
  .hero__trust span { padding: 4px 6px; font-size: .6rem; }
  .hero__trust strong { font-size: .68rem; }

  /* Destination cards stay 2-col even on tiny screens */
  .dest-cards { gap: 8px; }
  .dest-card__body { padding: 10px; }
  .dest-card__name { font-size: .95rem; }
  .dest-card__kicker { font-size: .6rem; }
  .dest-card__meta { font-size: .68rem; }
  .dest-card__img { aspect-ratio: 16 / 11; }

  /* Cards go full width on very tiny screens */
  .pillars { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }

  /* Package cards stay 2-col even on tiny screens */
  .pkg-cards { gap: 8px; }
  .pkg-card__body { padding: 10px; }
  .pkg-card__name { font-size: .88rem; }
  .pkg-card__meta { font-size: .68rem; gap: 3px 6px; }
  .pkg-card__meta svg { width: 12px; height: 12px; }
  .pkg-card__desc { font-size: .76rem; -webkit-line-clamp: 2; }
  .pkg-card__from { font-size: .6rem; }
  .pkg-card__amt { font-size: .95rem; }
  .pkg-card__amt small { font-size: .6rem; }
  .pkg-card__view { font-size: .72rem; }
  .pkg-card__tag { font-size: .58rem; padding: 2px 6px; }

  /* Services stay 2-col even on tiny screens */
  .services-grid { gap: 10px; }
  .service-item { gap: .6rem; }
  .service-item__icon { width: 36px; height: 36px; }
  .service-item__icon svg { width: 18px; height: 18px; }
  .service-item__title { font-size: .85rem; }
  .service-item__desc { font-size: .78rem; line-height: 1.45; }

  /* Stats — still 2 columns but minimal */
  .stats__grid { gap: 12px; }
  .stats__num { font-size: 1.3rem; }

  /* Section heads */
  .h-section { font-size: 1.25rem; }
}
