/* ============================================================
   Manoj Yadav — Site stylesheet
   Dark, cinematic, documentary. Photography is the hero.
   ============================================================ */

:root {
  /* Color */
  --black:       #050505;
  --near-black:  #0a0a0a;
  --ink:         #f3ecdc;
  --ink-dim:     rgba(243, 236, 220, 0.78);
  --ink-mute:    rgba(243, 236, 220, 0.50);
  --ink-faint:   rgba(243, 236, 220, 0.28);
  --line:        rgba(243, 236, 220, 0.10);
  --ember:       #e9b878;
  --ember-warm:  #d99a52;
  --ember-deep:  #b86d2a;

  /* Type */
  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .15, 1);
  --t-fast: 320ms;
  --t-mid:  620ms;
  --t-slow: 1100ms;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--black);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--black);
  min-height: 100vh;
  overflow: hidden; /* each scene controls its own scroll */
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }


/* ============================================================
   SCENE SYSTEM
   Each scene is fixed full-viewport. Body class controls which is visible.
   ============================================================ */

.scene {
  position: fixed; inset: 0;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity var(--t-mid) var(--ease), visibility 0s linear var(--t-mid);
  overflow: hidden;
}

body.scene-arrival   .scene-arrival,
body.scene-map       .scene-map,
body.scene-experience .scene-experience,
body.scene-about     .scene-about {
  opacity: 1; pointer-events: auto; visibility: visible;
  transition: opacity var(--t-mid) var(--ease), visibility 0s;
}

/* The experience and about scenes need their own scroll */
.scene-experience, .scene-about { overflow-y: auto; -webkit-overflow-scrolling: touch; }


/* ============================================================
   SCENE 1: ARRIVAL
   ============================================================ */

.scene-arrival {
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}

.arrival-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  opacity: 0;
  transition: opacity 2400ms ease-out, transform 6000ms cubic-bezier(.2,.7,.2,1);
}
body.arrival-revealed .arrival-photo {
  opacity: 0.72;
  transform: scale(1);
}

.arrival-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(5,5,5,0.30) 0%, rgba(5,5,5,0.78) 70%, rgba(5,5,5,0.95) 100%),
    linear-gradient(to bottom, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.1) 40%, rgba(5,5,5,0.85) 100%);
}

.arrival-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 32px;
  max-width: 880px;
}

.arrival-eyebrow {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 36px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1200ms ease-out 600ms, transform 1200ms var(--ease) 600ms;
}
body.arrival-revealed .arrival-eyebrow { opacity: 0.95; transform: translateY(0); }

.arrival-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 78px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 28px;
  font-style: italic;
  min-height: 1.1em;
}
.arrival-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 900ms ease-out, transform 900ms var(--ease);
}
.arrival-title .word.in { opacity: 1; transform: translateY(0); }

.arrival-subtitle {
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 auto 60px;
  max-width: 580px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1400ms ease-out, transform 1400ms var(--ease);
}
.arrival-subtitle.in { opacity: 1; transform: translateY(0); }

.arrival-enter {
  position: relative;
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--ink);
  padding: 18px 0 22px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1200ms ease-out, transform 1200ms var(--ease), color 240ms ease;
}
.arrival-enter.in { opacity: 1; transform: translateY(0); }
.arrival-enter:hover { color: var(--ember); }
.arrival-enter-text { position: relative; z-index: 2; }
.arrival-enter-line {
  position: absolute; left: 50%; bottom: 0;
  width: 60px; height: 1px;
  background: var(--ink-faint);
  transform: translateX(-50%);
  transition: width 480ms var(--ease), background 240ms ease;
}
.arrival-enter:hover .arrival-enter-line {
  width: 160px;
  background: var(--ember);
}


/* ============================================================
   SCENE 2: CONSTELLATION MAP
   ============================================================ */

.scene-map {
  background: var(--black);
}

