/* =====================================================
   DOLOMITES: WHERE THE MOUNTAINS SPEAK
   Premium Cinematic Website — v1.0
   ===================================================== */

/* ---- Variables ---- */
:root {
  --black:      #09090b;
  --near-black: #0c0c0f;
  --dark:       #131318;
  --charcoal:   #1b1b22;
  --mist:       #7a7d88;
  --silver:     #a8adb8;
  --limestone:  #dedad2;
  --cream:      #f0ece2;
  --gold:       #c4894a;
  --gold-light: #d4a060;
  --amber:      #a06030;
  --turquoise:  #3d6e80;
  --green:      #243828;
  --white:      #f5f2ed;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', 'Helvetica Neue', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);

  --nav-h: 80px;
  --max-w: 1440px;
  --text-w: 700px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--limestone);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ---- Page Overlay (transitions) ---- */
.page-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  pointer-events: none;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  transition: background 0.6s var(--ease), border-color 0.6s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9,9,11,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.3s;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-active { color: var(--gold); }
.nav-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-menu span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--limestone);
  transition: all 0.3s;
}

/* =====================================================
   HERO — MAIN PAGE
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(9,9,11,0.55) 0%,
    rgba(9,9,11,0.1) 35%,
    rgba(9,9,11,0.55) 65%,
    rgba(9,9,11,0.92) 100%
  );
}
.hero-topo {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.018) 59px, rgba(255,255,255,0.018) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 99px, rgba(255,255,255,0.01) 99px, rgba(255,255,255,0.01) 100px);
}
.hero-mist {
  position: absolute;
  inset: -5%;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 40% at 50% 90%, rgba(160,190,210,0.07) 0%, transparent 70%);
  animation: mistDrift 18s ease-in-out infinite;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 860px;
  padding: 0 2rem;
  opacity: 0;
}
.hero-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.88;
  color: var(--cream);
  margin-bottom: 0.15em;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--limestone);
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  opacity: 0.7;
}
.hero-tagline {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--cream);
  max-width: 520px;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--limestone);
  padding: 1.1rem 2.8rem;
  border: 1px solid rgba(255,255,255,0.22);
  transition: all 0.5s var(--ease);
}
.hero-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,137,74,0.08);
  gap: 1.4rem;
}
.hero-cta-arrow { font-size: 0.9rem; transition: transform 0.3s; }
.hero-cta:hover .hero-cta-arrow { transform: translateX(4px); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
}
.hero-scroll-text {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mist);
}
.hero-scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, rgba(168,173,184,0.5), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.hero-coords {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 10;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--mist);
  opacity: 0.5;
}

/* =====================================================
   INTRO SECTION
   ===================================================== */
.intro-section {
  position: relative;
  overflow: hidden;
  padding: 10rem 3rem;
}
.intro-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.intro-text { max-width: 520px; }
.intro-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.intro-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 2rem;
}
.intro-body {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 2;
  color: var(--limestone);
  margin-bottom: 1.4rem;
}
.intro-body:last-child { margin-bottom: 0; }
.intro-image-wrap {
  position: relative;
  height: 620px;
  overflow: hidden;
}
.intro-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 10s var(--ease);
}
.intro-image-wrap:hover img { transform: scale(1.04); }
.intro-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,9,11,0.25) 0%, transparent 60%);
}
.intro-image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* =====================================================
   QUOTE SECTION
   ===================================================== */
.quote-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
}
.quote-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.55) saturate(0.85);
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(9,9,11,0.45) 0%,
    rgba(9,9,11,0.1) 50%,
    rgba(9,9,11,0.45) 100%);
}
.quote-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 780px;
  padding: 0 2rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.quote-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.quote-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.quote-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.4s, transform 0.4s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.quote-dot.is-active {
  background: var(--gold);
  transform: scale(1.4);
}
.quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 2rem;
}
.quote-attr {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* =====================================================
   JOURNEYS SECTION
   ===================================================== */
.journeys-section {
  padding: 5.4rem 3rem;
  background: var(--near-black);
}
.section-header {
  max-width: var(--max-w);
  margin: 0 auto 5rem;
  text-align: center;
}
.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
}
.section-subtitle {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--mist);
  margin-top: 1rem;
  line-height: 1.7;
}

/* Journey Card Grid */
.journeys-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.j-card { grid-column: span 1; }
.j-card--wide { grid-column: span 2; }

