/* ===== DESIGN TOKENS ===== */
:root {
  --parchment: #EDE4D3;
  --parchment-deep: #DDD0BA;
  --ink: #1C1610;
  --barn: #2A1F14;
  --amber: #C4956A;
  --ember: #A0704A;
  --ash: #4A3F33;
  --smoke: #8A7E6E;
  --night: #12100D;
  --cream: #F5EFE4;
  /* Sunset palette — pulled from hero image */
  --sunset-coral: #C47272;
  --sunset-rose: #9E5A6A;
  --sunset-dusk: #6B4455;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-family: 'Courier Prime', 'Courier New', Courier, monospace;
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: clamp(17px, 1.15vw, 19px);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--barn);
  text-decoration: none;
}

a:hover {
  color: var(--amber);
}

ul {
  list-style: none;
}

::selection {
  background: var(--sunset-coral);
  color: var(--cream);
}

/* ===== TYPOGRAPHY ===== */
h2, h3, .nav-logo {
  font-family: 'Special Elite', 'Courier New', monospace;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

/* ===== SECTIONS ===== */
.section-light {
  background: var(--parchment);
  padding: clamp(96px, 12vw, 160px) 0;
}

.section-cream {
  background: var(--parchment-deep);
  padding: clamp(96px, 12vw, 160px) 0;
}

.section-dark {
  background: var(--night);
  color: var(--parchment);
  padding: clamp(96px, 12vw, 160px) 0;
}

.section-title {
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  margin-bottom: 40px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--smoke);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.section-title-light {
  color: var(--smoke);
}

.section-title-light::after {
  background: var(--amber);
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: var(--parchment);
  border-bottom-color: var(--parchment-deep);
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 18px clamp(24px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.7;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-family: 'Courier Prime', monospace;
  font-size: 0.72rem;
  color: var(--ash);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--barn);
}

/* Nav on hero - transparent bg, light text */
.nav-hero {
  background: transparent !important;
  border-bottom-color: transparent !important;
}

.nav-hero .nav-logo {
  color: var(--parchment);
  opacity: 0.9;
}

.nav-hero .nav-links a {
  color: rgba(237, 228, 211, 0.7);
}

.nav-hero .nav-links a:hover,
.nav-hero .nav-links a.active {
  color: var(--parchment);
}

.nav-hero .hamburger span {
  background: var(--parchment);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--parchment);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay ul {
  text-align: left;
}

.mobile-overlay li {
  margin: 12px 0;
}

.mobile-overlay a {
  font-family: 'Special Elite', monospace;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.3;
  transition: color 0.2s;
}

.mobile-overlay a:hover {
  color: var(--amber);
}

/* ===== HERO ===== */
.section-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--night);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--night);
}


.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--sunset-coral);
  opacity: 0.7;
  font-family: 'Courier Prime', monospace;
  z-index: 2;
  /* animation set in OVERDRIVE section */
}

