/* =========================================================
   Trekking Rinjani Adventures — "The Ascent" design system
   Palette grounded in Rinjani: basalt night, dawn gold,
   Segara Anak teal, high-altitude mist, ash slate.
   ========================================================= */

:root {
  /* Color */
  --basalt:      #0E1419;   /* summit night sky */
  --basalt-2:    #161E26;   /* raised dark surface */
  --basalt-3:    #1F2A33;   /* hairline-on-dark */
  --gold:        #E7A33C;   /* dawn / primary accent */
  --gold-soft:   #F0BE6E;
  --teal:        #2F8C7F;   /* Segara Anak crater lake */
  --teal-deep:   #1F6359;
  --mist:        #EDEAE2;   /* light section bg */
  --mist-2:      #F6F4EF;   /* raised light surface */
  --paper:       #FFFFFF;
  --ink:         #131A1F;   /* text on light */
  --ash:         #5A6670;   /* secondary text */
  --ash-line:    #D9D5CB;   /* hairline on light */
  --cloud:       #B9C2C7;   /* muted text on dark */

  /* Type */
  --display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Scale */
  --step--1: clamp(0.80rem, 0.77rem + 0.15vw, 0.88rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.20vw, 1.13rem);
  --step-1:  clamp(1.25rem, 1.15rem + 0.50vw, 1.55rem);
  --step-2:  clamp(1.60rem, 1.40rem + 1.00vw, 2.25rem);
  --step-3:  clamp(2.10rem, 1.70rem + 2.00vw, 3.40rem);
  --step-4:  clamp(2.80rem, 2.00rem + 4.00vw, 5.60rem);

  /* Space */
  --gap: clamp(1rem, 0.7rem + 1.5vw, 1.6rem);
  --section-y: clamp(3.5rem, 2.5rem + 5vw, 7rem);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --shadow: 0 18px 50px -24px rgba(14, 20, 25, 0.45);
  --shadow-soft: 0 10px 30px -18px rgba(14, 20, 25, 0.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 0.6rem + 2vw, 2rem); }
.section { padding-block: var(--section-y); }
.section--dark { background: var(--basalt); color: var(--mist); }
.section--mist2 { background: var(--mist-2); }
.center { text-align: center; }

/* ---------- Type utilities ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.display { font-size: var(--step-4); font-weight: 800; }
.h2 { font-size: var(--step-3); }
.h3 { font-size: var(--step-2); }
.lead { font-size: var(--step-1); color: var(--ash); line-height: 1.45; }
.section--dark .lead { color: var(--cloud); }

.eyebrow {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.section--dark .eyebrow { color: var(--gold); }
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.mono { font-family: var(--mono); }
.coord {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  color: var(--ash);
}
.section--dark .coord { color: var(--cloud); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  padding: 0.95em 1.5em;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--step-0);
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn--gold { background: var(--gold); color: var(--basalt); box-shadow: 0 12px 28px -14px rgba(231,163,60,.8); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--ghost { border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.section:not(.section--dark) .btn--ghost:hover { background: rgba(14,20,25,.05); }
.btn--ink { background: var(--ink); color: var(--mist); }
.btn--ink:hover { background: #000; transform: translateY(-2px); }
.btn--lg { padding: 1.1em 1.9em; font-size: var(--step-1); }
.btn--sm { padding: 0.5em 1em; font-size: 0.8rem; gap: 0.4em; }
.btn svg { width: 1.15em; height: 1.15em; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 20, 25, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--basalt-3);
  color: var(--mist);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.85rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; font-size: 1.15rem; color: var(--mist); }
.brand .mark { width: 40px; height: 40px; flex: none; display: grid; place-items: center; }
.brand .mark svg { width: 100%; height: 100%; display: block; }
.brand img.mark { width: auto; height: 40px; display: block; object-fit: contain; }
.brand small { display: block; font-family: var(--mono); font-weight: 400; font-size: 0.58rem; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-size: 0.95rem; color: var(--cloud); transition: color .15s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--mist); }
.nav-cta { display: flex; align-items: center; gap: 0.8rem; }
.nav-toggle { display: none; background: none; border: 0; color: var(--mist); padding: 0.3rem; }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn--ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav[data-open="true"] .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--basalt); padding: 1.2rem clamp(1.1rem,2vw,2rem);
    border-bottom: 1px solid var(--basalt-3); gap: 1.1rem;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--basalt);
  color: var(--mist);
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; opacity: 0.5; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(231,163,60,.28), transparent 55%),
    linear-gradient(180deg, rgba(14,20,25,.55) 0%, rgba(14,20,25,.78) 55%, var(--basalt) 100%);
}
.hero__contour { position: absolute; inset: 0; z-index: -1; opacity: 0.28; pointer-events: none; }
.hero .wrap { position: relative; padding-block: clamp(3.5rem, 3rem + 6vw, 7.5rem); }
.hero h1 { max-width: 16ch; margin-top: 1rem; }
.hero .lead { max-width: 50ch; margin-top: 1.3rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__coord { position: absolute; right: clamp(1.1rem,2vw,2rem); bottom: 1.4rem; text-align: right; }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--basalt-2); color: var(--mist);
  border-top: 1px solid var(--basalt-3); border-bottom: 1px solid var(--basalt-3);
}
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--basalt-3); }
.trust__item { background: var(--basalt-2); padding: 1.2rem clamp(0.8rem,1.5vw,1.4rem); display: flex; flex-direction: column; gap: 0.15rem; }
.trust__item b { font-family: var(--display); font-size: 1.05rem; }
.trust__item span { font-size: 0.82rem; color: var(--cloud); }
.trust__item .stars { color: var(--gold); letter-spacing: 0.1em; }
@media (max-width: 720px) { .trust__grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Section head ---------- */
.section-head { max-width: 62ch; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 0.7rem; }
.section-head p { margin-top: 0.9rem; }

