/* ==========================================================================
   Homepage
   ========================================================================== */

main > section[id] { scroll-margin-top: 0; }

/* ---------- Hero ---------- */
.home-hero { min-height: clamp(640px, 100svh, 940px); display: flex; align-items: center; padding: calc(var(--header-h) + 40px) 0 150px; }
.home-hero .hero__bg { translate: 0 calc(var(--hero-p, 0) * 24%); will-change: translate; }
.home-hero .hero__bg img { object-position: 60% 60%; }
.is-ready .home-hero .hero__bg img { animation: hero-zoom 2.8s var(--ease-out) both; }
@keyframes hero-zoom { from { transform: scale(1.14); } to { transform: scale(1); } }
.home-hero__wrap { opacity: calc(1 - var(--hero-p, 0) * 1.5); translate: 0 calc(var(--hero-p, 0) * -90px); }
.home-hero__content { position: relative; max-width: 780px; }
.home-hero .eyebrow { font-size: clamp(0.66rem, 0.9vw, 0.76rem); letter-spacing: 0.34em; margin-bottom: 24px; color: var(--accent); }
.home-hero h1 {
  font-family: var(--f-display); font-weight: 520;
  font-size: clamp(3.4rem, 9vw, 7.6rem); line-height: .94; letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
  color: #fbf6ec; text-shadow: 0 6px 40px rgba(0, 0, 0, .28);
}
.home-hero h1 em { font-style: italic; font-weight: 440; color: var(--accent-hi); }
.home-hero__sub { margin-top: 26px; font-size: clamp(1.02rem, 1.5vw, 1.25rem); line-height: 1.5; max-width: 34ch; color: rgba(255, 255, 255, .86); }
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.home-hero__actions .btn { font-size: .96rem; padding: 0.95em 1.6em; }
.home-hero .hero__script { right: 11%; top: 17%; }

/* ---------- Search bar + custom dropdowns ---------- */
.trip-search { position: relative; z-index: 6; margin-top: -60px; }
.trip-search__form {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr auto; align-items: center; gap: 4px;
  background: rgba(4, 21, 32, .97); color: #fff;
  border: 1px solid rgba(255, 255, 255, .08); border-radius: 22px;
  box-shadow: 0 34px 70px -30px rgba(4, 20, 31, .75), inset 0 1px 0 rgba(255, 255, 255, .05);
  padding: 8px;
}
.sf { position: relative; display: flex; align-items: center; gap: 14px; padding: 12px 16px; min-width: 0; border-radius: 15px; cursor: pointer; transition: background-color .35s var(--ease); }
.sf + .sf::before { content: ""; position: absolute; left: -2px; top: 26%; bottom: 26%; width: 1px; background: var(--ink-line); transition: opacity .3s; }
.sf:hover, .sf.is-open { background: rgba(255, 255, 255, .055); }
.sf:hover::before, .sf:hover + .sf::before, .sf.is-open::before, .sf.is-open + .sf::before { opacity: 0; }
.sf > .ic { width: 22px; height: 22px; color: var(--accent); stroke-width: 1.5; }
.sf__body { display: grid; gap: 2px; flex: 1; min-width: 0; }
.sf__label { font-size: .64rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; line-height: 1.3; color: var(--on-dark-muted); }

/* native fallback when JS is off */
.sf select {
  appearance: none; width: 100%; border: 0; margin: 0; padding: 2px 22px 2px 0;
  color: #fff; font-size: .92rem; cursor: pointer;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23ffffff' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right center;
}
.sf select:focus { outline: none; }
.sf select option { color: var(--text); }

.dd__btn {
  appearance: none; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; margin: 0; padding: 0; border: 0; background: none;
  color: rgba(255, 255, 255, .58); font-size: .93rem; font-weight: 500; line-height: 1.45; text-align: left; cursor: pointer;
  transition: color .3s;
}
.dd__btn.has-value { color: #fff; }
.dd__value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dd__btn .ic { width: 16px; height: 16px; color: var(--on-dark-muted); transition: transform .5s var(--ease-out), color .3s; }
.sf.is-open .dd__btn .ic { transform: rotate(180deg); color: var(--accent); }
.dd__btn:focus-visible { outline: none; }
.sf:has(.dd__btn:focus-visible) { box-shadow: inset 0 0 0 1.5px rgba(242, 138, 68, .7); }

.dd__menu {
  position: absolute; z-index: 40; left: 0; top: calc(100% + 10px);
  min-width: max(100%, 230px); width: max-content; max-width: min(340px, calc(100vw - 32px)); max-height: min(420px, 70vh);
  overflow-y: auto; overscroll-behavior: contain;
  padding: 6px; border-radius: 18px;
  background: rgba(10, 30, 43, .985); color: #fff;
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: 0 36px 70px -24px rgba(0, 0, 0, .7), 0 12px 24px -12px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .05);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.97); transform-origin: top left;
  transition: opacity .2s ease, transform .45s var(--ease-out), visibility 0s linear .2s;
  scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, .18) transparent;
  cursor: default;
}
.dd__menu.is-up { top: auto; bottom: calc(100% + 10px); transform-origin: bottom left; transform: translateY(8px) scale(.97); }
.sf.is-open .dd__menu { opacity: 1; visibility: visible; transform: none; transition: opacity .25s ease, transform .55s var(--ease-out), visibility 0s; }
.dd__menu--grid { display: grid; grid-template-columns: repeat(2, minmax(124px, 1fr)); column-gap: 2px; }
.dd__menu--grid .dd__opt:first-child { grid-column: 1 / -1; }