.j-card {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
.j-card--wide { aspect-ratio: 16/9; }
.j-card:not(.j-card--wide) { aspect-ratio: 3/4; }

.j-card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s var(--ease);
  will-change: transform;
}
.j-card:hover .j-card-img { transform: scale(1.06); }

.j-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9,9,11,0.92) 0%,
    rgba(9,9,11,0.45) 40%,
    rgba(9,9,11,0.08) 70%,
    transparent 100%
  );
  transition: background 0.5s;
}
.j-card:hover .j-card-overlay {
  background: linear-gradient(
    to top,
    rgba(9,9,11,0.96) 0%,
    rgba(9,9,11,0.6) 45%,
    rgba(9,9,11,0.15) 75%,
    rgba(9,9,11,0.05) 100%
  );
}

.j-card-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 2rem;
}
.j-card-num {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.j-card-theme {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.5rem;
}
.j-card-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.j-card-excerpt {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s var(--ease), opacity 0.55s, margin 0.55s;
}
.j-card:hover .j-card-excerpt {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 0.9rem;
}
.j-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--limestone);
  transition: color 0.3s, gap 0.3s;
}
.j-card:hover .j-card-link { color: var(--gold); gap: 0.8rem; }
.j-card-link-arrow { transition: transform 0.3s; }
.j-card:hover .j-card-link-arrow { transform: translateX(4px); }

/* =====================================================
   MAP / ROUTE SECTION
   ===================================================== */
.map-section {
  position: relative;
  padding: 12rem 3rem;
  min-height: 70vh;
  overflow: hidden;
}
.map-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}
.map-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.5);
}
.map-topo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 25% 50%, transparent 0, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px),
    repeating-radial-gradient(circle at 75% 40%, transparent 0, transparent 60px, rgba(255,255,255,0.01) 60px, rgba(255,255,255,0.01) 61px);
}
.map-inner {
  position: relative;
  z-index: 5;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
  align-items: start;
}
.map-text {}
.map-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.map-body {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--limestone);
  margin-bottom: 1.2rem;
}
.map-divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 2.5rem 0;
  opacity: 0.7;
}
.map-timeline {}
.map-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s;
}
.map-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.map-item:hover { border-color: rgba(196,137,74,0.25); }
.map-num {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.15rem;
}
.map-kw {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.2rem;
}
.map-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--limestone);
  line-height: 1.35;
  transition: color 0.3s;
}
.map-item:hover .map-title { color: var(--cream); }

/* =====================================================
   VIDEO ARCHIVE SECTION
   ===================================================== */
.archive-section {
  padding: 9rem 3rem;
  background: var(--black);
}
.archive-grid {
  max-width: var(--max-w);
  margin: 5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.archive-card--featured { grid-column: 1 / -1; }

.archive-card {
  display: block;
  cursor: pointer;
}
.archive-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--charcoal);
  margin-bottom: 1.2rem;
}
.archive-card--featured .archive-card-thumb { aspect-ratio: 21/9; }
.archive-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s;
  filter: brightness(0.75) saturate(0.85);
}
.archive-card:hover .archive-card-thumb img {
  transform: scale(1.05);
  filter: brightness(0.55) saturate(0.7);
}
.archive-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,11,0.6) 0%, transparent 50%);
}
.archive-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.4s;
}
.archive-card:hover .archive-card-play { opacity: 1; }
.play-ring {
  width: 60px; height: 60px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  background: rgba(9,9,11,0.25);
  transition: border-color 0.3s, transform 0.3s;
}
.archive-card:hover .play-ring { border-color: var(--gold); transform: scale(1.1); }
.play-ring svg { width: 14px; height: 14px; fill: var(--cream); margin-left: 3px; }

.archive-card-num {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.archive-card-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--limestone);
  margin-bottom: 0.35rem;
  line-height: 1.3;
  transition: color 0.3s;
}
.archive-card:hover .archive-card-title { color: var(--cream); }
.archive-card-mood {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.6;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--near-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 5rem 3rem 3rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4rem;
}
.footer-logo {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--limestone);
  margin-bottom: 1.2rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-nav a {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 300;
  color: var(--mist);
  transition: color 0.3s;
  line-height: 1.4;
}
.footer-nav a:hover { color: var(--limestone); }
.footer-design-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--mist);
  transition: color 0.3s;
  text-decoration: none;
}
.footer-design-link:hover { color: var(--gold); }
.footer-coords {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.9;
  letter-spacing: 0.05em;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--mist);
  opacity: 0.6;
  letter-spacing: 0.05em;
}
.footer-made {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--mist);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

