/* ---------- CSS Custom Properties ---------- */
:root {
  --clr-dark:       #191717;
  --clr-off-white:  #f8f5f2;
  --clr-warm-sand:  #ede7e1;
  --clr-muted:      #d0c9c3;
  --clr-text:       #2c2a28;
  --clr-text-light: #6b6560;
  --clr-accent:     #8b6f5e;

  --font-display:   'Newyork';
  --font-body:      "Manrope Regular";

  --ease-smooth:    cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition:     0.35s var(--ease-smooth);

  --header-h:       75px;
  --container:      1360px;
  --container-mid:  900px;
  --gap:            clamp(1.5rem, 4vw, 3rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img, picture, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
p { font-family: "Manrope Regular"; font-size: 1em; padding-bottom: 2vw;}
h1, h2, h3, h4, h5, h6 {font-family: "NewYork"}

/* ---------- Typography ---------- */
.section-title {
  font-family: NewYork;
  font-size: clamp(2.4rem, 2vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #525E47;
  padding-bottom: 2vw;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
}
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  margin-bottom: 0.5rem;
}

/* ---------- Containers ---------- */
.container       { max-width: var(--container); margin-inline: auto; padding-inline: var(--gap); }
.container-wide  { max-width: 1480px; margin-inline: auto; padding-inline: var(--gap); }
.container-mid   { max-width: 90%; margin-inline: auto; padding-inline: var(--gap); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.75rem;
  font-family: "Manrope Regular";
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: none;
  border-radius: 2px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--dark {
  background: #525E47;
  color: var(--clr-off-white);
  border: 0px solid var(--clr-dark);
}
.btn--dark:hover { background: #2e2c2c; }
.btn--light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
}
.btn--light:hover { background: rgba(255,255,255,0.12); }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-dark);
  border-bottom: 1px solid var(--clr-muted);
  padding-bottom: 1px;
  transition: border-color var(--transition), color var(--transition);
}
.btn-link:hover { border-color: var(--clr-dark); }
.btn-link span { transition: transform 0.2s; }
.btn-link:hover span { transform: translateX(4px); }

/* ---------- Round Nav Button ---------- */
.round-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--clr-dark);
  display: inline-flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.round-btn:hover { background: var(--clr-dark); color: #fff; }

.carousel-counter {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--clr-text-light);
  min-width: 4rem;
  text-align: center;
}

/* ---------- Section Header ---------- */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.section-header .carousel-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ---------- Reveal Animations ---------- */
.reveal-section { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-section.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(25,23,23,0.08);
  transition: box-shadow var(--transition);
}
.header.is-scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gap);
  height: 100%;
  display: grid;
  grid-template-columns: 10% 80% 10%;
  align-items: center;
}

.header__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 2px 0;
  justify-self: start;
}
.header__menu-btn span {
  display: block;
  height: 1px;
  background: var(--clr-dark);
  transition: var(--transition);
}
.header__menu-btn.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header__menu-btn.is-open span:nth-child(2) { opacity: 0; }
.header__menu-btn.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  justify-self: center;
}
.logo-carrier {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--clr-dark);
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  margin-top: 2px;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  justify-self: end;
}
.header__search-btn {
  display: flex;
  align-items: center;
  color: var(--clr-dark);
  transition: opacity var(--transition);
}
.header__search-btn:hover { opacity: 0.6; }
.header__cta {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #525E47;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background var(--transition);
}
.header__cta:hover { background: #2e2c2c; }

/* ── Mobile header adjustments ── */
@media (max-width: 480px) {
  .header__cta {
    font-size: 0.62rem;
    padding: 0.5rem 0.9rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
}

/* ============================================
   NAV DRAWER
   ============================================ */
.nav-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(420px, 90vw);
  background: #fff;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.45s var(--ease-smooth);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.nav-drawer.is-open { transform: translateX(0); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}
.nav-overlay.is-visible { opacity: 1; pointer-events: all; }

.nav-drawer__inner {
  padding: 2rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
}
.nav-drawer__close {
  align-self: flex-end;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--clr-muted);
  border-radius: 5%;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.nav-drawer__close:hover { background: var(--clr-warm-sand); }

.nav-drawer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--clr-dark);
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--clr-warm-sand);
  padding-bottom: 1.5rem;
}

.nav-drawer__list { flex: 1; }
.nav-drawer__item { border-bottom: 1px solid var(--clr-warm-sand); }
.nav-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 0;
  font-family: "NewYork";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--clr-dark);
  transition: color var(--transition);
  text-align: left;
}
.nav-drawer__link:hover { color: var(--clr-accent); }
.nav-arrow { font-style: normal; font-size: 1.2rem; transition: transform var(--transition); }
.nav-drawer__item.is-open .nav-arrow { transform: rotate(45deg); }

.nav-sub {
  display: none;
  padding: 0 0 1rem 1rem;
}
.nav-drawer__item.is-open .nav-sub { display: block; }
.nav-sub li { padding: 0.35rem 0; }
.nav-sub a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  transition: color var(--transition);
}
.nav-sub a:hover { color: var(--clr-dark); }

.nav-drawer__footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-warm-sand);
}
.nav-drawer__phone {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  display: block;
  color: var(--clr-dark);
}
.nav-drawer__hours {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--clr-text-light);
  margin-top: 0.35rem;
}

/* ============================================
   SEARCH PANEL
   ============================================ */
.search-panel {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  z-index: 950;
  padding: calc(var(--header-h) + 2rem) var(--gap) 3rem;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-smooth);
  border-bottom: 1px solid var(--clr-warm-sand);
}
.search-panel.is-open { transform: translateY(0); }
.search-panel__inner { max-width: 680px; margin-inline: auto; position: relative; }
.search-panel__close {
  position: absolute;
  top: -3.5rem; right: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--clr-muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.search-panel__close:hover { background: var(--clr-warm-sand); }

.search-panel__label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  display: block;
  margin-bottom: 1.5rem;
  color: var(--clr-dark);
}
.search-panel__field {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--clr-dark);
  padding-bottom: 0.5rem;
  gap: 0.75rem;
}
.search-panel__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-dark);
  background: transparent;
}
.search-panel__input::placeholder { color: var(--clr-muted); }
.search-panel__submit { color: var(--clr-dark); display: flex; }
.search-panel__suggestions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.75rem;
  color: var(--clr-text-light);
}
.search-panel__suggestions a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--clr-warm-sand);
  padding: 0.3rem 0.8rem;
  border-radius: 1px;
  transition: background var(--transition);
}
.search-panel__suggestions a:hover { background: var(--clr-muted); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
}
.hero__slides { width: 100%; height: 100%; }

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: flex-end;
}
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,8,0.7) 0%, rgba(10,8,8,0.2) 50%, transparent 100%);
}

.hero__slide-inner {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 6vw, 6rem);
  min-width: 1080px;
}
.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: NewYork;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero__title em { font-style: italic; }
.hero__copy {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  max-width: 420px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__controls {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  right: clamp(1.5rem, 4vw, 4rem);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__prev, .hero__next {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: var(--transition);
}
.hero__prev:hover, .hero__next:hover { background: rgba(255,255,255,0.15); }
.hero__dots { display: flex; gap: 6px; align-items: center; }
.hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.hero__dot.is-active { background: #fff; transform: scale(1.3); }

.hero__scroll {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.7);
  display: flex;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
  padding: clamp(5rem, 0vw, 9rem) 0;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.intro__text p {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  margin-top: 1.5rem;
  line-height: 1.8;
}
.intro__text p + p { margin-top: 0.75rem; }
.intro__text .btn { margin-top: 2.5rem; }
.intro__aside { padding-top: 0.5rem; }
.intro__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--clr-warm-sand);
}
.intro__stat {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--clr-warm-sand);
}
.intro__stat strong {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--clr-dark);
}
.intro__stat span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  margin-top: 0.3rem;
}

/* ============================================
   DESTINATIONS CAROUSEL
   ============================================ */
.destinations {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: rgba(240,230,218,1);
  overflow: hidden;
}
.dest-track-outer { overflow: hidden; margin-top: 0; }
.dest-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 var(--gap) clamp(2rem, 4vw, 3rem);
  transition: transform 0.55s var(--ease-smooth);
}
.dest-card {
  flex: 0 0 clamp(280px, 32vw, 380px);
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.dest-card__img {
  height: 420px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-card__img { transform: scale(1.03); }
.dest-card { overflow: hidden; }
.dest-card__content {
  padding: 1.5rem;
}
.dest-card__label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  display: block;
  margin-bottom: 0.5rem;
}
.dest-card__title {
  font-family: "NewYork";
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--clr-dark);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.dest-card__content p {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* ============================================
   IMAGE BANNER
   ============================================ */
.image-banner {
  position: relative;
  min-height: clamp(400px, 70vh, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.image-banner__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.image-banner.is-visible .image-banner__img { transform: scale(1); }
.image-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,8,8,0.72) 40%, rgba(10,8,8,0.15) 100%);
}
.image-banner__content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 8vw, 9rem);
  max-width: 600px;
  color: #fff;
}
.image-banner__label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 1rem;
}
.image-banner__title {
  font-family: "NewYork";
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: #fff;
}
.image-banner__title em { font-style: italic; }
.image-banner__content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 420px;
  line-height: 1.7;
}