.map-topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 28px 36px;
}
.map-brand {
  text-decoration: none;
  display: flex; flex-direction: column; gap: 4px;
}
.map-brand-name {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; color: var(--ink);
  letter-spacing: 0.01em;
}
.map-brand-sub {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute);
}
.map-about-link {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 240ms ease, border-color 240ms ease;
}
.map-about-link:hover { color: var(--ember); border-bottom-color: var(--ember); }

.map-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.map-image {
  position: absolute;
  /* Make the image fit centered, smaller than full screen so there's breathing room */
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(82vw, 64vh);
  aspect-ratio: 3 / 4;
  background-size: cover; background-position: center;
  filter: brightness(0.95) saturate(1.05);
}
.map-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(5,5,5,0.5) 75%, var(--black) 100%);
  pointer-events: none;
}

/* Connecting lines (SVG) between regions */
.map-lines {
  position: absolute;
  /* Match the .map-image bounds */
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(82vw, 64vh);
  aspect-ratio: 3 / 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1800ms ease-out 600ms;
}
body.map-ready .map-lines { opacity: 1; }
.map-line {
  stroke: var(--ember);
  stroke-width: 0.15;
  stroke-opacity: 0.12;
  fill: none;
  stroke-dasharray: 0.5 1.2;
}

/* The 7 region lights */
.map-points {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(82vw, 64vh);
  aspect-ratio: 3 / 4;
}

.map-point {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  /* Each point gets its own size based on intensity */
}

.map-point-dot {
  position: relative;
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow:
    0 0 0 1px rgba(233, 184, 120, 0.4),
    0 0 18px 4px rgba(233, 184, 120, 0.55),
    0 0 40px 10px rgba(233, 184, 120, 0.25);
  transition: transform 360ms var(--ease), box-shadow 360ms ease;
}
.map-point[data-intensity="high"] .map-point-dot {
  width: 14px; height: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 220, 170, 0.6),
    0 0 26px 6px rgba(233, 184, 120, 0.75),
    0 0 60px 14px rgba(233, 184, 120, 0.35);
}

.map-point-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--ember);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.5;
  animation: pulse 3.2s ease-out infinite;
}
.map-point[data-intensity="high"] .map-point-dot::after { animation-duration: 2.6s; }

@keyframes pulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.55; }
  100% { transform: translate(-50%, -50%) scale(4.5); opacity: 0;    }
}

.map-point-label {
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.01em;
  opacity: 0;
  transition: opacity 360ms ease, transform 360ms var(--ease);
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6), 0 0 12px rgba(0,0,0,0.4);
}
.map-point-label-sub {
  display: block;
  font-family: var(--sans); font-style: normal;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ember);
  margin-top: 4px;
}

.map-point:hover .map-point-dot,
.map-point:focus-visible .map-point-dot {
  transform: scale(1.25);
  box-shadow:
    0 0 0 1px rgba(255, 220, 170, 0.8),
    0 0 36px 10px rgba(233, 184, 120, 1),
    0 0 80px 20px rgba(233, 184, 120, 0.45);
}
.map-point:hover .map-point-label,
.map-point:focus-visible .map-point-label {
  opacity: 1;
  transform: translateX(-50%) translateY(2px);
}

/* Reveal stagger when the map loads */
.map-point { opacity: 0; transform: translate(-50%, -50%) scale(0.6); transition: opacity 800ms ease-out, transform 800ms var(--ease); }
body.map-ready .map-point { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Intro copy */
.map-intro {
  position: absolute;
  left: 36px; bottom: 36px;
  max-width: 360px;
  z-index: 5;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1200ms ease-out 1200ms, transform 1200ms var(--ease) 1200ms;
}
body.map-ready .map-intro { opacity: 1; transform: translateY(0); }
.map-intro-eyebrow {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 14px;
}
.map-intro-title {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(26px, 3vw, 38px); line-height: 1.1;
  color: var(--ink);
  margin: 0 0 14px;
}
.map-intro-text {
  font-family: var(--sans); font-size: 13px; line-height: 1.6;
  color: var(--ink-dim);
  margin: 0;
}

/* Hover preview card (right side) */
.map-preview {
  position: absolute;
  right: 36px; bottom: 36px;
  max-width: 320px;
  text-align: right;
  z-index: 5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 320ms var(--ease);
  pointer-events: none;
}
.map-preview.active { opacity: 1; transform: translateY(0); }
.map-preview-eyebrow {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 10px;
}
.map-preview-title {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px); line-height: 1.1;
  color: var(--ink);
  margin: 0 0 8px;
}
.map-preview-region {
  font-family: var(--sans); font-size: 12px;
  color: var(--ink-mute);
  margin: 0;
}


