/* ============================================
   Reset — Mount Rinjani
   Modern CSS reset, minimal and opinionated
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Reset list styles only for nav/menu lists.
   Content lists get bullets by default. */
nav ul,
nav ol,
.nav__links,
.footer__links,
.footer__social,
.trust-bar,
.intro__links,
.hero__cta-row {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}
/* ============================================
   Design Tokens — Mount Rinjani
   All CSS custom properties live here
   ============================================ */

:root {
  /* Colors */
  --color-obsidian:   #0a0a0a;
  --color-stone:      #1a1816;
  --color-ash:        #f2efe8;
  --color-gold:       #c9a84c;
  --color-gold-dim:   #8a6e30;
  --color-mist:       #9a948e;
  --color-crater:     #2a4a5e;

  /* Typography — Families */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Libre Franklin', 'Helvetica Neue', Arial, sans-serif;

  /* Typography — Scale (fluid) */
  --text-xs:    clamp(0.75rem, 1vw, 0.875rem);
  --text-sm:    clamp(0.875rem, 1.2vw, 1rem);
  --text-base:  clamp(1rem, 1.5vw, 1.125rem);
  --text-lg:    clamp(1.25rem, 2vw, 1.5rem);
  --text-xl:    clamp(1.75rem, 3vw, 2.5rem);
  --text-2xl:   clamp(2.5rem, 5vw, 4rem);
  --text-hero:  clamp(3.5rem, 10vw, 9rem);

  /* Spacing */
  --space-xs:   clamp(0.5rem, 1vw, 0.75rem);
  --space-sm:   clamp(1rem, 2vw, 1.5rem);
  --space-md:   clamp(2rem, 4vw, 3rem);
  --space-lg:   clamp(4rem, 8vw, 6rem);
  --space-xl:   clamp(6rem, 12vw, 10rem);
  --space-2xl:  clamp(8rem, 16vw, 14rem);

  /* Layout */
  --max-width: 1200px;
  --gutter: clamp(1.5rem, 4vw, 3rem);

  /* Timing */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
  --duration-fast: 200ms;
  --duration-base: 400ms;
  --duration-slow: 800ms;
}
/* ============================================
   Layout — Mount Rinjani
   One continuous dark canvas. No blocks.
   ============================================ */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-ash);
  background-color: var(--color-obsidian);
  overflow-x: hidden;
}

/* Film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--wide {
  max-width: 1440px;
}

/* All sections share one background — no blocks */
section {
  position: relative;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  transition: background-color var(--duration-base) var(--ease-out),
              padding var(--duration-base) var(--ease-out);
}

.nav.is-scrolled {
  background-color: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-xs) 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-ash);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav__link {
  font-size: var(--text-xs);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ash);
  opacity: 0.6;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.nav__link:hover,
.nav__link:focus-visible { opacity: 1; }

.nav__link--cta {
  opacity: 1;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 0.5em 1.4em;
  transition: background-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.nav__link--cta:hover,
.nav__link--cta:focus-visible {
  background-color: var(--color-gold);
  color: var(--color-obsidian);
}

/* Mobile */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  cursor: pointer;
  padding: 4px 0;
}

.nav__toggle span {
  display: block;
  height: 1px;
  background: var(--color-ash);
  transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-fast);
}

.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    background-color: #0a0a0a;
    padding: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--duration-slow) cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 101;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav__links.is-open { transform: translateX(0); }

  .nav__link {
    font-size: var(--text-lg);
    color: var(--color-ash);
    opacity: 1;
  }

  .nav__toggle {
    z-index: 102;
  }

  .nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-base) var(--ease-out);
    z-index: 99;
  }

  .nav__overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    align-items: center;
  }

  .hero__content {
    padding-bottom: 0;
    padding-top: var(--space-lg);
  }

  .hero__title {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg picture {
  width: 100%;
  height: 100%;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.25) 0%,
      rgba(10,10,10,0.15) 30%,
      rgba(10,10,10,0.4) 55%,
      rgba(10,10,10,0.88) 82%,
      var(--color-obsidian) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) var(--space-xl);
  max-width: 100%;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--color-ash);
  margin-bottom: var(--space-sm);
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-ash);
  opacity: 0.5;
  margin-bottom: var(--space-md);
}