/* ---------- Differentiator (Gili) ---------- */
.gili { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: center; }
.gili__map { position: relative; overflow: hidden; background: var(--basalt); border-radius: var(--radius-lg); padding: 1.7rem; box-shadow: var(--shadow); }
.gili__map img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; z-index: 0; }
.gili__map::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, rgba(14,20,25,.55), rgba(14,20,25,.85)); }
.gili__map > * { position: relative; z-index: 2; }
.gili__points { display: grid; gap: 0.9rem; margin-top: 1.4rem; }
.gili__point { display: flex; gap: 0.8rem; align-items: flex-start; }
.gili__point .dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 0.45rem; flex: none; }
@media (max-width: 820px) { .gili { grid-template-columns: 1fr; } }

/* ---------- Package cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: 2.4rem; align-items: stretch; }
@media (max-width: 920px) { .cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.pcard {
  background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--ash-line); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.pcard.is-featured { border-color: var(--gold); }
.pcard__top { position: relative; min-height: 240px; padding: 1.4rem; color: var(--mist); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: var(--basalt); }
.pcard__top img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .5s ease; }
.pcard:hover .pcard__top img.bg { transform: scale(1.06); }
.pcard__top::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(14,20,25,.2) 0%, rgba(14,20,25,.55) 55%, rgba(14,20,25,.9) 100%); }
.pcard__top > *:not(img) { position: relative; z-index: 2; }
.pcard__top .coord { color: var(--gold); }
.pcard.is-featured .pcard__top::after { background: linear-gradient(180deg, rgba(31,99,89,.25) 0%, rgba(14,20,25,.6) 55%, rgba(14,20,25,.92) 100%); }
.pcard__top .pcard__tag { position: absolute; top: 1.2rem; right: 1.2rem; z-index: 3; width: auto; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; background: var(--gold); color: var(--basalt); padding: 0.3em 0.7em; border-radius: 999px; }
.pcard__top h3 { font-size: var(--step-2); margin-top: 0.5rem; }
.pcard__route { font-family: var(--mono); font-size: 0.78rem; color: var(--cloud); margin-top: 0.4rem; letter-spacing: 0.04em; }
.pcard__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.pcard__body p { color: var(--ash); font-size: 0.95rem; }
.pcard__feat { display: grid; gap: 0.5rem; }
.pcard__feat li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.9rem; }
.pcard__feat svg { width: 1.05em; height: 1.05em; color: var(--teal); flex: none; margin-top: 0.25em; }
.pcard__price { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--ash-line); }
.pcard__price .amt { font-family: var(--display); font-size: var(--step-2); font-weight: 800; }
.pcard__price .per { font-size: 0.8rem; color: var(--ash); }
.pcard__price .from { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash); display: block; }
.pcard .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }

/* ---------- Elevation profile (signature) ---------- */
.elev { background: var(--basalt); color: var(--mist); border-radius: var(--radius-lg); padding: clamp(1.3rem, 1rem + 2vw, 2.4rem); box-shadow: var(--shadow); margin-top: 2.2rem; overflow: hidden; }
.elev__head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: baseline; margin-bottom: 1rem; }
.elev figure { margin: 0; }
.elev svg { width: 100%; height: auto; }
.elev__legend { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1rem; font-family: var(--mono); font-size: 0.72rem; color: var(--cloud); letter-spacing: 0.05em; }
.elev__legend b { color: var(--gold); }