/* ============================================
   TRENDING CARDS
   ============================================ */
.trending {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.trending__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trend-card { display: flex; flex-direction: column; }
.trend-card__img {
  height: 340px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.6s ease;
}
.trend-card:hover .trend-card__img { transform: scale(1.03); }
.trend-card { overflow: hidden; }
.trend-card__body {
  padding: 1.5rem 0 0;
  flex: 1;
}
.trend-card__title {
  font-family: "NewYork";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--clr-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.trend-card__body p {
  font-size: 0.88rem;
  color: var(--clr-text-light);
  margin-bottom: 1.2rem;
  line-height: 1.65;
}

/* ============================================
   COLLECTIONS CAROUSEL
   ============================================ */
.collections {
  padding: clamp(4rem, 8vw, 8rem) 0;
  overflow: hidden;
}
.collections .section-title { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.collections__track-outer { overflow: hidden; }
.collections__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s var(--ease-smooth);
}
.coll-card {
  flex: 0 0 clamp(350px, 0vw, 350px);
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.coll-card__img {
  height: clamp(300px, 40vw, 480px);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.coll-card:hover .coll-card__img { transform: scale(1.05); }
.coll-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,8,0.05) 0%, transparent 100%);
}
.coll-card__label {
  position: absolute;
  bottom: 3.5rem;
  left: 1.2rem;
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.coll-card__title {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
}
.collections__nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ============================================
   COLLECTION MODAL
   ============================================ */

/* Overlay */
.coll-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  pointer-events: none;
  /* hidden state */
  visibility: hidden;
}
.coll-modal.is-open {
  pointer-events: all;
  visibility: visible;
}

/* Backdrop */
.coll-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 8, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.coll-modal.is-open .coll-modal__backdrop { opacity: 1; }

/* Panel — the white box */
.coll-modal__panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 100%;
  height: min(90vh, 640px);
  background: var(--clr-off-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.25);
  /* entrance animation */
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.4s cubic-bezier(0.25,0.1,0.25,1),
              transform 0.4s cubic-bezier(0.25,0.1,0.25,1);
}
.coll-modal.is-open .coll-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── LEFT: Gallery ── */
.coll-modal__gallery {
  position: relative;
  overflow: hidden;
  background: var(--clr-dark);
  /* so slides are absolutely positioned inside */
  height: 100%;
}

.coll-modal__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.coll-modal__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
  transform: scale(1.04);
}
.coll-modal__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.coll-modal__slide.is-leaving {
  opacity: 0;
  transform: scale(0.97);
  z-index: 0;
}

/* Subtle gradient over image */
.coll-modal__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,8,0.55) 0%, rgba(10,8,8,0.08) 55%, transparent 100%);
}

/* Arrows */
.coll-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(25,23,23,0.45);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.coll-modal__arrow:hover {
  background: rgba(25,23,23,0.75);
  border-color: rgba(255,255,255,0.7);
}
.coll-modal__arrow--prev { left: 1rem; }
.coll-modal__arrow--next { right: 1rem; }
.coll-modal__arrow:active { transform: translateY(-50%) scale(0.93); }

/* Dots */
.coll-modal__dots {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 6px;
  align-items: center;
}
.coll-modal__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.coll-modal__dot.is-active {
  background: #fff;
  transform: scale(1.4);
}

/* Image counter */
.coll-modal__img-counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  background: rgba(10,8,8,0.45);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ── RIGHT: Content ── */
.coll-modal__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--clr-off-white);
}

/* Sticky content header */
.coll-modal__content-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem 1rem;
  border-bottom: 1px solid var(--clr-warm-sand);
  background: var(--clr-off-white);
  position: sticky;
  top: 0;
  z-index: 5;
}
.coll-modal__eyebrow {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-light);
}

/* Close button */
.coll-modal__close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--clr-muted);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-light);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.coll-modal__close:hover {
  background: var(--clr-dark);
  color: #fff;
  border-color: var(--clr-dark);
  transform: rotate(90deg);
}

/* Scrollable content body */
.coll-modal__content-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem 1.75rem 2rem;
  scroll-behavior: smooth;
  /* Custom thin scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--clr-muted) transparent;
}
.coll-modal__content-body::-webkit-scrollbar { width: 4px; }
.coll-modal__content-body::-webkit-scrollbar-track { background: transparent; }
.coll-modal__content-body::-webkit-scrollbar-thumb {
  background: var(--clr-muted);
  border-radius: 4px;
}

/* Title */
.coll-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--clr-dark);
  margin-bottom: 1.1rem;
}
.coll-modal__title em { font-style: italic; }

/* Intro paragraph */
.coll-modal__intro {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--clr-text-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--clr-warm-sand);
}

/* Highlights pills */
.coll-modal__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.coll-modal__highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-dark);
  background: var(--clr-warm-sand);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  border: 1px solid var(--clr-muted);
}
.coll-modal__highlight-pill svg { color: var(--clr-accent); flex-shrink: 0; }

/* Description paragraphs */
.coll-modal__description {
  margin-bottom: 1.5rem;
  text-align: justify;
}
.coll-modal__description p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--clr-text-light);
  margin-bottom: 0.9rem;
}
.coll-modal__description p:last-child { margin-bottom: 0; }

/* Destination tags */
.coll-modal__destinations {
  margin-bottom: 2rem;
}
.coll-modal__dest-heading {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.coll-modal__dest-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-warm-sand);
}
.coll-modal__dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.coll-modal__dest-tag {
  font-size: 0.75rem;
  color: var(--clr-text-light);
  border: 1px solid var(--clr-muted);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.coll-modal__dest-tag:hover {
  background: var(--clr-dark);
  color: #fff;
  border-color: var(--clr-dark);
}

/* CTA row */
.coll-modal__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--clr-warm-sand);
  position: sticky;
  bottom: 0;
  background: var(--clr-off-white);
  margin: 0 -1.75rem -2rem;
  padding: 1.25rem 1.75rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .coll-modal__panel {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 1fr;
    height: min(92vh, 720px);
    max-width: 100%;
  }
  .coll-modal__gallery { height: 100%; }
  .coll-modal__content-header { padding: 1rem 1.25rem 0.75rem; }
  .coll-modal__content-body { padding: 1.25rem 1.25rem 1.5rem; }
  .coll-modal__cta { margin: 0 -1.25rem -1.5rem; padding: 1rem 1.25rem; }
  .coll-modal { padding: 0.5rem; }
}


/* ============================================
   READING ROOM
   ============================================ */