.hero__social-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
}

.hero__ig {
  display: flex;
  align-items: center;
  color: var(--color-ash);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.hero__ig:hover { opacity: 1; }

.hero__ig svg {
  display: inline;
  max-width: none;
}

.hero__tripadvisor {
  display: inline;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-ash);
  opacity: 0.5;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.hero__tripadvisor:hover {
  opacity: 1;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Live summit weather — centered bottom of hero */
.hero__weather {
  position: absolute;
  bottom: calc(var(--space-sm) + 3rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-ash);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}

.hero__weather.is-loaded {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hero__weather {
    white-space: normal;
    max-width: 80%;
  }
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--gutter);
  z-index: 2;
  color: var(--color-mist);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: var(--color-gold-dim);
}

/* ============================================
   EDITORIAL INTRO
   ============================================ */

.intro {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.intro__text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  color: var(--color-ash);
  max-width: 900px;
}

.intro__gold {
  color: var(--color-gold);
  font-weight: 500;
}

.intro__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-sm);
  margin-top: var(--space-sm);
}

.intro__links a {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-ash);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 0.45em 0.9em;
  transition: color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}

.intro__links a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.06);
}

/* ============================================
   FULL-BLEED IMAGES — Visual breathers
   ============================================ */

.bleed-image {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
  margin: 0;
}

.bleed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fade edges into the dark canvas */
.bleed-image::before,
.bleed-image::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 30%;
  z-index: 1;
  pointer-events: none;
}

.bleed-image::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-obsidian), transparent);
}

.bleed-image::after {
  bottom: 0;
  height: 40%;
  background: linear-gradient(to top, var(--color-obsidian), transparent);
}

.bleed-image--short {
  height: 75vh;
}

.bleed-image--short img {
  object-position: center bottom;
}

@media (max-width: 768px) {
  .bleed-image { height: 50vh; }
  .bleed-image--short { height: 75vh; }
}

/* ============================================
   THE JOURNEY — Sticky scroll storytelling
   ============================================ */

.journey {
  position: relative;
  padding: 0;
  margin-top: var(--space-lg);
}

.journey__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.journey__text {
  position: relative;
  padding: var(--space-xl) var(--gutter);
  display: flex;
  flex-direction: column;
}

.journey__chapter {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) 0;
  max-width: 520px;
}

.journey__day {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.journey__day::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold-dim);
}

.journey__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--color-ash);
  margin-bottom: var(--space-sm);
}

.journey__heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.journey__body {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-mist);
  line-height: 1.8;
}

.journey__media {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.journey__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}

.journey__image.is-active { opacity: 1; }

.journey__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--color-obsidian) 0%, transparent 12%),
    linear-gradient(0deg, rgba(10,10,10,0.4) 0%, transparent 25%),
    linear-gradient(180deg, var(--color-obsidian) 0%, transparent 20%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .journey__inner { grid-template-columns: 1fr; }

  .journey__media {
    position: relative;
    height: 60vh;
  }

  .journey__chapter {
    min-height: auto;
    padding: var(--space-md) 0;
  }

  .journey__media::after {
    background: linear-gradient(0deg, var(--color-obsidian) 0%, transparent 20%);
  }
}

/* ============================================
   PULL QUOTE — Large, centered
   ============================================ */

.pullquote {
  text-align: center;
  padding: var(--space-2xl) var(--gutter);
  position: relative;
  overflow: hidden;
}

.pullquote::before {
  content: '\201C';
  position: absolute;
  top: -0.1em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(15rem, 40vw, 50rem);
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.035;
  pointer-events: none;
}

.pullquote__text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-ash);
  max-width: 960px;
  margin: 0 auto var(--space-md);
  position: relative;
}

.pullquote__attribution {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
}

/* ============================================
   INLINE QUOTES — Woven between sections
   ============================================ */

.inline-quote {
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(107, 102, 96, 0.1);
}

.inline-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-ash);
  max-width: 700px;
  margin-bottom: var(--space-sm);
}

.inline-quote__author {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-mist);
}

.inline-quote--final {
  border-top: none;
}