/* ---------- Feature grid (why us) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--ash-line); border: 1px solid var(--ash-line); border-radius: var(--radius-lg); overflow: hidden; margin-top: 2.4rem; }
@media (max-width: 820px) { .features { grid-template-columns: 1fr; } }
.feature { background: var(--paper); padding: 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; }
.feature__ix { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--teal); }
.feature__ic { width: 40px; height: 40px; border-radius: 11px; background: var(--mist); display: grid; place-items: center; color: var(--teal-deep); }
.feature__ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: var(--step-1); }
.feature p { color: var(--ash); font-size: 0.92rem; }

/* ---------- Inclusions split ---------- */
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); margin-top: 2.2rem; }
@media (max-width: 760px) { .incl { grid-template-columns: 1fr; } }
.incl__col { background: var(--paper); border: 1px solid var(--ash-line); border-radius: var(--radius); padding: 1.5rem; }
.incl__col h3 { font-size: var(--step-1); display: flex; align-items: center; gap: 0.5rem; }
.incl__col ul { margin-top: 1rem; display: grid; gap: 0.65rem; }
.incl__col li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.94rem; }
.incl__col li svg { width: 1.1em; height: 1.1em; flex: none; margin-top: 0.25em; }
.incl--in li svg { color: var(--teal); }
.incl--ex li svg { color: #B6675A; }

/* ---------- FAQ ---------- */
.faq { margin-top: 2rem; max-width: 800px; }
.faq details { border-bottom: 1px solid var(--ash-line); }
.section--dark .faq details { border-color: var(--basalt-3); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 0;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  font-family: var(--display); font-weight: 600; font-size: var(--step-1);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 26px; height: 26px; position: relative; transition: transform .2s; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.faq summary .pm::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq summary .pm::after { left: 12px; top: 4px; bottom: 4px; width: 2px; transition: opacity .2s; }
.faq details[open] summary .pm::after { opacity: 0; }
.faq details[open] summary .pm { transform: rotate(180deg); }
.faq__a { padding: 0 0 1.2rem; color: var(--ash); max-width: 70ch; }
.section--dark .faq__a { color: var(--cloud); }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: 2.4rem; }
/* Mobile: horizontal swipe carousel */
@media (max-width: 920px) {
  .reviews {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 0.2rem;
    padding-bottom: 0.9rem;
    margin-inline: calc(-1 * clamp(1.1rem, 0.6rem + 2vw, 2rem));
    padding-inline: clamp(1.1rem, 0.6rem + 2vw, 2rem);
  }
  .reviews > .review { flex: 0 0 84%; scroll-snap-align: center; }
  .reviews::-webkit-scrollbar { height: 5px; }
  .reviews::-webkit-scrollbar-thumb { background: var(--basalt-3); border-radius: 999px; }
}
.review { background: var(--basalt-2); border: 1px solid var(--basalt-3); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.9rem; }
.review .stars { color: var(--gold); letter-spacing: 0.12em; }
.review p { color: var(--mist); font-size: 0.96rem; }
.review .who { font-family: var(--mono); font-size: 0.76rem; color: var(--cloud); letter-spacing: 0.05em; margin-top: auto; }

/* ---------- Dual-platform score badges ---------- */
.scorebar { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.8rem; }
.score-badge { display: inline-flex; align-items: center; gap: 0.7rem; background: var(--basalt-2); border: 1px solid var(--basalt-3); border-radius: 999px; padding: 0.7rem 1.4rem; transition: transform .18s, border-color .18s; }
.score-badge:hover { transform: translateY(-2px); border-color: var(--gold); }
.score-badge b { font-family: var(--display); font-size: 1.35rem; line-height: 1; }
.score-badge .stars { color: var(--gold); letter-spacing: 0.06em; }
.score-badge .src { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* ---------- Google score panel ---------- */
.gscore { display: flex; gap: clamp(1.5rem, 1rem + 3vw, 3rem); align-items: center; margin-top: 2.4rem; background: var(--basalt-2); border: 1px solid var(--basalt-3); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 3vw, 2.6rem); max-width: 760px; margin-inline: auto; }
.gscore__num { font-family: var(--display); font-weight: 800; font-size: clamp(3.5rem, 2.5rem + 5vw, 6rem); line-height: 0.9; color: var(--gold); flex: none; }
.gscore .stars { color: var(--gold); }
@media (max-width: 560px) { .gscore { flex-direction: column; text-align: center; align-items: center; } .gscore div[style*="flex"] { justify-content: center; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--teal-deep), var(--basalt)); color: var(--mist); border-radius: var(--radius-lg); padding: clamp(2rem, 1.5rem + 3vw, 4rem); text-align: center; }
.cta-band .btn { margin-top: 1.6rem; }
.cta-band__sub { margin-top: 0.8rem; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; color: var(--gold-soft); }
@media (max-width: 560px) {
  .cta-band .btn, .cta-band .btn--lg { white-space: nowrap; font-size: 0.85rem; padding: 0.9em 1.3em; }
  .pack-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--basalt); color: var(--cloud); padding-top: clamp(3.5rem, 3rem + 3vw, 5rem); padding-bottom: 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.site-footer h4 { color: var(--mist); font-size: 0.95rem; font-family: var(--mono); font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: var(--cloud); transition: color .15s; }