.reading-room {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--clr-off-white);
}
.reading-room__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.article-card { display: flex; flex-direction: column; }
.article-card__img-link { display: block; overflow: hidden; border-radius: 2px; }
.article-card__img {
  height: 440px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  border-radius: 2px;
}
.article-card__img-link:hover .article-card__img { transform: scale(1.03); }
.article-card__body { padding: 1.5rem 0 0; }
.article-card__tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  background: var(--clr-warm-sand);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}
.article-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--clr-dark);
  margin-bottom: 0.75rem;
}
.article-card__excerpt {
  font-size: 0.88rem;
  color: var(--clr-text-light);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.article-card__stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.article-card--small .article-card__img--small {
  height: 200px;
}
.article-card--small .article-card__title {
  font-size: 1.2rem;
}

/* ============================================
   CONTACT CTA
   ============================================ */
.contact-cta {
  padding: clamp(4rem, 8vw, 4rem) 0;
  background-color: #727C67;
}
.contact-cta__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-cta__intro .section-title { color: #fff; }
.contact-cta__intro p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-top: 1.5rem;
  line-height: 1.75;
}
.contact-cta__methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.contact-method { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-method__icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
}
.contact-method h3 {
  font-family: "NewYork";
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
}
.contact-cta__hours {
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #525E47; color: rgba(255,255,255,0.75); }
.footer__top { padding: clamp(4rem, 7vw, 7rem) 0 clamp(2rem, 4vw, 4rem); }
.footer__top-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.footer__trust {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__trust p {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer__nav-heading {
  font-size: 0.9rem;
  letter-spacing: 0em;
  text-transform: Capitalize;
  color: #ede7e1;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-family: "Manrope Regular";
  font-weight: 600;
}
.footer__toggle-icon { font-style: normal; font-size: 1rem; transition: transform var(--transition); display: none; }
.footer__nav-heading.is-open .footer__toggle-icon { transform: rotate(45deg); }
.footer__nav-list li { padding: 0.3rem 0; }
.footer__nav-list a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__nav-list a:hover { color: #fff; }
.footer__newsletter-text { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ---------- Affiliate Logo Slider ---------- */
.affiliate-slider {
  background: #525E47;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: 100px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.affiliate-slider__wrapper {
  width: 100%;
  overflow: hidden;
  padding: 0 3rem;
}
.affiliate-slider__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.affiliate-slider__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.affiliate-slider__logo:hover { opacity: 0.9; }
.affiliate-slider__logo img {
  max-height: 50px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}
.affiliate-slider__logo span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  border: 0px solid rgba(255,255,255,0.25);
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
}
.affiliate-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.affiliate-slider:hover .affiliate-slider__btn {
  opacity: 1;
  pointer-events: auto;
}
.affiliate-slider__btn:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.affiliate-slider__btn--prev { left: 0.6rem; }
.affiliate-slider__btn--next { right: 0.6rem; }
.affiliate-slider__btn svg { display: block; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
}
.footer__socials {
  display: flex;
  gap: 1rem;
  margin-right: auto;
}
.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__social-link:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.footer__legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,0.75); }
.footer__copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  padding-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__aside {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .intro__label { grid-column: 1/-1; }

  .trending__grid { grid-template-columns: repeat(2, 1fr); }
  .trending__grid .trend-card:last-child { grid-column: 1/-1; }
  .trend-card__img { height: 260px; }

  .reading-room__grid { grid-template-columns: 1fr; }
  .article-card__img { height: 320px; }

  .contact-cta__grid { grid-template-columns: 1fr; }
  .contact-cta__methods { grid-template-columns: repeat(3, 1fr); }

  .footer__top-inner { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .trending__grid { grid-template-columns: 1fr; }
  .trend-card__img { height: 240px; }

  .contact-cta__methods { grid-template-columns: 1fr; gap: 2rem; }

  .footer__nav { grid-template-columns: 1fr; }
  .footer__toggle-icon { display: inline; }
  .footer__nav-list {
    display: none;
    padding-top: 0.75rem;
  }
  .footer__nav-list.is-open { display: block; }
  .footer__bottom-inner { flex-direction: column; align-items: center; gap: 1rem; }
  .footer__socials { margin-right: 0; }
  .footer__legal { gap: 0.75rem; }
}

@media (max-width: 540px) {
  .hero__title { font-size: 3rem; }
  .hero__controls { right: 1rem; }
  .image-banner__content { padding-inline: 1.5rem; }
}


/* ============================================
   PHOTO GALLERY
   ============================================ */
.gallery {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #fff;
}

/* Header */
.gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.gallery__header-text .section-title { margin-top: 0.4rem; }
.gallery__header-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.gallery__count-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-text-light);
}
.gallery__filter-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.gallery__filter {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid var(--clr-muted);
  color: var(--clr-text-light);
  background: transparent;
  cursor: pointer;
  border-radius: 1px;
  transition: all 0.25s ease;
}
.gallery__filter:hover { border-color: var(--clr-dark); color: var(--clr-dark); }
.gallery__filter.is-active {
  background: var(--clr-dark);
  border-color: var(--clr-dark);
  color: #fff;
}

/* Mosaic grid */
.gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 6px;
}

/* Individual items */
.gallery__item {
  position: relative;
  overflow: hidden;
  background-color: var(--clr-warm-sand);
  cursor: pointer;
  grid-column: span 3;
  grid-row: span 2;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery__item--wide { grid-column: span 6; }
.gallery__item--tall { grid-row: span 3; }
.gallery__item--hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.97);
}

/* Inner background div — this is what zooms on hover */
.gallery__item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.gallery__item:hover .gallery__item-bg { transform: scale(1.07); }

/* Hover scrim — sits above bg, below text */
.gallery__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25,23,23,0.78) 0%, rgba(25,23,23,0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.gallery__item:hover::before { opacity: 1; }

/* Overlay text */
.gallery__item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 1rem 1.1rem;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery__item-region {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.gallery__item-name {
  font-family: "NewYork";
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

/* Zoom icon button */
.gallery__item-zoom {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 4;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  backdrop-filter: blur(4px);
}
.gallery__item:hover .gallery__item-zoom { opacity: 1; transform: scale(1); }
.gallery__item-zoom:hover { background: rgba(255,255,255,0.3); }

/* Footer */
.gallery__footer {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* Gallery responsive */
@media (max-width: 1024px) {
  .gallery__mosaic {
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery__item        { grid-column: span 4; grid-row: span 2; }
  .gallery__item--wide  { grid-column: span 8; }
  .gallery__item--tall  { grid-row: span 3; }
}
@media (max-width: 640px) {
  .gallery__header { flex-direction: column; align-items: flex-start; }
  .gallery__header-controls { align-items: flex-start; }
  .gallery__filter-row { justify-content: flex-start; }
  .gallery__mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
  }
  .gallery__item        { grid-column: span 2; grid-row: span 2; }
  .gallery__item--wide  { grid-column: span 4; }
  .gallery__item--tall  { grid-row: span 2; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Backdrop */
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 8, 0.96);
  backdrop-filter: blur(6px);
  z-index: 0;
}

/* Stage */
.lightbox__stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 100px 120px;
}
.lightbox__img-wrap {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 200px);
  object-fit: contain;
  border-radius: 5px;
  display: block;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s ease;
  user-select: none;
}
.lightbox__img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

/* Loader */
.lightbox__loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: opacity 0.3s;
}
.lightbox__loader.is-hidden { opacity: 0; pointer-events: none; }
.lightbox__spinner {
  width: 32px; height: 32px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: rgba(255,255,255,0.7);
  border-radius: 50%;
  animation: lb-spin 0.8s linear infinite;
}
@keyframes lb-spin { to { transform: rotate(360deg); } }

/* Top bar */
.lightbox__topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: linear-gradient(to bottom, rgba(10,8,8,0.7) 0%, transparent 100%);
}
.lightbox__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.lightbox__region {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.lightbox__title {
  font-family: "NewYork";
  font-size: 1.15rem;
  font-weight: 300;
  color: #fff;
}
.lightbox__topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Control buttons */
.lb-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}
.lb-btn:hover { border-color: rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.12); }
.lb-btn--close:hover { background: rgba(220,60,60,0.3); border-color: rgba(220,60,60,0.5); }
.lb-btn.is-playing {
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}

/* Arrows */
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s ease;
}
.lightbox__arrow:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.45); color: #fff; }
.lightbox__arrow:disabled { opacity: 0.2; cursor: default; }
.lightbox__arrow--prev { left: 1.25rem; }
.lightbox__arrow--next { right: 1.25rem; }

/* Caption bar */
.lightbox__caption {
  position: absolute;
  bottom: 42px; left: 0; right: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 1.5rem 1rem;
  background: linear-gradient(to top, rgba(10,8,8,0.65) 0%, transparent 100%);
  gap: 2rem;
}
.lightbox__caption-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.5;
}
.lightbox__counter {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Thumbnail strip */
.lightbox__thumbstrip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  gap: 4px;
  padding: 0 1.5rem 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  background: linear-gradient(to top, rgba(10,8,8,0.8) 0%, transparent 100%);
  align-items: flex-end;
}
.lightbox__thumbstrip::-webkit-scrollbar { display: none; }
.lb-thumb {
  flex: 0 0 64px;
  height: 44px;
  background-size: cover;
  background-position: center;
  border-radius: 1px;
  border: 1.5px solid transparent;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}
.lb-thumb:hover { opacity: 0.75; transform: scaleY(1.08); }
.lb-thumb.is-active {
  opacity: 1;
  border-color: rgba(255,255,255,0.75);
  transform: scaleY(1.1);
}

/* Slideshow progress bar */
.lightbox__progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 6;
  background: rgba(255,255,255,0.08);
  display: none;
}
.lightbox__progress.is-playing { display: block; }
.lightbox__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--clr-accent);
  transition: width linear;
}

/* Fullscreen tweaks */
.lightbox__stage:fullscreen,
.lightbox__stage:-webkit-full-screen {
  background: #000;
  padding: 60px;
}

/* Responsive lightbox */
@media (max-width: 768px) {
  .lightbox__stage { padding: 70px 56px 110px; }
  .lightbox__arrow { width: 38px; height: 38px; }
  .lightbox__arrow--prev { left: 0.5rem; }
  .lightbox__arrow--next { right: 0.5rem; }
  .lb-thumb { flex: 0 0 48px; height: 34px; }
  .lightbox__caption { bottom: 60px; }
  .lightbox__caption-text { font-size: 0.8rem; }
}
@media (max-width: 480px) {
  .lightbox__stage { padding: 60px 44px 100px; }
  .lightbox__topbar { padding: 0.75rem 1rem; }
  .lightbox__title { font-size: 0.95rem; }
  .lb-btn { width: 32px; height: 32px; }
}

/* ============================================
   FLIGHT SECTION
   ============================================ */
.flight-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #fff;
}

.flight-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.flight-section__text .section-title { margin: 0.75rem 0 0rem; }

.flight-section__body {
  font-size: 0.95rem;
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: 0rem;
}

.flight-section__img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 180px;
  gap: 8px;
}
.flight-img { background-size: cover; background-position: center; border-radius: 2px; }
.flight-img--main    { grid-column: 1 / -1; grid-row: 1; }
.flight-img--secondary { grid-column: 1 / 2; grid-row: 2; }

.flight-section__stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--clr-warm-sand);
  margin-top: 8px;
  border: 1px solid var(--clr-warm-sand);
}
.flight-stat {
  background: #fff;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}
.flight-stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--clr-dark);
  line-height: 1;
}
.flight-stat span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-light);
}

