:root {
  --bg: #0b0b0b;
  --surface: #111111;
  --text: #f3f2ed;
  --muted: #9b9b98;
  --line: #2a2a2a;
  --acid: #ccff00;
  --header-h: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  height: var(--header-h);
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(12px);
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.08em;
  background: rgba(255,255,255,.04);
}
.brand-mark.small { width: 30px; height: 30px; font-size: 11px; }
.brand-name { font-size: 16px; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 42px); }
.site-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #b7b7b4;
  transition: color .2s ease, opacity .2s ease;
}
.site-nav a:hover { color: var(--text); }
.site-nav .nav-buds {
  color: var(--text);
  border-bottom: 1px solid var(--acid);
  padding-bottom: 5px;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #080808;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.22) 15%, rgba(0,0,0,.32) 50%, rgba(0,0,0,.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 80px) 0 clamp(56px, 9vw, 110px);
}
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--acid);
}
.hero h1 {
  margin: 0;
  font-size: clamp(64px, 12vw, 176px);
  line-height: .86;
  letter-spacing: -.065em;
  font-weight: 900;
}
.tagline {
  margin: 24px 0 0;
  max-width: 680px;
  font-size: clamp(22px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 4vw, 64px);
  bottom: 36px;
  font-size: 28px;
  color: var(--acid);
}

.media-section, .about-section, .contact-section, .site-footer {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}
.media-section { padding: clamp(84px, 12vw, 150px) 0; }
.media-list { border-top: 1px solid var(--line); }
.media-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .2s ease, color .2s ease;
}
.media-item:hover { padding-left: 10px; color: var(--acid); }
.media-title { font-size: clamp(24px, 3.4vw, 48px); letter-spacing: -.035em; }
.media-source { color: var(--muted); font-size: 13px; letter-spacing: .06em; }

.about-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding: clamp(70px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}
.about-copy h2 {
  margin: 0 0 34px;
  font-size: clamp(44px, 6vw, 84px);
  line-height: .96;
  letter-spacing: -.05em;
}
.about-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.48;
  color: #c3c3c0;
}
.about-image-wrap { margin: 0; overflow: hidden; aspect-ratio: 4 / 5; background: #151515; }
.about-image { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; display: block; filter: saturate(.85) contrast(1.03); }

.contact-section {
  padding: clamp(90px, 12vw, 160px) 0 80px;
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: end;
  gap: 50px;
}
.contact-label { display: block; color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.contact-email {
  display: inline-block;
  font-size: clamp(30px, 5vw, 72px);
  letter-spacing: -.05em;
  border-bottom: 1px solid rgba(255,255,255,.22);
  word-break: break-word;
}
.contact-email:hover { color: var(--acid); }
.social-links { display: flex; flex-direction: column; gap: 14px; font-size: 18px; }
.social-links a:hover { color: var(--acid); }
.closing-line { margin: 90px 0 0; color: var(--muted); font-size: 14px; }

.site-footer {
  min-height: 110px;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.footer-brand { color: var(--text); font-size: 12px; }

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .site-header { padding-inline: 18px; }
  .brand-name { font-size: 14px; }
  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 23px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    min-height: calc(100svh - var(--header-h));
    padding: 34px 20px 50px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    background: rgba(10,10,10,.98);
    border-top: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 19px; }
  .site-nav .nav-buds { font-size: 22px; }
  .hero-content { width: min(100% - 36px, 1200px); }
  .hero h1 { font-size: clamp(58px, 18vw, 110px); }
  .hero-video { object-position: 58% center; }
  .media-item { grid-template-columns: 1fr; gap: 10px; }
  .about-section { grid-template-columns: 1fr; }
  .about-image-wrap { aspect-ratio: 16 / 10; order: -1; }
  .about-image { object-position: center 42%; }
  .contact-grid { grid-template-columns: 1fr; align-items: start; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video { display: none; }
  .hero { background: #0b0b0b url('assets/hero-poster.jpg') center/cover no-repeat; }
  * { transition: none !important; }
}