.dd__opt {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 10px 12px; border-radius: 11px;
  font-size: .9rem; color: rgba(255, 255, 255, .8); cursor: pointer;
  opacity: 0; translate: 0 -4px;
  transition: background-color .18s, color .18s, opacity .2s, translate .2s;
}
.dd__opt:first-child { margin-bottom: 7px; }
.dd__opt:first-child::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: -4px; height: 1px; background: var(--ink-line); }
.sf.is-open .dd__opt {
  opacity: 1; translate: 0 0;
  transition: background-color .18s, color .18s, opacity .35s ease calc(var(--i) * 22ms + 40ms), translate .5s var(--ease-out) calc(var(--i) * 22ms + 40ms);
}
.dd__opt.is-active { background: rgba(255, 255, 255, .075); color: #fff; }
.dd__opt[aria-selected="true"] { color: var(--accent-hi); }
.dd__text { display: grid; gap: 1px; line-height: 1.3; }
.dd__text small { font-size: .74rem; font-weight: 400; color: var(--on-dark-muted); }
.dd__opt .ic { width: 16px; height: 16px; color: var(--accent); stroke-width: 2.2; opacity: 0; transform: scale(.4); transition: opacity .2s, transform .45s var(--spring); }
.dd__opt[aria-selected="true"] .ic { opacity: 1; transform: none; }

.trip-search .btn { margin-left: 4px; padding: 1.05em 1.8em; }
@media (max-width: 1020px) {
  .trip-search__form { grid-template-columns: 1fr 1fr; }
  .sf + .sf::before { display: none; }
  .sf:nth-child(even) .dd__menu { left: auto; right: 0; transform-origin: top right; }
  .trip-search .btn { grid-column: 1 / -1; margin: 6px 0 0; }
}
/* phones: hero hugs its content and the search card rises into the freed space */
@media (max-width: 760px) {
  .home-hero { min-height: 0; align-items: flex-start; padding: calc(var(--header-h) + 40px) 0 118px; }
  .home-hero .eyebrow { margin-bottom: 14px; letter-spacing: .26em; }
  .home-hero__sub { margin-top: 14px; }
  .home-hero__actions { margin-top: 22px; gap: 8px; }
  .home-hero__actions .btn { font-size: .86rem; padding: .82em 1.05em; gap: 8px; }
  .trip-search { margin-top: -86px; }
  section.about { padding-top: 72px; }
}
@media (max-width: 380px) { .home-hero__actions .btn .ic { display: none; } }
@media (max-width: 560px) {
  .trip-search__form { gap: 6px; padding: 6px; border-radius: 20px; }
  .sf { padding: 10px 12px; border-radius: 14px; background: rgba(255, 255, 255, .045); }
  .sf > .ic { display: none; }
  .sf__label { font-size: .6rem; letter-spacing: .14em; }
  .dd__btn { font-size: .88rem; gap: 6px; }
  .trip-search .btn { margin-top: 0; padding: .95em 1.4em; }
  .dd__menu { min-width: max(100%, 220px); }
}

/* ---------- About ---------- */
.about { position: relative; padding-block: clamp(96px, 12vw, 160px) var(--section); overflow: hidden; }
.about__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); gap: clamp(40px, 6vw, 100px); align-items: center; }
.about__text .h2 { margin-top: 18px; font-size: clamp(2.4rem, 5vw, 4rem); }
.about__text .lead { margin-top: 22px; max-width: 50ch; color: #3b4148; }
.values { display: grid; margin-top: 34px; }
.value { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); }
.value:last-child { border-bottom: 1px solid var(--line); }
.value__icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: #fff; color: var(--accent-deep); box-shadow: var(--shadow-soft); transition: transform .6s var(--spring), background-color .35s, color .35s; }
.value:hover .value__icon { transform: translateY(-3px) rotate(-6deg); background: var(--ink); color: var(--accent); }
.value__icon .ic { width: 22px; height: 22px; stroke-width: 1.5; }
.value strong { display: block; font-weight: 600; font-size: .97rem; line-height: 1.35; }
.value small { display: block; font-size: .87rem; color: var(--muted); }
.about__text .btn { margin-top: 32px; }