@media (max-width: 900px) {
  .flight-section__grid { grid-template-columns: 1fr; }
  .flight-section__img-stack { grid-template-rows: 260px 160px; }
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
  background: #525E47;
  overflow: hidden;
}
.experience-section__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 540px;
}
.experience-section__left {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.experience-section__left .section-eyebrow { color: rgba(255,255,255,0.45); margin-bottom: 0.6rem; }
.experience-section__left .section-title { color: #fff; font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1.25rem; }
.experience-section__left .section-title em { color: #e8d5a8; }
.experience-section__desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1rem; }
.experience-section__body { font-size: 0.85rem; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 2rem; }
.experience-section__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; padding-top: 1rem; }
.experience-section__controls .round-btn { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); }
.experience-section__controls .round-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #fff; }
.experience-section__controls .carousel-counter { color: rgba(255,255,255,0.35); }
.experience-section__right { overflow: hidden; padding: clamp(3rem, 6vw, 5rem) 0; }
.exp2-track-outer { overflow: hidden; height: 100%; cursor: grab; user-select: none; -webkit-user-select: none; }
.exp2-track-outer:active { cursor: grabbing; }
.exp2-track { display: flex; gap: 1.25rem; padding-inline: clamp(1.5rem, 4vw, 3rem); transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1); height: 100%; }
.exp2-card { flex: 0 0 clamp(260px, 30vw, 340px); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.3s ease; }
.exp2-card:hover { border-color: rgba(255,255,255,0.2); }
.exp2-card__img { width: 100%; height: 200px; background-size: cover; background-position: center; flex-shrink: 0; transition: transform 0.6s ease; }
.exp2-card:hover .exp2-card__img { transform: scale(1.04); }
.exp2-card__body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; }
.exp2-card__time { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: #f0d090; margin-bottom: 0.5rem; }
.exp2-card__title { font-family: "NewYork"; font-size: 1.15rem; font-weight: 300; color: #fff; margin-bottom: 0.6rem; line-height: 1.2; }
.exp2-card__desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

@media (max-width: 900px) {
  .experience-section__inner { grid-template-columns: 1fr; }
  .experience-section__left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 2rem; }
  .experience-section__right { padding-top: 2rem; }
  .exp2-track { padding-inline: clamp(1.25rem, 4vw, 3rem); }
}
@media (max-width: 540px) {
  .exp2-card { flex: 0 0 280px; }
  .flight-section__stat-row { grid-template-columns: 1fr 1fr; }
  .flight-stat:last-child { grid-column: 1 / -1; }
}

    /* ── PAGE HERO ─────────────────────────────────────────── */
    .pilots-hero {
      position: relative;
      height: 90vh;
      min-height: 520px;
      background-image: url('resources/destinations/mara-balloon-bg.jpg');
      background-size: cover;
      background-position: center 35%;
      overflow: hidden;
      isolation: isolate;
    }
    .pilots-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(10,8,6,0.72) 0%,
        rgba(10,8,6,0.38) 55%,
        rgba(10,8,6,0.18) 100%
      );
      z-index: 0;
    }
    .pilots-hero__inner {
      position: absolute;
      bottom: 12vh;
      left: clamp(1.5rem, 8vw, 8rem);
      z-index: 2;
      max-width: 620px;
    }
    .pilots-hero__eyebrow {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-bottom: 0.9rem;
    }
    .pilots-hero__title {
      font-family: NewYork;
      font-size: clamp(3.2rem, 7.5vw, 6.5rem);
      font-weight: 300;
      line-height: 1;
      letter-spacing: -0.02em;
      color: #fff;
      margin-bottom: 1.1rem;
    }
    .pilots-hero__copy {
      font-size: clamp(0.88rem, 1.4vw, 1.02rem);
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
      margin-bottom: 0;
      max-width: 500px;
    }
    .pilots-hero__breadcrumb {
      position: absolute;
      top: calc(var(--header-h) + 1.5rem);
      left: clamp(1.5rem, 8vw, 8rem);
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.67rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }
    .pilots-hero__breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
    .pilots-hero__breadcrumb a:hover { color: rgba(255,255,255,0.85); }
    .pilots-hero__breadcrumb span:last-child { color: rgba(255,255,255,0.7); }
    .pilots-hero__scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      color: rgba(255,255,255,0.5);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.6rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      text-decoration: none;
      transition: color 0.2s;
    }
    .pilots-hero__scroll:hover { color: rgba(255,255,255,0.85); }

    /* ── INTRO STRIP ────────────────────────────────────────── */
    .pilots-intro {
      background: var(--clr-warm-sand);
      padding: clamp(3rem, 6vw, 5rem) 0;
      text-align: center;
    }
    .pilots-intro__inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .pilots-intro__stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 2px;
      margin-top: 2.5rem;
      overflow: hidden;
    }
    .pilots-intro__stat {
      background: #fff;
      padding: 1.4rem 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.2rem;
    }
    .pilots-intro__stat strong {
      font-family: NewYork;
      font-size: 2rem;
      font-weight: 300;
      color: #466B56;
      line-height: 1;
    }
    .pilots-intro__stat span {
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--clr-text-light);
    }

    /* ── PILOT GRID ─────────────────────────────────────────── */
    .pilots-grid-section {
      padding: clamp(4rem, 8vw, 8rem) 0;
      background: #fff;
    }
    .pilots-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(1.5rem, 3vw, 2.5rem);
      margin-top: clamp(2.5rem, 5vw, 4rem);
    }
    .pilot-card {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--clr-warm-sand);
      border-radius: 2px;
      overflow: hidden;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      background: #fafaf9;
    }
    .pilot-card:hover {
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      transform: translateY(-3px);
    }
    .pilot-card__photo {
      width: 100%;
      aspect-ratio: 4 / 3;
      background-size: cover;
      background-position: center top;
      flex-shrink: 0;
      position: relative;
    }
    .pilot-card__role-badge {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      background: rgba(70,107,86,0.92);
      color: #fff;
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 0.28rem 0.75rem;
      border-radius: 2px;
      backdrop-filter: blur(4px);
    }
    .pilot-card__body {
      padding: 1.75rem 1.75rem 2rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .pilot-card__name {
      font-family: NewYork;
      font-size: 1.55rem;
      font-weight: 400;
      color: var(--clr-dark);
      margin-bottom: 0.2rem;
      line-height: 1.15;
    }
    .pilot-card__role {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #466B56;
      margin-bottom: 1rem;
    }
    .pilot-card__excerpt {
      font-size: 0.88rem;
      color: var(--clr-text-light);
      line-height: 1.75;
      flex: 1;
      padding-bottom: 0;
      margin: 0 0 1.4rem;
    }
    /* .pilot-card__btn removed — buttons replaced by .btn-link.pilot-modal-trigger
       which picks up all its styles from the global .btn-link rule in styles.css.
       The green colour override keeps pilots-page links on-brand. */
    .pilot-modal-trigger.btn-link {
      color: #466B56;
      border-color: rgba(70,107,86,0.35);
      align-self: flex-start;
      margin-top: auto;
    }
    .pilot-modal-trigger.btn-link:hover {
      color: #2f5240;
      border-color: #2f5240;
    }

    /* ── PILOT MODAL — photo panel on left ──────────────────── */
    .pilot-modal__photo {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center top;
    }
    /* Stats pills inside modal */
    .pilot-modal__stats {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin: 1.25rem 0 0.5rem;
    }
    .pilot-modal__stat-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      background: #edf3ef;
      color: #2f5240;
      border-radius: 2px;
      padding: 0.4rem 0.85rem;
      font-size: 0.72rem;
      letter-spacing: 0.06em;
    }
    .pilot-modal__stat-pill svg {
      color: #466B56;
      flex-shrink: 0;
    }
    /* License / cert tags */
    .pilot-modal__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.25rem;
    }
    .pilot-modal__tag {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--clr-warm-sand);
      color: var(--clr-text-light);
      padding: 0.28rem 0.7rem;
      border-radius: 2px;
    }

    /* ── CREDENTIALS STRIP ──────────────────────────────────── */
    .pilots-creds {
      padding: clamp(3.5rem, 7vw, 6rem) 0;
      background: var(--clr-warm-sand);
    }
    .pilots-creds__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: clamp(2rem, 4vw, 3.5rem);
    }
    .pilots-cred-card {
      background: #fff;
      padding: 2rem 1.75rem;
      border-radius: 2px;
      border: 1px solid rgba(0,0,0,0.06);
    }
    .pilots-cred-card__icon {
      width: 48px; height: 48px;
      background: #edf3ef;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #466B56;
      margin-bottom: 1.1rem;
    }
    .pilots-cred-card h3 {
      font-family: NewYork;
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--clr-dark);
      margin-bottom: 0.55rem;
    }
    .pilots-cred-card p {
      font-size: 0.875rem;
      color: var(--clr-text-light);
      line-height: 1.7;
      padding: 0;
      margin: 0;
    }

    /* ── TESTIMONIAL STRIP ──────────────────────────────────── */
    .pilots-testimonials {
      padding: clamp(3.5rem, 7vw, 6rem) 0;
      background: #525E47;
    }
    .pilots-testimonial {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 2px;
      padding: 2rem 1.75rem;
    }
    .pilots-testimonial__quote {
      font-family: NewYork;
      font-size: 2.5rem;
      color: #e8d5a8;
      line-height: 1;
      margin-bottom: 0.75rem;
    }
    .pilots-testimonial p {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.68);
      line-height: 1.75;
      font-style: italic;
      padding: 0;
      margin: 0 0 1.25rem;
    }
    .pilots-testimonial__author {
      font-size: 0.65rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      font-style: normal;
    }

    /* ── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 900px) {
      .pilots-grid { grid-template-columns: 1fr; }
      .pilots-creds__grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .pilots-intro__stat-row { grid-template-columns: 1fr; }
      .pilots-hero__inner { left: 1.5rem; right: 1.5rem; max-width: 100%; }
      .pilots-hero__breadcrumb { left: 1.5rem; }
    }

/* ─────────────────────────────────────────────────────────────
   TESTIMONIAL CAROUSEL
   Paste this block into styles.css (bottom of file is fine).
   Used on: pilots.html
   Class namespace: .tcarousel__*
   The individual .pilots-testimonial card styles live in the
   pilots.html <style> block and do not need to move here.
   ───────────────────────────────────────────────────────────── */