/* ============================================
   CREW — Asymmetric, editorial
   ============================================ */

.crew {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.crew__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-ash);
  margin-bottom: var(--space-xl);
}

.crew__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.crew__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.crew__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.crew__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.6s var(--ease-out);
}

.crew__member--featured:hover .crew__photo img {
  filter: grayscale(30%) contrast(1.05);
}

.crew__bio {
  max-width: 480px;
}

.crew__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  color: var(--color-gold);
  line-height: 1.1;
}

.crew__role {
  font-size: var(--text-xs);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-mist);
  margin-top: 0.3em;
  margin-bottom: var(--space-md);
}

.crew__text {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-mist);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
  .crew__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ============================================
   TREKS — Horizontal scroll
   ============================================ */

.treks {
  padding: var(--space-2xl) 0 var(--space-xl);
  border-top: 1px solid rgba(107, 102, 96, 0.1);
}

.treks__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-ash);
  margin-bottom: var(--space-xs);
}

.treks__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.treks__subtitle {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-mist);
  max-width: 540px;
  margin-bottom: var(--space-lg);
}

/* 2×2 grid on desktop */
.treks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-sm);
}

.trek-card {
  background: var(--color-stone);
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  transition: transform var(--duration-base) var(--ease-out);
}

.trek-card:hover {
  transform: translateY(-2px);
}

/* Head: duration, name, tags */
.trek-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.trek-card__duration {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-mist);
  border: 1px solid rgba(154, 148, 142, 0.25);
  padding: 0.3em 0.6em;
  border-radius: 2px;
  align-self: flex-start;
}

.trek-card--popular .trek-card__duration {
  color: var(--color-gold);
  border-color: var(--color-gold-dim);
}

.trek-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  font-style: italic;
  color: var(--color-ash);
  line-height: 1.15;
}

.trek-card__tags {
  display: flex;
  gap: 0.4em;
}

.trek-card__tag {
  font-size: 0.6rem;
  font-weight: 500;
  padding: 0.2em 0.5em;
  border-radius: 2px;
}

.trek-card__tag--elev {
  background: var(--color-gold-dim);
  color: var(--color-ash);
}

.trek-card__tag--normal {
  background: #2d6a3f;
  color: var(--color-ash);
}

.trek-card__tag--hard {
  background: #8b3a3a;
  color: var(--color-ash);
}

.trek-card__tag--slow {
  background: #5a6e3a;
  color: var(--color-ash);
}

.trek-card__tag--luxury {
  background: var(--color-gold-dim);
  color: var(--color-ash);
}

.trek-card__tag--pending {
  background: rgba(154, 148, 142, 0.2);
  color: var(--color-mist);
}

/* Route highlights */
.trek-card__route {
  border-top: 1px solid rgba(154, 148, 142, 0.15);
  padding-top: var(--space-xs);
}

.trek-card__route ul {
  list-style: none;
  padding: 0;
}

.trek-card__route li {
  font-size: var(--text-xs);
  color: var(--color-ash);
  line-height: 1.6;
  padding-left: 1.2em;
  position: relative;
}

.trek-card__route li::before {
  content: '↑';
  position: absolute;
  left: 0;
  color: var(--color-gold-dim);
}

.trek-card__direction {
  font-size: var(--text-xs);
  color: var(--color-mist);
  margin-top: 0.4em;
}

/* Pricing table */
.trek-card__pricing {
  width: 100%;
  border-top: 1px solid rgba(154, 148, 142, 0.15);
  padding-top: var(--space-xs);
  border-collapse: collapse;
}

.trek-card__pricing th {
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-mist);
  text-align: left;
  padding-bottom: 0.4em;
}

.trek-card__pricing th:last-child {
  text-align: right;
}

.trek-card__pricing td {
  font-size: var(--text-xs);
  color: var(--color-mist);
  padding: 0.2em 0;
}

.trek-card__pricing td:last-child {
  text-align: right;
  color: var(--color-ash);
}

.trek-card__pricing strong {
  font-weight: 500;
}

/* Button at bottom */
.trek-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Most popular highlight */
.trek-card--popular {
  border: 1px solid var(--color-gold-dim);
}

/* Pending card */
.trek-card--pending {
  opacity: 0.45;
}