.site-footer a:hover { color: var(--gold); }
.footer__links { display: grid; gap: 0.6rem; font-size: 0.92rem; }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid var(--basalt-3); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; font-size: 0.8rem; color: var(--ash); }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60; display: inline-flex; align-items: center; gap: 0.5rem; background: #25D366; color: #062b13; font-weight: 700; padding: 0.8rem 1.1rem; border-radius: 999px; box-shadow: var(--shadow); transition: transform .18s; }
.wa-float:hover { transform: translateY(-2px) scale(1.02); }
.wa-float svg { width: 1.3em; height: 1.3em; }
@media (max-width: 520px) { .wa-float span { display: none; } .wa-float { padding: 0.85rem; } }

/* ---------- Sub-hero (inner pages) ---------- */
.subhero { position: relative; overflow: hidden; background: var(--basalt); color: var(--mist); isolation: isolate; }
.subhero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; opacity: 0.45; }
.subhero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14,20,25,.5), rgba(14,20,25,.82) 70%, var(--basalt)); }
.subhero .wrap { padding-block: clamp(2.5rem, 2rem + 4vw, 5rem); }
.subhero h1 { font-size: var(--step-3); max-width: 20ch; margin-top: 0.8rem; }
.subhero .lead { max-width: 56ch; margin-top: 1rem; color: var(--cloud); }
.subhero .hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