/* ============================================================
   SCENE 3: EXPERIENCE
   ============================================================ */

.scene-experience { background: var(--near-black); }

.exp-back {
  position: fixed; top: 24px; left: 28px; z-index: 40;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
  padding: 10px 14px 10px 10px;
  background: rgba(5,5,5,0.55);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  transition: color 240ms ease, background 240ms ease;
}
.exp-back:hover { color: var(--ember); background: rgba(5,5,5,0.78); }
.exp-back svg { stroke: currentColor; }

.exp-compass {
  position: fixed; top: 24px; right: 28px; z-index: 40;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 14px;
  background: rgba(5,5,5,0.55);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--ink-mute);
}
.exp-compass-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 12px 2px rgba(233,184,120,0.6);
}

/* OPENING — full-bleed hero */
.exp-opening {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 0 0 12vh;
  overflow: hidden;
}
.exp-opening-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: heroDrift 22s ease-out forwards;
}
@keyframes heroDrift {
  to { transform: scale(1); }
}
.exp-opening-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.05) 30%, rgba(5,5,5,0.85) 100%);
}
.exp-opening-copy {
  position: relative; z-index: 2;
  padding: 0 clamp(24px, 5vw, 64px);
  max-width: 920px;
}
.exp-opening-eyebrow {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 22px;
  opacity: 0;
  animation: fadeUp 900ms ease-out 200ms forwards;
}
.exp-opening-title {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 18px;
  opacity: 0;
  animation: fadeUp 1000ms ease-out 380ms forwards;
}
.exp-opening-subtitle {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  color: var(--ink-dim);
  margin: 0 0 28px;
  max-width: 680px;
  opacity: 0;
  animation: fadeUp 1000ms ease-out 600ms forwards;
}
.exp-opening-region {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 60px;
  opacity: 0;
  animation: fadeUp 900ms ease-out 820ms forwards;
}
.exp-opening-scroll {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: fadeUp 900ms ease-out 1100ms forwards, scrollNudge 2.4s ease-in-out 2s infinite;
}
.exp-opening-scroll svg { stroke: var(--ember); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* STORY */
.exp-story {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px) 140px;
}

.exp-section {
  padding: 12vh 0;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1100ms ease-out, transform 1100ms var(--ease);
}
.exp-section.in {
  opacity: 1; transform: translateY(0);
}

.exp-section-label {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 32px;
}

/* Declaration */
.exp-declare {
  text-align: center;
  padding-bottom: 4vh;
}
.exp-declare-text {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 auto 24px;
  max-width: 780px;
}
.exp-declare-invite {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink-dim);
  margin: 0 auto;
  max-width: 680px;
}

/* Paragraph */
.exp-paragraph {
  max-width: 720px;
  margin: 0 auto;
  padding: 6vh 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.exp-paragraph-text {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}

/* What you photograph — list reveals item by item */
.exp-photographs-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  max-width: 720px;
  margin-inline: auto;
}
.exp-photographs-list li {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.35;
  color: var(--ink-dim);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 700ms ease-out, transform 700ms var(--ease), color 280ms ease;
  position: relative;
  padding-left: 36px;
}
.exp-photographs-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--ember);
  opacity: 0.4;
  transform: translateY(-50%);
  transition: width 360ms var(--ease), opacity 240ms ease;
}
.exp-photographs.in .exp-photographs-list li {
  opacity: 1; transform: translateX(0);
}
.exp-photographs-list li:hover {
  color: var(--ink);
}
.exp-photographs-list li:hover::before {
  width: 28px; opacity: 1;
}