.about__media { position: relative; --e: var(--enter, 1); }
.about__frame {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink);
  clip-path: inset(calc((1 - var(--e)) * 12%) calc((1 - var(--e)) * 9%) round calc(22px + (1 - var(--e)) * 60px));
}
.about__frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(calc(1 + (1 - var(--e)) * .3)); will-change: transform; }
.about__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(2, 12, 20, .4), rgba(2, 12, 20, 0) 40%), linear-gradient(0deg, rgba(2, 12, 20, .35), rgba(2, 12, 20, 0) 35%); }
.about__script { position: absolute; z-index: 2; top: 7%; right: 8%; color: #fff; font-size: clamp(1.7rem, 2.6vw, 2.4rem); text-align: center; text-shadow: 0 2px 14px rgba(0, 0, 0, .6); transform: rotate(-10deg); translate: 0 var(--py, 0px); opacity: var(--e); }
.about__badge { position: absolute; z-index: 2; left: -52px; bottom: 60px; width: 132px; height: 132px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--accent); box-shadow: 0 24px 44px -18px rgba(4, 20, 31, .65); }
.about__ring { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); rotate: calc(var(--through, 0) * 320deg); }
.about__ring text { font-family: var(--f-cond); font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; fill: rgba(255, 255, 255, .78); }
.about__badge > .ic { width: 40px; height: 40px; stroke-width: 1.1; }
@media (max-width: 1100px) { .about__badge { left: -24px; } }
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__frame { aspect-ratio: 4 / 4.2; }
  .about__badge { left: 16px; bottom: 16px; width: 104px; height: 104px; }
  .about__badge > .ic { width: 30px; height: 30px; }
}