.trek-card--pending .trek-card__name {
  color: var(--color-mist);
}

.trek-card__pending-note {
  font-size: var(--text-xs);
  font-style: italic;
  color: var(--color-gold-dim);
  line-height: 1.5;
}

.treks__note {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-mist);
  margin-top: var(--space-md);
  max-width: 540px;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  padding: var(--space-2xl) 0 var(--space-xl);
  border-top: 1px solid rgba(107, 102, 96, 0.1);
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-ash);
  margin-bottom: var(--space-xl);
}

.faq__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.faq__list {
  max-width: 800px;
}

.faq__item {
  border-bottom: 1px solid rgba(107, 102, 96, 0.15);
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: var(--space-sm) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-ash);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.faq__question:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

.faq__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-gold);
  transition: transform var(--duration-base) var(--ease-out);
}

.faq__icon::before { width: 100%; height: 1px; top: 50%; left: 0; }
.faq__icon::after { width: 1px; height: 100%; left: 50%; top: 0; }

.faq__item.is-open .faq__icon::after { transform: rotate(90deg); }

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--duration-base) var(--ease-out);
}

.faq__answer p {
  padding-bottom: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-mist);
  line-height: 1.8;
}

.faq__item.is-open .faq__answer { max-height: 500px; }

/* ============================================
   BOOKING CTA
   ============================================ */

.booking {
  text-align: center;
  padding: var(--space-2xl) var(--gutter);
  border-top: 1px solid rgba(107, 102, 96, 0.1);
}

.booking__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-ash);
  margin-bottom: var(--space-sm);
}

.booking__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.booking__text {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-mist);
  margin-bottom: var(--space-md);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.booking__secondary {
  display: block;
  margin-top: var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-mist);
  transition: color var(--duration-fast) var(--ease-out);
}

.booking__secondary:hover { color: var(--color-ash); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 1em 2.4em;
  transition: background-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}

.btn:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 4px; }
.btn:active { transform: scale(0.97); }

.btn--outline {
  border: 1px solid var(--color-gold-dim);
  color: var(--color-ash);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--color-gold);
  background-color: var(--color-gold);
  color: var(--color-obsidian);
}

.btn--solid {
  border: 1px solid var(--color-gold);
  background-color: var(--color-gold);
  color: var(--color-obsidian);
  font-weight: 700;
  padding: 1.1em 3em;
}

.btn--solid:hover {
  background-color: #d4b35a;
  border-color: #d4b35a;
}

.btn--small {
  font-size: 0.65rem;
  padding: 0.7em 1.6em;
}

.trek-card__details {
  display: block;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ash);
  text-decoration: none;
  margin-bottom: 0.5rem;
  opacity: 0.6;
  transition: opacity var(--duration-fast) var(--ease-out);
}
.trek-card__details:hover {
  opacity: 1;
  color: var(--color-gold);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 4rem 0 0;
  border-top: 1px solid rgba(201,168,76,0.12);
  font-family: var(--font-body);
}

/* ---- Trust strip ---- */
.footer__trust {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding-bottom: 2.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(107,102,96,0.1);
  flex-wrap: wrap;
  row-gap: 0.75rem;
}

.footer__trust-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mist);
  white-space: nowrap;
  padding: 0 2rem;
}

.footer__trust-badge:first-child { padding-left: 0; }

.footer__trust-badge svg {
  color: var(--color-gold);
  flex-shrink: 0;
  display: inline;
  width: 14px;
  height: 14px;
  max-width: none;
}

.footer__trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(107,102,96,0.25);
  flex-shrink: 0;
}

.footer__ta-inline {
  padding-left: 2rem;
  display: inline-flex;
  align-items: center;
}

.footer__ta-inline img {
  opacity: 0.45;
  transition: opacity 0.3s;
  display: block;
}

.footer__ta-inline img:hover { opacity: 0.8; }

/* ---- 4-column grid ---- */
.footer__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  column-gap: 3.5rem;
  row-gap: 0;
  padding-bottom: 3.5rem;
  align-items: start;
}

.footer__col { display: flex; flex-direction: column; }

