/* ---------- Tokens ---------- */
:root {
  --bg: #15100b;
  --surface: #241b12;
  --surface-2: #2e2113;
  --amber: #ff9a2e;
  --amber-dim: #b96f1f;
  --ember: #ff5a36;
  --text: #f3e6d3;
  --muted: #b39c7d;
  --line: #3a2c1a;

  --font-display: 'Jost', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'Press Start 2P', monospace;

  --max: 980px;
  --radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber); color: var(--bg); }

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

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

/* subtle scanline / grain overlay */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 154, 46, 0.025) 0px,
    rgba(255, 154, 46, 0.025) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--amber);
  text-transform: uppercase;
  margin: 0 0 20px;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(21, 16, 11, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}

.site-nav { display: flex; gap: 28px; }

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--amber); }

@media (max-width: 560px) {
  .site-header { flex-wrap: wrap; gap: 12px; justify-content: center; text-align: center; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 12px; }
}

/* ---------- Layout ---------- */
main > section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px clamp(20px, 5vw, 64px);
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: left;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(255, 154, 46, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.12;
  margin: 0 0 20px;
}

.hero-sub {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 36px;
}

.cta {
  display: inline-block;
  background: var(--amber);
  color: var(--bg);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  font-size: 15px;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: 0 0 0 rgba(255, 154, 46, 0);
  transition: box-shadow 0.25s ease, transform 0.15s ease, background 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
  box-shadow: 0 0 28px rgba(255, 154, 46, 0.55);
  background: #ffab52;
}

.cta:active { transform: translateY(1px); }

/* ---------- Reels ---------- */
.reel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.reel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.reel-card:has(.reel-play[aria-pressed="true"]) {
  border-color: var(--amber-dim);
  box-shadow: 0 0 32px rgba(255, 154, 46, 0.18);
}

.reel-play {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  background: transparent;
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.reel-play svg { width: 22px; height: 22px; fill: currentColor; }

.reel-play:hover,
.reel-play:focus-visible {
  box-shadow: 0 0 18px rgba(255, 154, 46, 0.6);
}

.reel-play[aria-pressed="true"] {
  background: var(--amber);
  color: var(--bg);
}

.reel-info { flex: 1 1 auto; min-width: 0; }

.reel-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 4px;
}

.reel-tags {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 14px;
}

.reel-progress {
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
}

.reel-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--amber);
}

.reel-time {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}

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

.about-photo img {
  border-radius: 8px;
  border: 1px solid var(--line);
}

.about-text p {
  margin: 0 0 16px;
  color: var(--text);
}

/* ---------- Range ---------- */
.range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 700px) {
  .range-grid { grid-template-columns: 1fr; gap: 28px; }
}

.range-group h4 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--amber);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.range-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.range-group li {
  padding: 6px 0;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Booth ---------- */
.booth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.booth-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.booth-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.booth-grid figure:hover img {
  filter: grayscale(0);
  transform: scale(1.02);
}

/* ---------- Links ---------- */
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.link-card svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--amber);
  stroke-width: 2;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: var(--amber-dim);
  box-shadow: 0 0 20px rgba(255, 154, 46, 0.18);
}

/* ---------- Contact ---------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.hp-field { position: absolute; left: -9999px; }

.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
  font-size: 13px;
  color: var(--muted);
}

.field input,
.field textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  resize: vertical;
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255, 154, 46, 0.2);
}

.contact-form .cta { align-self: flex-start; }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 40px 20px 60px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--amber); }

/* ---------- Focus visibility (global) ---------- */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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