/* ═══════════════════════════════════════════
   GET A GLIMPSE — site.css
   Shared styles for all pages
═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:             #04070f;
  --bg2:            #070c17;
  --teal:           #2ad4d4;
  --teal-dim:       #1a7a7a;
  --teal-glow:      rgba(42,212,212,0.12);
  --magenta:        #c8006e;
  --magenta-bright: #ff2d9b;
  --text:           #c8e4ee;
  --text-dim:       #5a7f90;
  --white:          #ffffff;
  --purple:         #6a20e0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Libre Baskerville', serif;
  overflow-x: hidden;
}

/* ── STARS ── */
#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 3rem;
  background: linear-gradient(to bottom, rgba(4,7,15,0.97), transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(42,212,212,0.06);
}

.nav-logo img {
  height: 70px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(42,212,212,0.4));
  transition: filter 0.3s;
}
.nav-logo img:hover { filter: drop-shadow(0 0 18px rgba(42,212,212,0.65)); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal); }
.nav-links a.shop {
  color: var(--teal-dim);
  border: 1px solid var(--teal-dim);
  padding: 0.35rem 0.9rem;
  transition: all 0.3s;
}
.nav-links a.shop:hover { color: var(--teal); border-color: var(--teal); background: var(--teal-glow); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 101;
}
.hamburger span { display: block; width: 24px; height: 1px; background: var(--teal); }

/* ═══════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 2rem 5rem;
  z-index: 1;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/ForStyle.png') center center / cover no-repeat;
  filter: brightness(0.3) saturate(1.2);
  z-index: 0;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(4,7,15,0.3) 0%,
    transparent 30%,
    rgba(4,7,15,0.98) 100%);
}
.page-hero > *:not(.page-hero-bg) { position: relative; z-index: 1; }

.page-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 0 60px rgba(42,212,212,0.18);
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.page-title em { font-style: italic; color: var(--teal); text-shadow: 0 0 40px rgba(42,212,212,0.5); }

.page-subtitle {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.85;
  color: rgba(200,228,238,0.65);
  max-width: 560px;
  margin: 1.2rem auto 0;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

/* ═══════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════ */
.section-wrap {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}
.section-wrap.dark {
  background: linear-gradient(to bottom, transparent, var(--bg2) 10%, var(--bg2) 90%, transparent);
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  text-align: center;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { color: var(--teal); font-style: italic; }
.section-title em.mag { color: var(--magenta-bright); }

.section-intro {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--text-dim);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--teal), transparent);
  opacity: 0.55;
  margin: 0 auto 3rem;
}
.divider.mag {
  background: linear-gradient(to right, transparent, var(--magenta-bright), transparent);
}

.content-wrap { max-width: 860px; margin: 0 auto; }

/* ═══════════════════════════════
   STORY CARD (index page)
═══════════════════════════════ */
.story-card {
  background: rgba(42,212,212,0.022);
  border: 1px solid rgba(42,212,212,0.11);
  border-radius: 2px;
  padding: 3.5rem 4rem;
  position: relative;
  box-shadow: 0 0 80px rgba(42,212,212,0.04), inset 0 0 60px rgba(42,212,212,0.015);
  margin-top: 3rem;
}
.story-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 11rem;
  color: var(--teal);
  opacity: 0.055;
  position: absolute;
  top: -1.5rem; left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.story-epigraph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--teal);
  text-align: center;
  line-height: 1.75;
  border-bottom: 1px solid rgba(42,212,212,0.14);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 20px rgba(42,212,212,0.28);
}

.story-text {
  font-size: 0.97rem;
  line-height: 2;
  color: rgba(200,228,238,0.75);
  margin-bottom: 1.4rem;
}
.story-text strong { color: var(--text); }
.story-text em { color: var(--text); font-style: italic; }

.story-dialogue {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--teal);
  padding-left: 1.5rem;
  border-left: 2px solid var(--teal-dim);
  margin: 1.6rem 0;
  line-height: 1.7;
  text-shadow: 0 0 14px rgba(42,212,212,0.22);
}

.story-climax-new { margin-top: 2rem; }
.story-climax-new::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--teal), transparent);
  margin: 0 auto 2.5rem;
  opacity: 0.5;
}

.story-final-line {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(42,212,212,0.07), rgba(106,32,224,0.05), rgba(200,0,110,0.04));
  border: 1px solid rgba(42,212,212,0.22);
  border-radius: 2px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--teal);
  line-height: 1.7;
  box-shadow: 0 0 40px rgba(42,212,212,0.06), inset 0 0 30px rgba(42,212,212,0.03);
  letter-spacing: 0.03em;
  text-shadow: 0 0 30px rgba(42,212,212,0.4);
}

.story-hidden { display: none; }
.story-hidden.open { display: block; }