/* Outer clip — hides all slides except the visible one */
.tcarousel {
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3rem);
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.tcarousel.is-dragging {
  cursor: grabbing;
}

/* Flex row — each child is exactly 100% wide so only one shows */
.tcarousel__track {
  display: flex;
  gap: 2rem;
  will-change: transform;
}
.tcarousel__track > * {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Suppress pointer-events while dragging */
.tcarousel.is-dragging .tcarousel__track > * {
  pointer-events: none;
}

/* Dot strip */
.tcarousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 1.75rem;
}

/* Individual dot */
.tcarousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.tcarousel__dot:hover {
  background: rgba(255, 255, 255, 0.5);
}
.tcarousel__dot.is-active {
  background: #e8d5a8;
  transform: scale(1.35);
}
.tcarousel__dot:focus-visible {
  outline: 2px solid #e8d5a8;
  outline-offset: 3px;
}
/* =============================================================
   THE EXPERIENCE PAGE — exp-*
   Appended to styles.css — does not affect any other pages.
   Class namespace: exp-* / .txp-*
   ============================================================= */

/* ── EXPERIENCE HERO ─────────────────────────────────────────
   Reuses dest-hero from amboseli.css; only override/extend below.
   Hero titles on this page use .exp-hero__* instead of
   .pilots-hero__* to stay scoped.
   ───────────────────────────────────────────────────────────── */
.exp-hero__eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.85rem;
}
.exp-hero__title {
  font-family: NewYork;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}
.exp-hero__copy {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 480px;
  padding-bottom: 0;
}

/* ── INTRO STRIP ─────────────────────────────────────────────── */
.exp-intro {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #fff;
}
.exp-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.exp-intro__inner p {
  color: var(--clr-text-light);
  line-height: 1.85;
  font-size: 1.05rem;
  padding-bottom: 0;
}

/* ── TIMELINE / TYPICAL DAY ──────────────────────────────────── */
.exp-timeline {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--clr-off-white);
}

.exp-timeline__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}

/* Vertical line */
.exp-timeline__list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--clr-muted) 8%, var(--clr-muted) 92%, transparent);
}

.exp-timeline__item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2rem, 4vw, 3.5rem) 2.5rem;
  border-bottom: 1px solid var(--clr-warm-sand);
  position: relative;
  align-items: start;
}
.exp-timeline__item:last-child { border-bottom: none; }

/* Dot on the line */
.exp-timeline__item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: clamp(2.2rem, 4.2vw, 3.7rem);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #525E47;
  border: 2px solid var(--clr-off-white);
}

.exp-timeline__time-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.15rem;
}

.exp-timeline__time {
  font-family: NewYork;
  font-size: 1.5rem;
  font-weight: 300;
  color: #525E47;
  line-height: 1.1;
}

.exp-timeline__step-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-text-light);
}

.exp-timeline__body {}

.exp-timeline__body h3 {
  font-family: NewYork;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--clr-dark);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.exp-timeline__body p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  line-height: 1.8;
  padding-bottom: 0;
  margin: 0;
}

.exp-timeline__img {
  margin-top: 1.5rem;
  height: 540px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .exp-timeline__item {
    grid-template-columns: 1fr;
    padding-left: 2rem;
  }
  .exp-timeline__img { height: 220px; }
}

/* ── BALLOONS & CERTIFICATIONS ───────────────────────────────── */
.exp-balloons {
  position: relative;
  padding: clamp(5rem, 10vw, 10rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.exp-balloons__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  z-index: -2;
}
.exp-balloons__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 32, 22, 0.94) 0%,
    rgba(15, 28, 18, 0.85) 55%,
    rgba(10, 18, 12, 0.78) 100%
  );
}

.exp-balloons__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.exp-balloons__eyebrow {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8d5a8;
  margin-bottom: 0.75rem;
}
.exp-balloons__title {
  font-family: NewYork;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.exp-balloons__lead {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  padding-bottom: 1.75rem;
  margin: 0;
}

.exp-fleet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.exp-fleet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.exp-fleet-list li::before {
  content: '→';
  color: #e8d5a8;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 0.05em;
}

/* Stats bar within balloons section */
.exp-balloons__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
  border-radius: 2px;
  overflow: hidden;
}
.exp-balloons__stat {
  background: rgba(255,255,255,0.03);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}
.exp-balloons__stat strong {
  font-family: NewYork;
  font-size: 2rem;
  font-weight: 300;
  color: #e8d5a8;
  line-height: 1;
}
.exp-balloons__stat span {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* Visual side: stacked images */
.exp-balloons__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 400px 210px;
  gap: 8px;
}
.exp-balloons__img {
  border-radius: 2px;
  background-size: cover;
  background-position: center;
}
.exp-balloons__img--main {
  grid-column: 1 / -1;
  grid-row: 1;
}
.exp-balloons__img--a { grid-column: 1 / 2; grid-row: 2; }
.exp-balloons__img--b { grid-column: 2 / 3; grid-row: 2; }

@media (max-width: 900px) {
  .exp-balloons__inner { grid-template-columns: 1fr; }
  .exp-balloons__images { grid-template-rows: 280px 160px; order: -1; }
  .exp-balloons__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── WHAT TO EXPECT CARDS ────────────────────────────────────── */
.exp-expect {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #fff;
}
.exp-expect__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.exp-expect-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--clr-muted);
  border-radius: 2px;
  background: #fafaf9;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.exp-expect-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.exp-expect-card__icon {
  width: 52px; height: 52px;
  background: #edf3ef;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #525E47;
  margin-bottom: 1.25rem;
}
.exp-expect-card h3 {
  font-family: NewYork;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--clr-dark);
  margin-bottom: 0.55rem;
}
.exp-expect-card p {
  font-size: 0.875rem;
  color: var(--clr-text-light);
  line-height: 1.75;
  padding: 0; margin: 0;
}

@media (max-width: 1024px) {
  .exp-expect__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .exp-expect__grid { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS — EXPERIENCE PAGE ─────────────────────────── */
.exp-testimonials {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #525E47;
}
.exp-testimonials .section-eyebrow,
.exp-testimonials .section-title {
  color: rgba(255,255,255,0.55);
}
.exp-testimonials .section-title { color: #fff; }

.exp-testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 2px;
  padding: 2.25rem 2rem;
}
.exp-testimonial__mark {
  font-family: NewYork;
  font-size: 3rem;
  color: #e8d5a8;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.exp-testimonial p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  font-style: italic;
  padding: 0;
  margin: 0 0 1.25rem;
}
.exp-testimonial__author {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* Reuses .tcarousel / .tcarousel__track / .tcarousel__dots from pilots section */

/* ── CTA BANNER ──────────────────────────────────────────────── */
.exp-cta {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--clr-warm-sand);
  text-align: center;
}
.exp-cta h2 {
  font-family: NewYork;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #525E47;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.exp-cta p {
  color: var(--clr-text-light);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
  padding-bottom: 2rem;
}
.exp-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── EXPERIENCE PAGE RESPONSIVE ──────────────────────────────── */
@media (max-width: 640px) {
  .exp-hero__title { font-size: clamp(2.8rem, 12vw, 4rem); }
}

/* =============================================================
   WHO WE ARE PAGE — wwa-*
   Appended to styles.css — does not affect any other pages.
   Class namespace: wwa-*
   ============================================================= */

/* ── HERO ─────────────────────────────────────────────────── */
.wwa-hero__eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.85rem;
}
.wwa-hero__title {
  font-family: NewYork;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}
.wwa-hero__copy {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 520px;
  padding-bottom: 0;
  margin: 0;
}

/* ── INTRO — SPLIT LAYOUT ─────────────────────────────────── */
.wwa-intro {
  padding: clamp(4.5rem, 9vw, 9rem) 0;
  background: #fff;
}
.wwa-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.wwa-intro__text .section-eyebrow { margin-bottom: 0.5rem; }
.wwa-intro__text p {
  color: var(--clr-text-light);
  line-height: 1.85;
}
.wwa-intro__text p + p { margin-top: -0.5rem; }

/* Stat row inside intro */
.wwa-intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--clr-muted);
  border: 1px solid var(--clr-muted);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 2.5rem;
}
.wwa-intro__stat {
  background: #fff;
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}
.wwa-intro__stat strong {
  font-family: NewYork;
  font-size: 2.2rem;
  font-weight: 300;
  color: #525E47;
  line-height: 1;
}
.wwa-intro__stat span {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-light);
}