/* Gallery */
.exp-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.exp-photo {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: #111;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 900ms ease-out, transform 900ms var(--ease);
}
.exp-gallery-section.in .exp-photo {
  opacity: 1; transform: scale(1);
}
.exp-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 800ms var(--ease), filter 600ms ease;
}
.exp-photo:hover img { transform: scale(1.04); filter: brightness(1.08); }

/* Varied editorial rhythm */
.exp-photo.s-lg     { grid-column: span 8; aspect-ratio: 4/3; }
.exp-photo.s-md     { grid-column: span 4; aspect-ratio: 3/4; }
.exp-photo.s-sq     { grid-column: span 6; aspect-ratio: 1/1; }
.exp-photo.s-tall   { grid-column: span 4; aspect-ratio: 2/3; }
.exp-photo.s-wide   { grid-column: span 12; aspect-ratio: 21/9; }
.exp-photo.s-half   { grid-column: span 6; aspect-ratio: 4/5; }

/* Practicals */
.exp-practicals { max-width: 920px; margin: 0 auto; }
.exp-practicals-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.exp-duration {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: 24px; color: var(--ink);
  margin: 0 0 8px;
}
.exp-group {
  font-family: var(--sans); font-size: 13px;
  color: var(--ink-dim);
  margin: 0;
}
.exp-pricing { display: grid; gap: 16px; }
.exp-price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.exp-price-row:last-child { border-bottom: none; }
.exp-price-label {
  font-family: var(--sans); font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.exp-price-sublabel {
  display: block;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.exp-price-amount {
  font-family: var(--serif); font-weight: 500;
  font-size: 24px;
  color: var(--ember);
  white-space: nowrap;
}
.exp-price-amount-unit {
  font-family: var(--sans); font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  margin-left: 6px;
}
.exp-price-custom {
  font-family: var(--serif); font-style: italic;
  font-size: 22px;
  color: var(--ember);
}
.exp-includes, .exp-excludes {
  font-family: var(--sans);
  font-size: 13px; line-height: 1.65;
  color: var(--ink-dim);
  margin: 18px 0 0;
  max-width: 720px;
}
.exp-excludes { color: var(--ink-mute); font-size: 12px; }

/* CTA */
.exp-cta {
  text-align: center;
  padding: 14vh 0 8vh;
}
.exp-cta-link {
  display: inline-flex; align-items: center; gap: 18px;
  text-decoration: none;
  padding: 22px 36px;
  border: 1px solid var(--ember);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.36em; text-transform: uppercase;
  transition: background 320ms ease, color 320ms ease, padding 320ms var(--ease);
}
.exp-cta-link:hover {
  background: var(--ember);
  color: var(--near-black);
  padding: 22px 48px;
}
.exp-cta-arrow {
  font-size: 16px;
  transition: transform 320ms var(--ease);
}
.exp-cta-link:hover .exp-cta-arrow { transform: translateX(6px); }
.exp-cta-sub {
  margin-top: 24px;
  font-family: var(--sans); font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.exp-cta-sub a { color: var(--ink-mute); text-decoration: none; transition: color 240ms ease; }
.exp-cta-sub a:hover { color: var(--ember); }
.exp-cta-dot { margin: 0 12px; color: var(--ink-faint); }

/* Continue the journey */
.exp-next { text-align: center; padding-top: 8vh; border-top: 1px solid var(--line); }
.exp-next-link {
  display: block;
  text-decoration: none;
  padding: 36px 0;
  max-width: 640px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  transition: padding 360ms var(--ease);
}
.exp-next-link:hover { padding: 36px 0 44px; }
.exp-next-label {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 18px;
}
.exp-next-title {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 10px;
  transition: color 240ms ease;
}
.exp-next-link:hover .exp-next-title { color: var(--ember); }
.exp-next-region {
  font-family: var(--sans); font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin: 0;
}
.exp-back-link {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  cursor: pointer;
  transition: color 240ms ease, border-color 240ms ease;
}
.exp-back-link:hover { color: var(--ember); border-bottom-color: var(--ember); }


/* ============================================================
   SCENE 4: ABOUT
   ============================================================ */

.scene-about {
  background: var(--near-black);
  min-height: 100vh;
  position: relative;
}
.about-back {
  position: fixed; top: 24px; left: 28px; z-index: 40;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
  padding: 10px 14px 10px 10px;
  background: rgba(5,5,5,0.55);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  transition: color 240ms ease, background 240ms ease;
}
.about-back:hover { color: var(--ember); background: rgba(5,5,5,0.78); }

/* ---------- About hero ---------- */
.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.about-portrait {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.75) saturate(1.02);
  animation: aboutHeroDrift 28s ease-out forwards;
}
@keyframes aboutHeroDrift {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1.0); }
}
.about-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(5,5,5,0.25) 0%,
      rgba(5,5,5,0.40) 40%,
      rgba(5,5,5,0.78) 78%,
      var(--black) 100%),
    linear-gradient(to right,
      rgba(5,5,5,0.55) 0%,
      rgba(5,5,5,0.20) 45%,
      rgba(5,5,5,0.0) 100%);
}
.about-hero-text {
  position: absolute;
  left: clamp(28px, 8vw, 120px);
  right: clamp(28px, 8vw, 120px);
  bottom: 18vh;
  max-width: 820px;
  z-index: 2;
}
.about-eyebrow {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 22px;
  opacity: 0;
  animation: aboutFadeUp 1000ms ease-out 200ms forwards;
}
.about-name {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 18ch;
  opacity: 0;
  animation: aboutFadeUp 1200ms ease-out 450ms forwards;
}
.about-byline {
  font-family: var(--sans);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  opacity: 0;
  animation: aboutFadeUp 1000ms ease-out 800ms forwards;
}
@keyframes aboutFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.about-hero-scroll {
  position: absolute;
  left: 50%; bottom: 36px;
  transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: aboutFadeUp 1000ms ease-out 1400ms forwards,
             aboutScrollBob 2400ms ease-in-out 2400ms infinite;
  z-index: 3;
}
@keyframes aboutScrollBob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* ---------- About story (long-form editorial) ---------- */
.about-story {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 12vh clamp(24px, 5vw, 40px) 14vh;
  background: var(--black);
}
.about-lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 23px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 36px;
  letter-spacing: -0.003em;
}
.about-lede::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.4em;
  line-height: 0.85;
  float: left;
  margin: 0.08em 0.12em 0 -0.04em;
  color: var(--ember);
}
.about-body {
  font-family: var(--serif);
  font-size: clamp(17px, 1.55vw, 19px);
  line-height: 1.72;
  color: var(--ink-dim);
  margin: 0 0 28px;
  text-align: left;
}
.about-rule {
  width: 56px;
  height: 1px;
  background: var(--ember);
  opacity: 0.7;
  margin: 48px auto 48px;
}
.about-pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  text-align: center;
  margin: 44px -8vw 52px;
  padding: 0 0;
  letter-spacing: -0.005em;
  position: relative;
}
.about-pullquote::before,
.about-pullquote::after {
  content: "“";
  font-family: var(--serif);
  font-size: 1em;
  color: var(--ember);
  opacity: 0.55;
  margin: 0 0.18em;
}
.about-pullquote::after { content: "”"; }
.about-coda {
  font-style: italic;
  color: var(--ink);
}
.about-closing {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--ink);
  text-align: center;
  margin: 48px 0 0;
}
.about-closing em {
  color: var(--ember);
  font-style: italic;
  font-weight: 300;
}
.about-signoff {
  margin-top: 88px;
  padding-top: 48px;
  border-top: 1px solid var(--ink-faint);
  text-align: center;
}
.about-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 40px;
}
.about-contact-label {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 22px;
}
.about-contact {
  display: flex; flex-direction: column; gap: 14px;
  align-items: center;
}
.about-contact a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink-faint);
  transition: color 240ms ease, border-color 240ms ease;
}
.about-contact a:hover {
  color: var(--ember);
  border-bottom-color: var(--ember);
}