/* ---- Brand col ---- */
.footer__brand {
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-ash);
  display: block;
  margin-bottom: 0.9rem;
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--color-mist);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__contact a {
  font-size: 0.78rem;
  color: var(--color-mist);
  transition: color 0.15s ease;
}

.footer__contact a:hover { color: var(--color-ash); }

/* ---- Nav cols ---- */
.footer__col-title {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.78rem;
  color: var(--color-mist);
  line-height: 1.3;
  transition: color 0.15s ease;
}

.footer__links a:hover { color: var(--color-ash); }

/* ---- Connect col ---- */
.footer__connect-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-mist);
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.15s ease;
}

.footer__connect-item:hover { color: var(--color-ash); }

.footer__connect-item svg {
  flex-shrink: 0;
  display: inline;
  width: 16px;
  height: 16px;
  max-width: none;
  opacity: 0.55;
}

.footer__connect-item:hover svg { opacity: 1; }

/* ---- Bottom bar ---- */
.footer__bottom {
  border-top: 1px solid rgba(107,102,96,0.1);
  padding: 1.1rem 0 1.1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.68rem;
  color: var(--color-mist);
  opacity: 0.5;
}

.footer__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.9rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  color: var(--color-mist);
  opacity: 0.45;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.footer__social a svg {
  display: inline;
  max-width: none;
}

.footer__social a:hover { color: var(--color-gold); opacity: 1; }

.footer__studio {
  font-size: 0.58rem;
  color: var(--color-mist);
  opacity: 0.25;
  transition: opacity 0.15s ease;
  text-decoration: none;
}

.footer__studio:hover { opacity: 0.6; }

.footer__reg {
  display: block;
  text-align: center;
  font-size: 0.58rem;
  color: var(--color-mist);
  opacity: 0.25;
  padding: 0.5rem 0 1.5rem;
  letter-spacing: 0.04em;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .footer__cols {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }

  .footer__trust-badge { padding: 0 1.25rem; }
}

@media (max-width: 640px) {
  .footer {
    padding-top: 3rem;
  }

  .footer__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .footer__trust-badge { padding: 0; }
  .footer__trust-divider { display: none; }
  .footer__ta-inline { padding-left: 0; }

  .footer__cols {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* ============================================
   UTILITIES
   ============================================ */

.icon-whatsapp {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.15em;
  margin-right: 0.4em;
}

::selection {
  background: var(--color-gold);
  color: var(--color-obsidian);
}

/* ============================================
   TRUST BAR — Social proof under intro
   ============================================ */

.trust-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.trust-bar__item {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

.trust-bar__divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold-dim);
  flex-shrink: 0;
}

.trust-bar__item a {
  color: var(--color-gold);
  transition: opacity var(--duration-fast) var(--ease-out);
}

.trust-bar__item a:hover {
  opacity: 0.7;
}

@media (max-width: 600px) {
  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .trust-bar__divider { display: none; }
}

/* TripAdvisor widgets — reset their list styles */
.pullquote__ta ul,
.pullquote__ta li,
.footer__ta ul,
.footer__ta li,
[class^="TA_"] ul,
[class^="TA_"] li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__ta {
  margin-top: var(--space-sm);
  max-width: 320px;
}

.footer__ta img:hover {
  opacity: 0.8 !important;
}

/* Constrain TripAdvisor widget */
.footer__ta iframe {
  max-width: 100% !important;
  border-radius: 4px;
}

/* ============================================
   TREK CARD — "Most Popular" badge
   ============================================ */

.trek-card--popular {
  position: relative;
}

.trek-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-obsidian);
  background: var(--color-gold);
  padding: 0.4em 0.9em;
}

/* ============================================
   STICKY WHATSAPP — Mobile conversion lever
   ============================================ */

.sticky-wa {
  position: fixed;
  bottom: var(--space-sm);
  right: var(--space-sm);
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
  opacity: 0;
  pointer-events: none;
}

.sticky-wa.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.sticky-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
}

.sticky-wa svg {
  width: 28px;
  height: 28px;
}

/* Hide on desktop — nav CTA is enough */
@media (min-width: 769px) {
  .sticky-wa { display: none; }
}
/* ============================================
   Components — Mount Rinjani
   ============================================ */

