/* ============================================
   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(3.2rem, 11vw, 10rem);
  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__tripadvisor {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-ash);
  opacity: 0.5;
  margin-bottom: var(--space-md);
  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;
}

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

.footer {
  padding: var(--space-lg) 0 var(--space-sm);
  border-top: 1px solid rgba(107, 102, 96, 0.1);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__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);
}

.footer__links {
  display: flex;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-mist);
}

.footer__links a { transition: color var(--duration-fast) var(--ease-out); }
.footer__links a:hover { color: var(--color-ash); }

.footer__studio {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-mist);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__studio:hover { color: var(--color-gold); }

.footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(107, 102, 96, 0.08);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--color-mist);
}

.footer__reg {
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  color: var(--color-mist);
  opacity: 0.6;
  margin-top: var(--space-xs);
  padding-top: var(--space-xs);
}

.footer__social {
  display: flex;
  gap: var(--space-xs);
}

.footer__social a {
  color: var(--color-mist);
  transition: color var(--duration-fast) var(--ease-out);
}

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

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs) var(--space-sm);
  }

  .footer__bar {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }

  .footer__ta {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Scale down TripAdvisor widget on mobile */
  .footer__ta iframe,
  .footer__ta > div {
    transform: scale(0.85);
    transform-origin: center top;
  }
}

/* ============================================
   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; }
}