@keyframes drift {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ===== INTRO ===== */
.section-intro {
  background: var(--parchment);
  padding: clamp(100px, 14vw, 180px) 0 clamp(80px, 10vw, 120px);
}

.intro-lead {
  font-family: 'Special Elite', monospace;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: clamp(64px, 8vw, 100px);
  max-width: 620px;
}

.intro-lead::after {
  content: '\2588';
  color: var(--sunset-coral);
  animation: blink 1.1s step-end infinite;
  margin-left: 2px;
  font-weight: normal;
}

.intro-body {
  columns: 2;
  column-gap: 40px;
}

.intro-body p {
  font-size: clamp(0.88rem, 1.1vw, 0.95rem);
  margin-bottom: 20px;
  color: var(--ash);
  line-height: 1.85;
  break-inside: avoid;
}

.intro-body .cta-link {
  display: inline-block;
  margin-top: 12px;
}

/* ===== PHOTO BREAKS ===== */
.photo-break {
  width: 100%;
  height: clamp(360px, 55vw, 650px);
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 8s ease-out;
}

.photo-break:hover img {
  transform: scale(1.03);
}

.photo-break-short {
  height: clamp(240px, 35vw, 440px);
}

/* ===== PLAYER PASSWORD GATE ===== */
.player-gate {
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 0;
  position: relative;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.player-gate.unlocking {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

.player-gate.unlocked {
  display: none;
}

.gate-label {
  font-family: 'Special Elite', monospace;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--smoke);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.gate-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.gate-input {
  font-family: 'Courier Prime', monospace;
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid var(--smoke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--parchment);
  border-radius: 0;
  outline: none;
  flex: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.gate-input:focus {
  border-color: var(--amber);
}

.gate-input::placeholder {
  color: var(--smoke);
  opacity: 0.6;
}

/* Success flash on correct password */
.gate-input.success {
  border-color: var(--amber);
  box-shadow: 0 0 20px rgba(196, 149, 106, 0.4), 0 0 60px rgba(196, 149, 106, 0.15);
}

.gate-btn {
  font-family: 'Special Elite', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 24px;
  border: 1px solid var(--amber);
  background: transparent;
  color: var(--amber);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.gate-btn:hover {
  background: var(--amber);
  color: var(--night);
}

.gate-btn.success {
  background: var(--amber);
  color: var(--night);
  box-shadow: 0 0 24px rgba(196, 149, 106, 0.5);
}

.gate-error {
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem;
  color: var(--sunset-coral);
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gate-error.visible {
  opacity: 1;
}

/* Wrong password shake */
@keyframes gate-shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-8px); }
  30% { transform: translateX(6px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(2px); }
}

.gate-form.shake {
  animation: gate-shake 0.5s ease-out;
}

/* Player hidden until unlocked */
.audio-player.locked {
  display: none;
}

/* Player entrance after unlock */
.audio-player.entering .player-now-playing {
  animation: player-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.audio-player.entering .player-controls {
  animation: player-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.audio-player.entering .player-progress-wrap,
.audio-player.entering .player-time {
  animation: player-fade-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.audio-player.entering .track-list li {
  animation: track-slide-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.audio-player.entering .track-list li:nth-child(1) { animation-delay: 0.5s; }
.audio-player.entering .track-list li:nth-child(2) { animation-delay: 0.56s; }
.audio-player.entering .track-list li:nth-child(3) { animation-delay: 0.62s; }
.audio-player.entering .track-list li:nth-child(4) { animation-delay: 0.68s; }
.audio-player.entering .track-list li:nth-child(5) { animation-delay: 0.74s; }
.audio-player.entering .track-list li:nth-child(6) { animation-delay: 0.80s; }
.audio-player.entering .track-list li:nth-child(7) { animation-delay: 0.86s; }
.audio-player.entering .track-list li:nth-child(8) { animation-delay: 0.92s; }
.audio-player.entering .track-list li:nth-child(9) { animation-delay: 0.98s; }
.audio-player.entering .track-list li:nth-child(10) { animation-delay: 1.04s; }
.audio-player.entering .track-list li:nth-child(11) { animation-delay: 1.10s; }

@keyframes player-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes track-slide-in {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Warm glow pulse behind player on unlock */
@keyframes unlock-glow {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
}

.player-unlock-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: unlock-glow 1.4s ease-out forwards;
}

/* ===== AUDIO PLAYER ===== */
#listen {
  position: relative;
  overflow: hidden;
}

#listen .container {
  position: relative;
  z-index: 2;
}

#listen .section-title {
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  letter-spacing: 0.15em;
}

.smoke-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 4s ease;
}

.smoke-canvas.active {
  opacity: 0.5;
}

.audio-player {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.player-now-playing {
  font-family: 'Special Elite', monospace;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  text-align: center;
  margin-bottom: 32px;
  min-height: 1.5em;
  color: var(--parchment);
  opacity: 0.9;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.player-btn {
  background: none;
  border: 1px solid rgba(237, 228, 211, 0.2);
  color: var(--parchment);
  font-size: 1.1rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.player-btn:hover {
  background: rgba(196, 114, 114, 0.12);
  border-color: var(--sunset-coral);
  color: var(--sunset-coral);
}

.player-btn-main {
  width: 58px;
  height: 58px;
  font-size: 1.3rem;
  border-color: rgba(237, 228, 211, 0.4);
  position: relative;
}

/* Pulse ring behind play button when music is playing */
.player-btn-main.is-playing::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid var(--sunset-coral);
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

.player-progress-wrap {
  width: 100%;
  height: 2px;
  background: rgba(237, 228, 211, 0.12);
  cursor: pointer;
  margin-bottom: 8px;
  overflow: hidden;
}

.player-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--sunset-coral));
  transition: width 0.1s linear;
}

.player-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--smoke);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.track-list li {
  padding: 14px 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(237, 228, 211, 0.06);
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.track-list li:hover {
  padding-left: 8px;
  color: var(--amber);
}

.track-list li.active {
  color: var(--amber);
  padding-left: 18px;
  position: relative;
}

.track-list li.active::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sunset-coral);
  transform: translateY(-50%);
  animation: blink 1.4s ease-in-out infinite;
}

.track-list li.active .track-artist {
  opacity: 1;
}

.track-artist {
  font-size: 0.88rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.track-title {
  font-size: 0.88rem;
  font-style: italic;
}

/* ===== VIDEO ===== */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--smoke);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ===== ABOUT ===== */
.about-lede {
  font-family: 'Special Elite', monospace;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 520px;
}

.about-feature {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
  align-items: start;
}

.about-feature-img {
  position: sticky;
  top: 80px;
  align-self: start;
  overflow: hidden;
}

.about-feature-img img {
  width: 100%;
  height: auto;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.about-feature-img:hover img {
  transform: rotate(-1.5deg) scale(1.02);
  filter: saturate(1) contrast(1) sepia(0.08);
}

.about-feature-text {
  padding-left: clamp(32px, 4vw, 56px);
}

.about-feature-text p {
  margin-bottom: 24px;
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  color: var(--ash);
  line-height: 1.85;
}

.about-feature-text p:first-of-type {
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  color: var(--ink);
}

.about-quote {
  font-family: 'Special Elite', monospace;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--sunset-coral);
  line-height: 1.5;
  margin: clamp(28px, 4vw, 48px) 0;
  padding-left: 24px;
  border-left: 2px solid var(--sunset-rose);
  font-style: normal;
}

/* ===== RATES ===== */
.rates-tiers {
  margin-bottom: 56px;
}

.rate-tier {
  padding: clamp(36px, 5vw, 56px) 0;
  border-bottom: 1px solid rgba(42, 31, 20, 0.1);
  transition: padding-left 0.4s ease;
}

.rate-tier:hover {
  padding-left: 12px;
}

.rate-tier:first-child {
  padding-top: 0;
}

.rate-tier:last-child {
  border-bottom: none;
}

.rate-header {
  margin-bottom: 16px;
}

.rate-price {
  font-family: 'Special Elite', monospace;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--ink);
  line-height: 1;
}

.rate-per {
  font-family: 'Courier Prime', monospace;
  font-size: 0.78rem;
  color: var(--smoke);
  letter-spacing: 0.05em;
}

.rate-adds {
  font-size: 0.82rem;
  color: var(--smoke);
  font-style: italic;
  margin-bottom: 8px;
}

.rate-details {
  list-style: none;
}

.rate-details li {
  font-size: 0.92rem;
  padding: 4px 0;
  color: var(--ash);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}

.rate-details li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--amber);
}

