:root{
    --bg: #14120F;
    --panel: #1F1C17;
    --panel-2: #26221B;
    --ink: #F2EDE4;
    --muted: #8A8375;
    --brass: #C9973C;
    --slate: #4A6670;
    --line: rgba(242,237,228,0.12);
    --edge-w: 28px;
  }

  * { margin:0; padding:0; box-sizing:border-box; }

  html { scroll-behavior:smooth; }

  body{
    background:var(--bg);
    color:var(--ink);
    font-family:'Inter', sans-serif;
    font-weight:400;
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    padding-left:var(--edge-w);
    padding-right:var(--edge-w);
    overflow-x:hidden;
    position:relative;
  }

  /* ---------- sprocket-strip signature, fixed both edges ---------- */
  body::before, body::after{
    content:"";
    position:fixed;
    top:0; bottom:0;
    width:var(--edge-w);
    background:
      repeating-linear-gradient(
        to bottom,
        var(--panel) 0px, var(--panel) 34px,
        transparent 34px, transparent 40px
      );
    z-index:50;
    pointer-events:none;
  }
  body::before{ left:0; border-right:1px solid var(--line); }
  body::after{ right:0; border-left:1px solid var(--line); }

  body::before{
    background-image:
      repeating-linear-gradient(to bottom, var(--panel) 0px, var(--panel) 34px, transparent 34px, transparent 40px),
      radial-gradient(circle at 14px 17px, var(--bg) 5px, transparent 5.5px);
    background-size: 100% 40px, 28px 40px;
  }
  body::after{
    background-image:
      repeating-linear-gradient(to bottom, var(--panel) 0px, var(--panel) 34px, transparent 34px, transparent 40px),
      radial-gradient(circle at 14px 17px, var(--bg) 5px, transparent 5.5px);
    background-size: 100% 40px, 28px 40px;
  }

  h1,h2,h3, .display{
    font-family:'Big Shoulders Display', sans-serif;
    text-transform:uppercase;
    font-weight:900;
    letter-spacing:0.01em;
    line-height:0.92;
  }

  .mono{
    font-family:'IBM Plex Mono', monospace;
    letter-spacing:0.08em;
  }

  a{ color:inherit; text-decoration:none; }

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

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

  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }

  section{ position:relative; }

  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.72rem;
    letter-spacing:0.22em;
    text-transform:uppercase;
    color:var(--brass);
    display:flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width:6px; height:6px;
    border-radius:50%;
    background:var(--brass);
    display:inline-block;
  }

  /* reveal-on-scroll */
  .reveal{
    opacity:0;
    transform:translateY(18px);
    transition:opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in{ opacity:1; transform:translateY(0); }

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

  /* ---------- header ---------- */
  header{
    position:sticky;
    top:0;
    z-index:40;
    background:rgba(20,18,15,0.88);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  .header-inner{
    max-width:1180px;
    margin:0 auto;
    padding:16px 32px;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-family:'Big Shoulders Display', sans-serif;
    font-weight:700;
    font-size:1.15rem;
    letter-spacing:0.03em;
    text-transform:uppercase;
  }
  .logo-mark{
    width:34px; height:34px;
    border-radius:50%;
    border:1.5px solid var(--brass);
    position:relative;
    flex:none;
  }
  .logo-mark::before{
    content:"";
    position:absolute; inset:6px;
    border-radius:50%;
    border:1.5px solid var(--brass);
    opacity:0.55;
  }
  .logo-mark::after{
    content:"";
    position:absolute; inset:13px;
    border-radius:50%;
    background:var(--brass);
  }

  nav{ display:flex; align-items:center; gap:28px; }
  nav a{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.78rem;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--muted);
    transition:color 0.2s ease;
  }
  nav a:hover{ color:var(--ink); }
  nav a.cta{
    color:var(--bg);
    background:var(--brass);
    padding:9px 16px;
    border-radius:2px;
  }
  nav a.cta:hover{ color:var(--bg); opacity:0.88; }

  .rec-clock{
    display:flex;
    align-items:center;
    gap:8px;
    font-family:'IBM Plex Mono', monospace;
    font-size:0.72rem;
    color:var(--muted);
    letter-spacing:0.05em;
  }
  .rec-dot{
    width:7px; height:7px;
    border-radius:50%;
    background:#c94a3c;
    animation:pulse 1.6s ease-in-out infinite;
  }
  @keyframes pulse{
    0%,100%{ opacity:1; }
    50%{ opacity:0.25; }
  }

  .menu-toggle{
    display:none;
    background:none; border:none; color:var(--ink);
    font-family:'IBM Plex Mono', monospace;
    font-size:0.8rem;
    letter-spacing:0.1em;
    cursor:pointer;
  }

  /* ---------- hero ---------- */
  .hero{
    min-height:92vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:120px 0 80px;
    position:relative;
    overflow:hidden;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:40px;
    align-items:center;
  }
  .hero h1{
    font-size:clamp(3.2rem, 8vw, 6.6rem);
    margin:18px 0 26px;
  }
  .hero h1 span{ color:var(--brass); }
  .hero p{
    max-width:46ch;
    font-size:1.08rem;
    color:#cfc9bc;
  }
  .hero-actions{
    display:flex;
    gap:16px;
    margin-top:36px;
    flex-wrap:wrap;
  }
  .btn{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.78rem;
    letter-spacing:0.1em;
    text-transform:uppercase;
    padding:14px 24px;
    border-radius:2px;
    display:inline-block;
    transition:transform 0.2s ease, opacity 0.2s ease;
  }
  .btn-primary{ background:var(--brass); color:var(--bg); }
  .btn-ghost{ border:1px solid var(--line); color:var(--ink); }
  .btn:hover{ transform:translateY(-2px); }

  /* countdown leader */
  .leader{
    position:relative;
    width:min(360px, 80vw);
    aspect-ratio:1/1;
    margin-inline:auto;
    border-radius:50%;
    background:
      conic-gradient(var(--brass) 0deg, transparent 3deg 357deg, var(--brass) 357deg),
      var(--panel);
    display:flex;
    align-items:center;
    justify-content:center;
    animation:spin 22s linear infinite;
  }
  @keyframes spin{ to{ transform:rotate(360deg); } }
  .leader-inner{
    width:70%; aspect-ratio:1/1;
    border-radius:50%;
    background:var(--bg);
    border:1px solid var(--line);
    display:flex;
    align-items:center;
    justify-content:center;
    animation:spin-rev 22s linear infinite;
  }
  @keyframes spin-rev{ to{ transform:rotate(-360deg); } }
  .leader-num{
    font-family:'Big Shoulders Display', sans-serif;
    font-weight:900;
    font-size:4rem;
    color:var(--brass);
  }

  .hero-strip{
    margin-top:64px;
    display:flex;
    gap:36px;
    flex-wrap:wrap;
    padding-top:24px;
    border-top:1px solid var(--line);
    font-family:'IBM Plex Mono', monospace;
    font-size:0.74rem;
    color:var(--muted);
    letter-spacing:0.06em;
  }
  .hero-strip strong{ color:var(--ink); display:block; font-size:0.9rem; margin-bottom:4px; }

  /* ---------- section heads ---------- */
  .section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:24px;
    margin-bottom:56px;
    flex-wrap:wrap;
  }
  .section-head h2{ font-size:clamp(2.2rem, 4.4vw, 3.4rem); margin-top:10px; }
  .section-head p{ max-width:38ch; color:var(--muted); font-size:0.95rem; }

  section.pad{ padding:120px 0; }
  section.pad + section.pad{ border-top:1px solid var(--line); }

  /* ---------- services (reels) ---------- */
  .reels{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:2px;
    background:var(--line);
    border:1px solid var(--line);
  }
  .reel{
    background:var(--bg);
    padding:44px 36px;
    display:flex;
    flex-direction:column;
    gap:18px;
    transition:background 0.3s ease;
  }
  .reel:hover{ background:var(--panel); }
  .reel-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
  }
  .reel-label{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.72rem;
    letter-spacing:0.15em;
    color:var(--brass);
  }
  .reel-ring{
    width:30px; height:30px;
    border-radius:50%;
    border:1.5px solid var(--slate);
    position:relative;
  }
  .reel-ring::after{
    content:"";
    position:absolute; inset:9px;
    border-radius:50%;
    background:var(--slate);
  }
  .reel h3{
    font-size:1.7rem;
    font-weight:700;
  }
  .reel p{ color:var(--muted); font-size:0.95rem; max-width:38ch; }

  /* ---------- work / sample frames ---------- */
  .frames{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:16px;
  }
  .frames.frames-3{ grid-template-columns:repeat(3, 1fr); }

  .project-block + .project-block{ margin-top:64px; }
  .project-head{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap:20px;
    margin-bottom:22px;
    flex-wrap:wrap;
    border-bottom:1px solid var(--line);
    padding-bottom:14px;
  }
  .project-head h3{
    font-size:1.6rem;
    font-weight:700;
    text-transform:none;
    letter-spacing:0;
  }
  .project-tag{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.7rem;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--brass);
  }
  .frame{
    aspect-ratio:4/5;
    border-radius:2px;
    border:1px solid var(--line);
    background:linear-gradient(155deg, var(--panel), var(--panel-2));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:16px;
    position:relative;
    overflow:hidden;
  }
  .frame img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
  }
  .frame::before{
    content:"";
    position:absolute; inset:0;
    background:
      repeating-linear-gradient(0deg, transparent 0 6px, rgba(242,237,228,0.025) 6px 7px);
    z-index:1;
  }
  .frame::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height:65%;
    background:linear-gradient(to top, rgba(20,18,15,0.94), transparent);
    z-index:1;
  }
  .frame-tag, .frame-title{ position:relative; z-index:2; }
  .frame-tag{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.66rem;
    letter-spacing:0.1em;
    color:var(--muted);
    text-transform:uppercase;
  }
  .frame-title{
    font-family:'Big Shoulders Display', sans-serif;
    font-weight:700;
    font-size:1.15rem;
    text-transform:uppercase;
    margin-top:4px;
  }
  .work-note{
    margin-top:28px;
    font-size:0.85rem;
    color:var(--muted);
    border-left:2px solid var(--brass);
    padding-left:14px;
  }

  /* ---------- process ---------- */
  .process{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:2px;
    background:var(--line);
    border:1px solid var(--line);
  }
  .step{
    background:var(--bg);
    padding:40px 32px;
  }
  .step .mono{ color:var(--slate); font-size:0.75rem; }
  .step h3{ font-size:1.5rem; margin:14px 0 12px; }
  .step p{ color:var(--muted); font-size:0.92rem; }

  /* ---------- contact ---------- */
  .contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
  }
  .contact-info dl{
    margin-top:32px;
    display:grid;
    gap:20px;
  }
  .contact-info dt{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.7rem;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--muted);
  }
  .contact-info dd{
    font-size:1.1rem;
    margin-top:4px;
  }

  form{ display:grid; gap:18px; }
  .field label{
    display:block;
    font-family:'IBM Plex Mono', monospace;
    font-size:0.7rem;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--muted);
    margin-bottom:8px;
  }
  .field input, .field select, .field textarea{
    width:100%;
    background:var(--panel);
    border:1px solid var(--line);
    color:var(--ink);
    padding:13px 14px;
    font-family:'Inter', sans-serif;
    font-size:0.95rem;
    border-radius:2px;
  }
  .field textarea{ resize:vertical; min-height:110px; }
  .field input:focus, .field select:focus, .field textarea:focus{
    outline:2px solid var(--brass);
    outline-offset:1px;
    border-color:var(--brass);
  }
  .submit-btn{
    background:var(--brass);
    color:var(--bg);
    border:none;
    padding:15px 26px;
    font-family:'IBM Plex Mono', monospace;
    font-size:0.8rem;
    letter-spacing:0.1em;
    text-transform:uppercase;
    border-radius:2px;
    cursor:pointer;
    justify-self:start;
    transition:transform 0.2s ease;
  }
  .submit-btn:hover{ transform:translateY(-2px); }

  footer{
    border-top:1px solid var(--line);
    padding:36px 0;
  }
  .footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
    font-family:'IBM Plex Mono', monospace;
    font-size:0.72rem;
    color:var(--muted);
    letter-spacing:0.06em;
  }

  @media (max-width:860px){
    :root{ --edge-w:14px; }
    nav{
      position:fixed;
      top:66px; left:14px; right:14px;
      background:var(--panel);
      border:1px solid var(--line);
      flex-direction:column;
      align-items:flex-start;
      padding:20px;
      gap:16px;
      display:none;
    }
    nav.open{ display:flex; }
    nav a.cta{ align-self:flex-start; }
    .menu-toggle{ display:block; }
    .rec-clock{ display:none; }
    .hero-grid{ grid-template-columns:1fr; }
    .leader{ order:-1; margin-bottom:20px; }
    .reels{ grid-template-columns:1fr; }
    .frames{ grid-template-columns:repeat(2, 1fr); }
    .frames.frames-3{ grid-template-columns:repeat(2, 1fr); }
    .process{ grid-template-columns:1fr; }
    .contact-grid{ grid-template-columns:1fr; gap:40px; }
    section.pad{ padding:80px 0; }
  }