/* =====================================================
   JOURNEY PAGE — HERO
   ===================================================== */
.j-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.j-hero-bg {
  position: absolute;
  inset: 0;
}
.j-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  will-change: transform;
}
.j-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9,9,11,0.96) 0%,
    rgba(9,9,11,0.55) 35%,
    rgba(9,9,11,0.18) 60%,
    rgba(9,9,11,0.4) 100%
  );
}
.j-hero-topo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.015) 59px, rgba(255,255,255,0.015) 60px);
}
.j-hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 4rem;
  max-width: 820px;
  width: 100%;
}
.j-chapter-num {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
}
.j-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 0.9;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
  opacity: 0;
}
.j-hero-intro {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: var(--limestone);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 2.5rem;
  opacity: 0;
}
.j-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--limestone);
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
  border: none;
  background: none;
  opacity: 0;
}
.j-play-btn:hover { color: var(--gold); }
.j-play-ring {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, transform 0.4s;
}
.j-play-btn:hover .j-play-ring {
  border-color: var(--gold);
  transform: scale(1.1);
}
.j-play-ring svg { width: 13px; height: 13px; fill: currentColor; margin-left: 3px; }

/* Journey mood tag */
.j-mood-tag {
  display: none;
}

/* =====================================================
   JOURNEY PAGE — CONTENT
   ===================================================== */
.j-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 3rem 4rem;
}
.j-content-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4rem;
}
.j-text { }
.j-text p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 300;
  line-height: 1.95;
  color: var(--limestone);
  margin-bottom: 1.8rem;
}
.j-text p.opening {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 2.8rem;
}
.j-text p.closing {
  font-style: italic;
  color: var(--cream);
}
.j-inline-img {
  margin: 4rem 0;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.j-inline-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.j-inline-img:hover img { transform: scale(1.03); }
.j-inline-img-caption {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--mist);
  margin-top: 0.8rem;
}

/* 3-image editorial mosaic */
.j-story-images {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 3rem 7rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.j-si-main {
  overflow: hidden;
  aspect-ratio: 21/9;
  position: relative;
}
.j-si-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.j-si-main:hover img { transform: scale(1.04); }
.j-si-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1.2rem;
}
.j-si-top, .j-si-bot {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
.j-si-top img, .j-si-bot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.j-si-top:hover img, .j-si-bot:hover img { transform: scale(1.04); }
.j-si-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.35);
  padding: 0.35rem 0.7rem;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.j-content--lower {
  padding-top: 3rem;
}

/* =====================================================
   LIGHTBOX
   ===================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  opacity: 0;
  pointer-events: none;
  transition: background 0.45s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
  background: rgba(0,0,0,0.92);
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.4s ease, transform 0.4s ease;
  cursor: default;
}
.lightbox.is-open .lightbox-img {
  opacity: 1;
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.lightbox-close:hover { color: var(--cream); }
.lightbox-close-x {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
}
/* Clickable cursor on story images */
.j-si-main, .j-si-top, .j-si-bot { cursor: zoom-in; }

/* =====================================================
   JOURNEY PAGE — VIDEO EMBED
   ===================================================== */
.j-video-section {
  padding: 3rem 3rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}
.j-video-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.j-video-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--limestone);
  margin-bottom: 2.5rem;
}
.j-video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--charcoal);
  overflow: hidden;
}
.j-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ---- Video Facade (click-to-play thumbnail) ---- */
.j-video-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  overflow: hidden;
}
.j-video-facade-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}
.j-video-facade:hover .j-video-facade-thumb { transform: scale(1.04); }
.j-video-facade-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,9,11,0.32);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  transition: background 0.4s;
}
.j-video-facade:hover .j-video-facade-overlay { background: rgba(9,9,11,0.52); }
.j-video-facade-ring {
  width: 80px; height: 80px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  background: rgba(9,9,11,0.25);
  transition: border-color 0.35s, transform 0.35s, background 0.35s;
}
.j-video-facade:hover .j-video-facade-ring {
  border-color: var(--gold);
  transform: scale(1.1);
  background: rgba(196,137,74,0.12);
}
.j-video-facade-ring svg {
  width: 22px; height: 22px;
  fill: var(--cream);
  margin-left: 5px;
}
.j-video-facade-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(240,236,226,0.65);
  transition: color 0.3s;
}
.j-video-facade:hover .j-video-facade-label { color: var(--gold); }

/* =====================================================
   JOURNEY PAGE — GALLERY
   ===================================================== */
