*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1A2744;
  --deep: #0F1A2E;
  --cream: #F5F0EA;
  --warm-cream: #E8DCC8;
  --retro-red: #D4532B;
  --retro-orange: #E8883A;
  --icy-blue: #3B7A9E;
  --teal: #2A6B7C;
  --gold: #C9A84C;
  --pine: #2C5F3A;
  --snow: #FFFFFF;
  --muted: #8B9BB5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Oswald', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

/* ===== GRAIN OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes snowfall {
  0% { transform: translateY(-10vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(110vh) translateX(30px); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fade-in-up { animation: fadeInUp 0.8s ease-out both; }
.fade-in { animation: fadeIn 1s ease-out both; }
.slide-left { animation: slideInLeft 0.8s ease-out both; }

/* ===== TOP BAR / TICKER ===== */
.top-bar {
  background: var(--deep);
  color: var(--cream);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--retro-red);
}
.ticker-wrap {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  white-space: nowrap;
  padding: 0 40px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ticker-item .dot {
  color: var(--retro-red);
  margin-right: 8px;
}

/* ===== NAV ===== */
nav {
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--retro-red);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 3px;
  line-height: 1;
}
.nav-logo-sub {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--retro-red);
  color: var(--cream);
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 101;
}
.mobile-menu-toggle:hover {
  background: var(--retro-red);
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 20px 18px;
  display: block;
  transition: all 0.3s;
  font-weight: 400;
  position: relative;
}
.nav-links a:hover {
  background: rgba(212, 83, 43, 0.15);
  color: var(--retro-red);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--retro-red);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.nav-links a:hover::after { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.snowflake {
  position: absolute;
  top: 0;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: snowfall linear infinite backwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-out both;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(212, 83, 43, 0.5);
  color: var(--retro-red);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 24px;
  margin-bottom: 30px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 12vw, 160px);
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: 6px;
}
.hero-title span {
  display: block;
  color: var(--retro-red);
  font-size: 0.7em;
}
.hero-tagline {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 22px);
  margin-top: 24px;
  letter-spacing: 1px;
}
.hero-elevation {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat {
  text-align: center;
}
.hero-stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--cream);
  letter-spacing: 2px;
}
.hero-stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-stat-value .fa-infinity {
  font-size: 52px;
  color: var(--retro-red);
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
}

/* ===== CONDITIONS REPORT ===== */
.conditions {
  background: var(--deep);
  padding: 20px 0;
  border-top: 2px solid rgba(255,255,255,0.05);
  border-bottom: 2px solid rgba(255,255,255,0.05);
}
.conditions-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.conditions-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--retro-red);
}
.condition-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.condition-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s infinite;
}
.condition-dot.yellow { background: var(--gold); }
.condition-text {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--cream);
  letter-spacing: 1px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--retro-red);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 20px;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--retro-red);
  margin-bottom: 40px;
}
.section-body {
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(26, 39, 68, 0.75);
  max-width: 640px;
  font-weight: 300;
}
.section-body a {
  color: var(--retro-red);
  text-decoration: underline;
}
.section-body a:hover {
  opacity: 0.8;
}
.section-body a:visited {
  color: var(--retro-red);
}

/* ===== WELCOME CONTENT LAYOUT ===== */
.welcome-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.welcome-text {
  flex: 1;
}

/* ===== WEBCAM FEED CCTV EFFECT ===== */
.webcam-feed {
  position: relative;
  display: inline-block;
  border: 6px solid #1a2a3a;
  background: #000;
  box-shadow:
    inset 0 0 20px rgba(0,0,0,0.5),
    0 8px 24px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.webcam-feed img {
  display: block;
  width: 100%;
  max-width: 450px;
  filter: grayscale(40%) contrast(1.15) brightness(0.95);
  position: relative;
  z-index: 1;
}

/* Grain/noise overlay */
.webcam-feed::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
  z-index: 3;
  animation: grain 0.3s steps(2) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -2%); }
  20% { transform: translate(2%, 0%); }
  30% { transform: translate(-1%, 2%); }
  40% { transform: translate(0%, -1%); }
  50% { transform: translate(1%, 1%); }
  60% { transform: translate(-2%, 0%); }
  70% { transform: translate(0%, 2%); }
  80% { transform: translate(2%, -1%); }
  90% { transform: translate(-1%, 0%); }
}

/* Scanlines overlay */
.webcam-feed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.15) 0px,
    rgba(0,0,0,0.15) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 2;
}

/* Vignette effect - using box-shadow on image for subtle darkening */
.webcam-feed img {
  box-shadow: inset 0 0 80px rgba(0,0,0,0.4);
}

/* LIVE indicator and CAM label */
.webcam-label {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 16px;
  z-index: 4;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.webcam-status {
  background: rgba(220, 38, 38, 0.85);
  padding: 4px 10px;
  font-weight: 500;
  animation: pulse 2s ease-in-out infinite;
}

.webcam-status::before {
  content: '●';
  margin-right: 6px;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 49%, 100% { opacity: 1; }
  50%, 99% { opacity: 0.3; }
}

.webcam-cam {
  background: rgba(0,0,0,0.7);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Viewer count */
.webcam-viewers {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  font-family: monospace;
  font-size: 11px;
  z-index: 4;
  display: flex;
  align-items: center;
}

.viewer-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00ff00;
  border-radius: 50%;
  margin-right: 4px;
}

/* ===== TRAIL MAP / SCHEDULE ===== */
.trail-map {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.trail-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59,122,158,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,83,43,0.06) 0%, transparent 60%);
}
.trail-map .section { position: relative; z-index: 1; }
.trail-map .section-title { color: var(--cream); }
.trail-map .section-body { color: var(--muted); }

.day-section {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--retro-red);
  letter-spacing: 4px;
  margin-top: 60px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(212, 83, 43, 0.3);
}

