/* -------- Brand Fonts -------- */
/* Modern editorial pairing — Bodoni display serif + Inter / Space Grotesk grotesks */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,300;0,6..96,400;1,6..96,400&family=Inter:wght@200;300;400;500;600&family=Space+Grotesk:wght@300;400;500&display=swap');

:root {
  /* Pulled from the hero video */
  --ink:        #f6f6f6;     /* primary text on dark */
  --paper:      #1f1f1f;     /* matches the video's wall */
  --paper-2:    #181818;     /* slightly deeper for sections */
  --muted:      #9a9a9a;
  --rule:       rgba(255,255,255,0.12);
  --neon:       #ff1f7a;     /* the hot pink */
  --neon-glow:  rgba(255,31,122,0.55);
  --neon-soft:  rgba(255,31,122,0.18);

  --serif:  'Bodoni Moda', 'Didot', 'Times New Roman', Georgia, serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:   'Space Grotesk', 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--neon); color: #fff; }

/* Accessibility / SEO — visually hidden but read by screen readers and search engines */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -------- Header / Nav -------- */
header.site {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 48px;
  z-index: 50;
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
header.site.transparent {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.brand {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
}
.brand .dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--neon);
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 14px var(--neon-glow), 0 0 28px var(--neon-soft);
  vertical-align: middle;
  transform: translateY(-1px);
}
nav.primary a {
  color: var(--ink);
  text-decoration: none;
  margin-left: 36px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: color 0.25s, opacity 0.25s;
  position: relative;
  padding-bottom: 4px;
  opacity: 0.78;
}
nav.primary a:hover { color: var(--neon); opacity: 1; }
nav.primary a.active {
  color: var(--ink);
  opacity: 1;
}
nav.primary a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
}

/* -------- Video Hero -------- */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;            /* fallback */
  height: 100svh;           /* small viewport unit — accounts for iOS Safari UI */
  height: 100dvh;           /* dynamic viewport — adjusts as UI hides */
  min-height: 480px;
  overflow: hidden;
  background: #1d1d1d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #1d1d1d;
}
/* Soft vignette to blend the video edges into the page */
.video-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 50%, transparent 55%, rgba(0,0,0,0.45) 100%),
    linear-gradient(180deg, transparent 70%, var(--paper) 100%);
}
.video-hero .tagline {
  position: absolute;
  bottom: 64px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  z-index: 2;
}
.video-hero .tagline .sep {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  margin: 0 18px;
  vertical-align: middle;
  transform: translateY(-2px);
  box-shadow: 0 0 10px var(--neon-glow);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--neon));
  opacity: 0.7;
  z-index: 2;
}

/* -------- Logo wall (the logo, in the middle of the page) -------- */
.logo-wall {
  position: relative;
  width: 100vw;
  min-height: 78vh;
  background: #1f1f1f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
}
.logo-wall img {
  display: block;
  width: 100%;
  max-width: 1280px;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.logo-wall .tagline {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.logo-wall .tagline .sep {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  margin: 0 18px;
  vertical-align: middle;
  transform: translateY(-2px);
  box-shadow: 0 0 10px var(--neon-glow);
}

/* -------- Page hero (about/contact) -------- */
.page-hero {
  padding: 180px 48px 60px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.page-hero .eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--neon);
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--neon);
  box-shadow: 0 1px 0 var(--neon-glow);
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.page-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--neon);
  text-shadow: 0 0 24px var(--neon-soft);
}
.page-hero p.lead {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 300;
  color: #cfcfcf;
  line-height: 1.8;
}

/* -------- Content sections -------- */
section.content {
  padding: 60px 48px;
  max-width: 820px;
  margin: 0 auto;
}
section.content h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
section.content h2 .accent {
  color: var(--neon);
  font-style: italic;
}
section.content p {
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.9;
  color: #c8c8c8;
  max-width: 64ch;
  margin-bottom: 22px;
}
section.content p strong {
  color: var(--ink);
  font-weight: 500;
}
.rule {
  width: 60px;
  height: 1px;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
  margin: 64px auto;
  opacity: 0.9;
}

