/* ── Redaction fonts (hero — same as index.html) ── */
@font-face {
  font-family: 'Redaction 10 Regular';
  src: url('https://framerusercontent.com/assets/qf6DB7WGDdEjcTvrw5e5SlRp4w.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Redaction 50 Italic';
  src: url('https://framerusercontent.com/assets/kqyAfMmZA5vP4G3u2iu7WJdY.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}

/* ── Helvetica Now Display (from R2 CDN — same as index.html) ── */
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('https://pub-d98009c8eb7448a387f7f2d0a543ab76.r2.dev/fonts/HelveticaNowDisplay-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('https://pub-d98009c8eb7448a387f7f2d0a543ab76.r2.dev/fonts/HelveticaNowDisplay-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('https://pub-d98009c8eb7448a387f7f2d0a543ab76.r2.dev/fonts/HelveticaNowDisplay-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('https://pub-d98009c8eb7448a387f7f2d0a543ab76.r2.dev/fonts/HelveticaNowDisplay-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── Design Tokens ── */
:root {
  --bg:       #000000;
  --text:     #f4f5f2;
  --mid:      #404040;
  --border:   #2b2b2b;
  --font-heading: 'Helvetica Now Display', Helvetica, Arial, sans-serif;
  --font-body:    var(--font-heading);
  --font-mono:    'Geist Mono', 'Courier New', monospace;
}

/* ── Custom Cursor ── */
*, *::before, *::after { cursor: none !important; }
a, button, [role="button"] { cursor: none !important; pointer-events: auto; }
@media (hover: none), (max-width: 580px) {
  *, *::before, *::after { cursor: auto !important; }
  #cursor { display: none; }
}
#cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 3px;
  background: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    width .32s cubic-bezier(0.34, 1.56, 0.64, 1),
    height .32s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-radius .32s cubic-bezier(0.34, 1.56, 0.64, 1),
    background .25s ease,
    mix-blend-mode 0s,
    opacity .18s ease;
}
#cursor.visible { opacity: 1; }
#cursor.on-text { width: 28px; height: 28px; }
#cursor.on-big  { width: 48px; height: 48px; }
#cursor.on-click { width: 8px; height: 8px; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.3;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

/* ══════════════════════════════════════════
   TOP NAV
══════════════════════════════════════════ */
#site-wordmark {
  position: fixed;
  top: 20px;
  left: 24px;
  z-index: 9998;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.01em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
#top-right-cluster {
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
}
#site-timezone {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
#music-btn {
  width: 40px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}
#music-btn:hover { opacity: 0.85; }
#music-btn.playing { opacity: 1; }
#music-btn video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  filter: invert(1);
  mix-blend-mode: screen;
}
.top-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1000px;
  padding: 3px;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}
.top-nav-pill {
  position: absolute;
  border-radius: 1000px;
  background: rgba(0, 0, 0, 0.07);
  transition: left 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    width 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    top 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 0;
}
.top-nav-item {
  position: relative;
  padding: 6px 14px;
  border-radius: 1000px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .01em;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
  z-index: 1;
  line-height: 1.4;
}
.top-nav-item span { position: relative; z-index: 1; }
.top-nav-item.active { color: #111; font-weight: 500; }
.top-nav-item:not(.active):hover { color: rgba(0, 0, 0, 0.8); }
.top-nav-divider {
  width: 1px;
  height: 14px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 6px;
  flex-shrink: 0;
}
.top-nav-link {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  padding: 6px 12px;
}

/* ══════════════════════════════════════════
   INTRO / HERO
══════════════════════════════════════════ */
.intro {
  width: 100%;
  max-width: 1800px;
  padding: 10px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  overflow: hidden;
}
.intro__title-wrap {
  width: 50%;
  max-width: 3000px;
  padding: 200px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
}
.intro__title {
  font-family: 'Redaction 10 Regular', Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -1.5px;
  line-height: 1.05;
  text-transform: none;
  text-align: center;
  color: var(--text);
}
.h-ital {
  font-family: 'Redaction 50 Italic', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* ══════════════════════════════════════════
   HERO IMAGE
══════════════════════════════════════════ */
.hero-image {
  width: 100%;
  padding: 0 0 60px;
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* ══════════════════════════════════════════
   METADATA BAR
══════════════════════════════════════════ */
.meta-bar {
  width: 100%;
  display: grid;
  grid-template-columns: 28% 28% 1fr;
  gap: 60px;
  padding: 24px 50px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-label,
.meta-value {
  font-family: var(--font-mono);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.4em;
  color: var(--text);
}

/* ══════════════════════════════════════════
   DESCRIPTION (2-column flex: H2 | Body)
══════════════════════════════════════════ */
.description {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 120px;
  width: 100%;
  padding: 0 50px 100px;
}
.description__intro-col {
  width: 38%;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.description__intro {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0em;
  line-height: 1.2em;
  color: var(--text);
  text-align: left;
  width: 100%;
}
/* ── Intro stacked metadata ── */
.intro-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}
.intro-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.intro-meta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,0.4);
}
.intro-meta-value {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255,255,255,0.55);
}

.description__body-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.description__body {
  width: 100%;
  max-width: 900px;
}
.description__body p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0em;
  line-height: 1.3em;
  color: var(--text);
  text-align: left;
  margin-bottom: 0;
}
.description__body p + p {
  margin-top: 1.3em;
}