/* Visual collage */
.wwa-intro__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 340px 210px;
  gap: 8px;
}
.wwa-intro__img {
  border-radius: 2px;
  background-size: cover;
  background-position: center;
}
.wwa-intro__img--main {
  grid-column: 1 / -1;
  grid-row: 1;
}
.wwa-intro__img--a { grid-column: 1 / 2; grid-row: 2; }
.wwa-intro__img--b {
  grid-column: 2 / 3;
  grid-row: 2;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
.wwa-intro__img--b::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: inherit;
}

@media (max-width: 900px) {
  .wwa-intro__grid { grid-template-columns: 1fr; }
  .wwa-intro__visual { grid-template-rows: 280px 170px; }
  .wwa-intro__stats { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 480px) {
  .wwa-intro__stats { grid-template-columns: 1fr; }
}

/* ── PHOTO GALLERY MOSAIC ─────────────────────────────────── */
.wwa-mosaic {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: var(--clr-off-white);
}
.wwa-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 200px;
  gap: 8px;
}
.wwa-mosaic__cell {
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.25,0.1,0.25,1);
}
.wwa-mosaic__cell:hover { transform: scale(1.025); }
.wwa-mosaic__cell--wide  { grid-column: span 2; }
.wwa-mosaic__cell--tall  { grid-row: span 2; }

@media (max-width: 900px) {
  .wwa-mosaic__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .wwa-mosaic__cell--tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .wwa-mosaic__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }
  .wwa-mosaic__cell--wide { grid-column: span 1; }
}

/* ── LEADERSHIP — DIRECTOR SPOTLIGHT ─────────────────────── */
.wwa-leadership {
  padding: clamp(4.5rem, 9vw, 9rem) 0;
  background: #fff;
}
.wwa-leadership__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.wwa-leadership__photo {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  height: 520px;
  background-size: cover;
  background-position: center top;
}
.wwa-leadership__photo-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #525E47;
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}
.wwa-leadership__name {
  font-family: NewYork;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--clr-dark);
  line-height: 1.05;
  margin-bottom: 0.35rem;
}
.wwa-leadership__role {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #525E47;
  margin-bottom: 1.75rem;
  display: block;
}
.wwa-leadership__body p {
  color: var(--clr-text-light);
  line-height: 1.85;
}
.wwa-leadership__body p + p { margin-top: -0.5rem; }
.wwa-leadership__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.wwa-leadership__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #f3f8f5;
  border: 1px solid #d3e8da;
  color: #525E47;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}
.wwa-leadership__pill svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .wwa-leadership__grid { grid-template-columns: 1fr; }
  .wwa-leadership__photo { height: 360px; }
}

/* ── FLEET SECTION (dark panel) ───────────────────────────── */
.wwa-fleet {
  position: relative;
  padding: clamp(5rem, 10vw, 10rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.wwa-fleet__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: -2;
}
.wwa-fleet__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12, 22, 14, 0.96) 0%,
    rgba(12, 22, 14, 0.88) 55%,
    rgba(12, 22, 14, 0.65) 100%
  );
}
.wwa-fleet__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.wwa-fleet__eyebrow {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8d5a8;
  margin-bottom: 0.75rem;
}
.wwa-fleet__title {
  font-family: NewYork;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.wwa-fleet__lead {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  padding-bottom: 0;
  margin: 0;
}
.wwa-fleet__cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.wwa-fleet__card {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s ease;
}
.wwa-fleet__card:last-child { border-bottom: none; }
.wwa-fleet__card:hover { background: rgba(255,255,255,0.04); }
.wwa-fleet__card-count {
  font-family: NewYork;
  font-size: 1.6rem;
  font-weight: 300;
  color: #e8d5a8;
  min-width: 2rem;
  line-height: 1;
}
.wwa-fleet__card-info { flex: 1; }
.wwa-fleet__card-name {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.wwa-fleet__card-cap {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* Right image stacked */
.wwa-fleet__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 380px 190px;
  gap: 8px;
}
.wwa-fleet__img {
  border-radius: 2px;
  background-size: cover;
  background-position: center;
}
.wwa-fleet__img--main { grid-column: 1 / -1; }
.wwa-fleet__img--a   { grid-column: 1 / 2; }
.wwa-fleet__img--b   { grid-column: 2 / 3; }

@media (max-width: 900px) {
  .wwa-fleet__inner { grid-template-columns: 1fr; }
  .wwa-fleet__images { grid-template-rows: 260px 150px; order: -1; }
}

/* ── CONSERVATION SECTION ─────────────────────────────────── */
.wwa-conservation {
  padding: clamp(4.5rem, 9vw, 9rem) 0;
  background: #fff;
}
.wwa-conservation__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.wwa-conservation__visual {
  position: relative;
  height: 560px;
  border-radius: 2px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.wwa-conservation__visual-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #525E47;
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.wwa-conservation__visual-badge strong {
  font-family: NewYork;
  font-size: 1.6rem;
  font-weight: 300;
  display: block;
  line-height: 1;
}
.wwa-conservation__visual-badge span {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  display: block;
}
.wwa-conservation__text p {
  color: var(--clr-text-light);
  line-height: 1.85;
}
.wwa-conservation__text p + p { margin-top: -0.5rem; }
.wwa-conservation__pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border: 1px solid var(--clr-muted);
  border-radius: 2px;
  overflow: hidden;
}
.wwa-conservation__pillar {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--clr-warm-sand);
  transition: background 0.2s ease;
}
.wwa-conservation__pillar:last-child { border-bottom: none; }
.wwa-conservation__pillar:hover { background: #f8fdf9; }
.wwa-conservation__pillar-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: #edf3ef;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #525E47;
  margin-top: 1px;
}
.wwa-conservation__pillar h4 {
  font-family: NewYork;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--clr-dark);
  margin-bottom: 0.2rem;
}
.wwa-conservation__pillar p {
  font-size: 0.82rem;
  color: var(--clr-text-light);
  line-height: 1.65;
  padding: 0; margin: 0;
}

@media (max-width: 900px) {
  .wwa-conservation__inner { grid-template-columns: 1fr; }
  .wwa-conservation__visual { height: 320px; }
}

/* ── MAASAI COMMUNITY STRIP ───────────────────────────────── */
.wwa-community {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #525E47;
}
.wwa-community__inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.wwa-community__eyebrow {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.wwa-community__title {
  font-family: NewYork;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.wwa-community__text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  padding-bottom: 1rem;
  margin: 0;
}
.wwa-community__text p:last-of-type { padding-bottom: 0; }
.wwa-community__kpi-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.wwa-community__kpi {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.wwa-community__kpi strong {
  font-family: NewYork;
  font-size: 2.4rem;
  font-weight: 300;
  color: #e8d5a8;
  line-height: 1;
}
.wwa-community__kpi span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.wwa-community__kpi-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.wwa-community__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8d5a8;
  border-bottom: 1px solid rgba(232,213,168,0.3);
  padding-bottom: 2px;
  margin-top: 0.5rem;
  transition: border-color 0.25s, color 0.25s;
}
.wwa-community__cta-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.wwa-community__cta-link span { transition: transform 0.2s; }
.wwa-community__cta-link:hover span { transform: translateX(4px); }

@media (max-width: 900px) {
  .wwa-community__inner { grid-template-columns: 1fr; }
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.wwa-cta {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--clr-warm-sand);
  text-align: center;
}
.wwa-cta h2 {
  font-family: NewYork;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #525E47;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.wwa-cta p {
  color: var(--clr-text-light);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
  padding-bottom: 2rem;
}
.wwa-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE — PAGE-WIDE ───────────────────────────────── */
@media (max-width: 640px) {
  .wwa-hero__title { font-size: clamp(2.8rem, 12vw, 4rem); }
}

/* =============================================================
   LOCATION PAGE — loc-*
   Appended to styles.css — does not affect any other pages.
   Class namespace: loc-*
   ============================================================= */

/* ── HERO ──────────────────────────────────────────────────── */
.loc-hero__eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.85rem;
}
.loc-hero__title {
  font-family: NewYork;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}
.loc-hero__copy {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 500px;
  padding-bottom: 1.75rem;
  margin: 0;
}
.loc-hero__scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.loc-hero__scroll-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