.breadcrumb { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--cloud); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* Fact bar */
.factbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--basalt-3); border: 1px solid var(--basalt-3); border-radius: var(--radius); overflow: hidden; margin-top: 2rem; }
@media (max-width: 720px) { .factbar { grid-template-columns: 1fr 1fr; } }
.factbar__item { background: var(--basalt-2); padding: 1rem 1.1rem; }
.factbar__item .k { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.factbar__item .v { font-family: var(--display); font-weight: 700; font-size: 1.1rem; margin-top: 0.2rem; }

/* Itinerary accordion */
.itin { display: grid; gap: 1rem; margin-top: 2.2rem; }
.itin details { background: var(--paper); border: 1px solid var(--ash-line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s; }
.itin details[open] { box-shadow: var(--shadow-soft); }
.itin summary { list-style: none; cursor: pointer; padding: 1.2rem 1.4rem; display: flex; align-items: center; gap: 1rem; }
.itin summary::-webkit-details-marker { display: none; }
.itin__daynum { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); background: var(--mist); padding: 0.4em 0.7em; border-radius: 999px; flex: none; }
.itin summary h3 { font-size: var(--step-1); flex: 1; }
.itin summary .pm { flex: none; width: 24px; height: 24px; position: relative; }
.itin summary .pm::before, .itin summary .pm::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.itin summary .pm::before { top: 11px; left: 3px; right: 3px; height: 2px; }
.itin summary .pm::after { left: 11px; top: 3px; bottom: 3px; width: 2px; transition: opacity .2s; }
.itin details[open] summary .pm::after { opacity: 0; }
.itin__steps { padding: 0 1.4rem 1.3rem; }
.itin__meta { display: flex; flex-wrap: wrap; gap: 1.2rem; padding: 0 1.4rem 1rem; }
.itin__meta span { font-family: var(--mono); font-size: 0.72rem; color: var(--ash); letter-spacing: 0.04em; }
.itin__meta b { color: var(--teal-deep); }
.step { display: flex; gap: 1rem; padding: 0.8rem 0; border-top: 1px solid var(--ash-line); }
.step time { font-family: var(--mono); font-size: 0.8rem; font-weight: 700; color: var(--teal); min-width: 68px; flex: none; padding-top: 0.1rem; }
.step p { color: var(--ash); font-size: 0.94rem; }
.step b { color: var(--ink); }

/* Packing list */
.packing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; margin-top: 2rem; }
@media (max-width: 720px) { .packing { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .packing { grid-template-columns: 1fr; } }
.packing li { display: flex; gap: 0.6rem; align-items: center; background: var(--paper); border: 1px solid var(--ash-line); border-radius: 999px; padding: 0.7rem 1.1rem; font-size: 0.9rem; }
.packing svg { width: 1.05em; height: 1.05em; color: var(--teal); flex: none; }

/* Two-col content */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: start; }
@media (max-width: 820px) { .twocol { grid-template-columns: 1fr; } }

/* Sticky booking card */
.bookcard { background: var(--basalt); color: var(--mist); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow); }
.bookcard .amt { font-family: var(--display); font-weight: 800; font-size: var(--step-2); }
.bookcard .per { color: var(--cloud); font-size: 0.85rem; }
.bookcard .from { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: block; }
.bookcard ul { display: grid; gap: 0.5rem; margin: 1.1rem 0; }
.bookcard li { display: flex; gap: 0.5rem; font-size: 0.88rem; color: var(--cloud); }
.bookcard li svg { width: 1.05em; height: 1.05em; color: var(--gold); flex: none; margin-top: 0.25em; }
.bookcard .btn { width: 100%; justify-content: center; }