/* ══════════════════════════════════════════
   VISUAL GRID (5-column CSS grid, 2px gap)
══════════════════════════════════════════ */
.visual-grid {
  display: grid;
  grid-template-rows: repeat(5, min-content);
  grid-template-columns: repeat(5, minmax(200px, 1fr));
  grid-auto-rows: min-content;
  justify-content: center;
  gap: 2px;
  width: 100%;
  padding: 0;
  background: #000000;
}
.visual-grid video,
.visual-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}
.span-5 { grid-column: span 5; }
.span-3 { grid-column: span 3; }
.span-2 { grid-column: span 2; }
.span-1 { grid-column: span 1; }
/* Equal-width row */
.grid-row-equal {
  grid-column: span 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.grid-cell {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  place-self: start;
  width: 100%;
}

/* Prevent video download via right-click */
.visual-grid video { -webkit-touch-callout: none; }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
#cta-section {
  background: #000;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 0;
}
.cta-section-heading {
  font-size: 48px;
  font-weight: 400;
  color: rgb(238,238,238);
  letter-spacing: -1.2px;
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
}
.cta-section-heading .h-reg { font-family: 'Redaction 10 Regular', Georgia, serif; font-style: normal; }
.cta-section-heading .h-ital { font-family: 'Redaction 50 Italic', Georgia, serif; font-style: italic; }
.cta-inner {
  text-align: center;
  max-width: 560px;
  padding: 0 48px;
}
.cta-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 48px;
}
.cta-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 32px;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 52px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.22s ease, gap 0.26s cubic-bezier(0.16,1,0.3,1);
}
.footer-cta-btn:hover {
  background: rgba(255,255,255,0.88);
  gap: 10px;
}
.footer-cta-btn .btn-mail-icon {
  display: inline-flex;
  align-items: center;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.6) translateX(-4px);
  transition: width 0.26s cubic-bezier(0.16,1,0.3,1),
              opacity 0.20s ease,
              transform 0.26s cubic-bezier(0.16,1,0.3,1);
}
.footer-cta-btn:hover .btn-mail-icon {
  width: 18px;
  opacity: 1;
  transform: scale(1) translateX(0);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#site-footer {
  background: #000;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 60px 48px;
}
.footer-bottom {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-left span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.42);
}
.footer-right {
  display: flex;
  gap: 24px;
}
.footer-right a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-right a:hover { color: rgba(255,255,255,0.9); }

/* ── Video Wrap (with mute button) ── */
.video-wrap {
  position: relative;
  width: 100%;
}
.video-wrap video {
  width: 100%;
  display: block;
  border-radius: 5px;
}
.mute-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease;
  z-index: 10;
}
.video-wrap:hover .mute-btn { opacity: 1; }
.mute-btn:hover { background: rgba(0,0,0,0.7); }
.video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
}
.video-row .video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* 810–1099px (tablet) */
@media (min-width: 810px) and (max-width: 1099.98px) {
  .description {
    flex-wrap: wrap;
    gap: 40px;
  }
  .description__intro-col { order: 0; width: 100%; }
  .description__body-col  { order: 1; width: 55%; }
  .description__preview-col { order: 2; }
  .description__intro { width: 100%; }
  .meta-bar { grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
}

/* 0–809px (mobile) */
@media (max-width: 809.98px) {
  #site-wordmark { top: 14px; left: 16px; font-size: 13px; }
  #top-right-cluster { top: 12px; right: 16px; }
  .top-nav { display: none; }

  .intro__title-wrap { width: 92%; padding: 80px 0 24px; }
  .intro__title { font-size: 28px; white-space: normal; letter-spacing: -0.5px; }

  .hero-image { padding: 0 0 24px; }

  .meta-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 20px;
  }
  .meta-label, .meta-value { font-size: 11px; }

  .description {
    flex-direction: column;
    padding: 0 20px 50px;
    gap: 24px;
  }
  .description__intro-col { width: 100%; }
  .description__body-col  { width: 100%; }
  .description__preview-col { width: 100%; }
  .description__intro { font-size: 16px; width: 100%; }
  .description__body { width: 100%; max-width: 100%; }
  .description__body p { font-size: 13px; }

  .visual-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    gap: 2px;
  }
  .span-5 { grid-column: span 2; }
  .grid-row-equal { grid-column: span 2; grid-template-columns: 1fr 1fr; }
  .span-3 { grid-column: span 2; }
  .span-2 { grid-column: span 1; }
  .span-1 { grid-column: span 1; }

  .mute-btn { opacity: 0.7; }

  #cta-section { padding: 80px 20px; }
  .cta-section-heading { font-size: 32px; }
  .cta-inner { padding: 0; max-width: 100%; }
  .cta-body { font-size: 14px; }
  .cta-eyebrow { font-size: 11px; }
  .footer-cta-btn { font-size: 15px; padding: 14px 36px; }

  #site-footer { padding: 40px 20px 32px; }
  .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer-left span { font-size: 11px; }
  .footer-right { flex-wrap: wrap; gap: 16px; }
  .footer-right a { font-size: 11px; }
}

/* Small phones */
@media (max-width: 480px) {
  #site-wordmark, #top-right-cluster { display: none; }
  .intro__title { font-size: 24px; }
  .visual-grid { grid-template-columns: 1fr; }
  .span-5, .span-3, .span-2, .span-1 { grid-column: span 1; }
  .grid-row-equal { grid-column: span 1; grid-template-columns: 1fr; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