/* Italic emphasis in headings — the gold accent */
em { font-style: italic; }

h1 em, h2 em {
  font-weight: 300;
  color: var(--color-gold);
}

/* Screen reader only — SEO keywords visible to crawlers, hidden visually */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Selection */
::selection {
  background: var(--color-gold);
  color: var(--color-obsidian);
}
/* ============================================
   Animations — Mount Rinjani
   All scroll-triggered + hover animations
   CSS-only pieces; JS-triggered classes below
   ============================================ */

/* ----- Hero background slow scale ----- */

@media (prefers-reduced-motion: no-preference) {
  .hero__bg img {
    animation: hero-scale 20s ease-out forwards;
  }
}

@keyframes hero-scale {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

/* ----- Reveal: fade up ----- */
/* Only hide elements when JS has loaded (body gets .js-ready class) */

.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
}

@media (prefers-reduced-motion: no-preference) {
  .js-ready .reveal.is-visible {
    animation: fade-up var(--duration-slow) var(--ease-out) forwards;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- Reveal: fade in only ----- */

.js-ready .reveal-fade {
  opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .js-ready .reveal-fade.is-visible {
    animation: fade-in var(--duration-slow) var(--ease-out) forwards;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal-fade {
    opacity: 1;
  }
}

@keyframes fade-in {
  to { opacity: 1; }
}

/* ----- (stats removed — replaced by editorial intro) ----- */

/* ----- Stagger children ----- */

.js-ready .stagger-group .reveal:nth-child(1) { animation-delay: 0ms; }
.js-ready .stagger-group .reveal:nth-child(2) { animation-delay: 100ms; }
.js-ready .stagger-group .reveal:nth-child(3) { animation-delay: 200ms; }
.js-ready .stagger-group .reveal:nth-child(4) { animation-delay: 300ms; }
.js-ready .stagger-group .reveal:nth-child(5) { animation-delay: 400ms; }
.js-ready .stagger-group .reveal:nth-child(6) { animation-delay: 500ms; }

/* ----- Hero-specific delays ----- */

.js-ready .hero__title.reveal  { animation-delay: 400ms; }
.js-ready .hero__subtitle.reveal { animation-delay: 600ms; }
.js-ready .hero__cta.reveal-fade { animation-delay: 900ms; }

@media (prefers-reduced-motion: no-preference) {
  .js-ready .hero__title.reveal,
  .js-ready .hero__subtitle.reveal {
    animation: fade-up var(--duration-slow) var(--ease-out) forwards;
  }

  .js-ready .hero__cta.reveal-fade {
    animation: fade-in var(--duration-slow) var(--ease-out) forwards;
  }
}

/* ============================================
   REVIEWS PAGE
   ============================================ */

.reviews-hero {
  padding: 8rem 0 4rem;
  text-align: center;
}

.reviews-hero__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.reviews-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-ash);
  margin-bottom: 1.5rem;
}

.reviews-hero__title em {
  font-style: italic;
  color: var(--color-gold);
}

.reviews-hero__sub {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--color-mist);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Cards */
.reviews-cards {
  padding: 3rem 0 5rem;
}

.reviews-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  text-decoration: none;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.review-card:hover {
  border-color: rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.04);
  transform: translateY(-3px);
}

.review-card__icon {
  width: 48px;
  height: 48px;
}

.review-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-ash);
  line-height: 1.2;
}

.review-card__desc {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--color-mist);
  line-height: 1.65;
  flex: 1;
}

.review-card__cta {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* Quotes */
.reviews-quotes {
  padding: 4rem 0 5rem;
  border-top: 1px solid rgba(107,102,96,0.1);
}

.reviews-quotes__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-quotes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.rq {
  margin: 0;
  padding: 2rem;
  border-left: 2px solid rgba(201,168,76,0.3);
}

.rq__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-ash);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.rq__attr {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mist);
  opacity: 0.6;
}

.reviews-quotes__cta {
  text-align: center;
}

/* Back CTA */
.reviews-back {
  padding: 4rem 0 6rem;
  text-align: center;
  border-top: 1px solid rgba(107,102,96,0.1);
}

.reviews-back__text {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--color-mist);
  margin-bottom: 1.5rem;
}
