:root {
  --red: #FA0000;
  --red-bright: #FF2D2D;
  --red-deep: #C90000;

  --bg: #0B0B0C;
  --surface: #141416;
  --white: #FFFFFF;
  --ink: rgba(255, 255, 255, 0.72);
  --hairline: rgba(255, 255, 255, 0.12);

  --header-h: 74px;
  --max-w: 1240px;

  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* form controls don't inherit type by default */
button, input, select, textarea { font: inherit; color: inherit; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

/* ---------- Header ---------- */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* Sits over the film: a soft scrim keeps the nav legible without a bar. */
header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Once past the film — or on a page without one — it becomes a solid bar. */
header.scrolled,
body.solid-header header {
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--hairline);
}

header.scrolled::before,
body.solid-header header::before { opacity: 0; }

/* the open mobile panel needs a solid ground whatever is behind it */
header.open {
  background: var(--bg);
  border-bottom-color: var(--hairline);
}

header.open::before { opacity: 0; }

.nav {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand .mark { width: 38px; height: 38px; }

.brand .brand-name {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 15px;
  /* Instrument Serif ships only a 400 cut — let the browser synthesise the bold,
     then thicken the strokes a touch further, since synthesis caps out at one weight */
  font-weight: 700;
  font-synthesis-weight: auto;
  -webkit-text-stroke: 0.4px currentColor;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white);
}

.brand .brand-name span {
  display: block;
  margin-top: 2px;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--red-bright);
}

nav.links {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav.links a {
  font-size: 13.5px;
  /* matches the brand lockup: synthesised bold, tighter tracking */
  font-weight: 700;
  font-synthesis-weight: auto;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}

nav.links a:hover,
nav.links a[aria-current="page"] { color: var(--red-bright); }

nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

nav.links a:hover::after,
nav.links a[aria-current="page"]::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

header.open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
header.open .menu-toggle span:nth-child(2) { opacity: 0; }
header.open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Fold 1: video hero ---------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 540px;
  overflow: hidden;
  background: #0C0C0C;
}

.hero video,
.hero .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.52) 78%),
    rgba(0,0,0,0.16);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* nudge clear of the overlaid header */
  padding: var(--header-h) 32px 0;
  text-align: center;
}

.hero-lockup {
  width: min(620px, 76vw);
  height: auto;
  /* lift it off the optical centre */
  transform: translateY(-32px);
  /* the source lockup is cream on transparent — render it pure white */
  filter: brightness(0) invert(1) drop-shadow(0 6px 28px rgba(0,0,0,0.4));
}

.hero-tagline {
  margin: 30px 0 0;
  font-size: clamp(14px, 1.5vw, 16px);
  /* single-cut serif: synthesised bold plus a light stroke, same as the brand */
  font-weight: 700;
  font-synthesis-weight: auto;
  -webkit-text-stroke: 0.35px currentColor;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  animation: nudge 1.9s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateY(0); opacity: 0.75; }
  50%      { transform: translateY(5px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue svg { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Fold 2: playlist ---------- */

.playlist { padding: 92px 0 104px; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 15ch;
  text-wrap: balance;
}

.grid-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 26px;
}

.vcard { display: flex; flex-direction: column; }

.thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  padding: 0;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.vcard:hover .thumb img { transform: scale(1.035); }

iframe.thumb { border: 1px solid var(--hairline); }

.play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(0,0,0,0.34), rgba(0,0,0,0.02) 60%);
}

.play svg {
  width: 52px;
  height: 52px;
  transition: transform 0.22s ease;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.35));
}

.vcard:hover .play svg { transform: scale(1.09); }

.vcard h3 {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.playlist-more {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1.5px solid var(--red);
  transition: background 0.18s ease, color 0.18s ease;
}

.btn-solid { background: var(--red); color: var(--white); }
.btn-solid:hover { background: var(--red-deep); border-color: var(--red-deep); }

.btn-outline { background: transparent; color: var(--white); }
.btn-outline:hover { background: var(--red); color: var(--white); }

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--hairline);
  padding: 30px 0 38px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.footer-brand .mark { width: 28px; height: 28px; flex-shrink: 0; }

.footer-links { display: flex; gap: 26px; }

/* ---------- Group attribution row ---------- */

.footer-meta {
  max-width: var(--max-w);
  margin: 26px auto 0;
  padding: 22px 32px 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fc-logo img {
  width: 100px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.18s ease;
}

.fc-logo:hover img { opacity: 1; }

.raise {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.18s ease;
}

.raise img {
  width: 82px;
  height: auto;
  flex-shrink: 0;
}

.raise span {
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
}

.raise:hover { opacity: 0.78; }

.footer-links a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Inner page (About) ---------- */

.page {
  margin-top: var(--header-h);
  padding: 86px 0 96px;
}

.page h1 {
  margin: 0 0 26px;
  font-size: clamp(34px, 5.4vw, 62px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 17ch;
  text-wrap: balance;
}

.page-lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--red-bright);
  max-width: 46ch;
  margin: 0 0 62px;
}

.page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
  padding-top: 44px;
  border-top: 1px solid var(--hairline);
}

.page-copy p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 22px;
}

.page-copy p:last-child { margin-bottom: 0; }

.facts { display: grid; gap: 30px; }

.fact h3 {
  margin: 0 0 9px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.fact p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

.page-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 64px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .grid-videos { grid-template-columns: repeat(2, 1fr); }
  .page-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 760px) {
  .wrap, .nav, .footer-inner, .footer-meta { padding-left: 22px; padding-right: 22px; }

  .menu-toggle { display: block; }

  nav.links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 22px 26px;
    transform: translateY(-130%);
    transition: transform 0.28s ease;
  }

  header.open nav.links { transform: translateY(0); }

  nav.links a { font-size: 16px; padding: 12px 0; width: 100%; }

  .hero-lockup { width: 84vw; }
  .hero-tagline { letter-spacing: 0.14em; margin-top: 22px; }

  .playlist { padding: 64px 0 76px; }
  .grid-videos { grid-template-columns: 1fr; gap: 26px; }
  .section-head { margin-bottom: 32px; }

  .page { padding: 56px 0 68px; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .meta-left { gap: 18px; }
  .page-lead { margin-bottom: 40px; }
}