/* ---------- press / media page additions ---------- */
.press-list{
  border-top:1px solid var(--line);
}
.press-item{
  display:grid;
  grid-template-columns:160px 1fr auto;
  gap:28px;
  align-items:start;
  padding:36px 0;
  border-bottom:1px solid var(--line);
}
.press-meta{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.74rem;
  letter-spacing:0.08em;
  color:var(--muted);
}
.press-meta .pub{
  color:var(--brass);
  display:block;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:0.1em;
}
.press-body h3{
  font-size:1.5rem;
  font-weight:700;
  text-transform:none;
  letter-spacing:0;
  margin-bottom:10px;
}
.press-body p{
  color:var(--muted);
  font-size:0.95rem;
  max-width:56ch;
}
.press-link{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.76rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--ink);
  border:1px solid var(--line);
  padding:10px 16px;
  border-radius:2px;
  white-space:nowrap;
  transition:border-color 0.2s ease, color 0.2s ease;
  align-self:center;
}
.press-link:hover{ border-color:var(--brass); color:var(--brass); }

.kit-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2px;
  background:var(--line);
  border:1px solid var(--line);
  margin-top:8px;
}
.kit-card{
  background:var(--bg);
  padding:32px 28px;
}
.kit-card h3{
  font-size:1.3rem;
  font-weight:700;
  margin-bottom:10px;
}
.kit-card p{ color:var(--muted); font-size:0.9rem; margin-bottom:18px; }
.kit-card a{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.74rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--brass);
}