.j-gallery {
  padding: 2rem 3rem 6rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.j-gallery-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.j-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.j-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.j-gallery-item.tall { aspect-ratio: 2/3; }
.j-gallery-item.wide { grid-column: span 2; aspect-ratio: 16/7; }
.j-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.j-gallery-item:hover img { transform: scale(1.05); }

/* =====================================================
   JOURNEY PAGE — NEXT NAV
   ===================================================== */
.j-nav-bar {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.j-nav-prev, .j-nav-next {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: opacity 0.3s;
}
.j-nav-next { text-align: right; align-items: flex-end; }
.j-nav-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mist);
}
.j-nav-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--limestone);
  transition: color 0.3s;
}
.j-nav-prev:hover .j-nav-title,
.j-nav-next:hover .j-nav-title { color: var(--gold); }
.j-nav-center {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
  opacity: 0.5;
}
.j-nav-center a:hover { color: var(--limestone); }

/* =====================================================
   VIDEO MODAL
   ===================================================== */
.v-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease, background 0.45s ease;
  backdrop-filter: blur(0px);
}
.v-modal.open {
  opacity: 1;
  pointer-events: all;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px);
}
.v-modal-inner {
  width: 92%;
  max-width: 1140px;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.v-modal.open .v-modal-inner {
  transform: scale(1);
}
.v-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s;
  padding: 0;
}
.v-modal-close:hover { color: #ffffff; }
.v-modal-close span { font-size: 1.3rem; line-height: 1; font-weight: 300; }
.v-modal-embed {
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
}
.v-modal-embed iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes mistDrift {
  0%   { transform: translateX(-3%) scale(1.02); }
  50%  { transform: translateX(3%) scale(1.05); }
  100% { transform: translateX(-3%) scale(1.02); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.15; }
}

/* GSAP reveal classes (initial states, GSAP will animate) */
.r-up   { opacity: 0; transform: translateY(35px); }
.r-fade { opacity: 0; }
.r-left { opacity: 0; transform: translateX(-30px); }
.r-right{ opacity: 0; transform: translateX(30px); }
.r-scale{ opacity: 0; transform: scale(0.96); }

/* Gold separator */
.sep {
  width: 38px;
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
}
.sep--center { margin: 2rem auto; }
.sep--left { margin: 2rem 0; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (min-width: 1400px) {
  .map-section { padding: 16rem 3rem; min-height: 85vh; }
}
@media (min-width: 1800px) {
  .map-section { padding: 20rem 3rem; min-height: 90vh; }
}
@media (max-width: 1200px) {
  .map-inner { gap: 4rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > *:last-child { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  .intro-inner { grid-template-columns: 1fr; gap: 4rem; }
  .intro-image-wrap { height: 400px; }
  .map-inner { grid-template-columns: 1fr; gap: 4rem; }
  .journeys-grid { grid-template-columns: repeat(2, 1fr); }
  .j-card--wide:not(:first-child) { grid-column: span 1; aspect-ratio: 3/4; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-menu { display: flex; }

  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-subtitle { font-size: clamp(1.1rem, 5vw, 1.6rem); }
  .hero-coords { display: none; }

  .intro-section { padding: 6rem 1.5rem; }
  .journeys-section, .archive-section { padding: 6rem 1.5rem; }
  .map-section { padding: 6rem 1.5rem; }
  footer { padding: 4rem 1.5rem 2rem; }

  .journeys-grid { grid-template-columns: 1fr; }
  .j-card--wide { aspect-ratio: 4/3; grid-column: span 1; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-card--featured { grid-column: 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }

  .j-hero-content { padding: 3rem 1.5rem; }
  .j-hero-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .j-content { padding: 5rem 1.5rem 3rem; }
  .j-story-images { padding: 0 1.5rem 5rem; }
  .j-si-stack { grid-template-columns: 1fr; }
  .j-si-main { aspect-ratio: 16/9; }
  .j-si-top, .j-si-bot { aspect-ratio: 4/3; }
  .j-video-section { padding: 2rem 1.5rem 4rem; }
  .j-gallery { padding: 1rem 1.5rem 4rem; }
  .j-gallery-grid { grid-template-columns: 1fr; }
  .j-gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .j-nav-bar { flex-direction: column; gap: 2.5rem; padding: 4rem 1.5rem; }
  .j-nav-next { text-align: left; align-items: flex-start; }
  .j-nav-center { display: none; }
  .map-item { grid-template-columns: 36px 1fr; }
}