.day-section:first-of-type {
  margin-top: 40px;
}

.trails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.trail-card {
  background: rgba(15, 26, 46, 0.8);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.trail-card:hover {
  border-color: rgba(212, 83, 43, 0.3);
  transform: translateY(-4px);
}
.trail-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.trail-difficulty {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trail-difficulty.green svg { fill: #4ADE80; }
.trail-difficulty.blue svg { fill: var(--icy-blue); }
.trail-difficulty.black svg { fill: var(--cream); }
.trail-difficulty.double-black svg { fill: var(--retro-red); }

.trail-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--cream);
  letter-spacing: 2px;
}
.trail-time {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--retro-red);
  letter-spacing: 2px;
  margin-top: 4px;
}
.trail-body {
  padding: 20px 28px 28px;
}
.trail-genre {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--cream);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  background: var(--retro-red);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  font-weight: 400;
  text-transform: uppercase;
}
.trail-desc {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}
.trail-crew {
  display: inline-block;
  margin-top: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(212, 83, 43, 0.15);
  border: 1px solid rgba(212, 83, 43, 0.25);
  padding: 4px 12px;
}

/* ===== LODGE / ABOUT ===== */
.lodge {
  background: var(--warm-cream);
  position: relative;
}
.lodge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--retro-red) 0%, var(--retro-orange) 50%, var(--gold) 100%);
}
.lodge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start;
}
.amenity {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
}
.amenity:last-child { border-bottom: none; }
.amenity-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.amenity-icon svg { width: 20px; height: 20px; fill: var(--retro-red); }
.amenity-icon i {
  font-size: 20px;
  color: var(--retro-red);
}
.amenity-name {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.amenity-desc {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  color: rgba(26, 39, 68, 0.6);
  font-weight: 300;
  line-height: 1.5;
}

/* ===== LIFT TICKET ===== */
.lift-ticket-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.lift-ticket-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.01) 40px,
    rgba(255,255,255,0.01) 80px
  );
}
.ticket-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ticket {
  background: var(--cream);
  padding: 50px;
  position: relative;
  transform: rotate(-1deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.ticket::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--retro-red), var(--retro-orange), var(--gold), var(--icy-blue));
}
.ticket::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 30%;
  bottom: 30%;
  width: 20px;
  background: var(--navy);
  border-radius: 10px 0 0 10px;
}
.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px dashed rgba(26, 39, 68, 0.15);
}
.ticket-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--navy);
  line-height: 1;
}
.ticket-logo span { color: var(--retro-red); }
.ticket-type {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--retro-red);
  border: 1px solid var(--retro-red);
  padding: 6px 14px;
}
.ticket-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.ticket-field-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(26, 39, 68, 0.4);
  margin-bottom: 4px;
}
.ticket-field-value {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--navy);
}
.ticket-fine-print {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: rgba(26, 39, 68, 0.35);
  letter-spacing: 1px;
  line-height: 1.6;
  border-top: 1px solid rgba(26, 39, 68, 0.08);
  padding-top: 16px;
}

/* ===== TICKET BUTTON ===== */
.ticket-button-container {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.ticket-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--retro-red);
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  text-decoration: none;
  padding: 18px 40px;
  border: 3px solid var(--retro-red);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ticket-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.ticket-button:hover::before {
  left: 100%;
}

.ticket-button:hover {
  background: var(--retro-orange);
  border-color: var(--retro-orange);
  transform: translateY(-2px);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.ticket-button:active {
  transform: translateY(0);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ticket-button-icon {
  font-size: 28px;
  line-height: 1;
}

.ticket-button-text {
  line-height: 1;
}

.ticket-button-arrow {
  font-size: 28px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.ticket-button:hover .ticket-button-arrow {
  transform: translateX(4px);
}

.ticket-button-subtext {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  margin-top: 16px;
  font-weight: 300;
}

/* ===== CREW SECTION ===== */
.crews {
  background: var(--cream);
}
.crew-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.crew-card {
  border: 1px solid rgba(26, 39, 68, 0.1);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  background: var(--cream);
}
.crew-card:hover {
  border-color: var(--retro-red);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 39, 68, 0.1);
}
.crew-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--retro-red);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.crew-card:hover::before { transform: scaleX(1); }
.crew-emblem {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crew-emblem svg { width: 28px; height: 28px; }
.crew-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0);
}
.crew-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.crew-role {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--retro-red);
  margin-bottom: 16px;
}
.crew-bio {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  color: rgba(26, 39, 68, 0.6);
  line-height: 1.6;
  font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
  background: var(--deep);
  padding: 60px 40px 30px;
  color: var(--cream);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 12px;
}
.footer-brand span { color: var(--retro-red); }
.footer-tagline {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}
.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--retro-red);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 4px 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    flex-wrap: wrap;
  }
  
  /* Show hamburger menu */
  .mobile-menu-toggle {
    display: block;
    order: 2;
  }
  
  /* Logo stays on left */
  .nav-logo {
    order: 1;
  }
  
  /* Nav links dropdown */
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    order: 3;
    padding: 0;
    margin: 0;
    background: var(--deep);
    border-top: 1px solid rgba(212, 83, 43, 0.3);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-links a {
    padding: 16px 20px;
    width: 100%;
    text-align: left;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .section { padding: 60px 20px; }
  .welcome-content { flex-direction: column; gap: 30px; }
  .lodge-grid { grid-template-columns: 1fr; }
  .crew-cards { grid-template-columns: 1fr; }
  .ticket { padding: 30px; transform: rotate(0); }
  .ticket-details { grid-template-columns: 1fr; }
  .hero-elevation { flex-direction: column; gap: 20px; }
  .trails { grid-template-columns: 1fr; }
}