@media (max-width:860px){
  .press-item{
    grid-template-columns:1fr;
    gap:12px;
  }
  .press-link{ justify-self:start; }
  .kit-grid{ grid-template-columns:1fr; }
}

/* ---------- about / team ---------- */
.about-lede{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:56px;
  align-items:start;
  margin-bottom:72px;
}
.about-lede p{ color:#cfc9bc; font-size:1.02rem; margin-top:16px; }
.about-lede p + p{ margin-top:14px; }
.about-stats{
  display:grid;
  gap:2px;
  background:var(--line);
  border:1px solid var(--line);
}
.about-stat{
  background:var(--bg);
  padding:22px 26px;
  display:flex;
  justify-content:space-between;
  align-items:baseline;
}
.about-stat .num{
  font-family:'Big Shoulders Display', sans-serif;
  font-weight:900;
  font-size:1.8rem;
  color:var(--brass);
}
.about-stat .label{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.72rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--muted);
  text-align:right;
}

.crew{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2px;
  background:var(--line);
  border:1px solid var(--line);
}
.crew-card{
  background:var(--bg);
  padding:40px 32px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.crew-avatar{
  width:64px; height:64px;
  border-radius:50%;
  border:1.5px solid var(--brass);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  flex:none;
}
.crew-avatar::before{
  content:"";
  position:absolute; inset:8px;
  border-radius:50%;
  border:1px solid var(--brass);
  opacity:0.5;
}
.crew-avatar span{
  font-family:'Big Shoulders Display', sans-serif;
  font-weight:700;
  font-size:1.3rem;
  color:var(--brass);
  letter-spacing:0.02em;
}
.crew-card h3{
  font-size:1.5rem;
  font-weight:700;
  text-transform:none;
  letter-spacing:0;
}
.crew-role{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.72rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--slate);
  margin-top:-10px;
}
.crew-card p{ color:var(--muted); font-size:0.92rem; }