/* ---------- Stats band ---------- */
.stats { position: relative; overflow: hidden; padding-block: clamp(44px, 5vw, 64px); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { display: grid; justify-items: center; text-align: center; gap: 8px; padding: 8px 20px; }
.stat + .stat { border-left: 1px solid rgba(242, 138, 68, .25); }
.stat__num { display: flex; align-items: baseline; font-family: var(--f-display); font-weight: 340; font-size: clamp(2.6rem, 4.6vw, 3.8rem); line-height: 1; letter-spacing: -0.04em; color: #fff; font-variant-numeric: lining-nums tabular-nums; }
.stat__suffix { margin-left: 3px; font-style: italic; font-weight: 300; color: var(--accent); }
.stat__num .ic { width: .46em; height: .46em; margin-left: 8px; align-self: center; color: var(--accent); }
.stat__label { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--on-dark-muted); }
.stats__script { position: absolute; right: 26px; top: 50%; transform: translateY(-50%) rotate(-14deg); color: var(--accent); opacity: .7; font-size: 1.6rem; text-align: center; }
@media (max-width: 1360px) { .stats__script { display: none; } }
@media (max-width: 860px) {
  .stats__grid { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .stat + .stat { border-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid rgba(242, 138, 68, .25); }
}

/* ---------- Trip cards ---------- */
.expeditions { padding-block: var(--section) clamp(40px, 5vw, 64px); }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.trip-card {
  position: relative; display: flex; flex-direction: column; padding: 10px;
  border-radius: var(--radius-lg); background: var(--card);
  border: 1px solid rgba(22, 27, 32, .06); box-shadow: var(--shadow-soft);
  transition: transform .8s var(--ease-out), box-shadow .8s var(--ease-out), opacity 1s var(--ease-out) var(--d, 0s), translate 1.2s var(--ease-out) var(--d, 0s);
}
.trip-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.trip-card__media { position: relative; isolation: isolate; aspect-ratio: 4 / 3.4; border-radius: 15px; overflow: hidden; background: var(--ink); }
.trip-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease-out); }
.trip-card:hover .trip-card__media img { transform: scale(1.08); }
.trip-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2, 12, 20, .55), rgba(2, 12, 20, 0) 45%), linear-gradient(180deg, rgba(2, 12, 20, .3), rgba(2, 12, 20, 0) 30%); opacity: .6; transition: opacity .6s; }
.trip-card:hover .trip-card__media::after { opacity: 1; }
.chip {
  position: absolute; z-index: 1; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%);
  color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .02em;
}
.chip .ic { width: 13px; height: 13px; }
.chip--right { left: auto; right: 12px; }
.trip-card__peek {
  position: absolute; z-index: 1; left: 12px; right: 12px; bottom: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 7px 7px 7px 18px; border-radius: 999px;
  background: rgba(255, 255, 255, .95); color: var(--text); font-size: .86rem; font-weight: 600;
  opacity: 0; transform: translateY(16px);
  transition: opacity .45s var(--ease-out), transform .7s var(--ease-out);
}
.trip-card:hover .trip-card__peek, .trip-card:focus-visible .trip-card__peek { opacity: 1; transform: none; }
.trip-card__peek-ic { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; }
.trip-card__peek-ic .ic { width: 16px; height: 16px; transform: rotate(-45deg); transition: transform .6s var(--ease-out) .1s; }
.trip-card:hover .trip-card__peek-ic .ic { transform: none; }
.trip-card__body { display: grid; gap: 8px; padding: 18px 12px 8px; }
.trip-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.trip-card h3 { font-family: var(--f-display); font-weight: 450; font-size: clamp(1.32rem, 1.8vw, 1.55rem); line-height: 1.12; letter-spacing: -0.022em; }
.trip-card__price { flex: none; display: grid; justify-items: end; line-height: 1.2; }
.trip-card__price small { font-size: .64rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.trip-card__price strong { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
.trip-card p { font-size: .9rem; line-height: 1.5; color: var(--muted); max-width: 36ch; }
.trip-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: .82rem; color: #454b52; }
.trip-card__from { display: inline-flex; align-items: center; gap: 6px; }
.trip-card__from .ic { width: 15px; height: 15px; color: var(--accent-deep); }
.level { display: inline-flex; align-items: center; gap: 8px; }
.level__bars { display: inline-flex; align-items: flex-end; gap: 2px; height: 12px; }
.level__bars i { width: 3px; border-radius: 2px; background: var(--line); }
.level__bars i:nth-child(1) { height: 5px; }
.level__bars i:nth-child(2) { height: 8px; }
.level__bars i:nth-child(3) { height: 12px; }
.level[data-level="1"] i:nth-child(-n+1),
.level[data-level="2"] i:nth-child(-n+2),
.level[data-level="3"] i { background: var(--accent-deep); }
@media (hover: none) { .trip-card__peek { display: none; } }
@media (max-width: 1000px) {
  .exp-grid {
    grid-auto-flow: column; grid-auto-columns: minmax(290px, 78%); grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1); padding: 8px var(--gutter) 28px; scroll-padding-inline: var(--gutter);
  }
  .exp-grid::-webkit-scrollbar { display: none; }
  .trip-card { scroll-snap-align: start; }
}

/* ---------- Terrain ---------- */
.terrain { padding-block: clamp(40px, 5vw, 64px) var(--section); }
.terrain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.4vw, 18px); }
.terrain-card {
  position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: flex-end; align-items: stretch;
  width: 100%; aspect-ratio: 3 / 4; margin: 0; padding: 22px; border: 0; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink); color: #fff; font: inherit; text-align: left; cursor: pointer;
  transition: transform .8s var(--ease-out), box-shadow .8s var(--ease-out), opacity 1s var(--ease-out) var(--d, 0s), translate 1.2s var(--ease-out) var(--d, 0s);
}
.terrain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.terrain-card:active { transform: translateY(-2px) scale(.985); }
.terrain-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease-out); }
.terrain-card:hover img { transform: scale(1.1); }
.terrain-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(2, 12, 20, .9) 0%, rgba(2, 12, 20, .35) 45%, rgba(2, 12, 20, 0) 70%); }
.terrain-card__icon { position: absolute; top: 18px; left: 18px; width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .22); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: background-color .4s, color .4s, border-color .4s, transform .7s var(--spring); }
.terrain-card:hover .terrain-card__icon { background: var(--accent); border-color: var(--accent); color: var(--on-accent); transform: rotate(-8deg) scale(1.06); }
.terrain-card__icon .ic { width: 22px; height: 22px; }
.terrain-card__body { display: block; padding-right: 50px; transition: transform .8s var(--ease-out); }
.terrain-card:hover .terrain-card__body { transform: translateY(-4px); }
.terrain-card__title { display: block; font-family: var(--f-display); font-weight: 450; font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.1; letter-spacing: -0.02em; }
.terrain-card__text { display: block; margin-top: 6px; font-size: .86rem; line-height: 1.45; color: rgba(255, 255, 255, .8); }
.terrain-card__go { position: absolute; right: 18px; bottom: 22px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .35); color: #fff; transition: background-color .4s, color .4s, border-color .4s; }
.terrain-card__go .ic { width: 16px; height: 16px; transform: rotate(-45deg); transition: transform .6s var(--ease-out); }
.terrain-card:hover .terrain-card__go { background: #fff; border-color: #fff; color: var(--ink); }
.terrain-card:hover .terrain-card__go .ic { transform: none; }
@media (max-width: 1000px) { .terrain-grid { grid-template-columns: 1fr 1fr; } .terrain-card { aspect-ratio: 4 / 4.4; } }
@media (max-width: 520px) {
  .terrain-card { aspect-ratio: 3 / 3.9; padding: 14px; }
  .terrain-card__icon { top: 12px; left: 12px; width: 38px; height: 38px; border-radius: 12px; }
  .terrain-card__body { padding-right: 0; }
  .terrain-card__title { font-size: 1.12rem; }
  .terrain-card__text { font-size: .78rem; }
  .terrain-card__go { display: none; }
}

/* ---------- How we travel ---------- */
.how { padding-block: var(--section); background: var(--paper-2); }
.how__grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 100px); align-items: center; }
.how__media { position: relative; isolation: isolate; aspect-ratio: 4 / 4.6; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); box-shadow: var(--shadow-lift); }
.how__img { position: absolute; left: 0; top: -12%; width: 100%; height: 124%; object-fit: cover; object-position: 26% center; translate: 0 var(--py, 0px); will-change: translate; }
.how__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2, 12, 20, .6), rgba(2, 12, 20, 0) 45%); }
.how__script { position: absolute; z-index: 1; left: 28px; bottom: 28px; color: #fff; font-size: clamp(1.7rem, 2.6vw, 2.3rem); transform: rotate(-6deg); transform-origin: left bottom; text-shadow: 0 2px 12px rgba(0, 0, 0, .5); }
.how__head .h2 { margin-top: 16px; font-size: clamp(2.4rem, 5vw, 4rem); }
.how__head .lead { margin-top: 16px; max-width: 44ch; }
.how__list { display: grid; gap: 12px; margin-top: 36px; }
.how__item {
  position: relative; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 20px 56px 20px 20px; border-radius: 18px;
  background: rgba(255, 255, 255, .5); border: 1px solid rgba(22, 27, 32, .06);
  transition: background-color .5s, box-shadow .7s var(--ease-out), transform .7s var(--ease-out), opacity 1s var(--ease-out) var(--d, 0s), translate 1.2s var(--ease-out) var(--d, 0s);
}
.how__item:hover { background: #fff; box-shadow: var(--shadow-soft); transform: translateX(6px); }
.how__icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: var(--ink); color: var(--accent); transition: transform .7s var(--spring); }
.how__item:hover .how__icon { transform: rotate(-8deg) scale(1.06); }
.how__icon .ic { width: 24px; height: 24px; stroke-width: 1.5; }
.how__item h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.25rem; line-height: 1.2; letter-spacing: -0.015em; }
.how__item p { margin-top: 4px; font-size: .92rem; line-height: 1.5; color: var(--muted); max-width: 46ch; }
.how__num { position: absolute; top: 18px; right: 22px; font-family: var(--f-display); font-style: italic; font-weight: 300; font-size: 1rem; font-variant-numeric: lining-nums; color: var(--accent-deep); }
@media (max-width: 900px) {
  .how__grid { grid-template-columns: 1fr; }
  .how__media { aspect-ratio: 16 / 11; }
}