.read-more-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-dim);
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.3s;
  padding: 0.5rem 0;
}
.read-more-btn:hover { color: var(--teal); }

/* ═══════════════════════════════
   PROSE CONTENT (science, spiritual, consciousness)
═══════════════════════════════ */
.prose-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1rem;
}

.prose-chapter {
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(42,212,212,0.07);
}
.prose-chapter:last-child { border-bottom: none; margin-bottom: 0; }

.chapter-number {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--teal-dim);
  margin-bottom: 0.8rem;
}

.chapter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.25;
}
.chapter-title em { color: var(--teal); font-style: italic; }

.prose-p {
  font-size: 0.97rem;
  line-height: 2;
  color: rgba(200,228,238,0.75);
  margin-bottom: 1.4rem;
}
.prose-p strong { color: var(--text); }
.prose-p em { color: var(--text); font-style: italic; }
.prose-p a { color: var(--teal); text-decoration: none; border-bottom: 1px solid var(--teal-dim); transition: border-color 0.3s; }
.prose-p a:hover { border-color: var(--teal); }

/* Highlighted callout box */
.callout-box {
  background: rgba(42,212,212,0.04);
  border: 1px solid rgba(42,212,212,0.15);
  border-left: 3px solid var(--teal);
  padding: 1.8rem 2rem;
  margin: 2.5rem 0;
  border-radius: 0 2px 2px 0;
}
.callout-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--teal);
  line-height: 1.75;
  text-shadow: 0 0 15px rgba(42,212,212,0.2);
}

.callout-box.mag {
  background: rgba(255,45,155,0.04);
  border-color: rgba(255,45,155,0.15);
  border-left-color: var(--magenta-bright);
}
.callout-box.mag p { color: var(--magenta-bright); text-shadow: 0 0 15px rgba(255,45,155,0.2); }

/* Sub-heading within prose */
.prose-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(42,212,212,0.1);
}

/* Drug cards grid */
.drug-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin: 2.5rem 0;
}

.drug-card {
  background: rgba(42,212,212,0.02);
  border: 1px solid rgba(200,228,238,0.06);
  padding: 1.8rem;
  border-radius: 2px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.drug-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--teal), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}
.drug-card:hover { border-color: rgba(42,212,212,0.18); transform: translateY(-3px); }
.drug-card:hover::after { transform: scaleX(1); }

.drug-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.drug-body { font-size: 0.82rem; line-height: 1.85; color: var(--text-dim); }

/* Research institution badges */
.institution-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}
.institution-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-dim);
  border: 1px solid rgba(42,212,212,0.2);
  padding: 0.5rem 1rem;
  border-radius: 1px;
}

/* ═══════════════════════════════
   IMAGE BREAK
═══════════════════════════════ */
.image-break {
  position: relative;
  z-index: 1;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-break-bg {
  position: absolute;
  inset: 0;
  background: url('images/ForStyle.png') center center / cover no-repeat;
  filter: brightness(0.45) saturate(1.15);
  transform: scale(1.04);
  transition: transform 10s ease;
}
.image-break:hover .image-break-bg { transform: scale(1.09); }
.image-break-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--bg2) 0%, transparent 20%, transparent 80%, var(--bg) 100%),
    radial-gradient(ellipse at center, transparent 25%, rgba(4,7,15,0.5) 100%);
}
.image-break-text {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}
.image-break-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  text-shadow: 0 0 40px rgba(42,212,212,0.35), 0 2px 20px rgba(0,0,0,0.9);
  max-width: 720px;
  line-height: 1.6;
}
.image-break-text p em { color: var(--teal); }

/* ═══════════════════════════════
   EXPLORE CARDS
═══════════════════════════════ */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.explore-card {
  display: block;
  text-decoration: none;
  background: rgba(42,212,212,0.018);
  border: 1px solid rgba(200,228,238,0.06);
  padding: 2.5rem;
  border-radius: 2px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.explore-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--teal), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}
.explore-card:hover { border-color: rgba(42,212,212,0.2); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(42,212,212,0.06); }
.explore-card:hover::after { transform: scaleX(1); }
.explore-card.mag::after { background: linear-gradient(to right, transparent, var(--magenta-bright), transparent); }
.explore-card.mag:hover { border-color: rgba(255,45,155,0.2); box-shadow: 0 8px 40px rgba(200,0,110,0.06); }

.card-icon { font-size: 1.8rem; margin-bottom: 1.2rem; display: block; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--white); margin-bottom: 0.7rem; }
.card-body { font-size: 0.85rem; line-height: 1.85; color: var(--text-dim); margin-bottom: 1.5rem; }
.card-link { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-dim); transition: color 0.3s; }
.explore-card:hover .card-link { color: var(--teal); }
.explore-card.mag .card-link { color: rgba(200,0,110,0.5); }
.explore-card.mag:hover .card-link { color: var(--magenta-bright); }