@media (max-width:860px){
  .about-lede{ grid-template-columns:1fr; gap:32px; }
  .crew{ grid-template-columns:1fr; }
}

/* ---------- film landing page ---------- */
.film-hero{
  position:relative;
  min-height:70vh;
  display:flex;
  align-items:flex-end;
  padding:100px 0 60px;
  overflow:hidden;
}
.film-hero-bg{
  position:absolute; inset:0;
  z-index:0;
}
.film-hero-bg img{
  width:100%; height:100%;
  object-fit:cover;
  filter:saturate(0.85) brightness(0.55);
}
.film-hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to top, var(--bg) 5%, rgba(20,18,15,0.35) 55%, rgba(20,18,15,0.15));
}
.film-hero-content{
  position:relative;
  z-index:1;
}
.film-hero h1{
  font-size:clamp(2.8rem, 7vw, 5.6rem);
  margin-top:14px;
  max-width:16ch;
}
.film-tagline{
  font-size:1.1rem;
  color:#cfc9bc;
  max-width:52ch;
  margin-top:18px;
}
.film-meta-row{
  display:flex;
  gap:32px;
  flex-wrap:wrap;
  margin-top:32px;
  font-family:'IBM Plex Mono', monospace;
  font-size:0.76rem;
  color:var(--muted);
  letter-spacing:0.05em;
}
.film-meta-row strong{ color:var(--ink); display:block; margin-bottom:4px; }