/* ── INTRO — SPLIT ─────────────────────────────────────────── */
.loc-intro {
  padding: clamp(4.5rem, 9vw, 9rem) 0;
  background: #fff;
}
.loc-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.loc-intro__text p {
  color: var(--clr-text-light);
  line-height: 1.85;
}
.loc-intro__text p + p { margin-top: -0.5rem; }
.loc-intro__cta { margin-top: 2rem; }

/* Stacked image pair */
.loc-intro__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 380px 210px;
  gap: 8px;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.loc-intro__img {
  border-radius: 2px;
  background-size: cover;
  background-position: center;
}
.loc-intro__img--main { grid-column: 1 / -1; }
.loc-intro__img--a    { grid-column: 1 / 2; }
.loc-intro__img--b    { grid-column: 2 / 3; }

@media (max-width: 900px) {
  .loc-intro__grid  { grid-template-columns: 1fr; }
  .loc-intro__visual {
    grid-template-rows: 280px 160px;
    position: static;
  }
}

/* ── WILDLIFE SPECIES CARDS ────────────────────────────────── */
.loc-wildlife {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--clr-off-white);
}
.loc-wildlife__intro {
  max-width: 680px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.loc-wildlife__intro p {
  color: var(--clr-text-light);
  line-height: 1.85;
}
.loc-wildlife__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.loc-species-card {
  background: #fff;
  border: 1px solid var(--clr-muted);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.loc-species-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.loc-species-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25,0.1,0.25,1);
  overflow: hidden;
}
.loc-species-card:hover .loc-species-card__img {
  transform: scale(1.05);
}
.loc-species-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
}
.loc-species-card__tag {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #525E47;
  background: #edf3ef;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}
.loc-species-card h3 {
  font-family: NewYork;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--clr-dark);
  margin-bottom: 0.4rem;
}
.loc-species-card p {
  font-size: 0.8rem;
  color: var(--clr-text-light);
  line-height: 1.65;
  padding: 0; margin: 0;
}

@media (max-width: 1100px) {
  .loc-wildlife__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .loc-wildlife__grid { grid-template-columns: 1fr; }
}

/* ── GREAT MIGRATION PANEL (dark full-bleed) ───────────────── */
.loc-migration {
  position: relative;
  padding: clamp(5rem, 10vw, 10rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.loc-migration__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: -2;
}
.loc-migration__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 18, 12, 0.96) 0%,
    rgba(10, 18, 12, 0.88) 50%,
    rgba(10, 18, 12, 0.55) 100%
  );
}
.loc-migration__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.loc-migration__eyebrow {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8d5a8;
  margin-bottom: 0.75rem;
}
.loc-migration__title {
  font-family: NewYork;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.loc-migration__text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  padding-bottom: 1rem;
  margin: 0;
}
.loc-migration__text p:last-of-type { padding-bottom: 0; }

/* Season window strip */
.loc-migration__season {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid #e8d5a8;
  border-radius: 2px;
}
.loc-migration__season svg { color: #e8d5a8; flex-shrink: 0; }
.loc-migration__season-info {}
.loc-migration__season-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 0.2rem;
}
.loc-migration__season-value {
  font-family: NewYork;
  font-size: 1.05rem;
  font-weight: 300;
  color: #e8d5a8;
}

/* Image mosaic right side */
.loc-migration__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px 180px;
  gap: 8px;
}
.loc-migration__img {
  border-radius: 2px;
  background-size: cover;
  background-position: center;
}
.loc-migration__img--wide { grid-column: 1 / -1; }

@media (max-width: 900px) {
  .loc-migration__inner { grid-template-columns: 1fr; }
  .loc-migration__mosaic { grid-template-rows: 220px 140px 140px; order: -1; }
}

/* ── LAUNCH SITE SECTION ───────────────────────────────────── */
.loc-launch {
  padding: clamp(4.5rem, 9vw, 9rem) 0;
  background: #fff;
}
.loc-launch__inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.loc-launch__text p {
  color: var(--clr-text-light);
  line-height: 1.85;
}
.loc-launch__name-block {
  margin-top: 2rem;
  padding: 1.75rem 2rem;
  background: #f3f8f5;
  border: 1px solid #d3e8da;
  border-left: 4px solid #525E47;
  border-radius: 2px;
}
.loc-launch__name-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #525E47;
  display: block;
  margin-bottom: 0.4rem;
}
.loc-launch__name {
  font-family: NewYork;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--clr-dark);
  margin-bottom: 0.35rem;
  line-height: 1.1;
}
.loc-launch__name-translation {
  font-size: 0.8rem;
  color: var(--clr-text-light);
  font-style: italic;
}
.loc-launch__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

/* Map embed card */
.loc-launch__map-card {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--clr-muted);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.loc-launch__map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}
.loc-launch__map-caption {
  padding: 1rem 1.25rem;
  background: var(--clr-off-white);
  border-top: 1px solid var(--clr-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.loc-launch__map-caption p {
  font-size: 0.78rem;
  color: var(--clr-text-light);
  padding: 0; margin: 0;
  line-height: 1.5;
}
.loc-launch__map-caption a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #525E47;
  white-space: nowrap;
  border-bottom: 1px solid rgba(82,94,71,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.loc-launch__map-caption a:hover { border-color: #525E47; }

@media (max-width: 900px) {
  .loc-launch__inner { grid-template-columns: 1fr; }
  .loc-launch__map-card iframe { height: 300px; }
}

/* ── HOW TO GET HERE ───────────────────────────────────────── */
.loc-directions {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #525E47;
}
.loc-directions__intro {
  max-width: 620px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.loc-directions__intro .section-eyebrow,
.loc-directions__intro .section-title { color: rgba(255,255,255,0.5); }
.loc-directions__intro .section-title { color: #fff; }
.loc-directions__intro p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  padding: 0; margin: 0;
}
.loc-directions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.loc-direction-card {
  background: rgba(255,255,255,0.03);
  padding: 2rem 1.75rem;
  transition: background 0.25s ease;
}
.loc-direction-card:hover { background: rgba(255,255,255,0.07); }
.loc-direction-card__icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #e8d5a8;
  margin-bottom: 1.25rem;
}
.loc-direction-card h3 {
  font-family: NewYork;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
}
.loc-direction-card p {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  padding: 0; margin: 0;
}
.loc-direction-card__detail {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  color: #e8d5a8;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .loc-directions__grid { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS — LOCATION PAGE ─────────────────────────── */
.loc-testimonials {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--clr-off-white);
}
.loc-testimonial {
  background: #fff;
  border: 1px solid var(--clr-muted);
  border-radius: 2px;
  padding: 2.25rem 2rem;
  transition: box-shadow 0.3s ease;
}
.loc-testimonial:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.loc-testimonial__mark {
  font-family: NewYork;
  font-size: 3rem;
  color: #525E47;
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.3;
}
.loc-testimonial p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  line-height: 1.8;
  font-style: italic;
  padding: 0;
  margin: 0 0 1.25rem;
}
.loc-testimonial__author {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  opacity: 0.65;
}
/* 3-col testimonial layout on location page (no carousel — bright bg suits grid) */
.loc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 900px) {
  .loc-testimonials__grid { grid-template-columns: 1fr; }
}

/* ── CTA BANNER ────────────────────────────────────────────── */
.loc-cta {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--clr-warm-sand);
  text-align: center;
}
.loc-cta h2 {
  font-family: NewYork;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #525E47;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.loc-cta p {
  color: var(--clr-text-light);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
  padding-bottom: 2rem;
}
.loc-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE — HERO ─────────────────────────────────────── */
@media (max-width: 640px) {
  .loc-hero__title { font-size: clamp(2.8rem, 12vw, 4rem); }
}

/* =============================================================
   FAQs PAGE — faq-*
   Appended to styles.css — does not affect any other pages.
   Class namespace: faq-*
   ============================================================= */

/* ── HERO ──────────────────────────────────────────────────── */
.faq-hero__eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.85rem;
}
.faq-hero__title {
  font-family: NewYork;
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}
.faq-hero__copy {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 480px;
  padding-bottom: 0;
  margin: 0;
}

/* ── CATEGORY FILTER BAR ───────────────────────────────────── */
.faq-filter {
  background: var(--clr-off-white);
  border-bottom: 1px solid var(--clr-muted);
  position: sticky;
  top: var(--header-h);
  z-index: 40;
}
.faq-filter__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
}
.faq-filter__inner::-webkit-scrollbar { display: none; }
.faq-filter__btn {
  flex-shrink: 0;
  padding: 1.1rem 1.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.faq-filter__btn:hover { color: var(--clr-dark); }
.faq-filter__btn.is-active {
  color: #525E47;
  border-bottom-color: #525E47;
  font-weight: 600;
}
.faq-filter__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--clr-muted);
  font-size: 0.6rem;
  color: var(--clr-text-light);
  margin-left: 0.45rem;
  transition: background 0.2s, color 0.2s;
}
.faq-filter__btn.is-active .faq-filter__count {
  background: #525E47;
  color: #fff;
}