@media (max-width: 700px) {
  .about-hero { height: 88vh; }
  .about-hero-text { bottom: 14vh; }
  .about-pullquote { margin-left: 0; margin-right: 0; }
}


/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,5,5,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity 320ms ease, visibility 0s linear 320ms;
}
.lightbox.open {
  opacity: 1; pointer-events: auto; visibility: visible;
  transition: opacity 320ms ease, visibility 0s;
}
.lightbox-img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 400ms ease, transform 400ms var(--ease);
}
.lightbox.open .lightbox-img { opacity: 1; transform: scale(1); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(0,0,0,0.4);
  color: var(--ink);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 240ms ease, color 240ms ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(0,0,0,0.7); color: var(--ember);
}
.lightbox-close { top: 24px; right: 28px; }
.lightbox-prev  { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 28px; top: 50%; transform: translateY(-50%); }


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .map-topbar { padding: 18px 18px; }
  .map-image, .map-points, .map-lines {
    width: 92vw;
    aspect-ratio: 3/4;
  }
  .map-intro { left: 18px; right: 18px; bottom: 18px; max-width: none; }
  .map-preview { display: none; } /* hover doesn't exist on touch */

  .map-point-label { font-size: 13px; }

  .exp-back, .exp-compass, .about-back { top: 14px; }
  .exp-back { left: 14px; }
  .exp-compass { right: 14px; }
  .about-back { left: 14px; }

  .exp-compass-label { display: none; }

  .exp-story { padding: 0 18px 100px; }
  .exp-section { padding: 8vh 0; }

  .exp-practicals-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Mobile gallery — much simpler grid */
  .exp-photo.s-lg,
  .exp-photo.s-md,
  .exp-photo.s-sq,
  .exp-photo.s-tall,
  .exp-photo.s-half  { grid-column: span 6; aspect-ratio: 4/5; }
  .exp-photo.s-wide  { grid-column: span 12; aspect-ratio: 16/9; }

  .about-content { padding: 14vh 24px 12vh; }
}