.video-wrap{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:2px;
  overflow:hidden;
}
.video-wrap iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}
.video-caption{
  margin-top:14px;
  font-family:'IBM Plex Mono', monospace;
  font-size:0.74rem;
  letter-spacing:0.06em;
  color:var(--muted);
  text-transform:uppercase;
}
.video-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}
.video-slot-empty{
  aspect-ratio:16/9;
  border:1px dashed var(--line);
  border-radius:2px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px;
  color:var(--muted);
  font-family:'IBM Plex Mono', monospace;
  font-size:0.78rem;
  letter-spacing:0.04em;
}

.synopsis{
  max-width:68ch;
  font-size:1.05rem;
  color:#cfc9bc;
}
.synopsis p + p{ margin-top:16px; }

@media (max-width:860px){
  .video-grid{ grid-template-columns:1fr; }
  .film-hero{ min-height:56vh; padding-top:80px; }
}

/* ---------- team page ---------- */
.team-subnav{
  position:sticky;
  top:66px;
  z-index:30;
  background:rgba(20,18,15,0.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.team-subnav ul{
  list-style:none;
  display:flex;
  gap:32px;
  max-width:1180px;
  margin:0 auto;
  padding:16px 32px;
}
.team-subnav a{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.78rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--muted);
  padding-bottom:4px;
  border-bottom:2px solid transparent;
  transition:color 0.2s ease, border-color 0.2s ease;
}
.team-subnav a:hover{ color:var(--ink); }
.team-subnav a.active{ color:var(--brass); border-color:var(--brass); }

.team-section{
  padding:100px 0;
  border-top:1px solid var(--line);
  scroll-margin-top:120px;
}
.team-section:first-of-type{ border-top:none; }
.team-section-inner{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:64px;
  align-items:start;
}
.team-photo{
  width:100%;
  aspect-ratio:1/1;
  border-radius:50%;
  border:2px solid var(--brass);
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:var(--panel);
}
.team-photo::before{
  content:"";
  position:absolute; inset:14px;
  border-radius:50%;
  border:1px solid var(--brass);
  opacity:0.4;
}
.team-photo img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  border-radius:50%;
}
.team-photo span{
  font-family:'Big Shoulders Display', sans-serif;
  font-weight:700;
  font-size:3.2rem;
  color:var(--brass);
  position:relative;
  z-index:1;
}
.team-bio h2{ font-size:clamp(2rem, 4vw, 3rem); }
.team-role{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.78rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--slate);
  margin-top:8px;
}
.team-bio p{
  color:#cfc9bc;
  font-size:1.02rem;
  max-width:62ch;
  margin-top:20px;
}
.team-bio p + p{ margin-top:14px; }
.team-links{
  display:flex;
  gap:20px;
  margin-top:24px;
  flex-wrap:wrap;
}
.team-links a{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.74rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--brass);
  border-bottom:1px solid var(--brass);
  padding-bottom:2px;
}