/* ---------- Featured itinerary ---------- */
.route { position: relative; padding-block: var(--section); color: var(--on-dark); }
.route__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px 40px; flex-wrap: wrap; padding-bottom: clamp(28px, 3.5vw, 44px); margin-bottom: clamp(32px, 4vw, 56px); border-bottom: 1px solid var(--ink-line); }
.route__title { margin-top: 18px; font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: .98; color: #fff; }
.route__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.route__tags span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .14); font-size: .8rem; color: var(--on-dark); }
.route__tags .ic { width: 15px; height: 15px; color: var(--accent); }
.route__grid { display: grid; grid-template-columns: 1.1fr .85fr 1.1fr; gap: clamp(24px, 3.4vw, 52px); align-items: start; }
.route__name { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.7rem, 2.6vw, 2.2rem); line-height: 1.1; letter-spacing: -0.02em; color: #fff; }
.route__name em { font-style: italic; font-weight: 300; color: var(--accent); }
.route__intro .lead { margin-top: 8px; font-size: 1.02rem; color: rgba(255, 255, 255, .75); }
.film { position: relative; isolation: isolate; display: block; margin-top: 22px; aspect-ratio: 16 / 10; border-radius: 18px; overflow: hidden; color: #fff; }
.film img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.film::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 12, 20, .55), rgba(2, 12, 20, .1) 50%, rgba(2, 12, 20, .5)); }
.film:hover img { transform: scale(1.06); }
.film__play { position: absolute; z-index: 1; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center; background: rgba(4, 20, 31, .6); border: 1.5px solid var(--accent); backdrop-filter: blur(6px); transition: transform .6s var(--spring), background-color .4s; }
.film__play::before { content: ""; position: absolute; inset: -9px; border-radius: 50%; border: 1px solid rgba(242, 138, 68, .6); animation: film-ring 2.6s var(--ease-out) infinite; }
@keyframes film-ring { from { transform: scale(.85); opacity: 1; } to { transform: scale(1.4); opacity: 0; } }
.film__play .ic { width: 26px; height: 26px; margin-left: 3px; color: #fff; }
.film:hover .film__play { transform: translate(-50%, -50%) scale(1.1); background: var(--accent); }
.film:hover .film__play .ic { color: var(--on-accent); }
.film .script { position: absolute; z-index: 1; left: 22px; top: 50%; transform: translateY(-50%) rotate(-14deg); font-size: 2.2rem; }
.film__meta { position: absolute; z-index: 1; right: 18px; bottom: 14px; display: flex; align-items: center; gap: 10px; font-size: .84rem; line-height: 1.25; }
.film__meta .ic { width: 22px; height: 22px; }

/* timeline (also used on the trip page) */
.timeline { position: relative; display: grid; gap: 14px; align-content: center; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 12px; bottom: 12px; width: 2px; background: rgba(242, 138, 68, .55); }
.timeline li { position: relative; display: grid; grid-template-columns: 70px 1fr; gap: 10px; padding-left: 34px; line-height: 1.3; }
.timeline li::before { content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--ink); }
.timeline .day { font-size: 0.82rem; color: var(--accent); font-weight: 500; }
.timeline strong { display: block; font-weight: 500; font-size: 0.92rem; color: #fff; }
.timeline small { font-size: 0.78rem; color: var(--on-dark-muted); }

/* home: the line fills and stops light up as you scroll */
[data-timeline] { gap: 20px; }
[data-timeline]::before { background: rgba(255, 255, 255, .12); }
[data-timeline]::after { content: ""; position: absolute; left: 8px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(180deg, var(--accent-hi), var(--accent)); transform-origin: top; transform: scaleY(var(--fill, 1)); }
[data-timeline] li::before { z-index: 1; transition: background-color .5s, box-shadow .5s, transform .7s var(--spring); }
[data-timeline] li > span { transition: opacity .6s; }
.motion [data-timeline] li:not(.is-passed)::before { background: var(--ink-3); box-shadow: 0 0 0 4px var(--ink), inset 0 0 0 2px rgba(255, 255, 255, .22); transform: scale(.78); }
.motion [data-timeline] li:not(.is-passed) > span { opacity: .45; }

.route-map { position: relative; border-left: 1px solid var(--ink-line); padding-left: clamp(16px, 2vw, 32px); display: flex; flex-direction: column; }
.route-map svg { width: 100%; height: auto; }
.route-map .btn { align-self: flex-start; margin-top: 18px; }
.map-label { font-family: var(--f-body); font-size: 13px; fill: #e8ebee; }
.map-script { font-family: var(--f-script); font-size: 30px; fill: #fff; }
.route-mask { stroke-dasharray: 100; stroke-dashoffset: 0; }
.motion .route-map .route-mask { stroke-dashoffset: 100; transition: stroke-dashoffset 2.8s var(--ease-in-out) .4s; }
.motion .route-map.is-in .route-mask { stroke-dashoffset: 0; }
.motion .route-map .map-pt { transform-box: fill-box; transform-origin: center; transform: scale(0); transition: transform .7s var(--spring) calc(.5s + var(--i) * .36s); }
.motion .route-map.is-in .map-pt { transform: none; }
.motion .route-map .map-label, .motion .route-map .map-script { opacity: 0; transition: opacity .9s ease calc(.6s + var(--i) * .36s); }
.motion .route-map.is-in .map-label, .motion .route-map.is-in .map-script { opacity: 1; }
@media (max-width: 1080px) {
  .route__grid { grid-template-columns: 1fr 1fr; }
  .route__intro { grid-column: 1 / -1; }
  .route__intro .film { max-width: 680px; }
}
@media (max-width: 700px) {
  .route__grid { grid-template-columns: 1fr; }
  .route-map { border-left: 0; padding-left: 0; border-top: 1px solid var(--ink-line); padding-top: 24px; }
  .route-map .btn { align-self: stretch; }
}

/* ---------- Through our lens ---------- */
.lens { padding-block: var(--section); overflow: hidden; }
.lens__head { display: grid; justify-items: center; gap: 16px; margin-bottom: clamp(36px, 5vw, 64px); text-align: center; }
.lens__title { font-size: clamp(2.8rem, 7.5vw, 6rem); line-height: .96; }
.lens__meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 26px; }
button.link-arrow { background: none; border: 0; border-bottom: 1.5px solid currentColor; padding: 0 0 3px; font-family: inherit; cursor: pointer; }
.lens__rows { display: grid; gap: clamp(10px, 1.2vw, 16px); }
.lens__row { --h: clamp(190px, 25vw, 360px); display: flex; gap: clamp(10px, 1.2vw, 16px); width: max-content; padding-inline: var(--gutter); will-change: transform; }
.lens__row .shot { flex: none; height: var(--h); aspect-ratio: var(--ar, 1); }
.shot { position: relative; display: block; overflow: hidden; border-radius: 16px; background: var(--ink); cursor: zoom-in; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.shot:hover img { transform: scale(1.08); }
.shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2, 12, 20, .7), rgba(2, 12, 20, 0) 50%); opacity: 0; transition: opacity .6s var(--ease-out); }
.shot:hover::after, .shot:focus-visible::after { opacity: 1; }
.shot__cap { position: absolute; z-index: 1; left: 16px; right: 16px; bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #fff; font-size: .86rem; font-weight: 500; opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease-out), transform .8s var(--ease-out); }
.shot__cap .ic { width: 16px; height: 16px; }
.shot:hover .shot__cap, .shot:focus-visible .shot__cap { opacity: 1; transform: none; }
@media (hover: none) { .shot::after { opacity: .75; } .shot__cap { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .lens__rows { overflow-x: auto; } }
.no-js .lens__rows { overflow-x: auto; }

.lightbox { position: fixed; inset: 0; z-index: 90; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 24px; background: rgba(2, 9, 15, .94); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__fig { margin: 0; display: grid; justify-items: center; gap: 12px; transform: scale(.96); transition: transform .6s var(--ease-out); }
.lightbox.is-open .lightbox__fig { transform: none; }
.lightbox__fig img { max-height: 80vh; width: auto; max-width: 100%; border-radius: 12px; }
.lightbox__fig figcaption { color: var(--on-dark-muted); font-size: 0.9rem; text-align: center; }
.lightbox__btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .06); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background-color .25s, color .25s; }
.lightbox__btn:hover { background: var(--accent); color: var(--on-accent); }
.lightbox__close { position: absolute; top: 18px; right: 18px; }
@media (max-width: 600px) { .lightbox { grid-template-columns: 1fr; padding: 70px 12px; } .lightbox__prev, .lightbox__next { position: absolute; bottom: 18px; } .lightbox__prev { left: calc(50% - 56px); } .lightbox__next { right: calc(50% - 56px); } }

/* ---------- Traveller stories ---------- */
.stories { padding-block: var(--section); background: var(--paper-2); overflow: hidden; }
.stories__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px 48px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 40px); }
.stories__title .h2 { margin-top: 16px; font-size: clamp(2.4rem, 5vw, 4rem); }
.stories__title .lead { margin-top: 12px; }
.stories__side { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.rating { display: flex; align-items: center; gap: 14px; padding-right: 28px; border-right: 1px solid var(--line); }
.rating__num { font-family: var(--f-display); font-weight: 340; font-size: 3rem; line-height: 1; letter-spacing: -0.04em; }
.rating small { display: block; margin-top: 3px; font-size: .8rem; color: var(--muted); }
.stars { display: flex; gap: 3px; color: var(--accent); }
.stars .ic { width: 15px; height: 15px; }
.stories__nav { display: flex; gap: 10px; }
.round-btn { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; border: 1px solid #cfc7b8; background: transparent; color: var(--text); cursor: pointer; transition: background-color .3s, color .3s, border-color .3s, transform .5s var(--spring), opacity .3s; }
.round-btn:hover:not(:disabled) { background: var(--ink); border-color: var(--ink); color: #fff; transform: scale(1.06); }
.round-btn:disabled { opacity: .35; cursor: default; }
.round-btn .ic { width: 20px; height: 20px; }

.stories__track {
  --inset: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
  position: relative; display: flex; gap: clamp(14px, 1.6vw, 22px);
  padding: 20px var(--inset) 44px; scroll-padding-inline: var(--inset);
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none;
  cursor: grab;
}
.stories__track::-webkit-scrollbar { display: none; }
.stories__track.is-dragging { scroll-snap-type: none; cursor: grabbing; user-select: none; }
.stories__track:focus-visible { outline-offset: -4px; }
.review {
  position: relative; flex: 0 0 clamp(288px, 31vw, 392px); scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 22px; padding: 28px 28px 24px;
  border-radius: 24px; background: var(--card);
  border: 1px solid rgba(22, 27, 32, .06);
  box-shadow: 0 1px 2px rgba(4, 20, 31, .04), 0 24px 48px -30px rgba(4, 20, 31, .35);
  transition: transform .8s var(--ease-out), box-shadow .8s var(--ease-out);
}
.review::before {
  content: ""; position: absolute; inset: 0; padding: 1px; border-radius: inherit; pointer-events: none;
  background: linear-gradient(160deg, rgba(242, 138, 68, .8), rgba(242, 138, 68, 0) 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  opacity: 0; transition: opacity .6s;
}
.review:hover { transform: translateY(-8px); box-shadow: 0 2px 4px rgba(4, 20, 31, .04), 0 40px 70px -34px rgba(4, 20, 31, .45); }
.review:hover::before { opacity: 1; }
.review__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review__trip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; background: var(--paper); font-size: .72rem; font-weight: 600; color: #4a5057; white-space: nowrap; }
.review__trip .ic { width: 13px; height: 13px; color: var(--accent-deep); }
.review__quote { flex: 1; margin: 0; font-family: var(--f-display); font-weight: 380; font-size: clamp(1.06rem, 1.3vw, 1.2rem); line-height: 1.52; letter-spacing: -0.01em; color: #22272c; }
.review__foot { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid #eee8de; }
.review__avatar { width: 46px; height: 46px; flex: none; border-radius: 50%; display: grid; place-items: center; font-size: .84rem; font-weight: 600; letter-spacing: .03em; color: #fff; background: linear-gradient(135deg, hsl(var(--h) 40% 48%), hsl(calc(var(--h) + 35) 46% 26%)); box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgba(242, 138, 68, .45); }
.review__who { display: grid; line-height: 1.3; }
.review__who strong { font-weight: 600; font-size: .94rem; }
.review__who small { font-size: .8rem; color: var(--muted); }
.review__mark { width: 34px; height: 34px; margin-left: auto; color: rgba(242, 138, 68, .38); transition: color .5s, transform .7s var(--spring); }
.review:hover .review__mark { color: var(--accent); transform: rotate(-8deg) scale(1.08); }
.stories__progress { position: relative; height: 2px; border-radius: 2px; background: #d9d1c3; overflow: hidden; }
.stories__progress span { position: absolute; inset: 0 auto 0 0; width: 30%; border-radius: 2px; background: var(--ink); }
@media (max-width: 760px) {
  .stories__side { width: 100%; justify-content: space-between; }
  .rating { padding-right: 0; border-right: 0; }
  .review { padding: 22px 22px 20px; }
}

/* ---------- CTA band ---------- */
.cta { position: relative; isolation: isolate; overflow: hidden; color: #fff; padding-block: clamp(80px, 11vw, 150px); background: var(--ink); }
.cta__bg { position: absolute; left: 0; top: -15%; z-index: -2; width: 100%; height: 130%; object-fit: cover; object-position: center 35%; translate: 0 var(--py, 0px); will-change: translate; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(2, 12, 20, .88) 0%, rgba(2, 12, 20, .45) 55%, rgba(2, 12, 20, .7) 100%); }
.cta__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px 40px; flex-wrap: wrap; }
.cta h2 { font-family: var(--f-display); font-weight: 380; font-size: clamp(2.4rem, 5.6vw, 4.6rem); line-height: 1.02; letter-spacing: -0.035em; }
.cta h2 em { font-style: italic; font-weight: 300; color: var(--accent-hi); }
.cta .tagline { display: block; margin-top: 20px; color: var(--accent); white-space: normal; }
.cta__right { display: flex; align-items: center; gap: 36px; }
.cta__right .btn { font-size: 1rem; padding: 1em 1.8em; }
.cta__right .script { color: var(--accent); font-size: 1.7rem; transform: rotate(-12deg); text-align: center; }
@media (max-width: 760px) { .cta__right .script { display: none; } }

/* ---------- FAQ + newsletter ---------- */
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
.help-grid > * + * { border-left: 1px solid var(--line); padding-left: clamp(32px, 5vw, 64px); }
.help-grid .h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 18px; }
.newsletter p { color: var(--muted); font-size: 0.95rem; }
.newsletter__form { display: flex; gap: 8px; margin-top: 18px; max-width: 460px; }
.newsletter__form .input { flex: 1; min-width: 0; border-radius: 999px; padding-inline: 1.2em; }
.newsletter__art { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-top: 22px; }
.newsletter__art svg.ridge { width: min(100%, 360px); height: auto; color: var(--accent-deep); }
.motto { display: flex; align-items: center; gap: 14px; font-family: var(--f-cond); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.28em; line-height: 1.7; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.motto .ic { width: 52px; height: 52px; color: var(--accent-deep); stroke-width: 1; }
@media (max-width: 860px) {
  .help-grid { grid-template-columns: 1fr; }
  .help-grid > * + * { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 36px; }
}
@media (max-width: 480px) {
  .newsletter__form { flex-direction: column; }
  .newsletter__art { flex-direction: column; align-items: flex-start; }
}