/* ---------- Generic content (legal / blog) ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: var(--step-2); margin-top: 2rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.5rem; }
.prose p, .prose li { color: var(--ash); margin-top: 0.9rem; }
.prose ul { list-style: disc; padding-left: 1.2rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.95rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--ash-line); border-radius: var(--radius);
  padding: 0.8em 1em; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(47,140,127,.15); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 460px) { .field--row { grid-template-columns: 1fr; } }
.form .btn { justify-content: center; margin-top: 0.4rem; }
.form__note { font-size: 0.8rem; color: var(--ash); text-align: center; }

.contact-card { background: var(--basalt); color: var(--mist); border-radius: var(--radius-lg); padding: clamp(1.4rem,1rem+2vw,2rem); box-shadow: var(--shadow); }
.contact-list { display: grid; gap: 1.3rem; }
.contact-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-item .ic { width: 40px; height: 40px; flex: none; border-radius: 11px; background: var(--basalt-3); display: grid; place-items: center; color: var(--gold); }
.contact-item .ic svg { width: 20px; height: 20px; }
.contact-item .k { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cloud); }
.contact-item a, .contact-item .v { color: var(--mist); font-weight: 500; }
.contact-item a:hover { color: var(--gold); }
.map-embed { margin-top: 1.4rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--basalt-3); line-height: 0; }
.map-embed iframe { width: 100%; height: 260px; border: 0; filter: grayscale(0.2) contrast(1.05); }

/* ---------- Blog index ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); margin-top: 2.4rem; }
@media (max-width: 920px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.bcard { background: var(--paper); border: 1px solid var(--ash-line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.bcard__img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.bcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bcard:hover .bcard__img img { transform: scale(1.04); }
.bcard__cat { position: absolute; top: 0.8rem; left: 0.8rem; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; background: var(--gold); color: var(--basalt); padding: 0.3em 0.7em; border-radius: 999px; }
.bcard__body { padding: 1.2rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.bcard__body h2 { font-size: var(--step-1); }
.bcard__body p { color: var(--ash); font-size: 0.92rem; flex: 1; }
.bcard__meta { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--ash); }
.bcard .btn { align-self: flex-start; margin-top: 0.4rem; }

/* ---------- Blog article ---------- */
.article-head { max-width: 760px; }
.article-head .eyebrow { margin-top: 0.9rem; }
.article-head h1 { margin-top: 0.7rem; font-size: clamp(1.9rem,1.4rem+2.5vw,3.2rem); }
.article-head .lead { margin-top: 1rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1rem; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; color: var(--cloud); }

.article { max-width: 760px; font-size: var(--step-0); line-height: 1.75; }
.article h2 { font-family: var(--display); font-size: var(--step-2); margin-top: 2.4rem; margin-bottom: 0.8rem; }
.article h3 { font-family: var(--display); font-size: var(--step-1); margin-top: 1.8rem; margin-bottom: 0.6rem; }
.article p { margin-top: 1rem; }
.article ul, .article ol { padding-left: 1.4rem; margin-top: 0.8rem; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li { margin-top: 0.5rem; }
.article a { color: var(--teal-deep); text-decoration: underline; }
.article strong { font-weight: 700; }

.article-table { width: 100%; border-collapse: collapse; margin-top: 1.2rem; font-size: 0.9rem; }
.article-table th { text-align: left; padding: 0.7rem 0.9rem; background: var(--basalt); color: var(--mist); font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
.article-table td { padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--ash-line); }
.article-table tr:last-child td { border-bottom: 0; }
.article-table tr:nth-child(even) td { background: var(--mist-2); }

.callout { background: var(--mist-2); border-left: 3px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.2rem; margin-top: 1.4rem; font-size: 0.95rem; color: var(--ash); }
.callout strong { color: var(--teal-deep); }

.pack-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 1.2rem; }
@media (max-width: 560px) { .pack-grid { grid-template-columns: 1fr; } }
.pack-col h3 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
.pack-col ul { list-style: none; padding: 0; }
.pack-col li { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.9rem; padding: 0.4rem 0; border-bottom: 1px solid var(--ash-line); }
.pack-col li:last-child { border-bottom: 0; }
.pack-col li::before { content: "✓"; color: var(--teal); font-weight: 700; flex: none; }

.related { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; margin-top: 2rem; }
@media (max-width: 760px) { .related { grid-template-columns: 1fr; } }
.related-link { background: var(--paper); border: 1px solid var(--ash-line); border-radius: var(--radius); padding: 1rem 1.1rem; font-size: 0.92rem; transition: border-color .15s; }
.related-link:hover { border-color: var(--teal); }
.related-link .k { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash); display: block; margin-bottom: 0.3rem; }
.related-link strong { color: var(--ink); }

/* ---------- Misc reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