@media (max-width:860px){
  .team-subnav ul{ gap:20px; padding:14px 20px; overflow-x:auto; }
  .team-section-inner{ grid-template-columns:1fr; gap:32px; }
  .team-photo{ width:180px; margin:0 auto; }
}

/* ---------- newsletter / lead form ---------- */
.newsletter-card{
  max-width:640px;
  border:1px solid var(--line);
  background:var(--panel);
  padding:48px;
  border-radius:2px;
}
.newsletter-card form{ display:grid; gap:20px; margin-top:8px; }
.phone-row{
  display:flex;
  gap:10px;
}
.phone-row select{
  flex:0 0 110px;
}
.phone-row input{
  flex:1;
}
.field-hint{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.7rem;
  color:var(--muted);
  margin-top:6px;
}
.consent-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.consent-row input[type="checkbox"]{
  accent-color:var(--brass);
  width:18px; height:18px;
  margin-top:2px;
  flex:none;
  cursor:pointer;
}
.consent-row label{
  font-size:0.85rem;
  color:var(--muted);
  line-height:1.5;
  cursor:pointer;
}
.noc-newsletter .sib-form-message-panel{
  display:none;
  padding:14px 16px;
  border-radius:2px;
  font-family:'IBM Plex Mono', monospace;
  font-size:0.8rem;
  margin-bottom:16px;
}
.noc-newsletter #error-message{
  background:rgba(201,74,58,0.12);
  border:1px solid #C94A3A;
  color:#E8A79A;
}
.noc-newsletter #success-message{
  background:rgba(74,102,112,0.15);
  border:1px solid var(--slate);
  color:#B7D3DC;
}
.noc-newsletter .sib-notification__icon{
  width:18px; height:18px;
  fill:currentColor;
  vertical-align:middle;
  margin-right:8px;
}
.noc-newsletter .input--hidden{
  position:absolute !important;
  left:-9999px !important;
  opacity:0;
}
.noc-newsletter .sib-hide-loader-icon{ display:none; }
.noc-newsletter button svg{
  width:16px; height:16px;
  vertical-align:middle;
  margin-right:8px;
  animation:noc-spin 0.8s linear infinite;
}
@keyframes noc-spin{ to{ transform:rotate(360deg); } }
.noc-newsletter .sib-captcha{ margin-top:4px; }

@media (max-width:860px){
  .newsletter-card{ padding:28px; }
  .phone-row{ flex-direction:column; }
  .phone-row select{ flex:none; }
}

/* ---------- join the crew page ---------- */
.crew-hero{
  padding:120px 0 80px;
  text-align:left;
}
.crew-hero h1{
  font-size:clamp(2.6rem, 7vw, 5rem);
  margin-top:16px;
  max-width:18ch;
}
.crew-hero p{
  max-width:56ch;
  color:#cfc9bc;
  font-size:1.08rem;
  margin-top:20px;
}
.role-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2px;
  background:var(--line);
  border:1px solid var(--line);
}
.role-card{
  background:var(--bg);
  padding:36px 30px;
}
.role-card h3{
  font-size:1.3rem;
  font-weight:700;
  text-transform:none;
  letter-spacing:0;
  margin-bottom:10px;
}
.role-card p{ color:var(--muted); font-size:0.9rem; }

.apply-placeholder{
  border:1px dashed var(--line);
  border-radius:2px;
  padding:60px 40px;
  text-align:center;
  color:var(--muted);
  font-family:'IBM Plex Mono', monospace;
  font-size:0.85rem;
  max-width:640px;
}