.rate-cta {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 10px 24px;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.rate-cta:hover {
  background: var(--amber);
  color: var(--cream);
}

.rates-extras {
  max-width: 640px;
  margin-bottom: 48px;
}

.rates-extras p {
  font-size: 0.92rem;
  margin-bottom: 14px;
  color: var(--ash);
}

.rates-fine-print {
  font-size: 0.78rem !important;
  color: var(--smoke) !important;
  margin-top: 20px !important;
  line-height: 1.8;
}

.rates-remember {
  padding-top: 48px;
  border-top: 2px solid var(--sunset-rose);
}

.rates-remember h3 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  margin-bottom: 32px;
  color: var(--ink);
}

.rates-remember p {
  font-size: 0.92rem;
  margin-bottom: 18px;
  color: var(--ash);
}

.email-standout {
  margin-top: clamp(24px, 3vw, 40px);
  margin-bottom: 8px;
  column-span: all;
}

.email-standout a {
  font-family: 'Special Elite', monospace;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}

.email-standout a:hover {
  color: var(--sunset-coral);
  border-color: var(--sunset-coral);
}

.cta-link {
  font-family: 'Courier Prime', monospace;
  color: var(--amber);
  border-bottom: none;
  padding-bottom: 2px;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  background-image: linear-gradient(var(--amber), var(--amber));
  background-size: 0% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease, color 0.3s;
}

.cta-link:hover {
  text-decoration: none;
  background-size: 100% 1px;
  color: var(--amber);
}

/* ===== GEAR ===== */
#gear {
  padding-bottom: clamp(72px, 9vw, 120px);
}

#gear .container {
  position: relative;
  z-index: 2;
}

.gear-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

.gear-photo {
  position: sticky;
  top: 80px;
  align-self: start;
  overflow: hidden;
}

.gear-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.1);
  transition: transform 10s ease-out;
}

.gear-photo:hover img {
  transform: scale(1.04);
}