/* ── MAIN LAYOUT — ACCORDION + SIDEBAR ────────────────────── */
.faq-body {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #fff;
}
.faq-body__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* ── ACCORDION ─────────────────────────────────────────────── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Category group header — shown above each cluster */
.faq-group {
  margin-bottom: 0.5rem;
}
.faq-group + .faq-group { margin-top: 2.5rem; }
.faq-group__label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: goldenrod;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.faq-group__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-warm-sand);
}

/* Individual accordion item */
.faq-item {
  border-bottom: 1px solid var(--clr-muted);
  transition: opacity 0.25s ease;
}
.faq-item.is-hidden {
  display: none;
}
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--clr-dark);
}
.faq-item__trigger:hover .faq-item__q {
  color: #525E47;
}
.faq-item__q {
  font-family: NewYork;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 400;
  line-height: 1.3;
  transition: color 0.2s;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--clr-muted);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-light);
  margin-top: 0.1rem;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.35s;
}
.faq-item.is-open .faq-item__icon {
  background: #525E47;
  border-color: #525E47;
  color: #fff;
  transform: rotate(45deg);
}

/* Answer panel — hidden/shown via max-height animation */
.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.is-open .faq-item__body {
  grid-template-rows: 1fr;
}
.faq-item__body-inner {
  overflow: hidden;
}
.faq-item__a {
  padding-bottom: 1.6rem;
  font-size: 0.9rem;
  color: var(--clr-text-light);
  line-height: 1.85;
  padding-top: 0.1rem;
  padding-right: 3rem;
  margin: 0;
}

/* ── SIDEBAR ───────────────────────────────────────────────── */
.faq-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 56px + 2.5rem); /* below filter bar */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Quick-facts card */
.faq-sidebar__card {
  border: 1px solid var(--clr-muted);
  border-radius: 2px;
  overflow: hidden;
}
.faq-sidebar__card-header {
  background: #525E47;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}
.faq-sidebar__card-header svg { color: #e8d5a8; flex-shrink: 0; }
.faq-sidebar__card-title {
  font-family: NewYork;
  font-size: 1rem;
  font-weight: 400;
}
.faq-sidebar__card-body {
  background: #fafaf9;
}
.faq-sidebar__fact {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--clr-warm-sand);
}
.faq-sidebar__fact:last-child { border-bottom: none; }
.faq-sidebar__fact-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: #edf3ef;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #525E47;
  margin-top: 1px;
}
.faq-sidebar__fact-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  display: block;
  margin-bottom: 0.15rem;
}
.faq-sidebar__fact-value {
  font-family: NewYork;
  font-size: 1rem;
  font-weight: 300;
  color: var(--clr-dark);
  line-height: 1.2;
}

/* Contact card */
.faq-sidebar__contact {
  padding: 1.5rem;
  background: var(--clr-warm-sand);
  border: 1px solid var(--clr-muted);
  border-radius: 2px;
}
.faq-sidebar__contact h4 {
  font-family: NewYork;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--clr-dark);
  margin-bottom: 0.5rem;
}
.faq-sidebar__contact p {
  font-size: 0.82rem;
  color: var(--clr-text-light);
  line-height: 1.7;
  padding: 0;
  margin: 0 0 1.25rem;
}
.faq-sidebar__contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-sidebar__contact-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: #525E47;
  transition: opacity 0.2s;
}
.faq-sidebar__contact-link:hover { opacity: 0.72; }
.faq-sidebar__contact-link svg { flex-shrink: 0; }

/* Sidebar image */
.faq-sidebar__img {
  height: 220px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* ── NO RESULTS MESSAGE ────────────────────────────────────── */
.faq-no-results {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--clr-text-light);
}
.faq-no-results.is-visible { display: block; }
.faq-no-results p { padding: 0; margin: 0; font-size: 0.9rem; }

/* ── CTA BANNER ────────────────────────────────────────────── */
.faq-cta {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--clr-warm-sand);
  text-align: center;
}
.faq-cta h2 {
  font-family: NewYork;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #525E47;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.faq-cta p {
  color: var(--clr-text-light);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
  padding-bottom: 2rem;
}
.faq-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .faq-body__layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .faq-sidebar__img { display: none; }
}
@media (max-width: 640px) {
  .faq-hero__title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .faq-item__a { padding-right: 0; }
  .faq-filter__btn { padding: 1rem 1.25rem; }
}

/* =============================================================
   GALLERY PAGE — glr-*
   Appended to styles.css — does not affect any other pages.
   Class namespace: glr-*
   ============================================================= */

/* ── HERO ──────────────────────────────────────────────────── */
.glr-hero__eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.85rem;
}
.glr-hero__title {
  font-family: NewYork;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}
.glr-hero__copy {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 500px;
  padding-bottom: 0;
  margin: 0;
}

/* ── FILTER + COUNT BAR ────────────────────────────────────── */
.glr-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--clr-muted);
  position: sticky;
  top: var(--header-h);
  z-index: 40;
}
.glr-filter-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
}
.glr-filter-bar__tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.glr-filter-bar__tabs::-webkit-scrollbar { display: none; }
.glr-tab {
  flex-shrink: 0;
  padding: 1.1rem 1.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.glr-tab:hover { color: var(--clr-dark); }
.glr-tab.is-active {
  color: #525E47;
  border-bottom-color: #525E47;
  font-weight: 600;
}
.glr-filter-bar__count {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--clr-text-light);
  white-space: nowrap;
  padding-right: clamp(1.5rem, 4vw, 3rem);
  flex-shrink: 0;
}
.glr-filter-bar__count span {
  font-family: NewYork;
  font-size: 1rem;
  font-weight: 300;
  color: #525E47;
}

/* ── MASONRY GRID ──────────────────────────────────────────── */
.glr-section {
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(4rem, 8vw, 8rem);
  background: var(--clr-off-white);
}

.glr-grid {
  columns: 3;
  column-gap: 10px;
}
.glr-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
  background: var(--clr-muted);
  /* filter transitions */
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.glr-item.is-hidden {
  display: none;
}

/* Image itself */
.glr-item__img {
  display: block;
  width: 100%;
  height: auto;
  /* CSS-only image via background — height set via aspect-ratio trick */
  aspect-ratio: var(--aspect, 4/3);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.glr-item:hover .glr-item__img {
  transform: scale(1.04);
}

/* Overlay on hover */
.glr-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,15,12,0.72) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.25rem 1rem;
  pointer-events: none;
}
.glr-item:hover .glr-item__overlay { opacity: 1; }
.glr-item__caption {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.glr-item__tag {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #525E47;
  color: #fff;
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
  margin-bottom: 0.4rem;
}

/* Zoom icon top-right */
.glr-item__zoom {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.glr-item:hover .glr-item__zoom { opacity: 1; }

@media (max-width: 900px)  { .glr-grid { columns: 2; } }
@media (max-width: 480px)  { .glr-grid { columns: 1; } }

/* ── LIGHTBOX ──────────────────────────────────────────────── */
.glr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.glr-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.glr-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 9, 0.95);
  cursor: zoom-out;
}

.glr-lightbox__frame {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.glr-lightbox__img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glr-lightbox__img {
  display: block;
  max-width: 80%;
  width: 100%;
  aspect-ratio: var(--lb-aspect, 4/3);
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  transition: opacity 0.25s ease;
  height: 80vh;
}
.glr-lightbox__img.is-loading { opacity: 0.4; }

/* Lightbox nav arrows */
.glr-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s ease;
  z-index: 2;
}
.glr-lightbox__arrow:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.glr-lightbox__arrow--prev { left: -56px; }
.glr-lightbox__arrow--next { right: -56px; }

/* Lightbox meta strip */
.glr-lightbox__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.85rem;
  padding: 0 0.25rem;
}
.glr-lightbox__info {}
.glr-lightbox__tag {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #525E47;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.35rem;
}
.glr-lightbox__caption {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.glr-lightbox__counter {
  font-family: NewYork;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* Close button */
.glr-lightbox__close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  z-index: 9010;
  transition: all 0.2s ease;
}
.glr-lightbox__close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Thumbnail strip */
.glr-lightbox__thumbs {
  display: flex;
  gap: 6px;
  margin-top: 0.75rem;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.glr-lightbox__thumbs::-webkit-scrollbar { display: none; }
.glr-lightbox__thumb {
  flex-shrink: 0;
  width: 52px; height: 38px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s;
}
.glr-lightbox__thumb.is-active {
  opacity: 1;
  border-color: #e8d5a8;
}

/* Keyboard hint */
.glr-lightbox__hint {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  pointer-events: none;
}

@media (max-width: 768px) {
  .glr-lightbox__arrow--prev { left: 0.25rem; }
  .glr-lightbox__arrow--next { right: 0.25rem; }
  .glr-lightbox__frame { max-width: 100vw; }
  .glr-lightbox__hint { display: none; }
}

/* ── CTA BANNER ────────────────────────────────────────────── */
.glr-cta {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--clr-warm-sand);
  text-align: center;
}
.glr-cta h2 {
  font-family: NewYork;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #525E47;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.glr-cta p {
  color: var(--clr-text-light);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
  padding-bottom: 2rem;
}
.glr-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── HERO RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 640px) {
  .glr-hero__title { font-size: clamp(2.8rem, 12vw, 4rem); }
}