/* ═══════════════════════════════
   PULL QUOTE
═══════════════════════════════ */
.pull-quote-wrap {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(42,212,212,0.025), transparent);
}
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto 1.8rem;
  line-height: 1.55;
}
.pull-quote em { color: var(--teal); }
.pull-attr { font-family: 'DM Mono', monospace; font-size: 0.63rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--teal-dim); }

/* ═══════════════════════════════
   GUESTBOOK / TRIP REPORTS
═══════════════════════════════ */
.trip-form-wrap {
  background: rgba(42,212,212,0.02);
  border: 1px solid rgba(42,212,212,0.1);
  border-radius: 2px;
  padding: 3rem;
  max-width: 720px;
  margin: 0 auto 5rem;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-note { font-size: 0.82rem; color: var(--text-dim); font-style: italic; margin-bottom: 2rem; line-height: 1.7; }

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dim);
  margin-bottom: 0.6rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(4,7,15,0.6);
  border: 1px solid rgba(42,212,212,0.15);
  color: var(--text);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(42,212,212,0.08);
}
.form-textarea { min-height: 180px; resize: vertical; line-height: 1.8; }
.form-select option { background: var(--bg2); }

.form-submit {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal);
  background: var(--teal-glow);
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: all 0.4s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: rgba(42,212,212,0.22); color: var(--white); box-shadow: 0 0 24px rgba(42,212,212,0.25); }

/* Trip report cards */
.reports-grid { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }

.report-card {
  background: rgba(42,212,212,0.018);
  border: 1px solid rgba(200,228,238,0.06);
  border-radius: 2px;
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.4s;
}
.report-card:hover { border-color: rgba(42,212,212,0.18); }
.report-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--teal);
  opacity: 0.07;
  position: absolute;
  top: 0.5rem; left: 1rem;
  line-height: 1;
}

.report-substance {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-dim);
  margin-bottom: 0.8rem;
}
.report-text { font-size: 0.95rem; line-height: 1.95; color: rgba(200,228,238,0.75); margin-bottom: 1.5rem; }
.report-author { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.15em; color: rgba(90,127,144,0.5); }

/* ═══════════════════════════════
   MODAL
═══════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,7,15,0.9);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: modalFadeIn 0.6s 0.8s both;
}
.modal-overlay.hidden { display: none; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: var(--bg2);
  border: 1px solid rgba(42,212,212,0.25);
  max-width: 480px;
  width: 100%;
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  box-shadow: 0 0 80px rgba(42,212,212,0.08), 0 0 120px rgba(0,0,0,0.8);
  animation: modalSlideUp 0.6s 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes modalSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }

.modal-icon { font-size: 2.5rem; margin-bottom: 1.2rem; display: block; }
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--teal); margin-bottom: 1.2rem; text-shadow: 0 0 20px rgba(42,212,212,0.4); }
.modal-body { font-size: 0.88rem; line-height: 1.9; color: var(--text-dim); font-style: italic; margin-bottom: 2rem; }
.modal-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.modal-btn-yes { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--teal); border: 1px solid var(--teal); background: var(--teal-glow); padding: 0.85rem 1.8rem; cursor: pointer; transition: all 0.3s; }
.modal-btn-yes:hover { background: rgba(42,212,212,0.2); box-shadow: 0 0 20px rgba(42,212,212,0.2); }
.modal-btn-no { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-dim); border: 1px solid rgba(200,228,238,0.1); background: none; padding: 0.85rem 1.8rem; cursor: pointer; transition: all 0.3s; }
.modal-btn-no:hover { border-color: var(--text-dim); color: var(--text); }
.modal-close { position: absolute; top: 1rem; right: 1.2rem; font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--text-dim); background: none; border: none; cursor: pointer; transition: color 0.3s; }
.modal-close:hover { color: var(--teal); }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(42,212,212,0.07);
}
.footer-logo img { height: 58px; width: auto; margin: 0 auto 2rem; display: block; filter: drop-shadow(0 0 6px rgba(42,212,212,0.25)) brightness(0.82); }
.footer-nav { display: flex; justify-content: center; gap: 2rem; list-style: none; flex-wrap: wrap; margin-bottom: 2.5rem; }
.footer-nav a { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); text-decoration: none; transition: color 0.3s; }
.footer-nav a:hover { color: var(--teal); }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.1em; color: rgba(90,127,144,0.3); }

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s, transform 0.8s; }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0.5rem 1.5rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(4,7,15,0.98);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.3em; }
  .hamburger { display: flex; }
  .nav-logo img { height: 52px; }
  .story-card { padding: 2rem 1.5rem; }
  .image-break { height: 280px; }
  .trip-form-wrap { padding: 2rem 1.5rem; }
  .prose-chapter { margin-bottom: 3rem; padding-bottom: 2.5rem; }
}