/* Pillars row (literary / film / television) */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 56px auto 16px;
  max-width: 980px;
  padding: 0 48px;
}
.pillars .pillar {
  border-top: 1px solid var(--rule);
  padding: 26px 4px 0;
}
.pillars .pillar .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--neon);
  letter-spacing: 0.3em;
  margin-bottom: 14px;
}
.pillars .pillar h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: 0.005em;
}
.pillars .pillar p {
  font-size: 14px;
  color: #aeaeae;
  line-height: 1.7;
  margin: 0;
}

/* -------- Cards (contact) -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 16px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 48px 140px;
}
.contact-grid.single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}
.contact-card {
  border-top: 1px solid var(--neon);
  padding-top: 28px;
}
.contact-card h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--neon);
}
.contact-card .name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin-top: 22px;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.contact-card .name:first-of-type { margin-top: 0; }
.contact-card a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.contact-card a:hover { color: var(--neon); border-color: var(--neon); }
.contact-card .row {
  margin-top: 4px;
  font-size: 14px;
  color: var(--muted);
}

/* -------- Footer -------- */
footer.site {
  text-align: center;
  padding: 56px 24px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--rule);
}
footer.site .sep {
  color: var(--neon);
  margin: 0 14px;
}

/* -------- Responsive: tablets & small laptops -------- */
@media (max-width: 900px) {
  header.site { padding: 18px 24px; }
  nav.primary a { margin-left: 22px; font-size: 10.5px; letter-spacing: 0.3em; }
  .brand { font-size: 12px; letter-spacing: 0.32em; }
  .brand .dot { width: 6px; height: 6px; margin-right: 10px; }
}

/* -------- Responsive: phones -------- */
@media (max-width: 640px) {
  header.site {
    padding: 14px 18px;
  }
  .brand {
    font-size: 11px;
    letter-spacing: 0.26em;
  }
  .brand .dot { width: 6px; height: 6px; margin-right: 8px; }
  nav.primary a {
    margin-left: 16px;
    font-size: 10px;
    letter-spacing: 0.22em;
    padding: 6px 0;          /* bigger tap area */
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .video-hero {
    min-height: 420px;
  }
  .video-hero video {
    object-fit: cover;
  }

  .logo-wall { min-height: 48vh; padding: 48px 14px; }
  .logo-wall .tagline { font-size: 10px; letter-spacing: 0.36em; margin-top: 24px; }
  .logo-wall .tagline .sep { margin: 0 8px; }

  .page-hero { padding: 110px 18px 40px; }
  .page-hero .eyebrow {
    font-size: 11px;
    letter-spacing: 0.42em;
    margin-bottom: 22px;
    padding-bottom: 8px;
  }
  .page-hero h1 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.18;
    margin-bottom: 24px;
  }
  .page-hero p.lead {
    font-size: 15.5px;
    line-height: 1.7;
  }

  section.content { padding: 40px 18px; }
  section.content h2 { font-size: clamp(20px, 5.5vw, 26px); margin-bottom: 18px; }
  section.content p { font-size: 15.5px; line-height: 1.8; }

  .rule { margin: 44px auto; }

  .pillars {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 18px;
    margin: 28px auto 0;
    max-width: 100%;
  }
  .pillars .pillar { padding-top: 22px; }
  .pillars .pillar h3 { font-size: 22px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 18px 72px;
  }
  .contact-grid.single {
    grid-template-columns: 1fr;
  }
  .contact-card a {
    font-size: 14px;
    word-break: break-word;       /* long emails wrap on narrow phones */
    overflow-wrap: anywhere;
    line-height: 1.5;
    display: inline-block;
    padding: 2px 0;
  }
  .contact-card .row { font-size: 14px; }
  .contact-card .name { font-size: 22px; }

  footer.site {
    padding: 40px 18px;
    font-size: 10px;
    letter-spacing: 0.32em;
  }
  footer.site .sep { margin: 0 10px; }

  /* 404 page on mobile */
  .nf-wrap { padding: 110px 18px 60px; }
  .nf-link {
    padding: 14px 20px;
    font-size: 10px;
    letter-spacing: 0.32em;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* -------- Responsive: very narrow phones (iPhone SE etc.) -------- */
@media (max-width: 380px) {
  .brand { font-size: 10px; letter-spacing: 0.22em; }
  nav.primary a { margin-left: 12px; font-size: 9.5px; letter-spacing: 0.2em; }
}

/* -------- Reduced motion accessibility -------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