.gear-lists {
  padding-left: clamp(24px, 3vw, 48px);
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

.gear-category h3 {
  font-size: 0.72rem;
  margin-bottom: 14px;
  color: var(--amber);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gear-category ul {
  list-style: none;
}

.gear-category li {
  font-size: 0.82rem;
  padding: 3px 0;
  color: rgba(237, 228, 211, 0.65);
}

.gear-category a {
  color: rgba(237, 228, 211, 0.65);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.gear-category a:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

/* ===== GALLERY (Auto-scroll) ===== */
#gallery {
  padding-bottom: clamp(48px, 6vw, 80px);
}

.gallery-scroller {
  overflow: hidden;
  padding: 16px 0 0;
}

.scroll-row {
  overflow: hidden;
  mask: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
}

.scroll-track {
  display: flex;
  gap: 10px;
  width: max-content;
  will-change: transform;
}

.scroll-row[data-direction="left"] .scroll-track {
  animation: scroll-left var(--speed, 30s) linear infinite;
}

@keyframes scroll-left {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.scroll-row:hover .scroll-track {
  animation-play-state: paused;
}

.scroll-item {
  flex-shrink: 0;
  width: 360px;
  height: 256px;
  overflow: hidden;
  cursor: pointer;
}

.scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.scroll-item:hover img {
  filter: saturate(1.05) contrast(1) brightness(1.08) sepia(0.06);
  transform: scale(1.03);
}

/* ===== CONTACT ===== */
.contact-remote {
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  padding: 0 clamp(24px, 5vw, 48px);
}

.contact-remote p {
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  color: var(--ash);
  margin-bottom: 16px;
  line-height: 1.8;
}

.contact-remote p:last-child {
  font-style: italic;
  color: var(--smoke);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  padding-top: 8px;
}

.contact-address {
  font-family: 'Special Elite', monospace;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 32px;
  line-height: 1.45;
  color: var(--ink);
}

.contact-note {
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--smoke);
  letter-spacing: 0.02em;
}

.contact-map {
  height: clamp(400px, 50vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(42, 31, 20, 0.1);
  margin-top: 16px;
}

/* ===== CODA ===== */
.section-coda {
  background: var(--night);
  color: var(--parchment);
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
}

.section-coda p {
  font-family: 'Special Elite', monospace;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.55;
  margin-bottom: clamp(36px, 5vw, 56px);
  color: var(--smoke);
  transition: color 0.5s ease;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.section-coda p:hover {
  color: var(--sunset-coral);
}

.section-coda p:last-child {
  margin-bottom: 0;
  color: var(--amber);
  opacity: 1;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--night);
  color: var(--smoke);
  text-align: center;
  padding: 24px clamp(24px, 5vw, 48px);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(196, 114, 114, 0.12);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 16, 13, 0.95);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.4s ease;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--parchment);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s;
  padding: 20px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  top: 16px;
  right: 24px;
  font-size: 1.5rem;
}

.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== OVERDRIVE: SCROLL REVEALS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger .reveal { transition-delay: 0s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger .reveal:nth-child(7) { transition-delay: 0.48s; }

/* Photo breaks: parallax-style slow scale on scroll */
.photo-break img {
  transform: scale(1.08);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-break.visible img {
  transform: scale(1);
}

/* Rate price count-up glow */
.rate-price.counted {
  animation: price-land 0.4s ease-out;
}

@keyframes price-land {
  0% { opacity: 0.6; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== OVERDRIVE: SCROLL INDICATOR ===== */
.scroll-indicator {
  animation: drift 3s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-indicator { animation: none; opacity: 0.6; }
  .photo-break img { transform: none; transition: none; }
  .photo-break.visible img { transform: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .intro-body {
    columns: 1;
  }

  .about-feature {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 clamp(20px, 5vw, 48px);
  }

  .about-feature-img {
    position: static;
  }

  .about-feature-text {
    padding-left: 0;
  }

  .gear-split {
    grid-template-columns: 1fr;
  }

  .gear-photo {
    position: static;
    margin-bottom: 32px;
  }

  .gear-lists {
    padding-left: 0;
  }

  .gear-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .contact-map {
    height: 320px;
  }

  .scroll-item {
    width: 280px;
    height: 200px;
  }

  .photo-break {
    height: clamp(250px, 45vw, 400px);
  }

  .photo-break-short {
    height: clamp(180px, 32vw, 300px);
  }
}

@media (max-width: 480px) {
  .gear-grid {
    grid-template-columns: 1fr;
  }

  .scroll-item {
    width: 220px;
    height: 160px;
  }

  .hero-logo {
    max-width: 220px;
  }
}