/* cross-page "join the crew" footer banner */
.crew-banner{
  border-top:1px solid var(--line);
  padding:56px 0;
  text-align:center;
}
.crew-banner .eyebrow{ justify-content:center; }
.crew-banner h3{
  font-size:clamp(1.6rem, 3.4vw, 2.2rem);
  margin-top:10px;
}
.crew-banner p{
  color:var(--muted);
  margin-top:10px;
  font-size:0.95rem;
}
.crew-banner .btn{ margin-top:24px; }

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

/* ---------- projects / lebowski dedicated pages (reuse team-subnav pattern) ---------- */
.project-section{
  padding:90px 0;
  border-top:1px solid var(--line);
  scroll-margin-top:120px;
}
.project-section:first-of-type{ border-top:none; }
.project-section-inner{ max-width:820px; margin:0 auto; }
.project-media{ margin-bottom:36px; }
.project-media img{
  width:100%;
  border-radius:2px;
  border:1px solid var(--line);
}
.project-tagline{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.72rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--brass);
  margin-bottom:10px;
}
.project-section h2{ font-size:clamp(2rem, 4vw, 2.8rem); }
.project-section .synopsis{ max-width:none; margin-top:18px; }
.project-links{
  display:flex;
  gap:20px;
  margin-top:26px;
  flex-wrap:wrap;
}
.project-links a{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.74rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--brass);
  border-bottom:1px solid var(--brass);
  padding-bottom:2px;
}
.press-mini{
  margin-top:32px;
  padding-top:24px;
  border-top:1px solid var(--line);
}
.press-mini h4{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.7rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:14px;
}
.press-mini ul{ list-style:none; display:grid; gap:10px; }
.press-mini a{
  font-size:0.92rem;
  color:var(--ink);
  border-bottom:1px solid var(--line);
  padding-bottom:2px;
}
.press-mini a:hover{ border-color:var(--brass); color:var(--brass); }

.history-block{ max-width:780px; }
.history-block p{ color:#cfc9bc; font-size:1.02rem; margin-bottom:18px; }
.history-year{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.78rem;
  color:var(--brass);
  display:block;
  margin-bottom:4px;
}

.ref-list{
  columns:2;
  gap:32px;
  list-style:none;
}
.ref-list li{ break-inside:avoid; margin-bottom:12px; }
.ref-list a{
  font-size:0.9rem;
  color:var(--muted);
  border-bottom:1px solid var(--line);
  padding-bottom:1px;
}
.ref-list a:hover{ color:var(--brass); border-color:var(--brass); }

@media (max-width:860px){
  .ref-list{ columns:1; }
}

/* ---------- flyer gallery (lebowski page) ---------- */
.flyer-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
  max-width:900px;
}
.flyer-item img{
  width:100%;
  border-radius:2px;
  border:1px solid var(--line);
  display:block;
}
@media (max-width:860px){
  .flyer-grid{ grid-template-columns:1fr; }
}

/* ---------- soccer recruitment landing page ---------- */
.soccer-hero{
  padding:110px 0 70px;
  position:relative;
}
.soccer-hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:56px;
  align-items:center;
}
.soccer-hero h1{
  font-size:clamp(2.6rem, 6.4vw, 4.6rem);
  margin-top:14px;
}
.soccer-hero img{
  width:100%;
  border-radius:2px;
  border:1px solid var(--line);
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2px;
  background:var(--line);
  border:1px solid var(--line);
}
.pricing-card{
  background:var(--bg);
  padding:36px 28px;
  display:flex;
  flex-direction:column;
}
.pricing-card.featured{
  background:var(--panel);
}
.pricing-tier{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.72rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--brass);
}
.pricing-price{
  font-family:'Big Shoulders Display', sans-serif;
  font-weight:900;
  font-size:2.6rem;
  margin:10px 0 18px;
}
.pricing-card ul{
  list-style:none;
  display:grid;
  gap:10px;
  margin-bottom:24px;
  flex:1;
}
.pricing-card li{
  font-size:0.9rem;
  color:#cfc9bc;
  padding-left:18px;
  position:relative;
}
.pricing-card li::before{
  content:"—";
  position:absolute;
  left:0;
  color:var(--brass);
}
@media (max-width:860px){
  .soccer-hero-grid{ grid-template-columns:1fr; }
  .pricing-grid{ grid-template-columns:1fr; }
}