@media (max-width: 560px) {
  .exp-photo.s-lg,
  .exp-photo.s-md,
  .exp-photo.s-sq,
  .exp-photo.s-tall,
  .exp-photo.s-half,
  .exp-photo.s-wide { grid-column: span 12; aspect-ratio: 4/5; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .arrival-title .word { opacity: 1 !important; transform: none !important; }
  .exp-section { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   CINEMATIC ENTER — camera swings down into a region
   ============================================================ */

/* Stage starts at identity; JS sets transition/transform during the dive */
.map-stage {
  will-change: transform;
}

/* Non-chosen points fade out gracefully while the camera moves */
.map-point.map-point--fading {
  opacity: 0;
  transition: opacity 1100ms ease-out;
  pointer-events: none;
}

/* Chosen point pulses brighter as you fly in */
.map-point.map-point--chosen .map-point-dot {
  animation: chosenPulse 1700ms ease-out forwards;
}
.map-point.map-point--chosen .map-point-label {
  opacity: 0;
  transition: opacity 700ms ease-out;
}

@keyframes chosenPulse {
  0%   { transform: scale(1);   box-shadow: 0 0 0 1px rgba(233,184,120,0.4), 0 0 18px 4px rgba(233,184,120,0.55), 0 0 40px 10px rgba(233,184,120,0.25); }
  55%  { transform: scale(1.8); box-shadow: 0 0 0 2px rgba(233,184,120,0.6), 0 0 50px 18px rgba(233,184,120,0.85), 0 0 110px 36px rgba(233,184,120,0.55); }
  100% { transform: scale(2.8); opacity: 0; box-shadow: 0 0 0 0 rgba(233,184,120,0), 0 0 100px 40px rgba(233,184,120,0); }
}

/* Side UI (topbar, intro copy) fades during the swoop */
.map-topbar.map-side--fading,
.map-intro.map-side--fading {
  opacity: 0;
  transition: opacity 1100ms ease-out;
  pointer-events: none;
}

/* Full-screen veil: the destination photo crossfading IN over the still-moving map */
.cinematic-veil {
  position: fixed; inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: opacity, transform;
}
.cinematic-veil.cinematic-veil--in {
  opacity: 1;
}
