:root {
  --bg: #f7f5ef;
  --ink: #050505;
  --muted: #6e6a63;
  --line: rgba(5,5,5,.14);
  --accent: #ED1C24;
  --accent-ink: #fffaf3;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: -0.03em;
}

.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .055; z-index: 20;
  background-image: radial-gradient(var(--ink) .8px, transparent .8px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(247,245,239,.86);
  backdrop-filter: blur(14px);
}
.brand img { width: 108px; display: block; background: transparent; mix-blend-mode: normal; }
nav { display: flex; align-items: center; gap: 22px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; }
.theme-toggle {
  border: 1px solid var(--ink); background: transparent; color: var(--ink);
  padding: 9px 12px; border-radius: 999px; font: inherit; cursor: pointer;
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding: 7vw 24px 40px;
}
.hero-copy { padding-bottom: 8px; max-width: 1120px; }
.eyebrow, .section-label, .showcase-title span, .small {
  font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; color: var(--muted);
}
h1 { font-size: clamp(72px, 13vw, 190px); line-height: .82; margin: 18px 0 24px; font-weight: 900; text-transform: uppercase; }
.lead { font-size: clamp(20px, 2.2vw, 34px); line-height: 1.05; max-width: 620px; margin: 0 0 30px; font-weight: 800; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border: 1px solid var(--ink); font-weight: 900; text-transform: uppercase; letter-spacing: .02em; }
.btn.primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn.ghost { background: transparent; }

.strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.strip span { padding: 18px 24px; border-right: 1px solid var(--ink); font-weight: 900; text-transform: uppercase; font-size: clamp(18px, 2vw, 34px); }
.strip span:last-child { border-right: 0; }

.grid-section { display: grid; grid-template-columns: 220px 1fr; gap: 32px; padding: 86px 24px; border-bottom: 1px solid var(--line); }
.statement h2, .showcase h2 { font-size: clamp(44px, 7vw, 104px); line-height: .88; margin: 0 0 22px; text-transform: uppercase; }
.statement p { font-size: clamp(20px, 2.2vw, 34px); line-height: 1.05; max-width: 980px; margin: 0; font-weight: 800; color: var(--accent); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card-grid article { min-height: 280px; padding: 22px; border: 1px solid var(--ink); background: transparent; display: flex; flex-direction: column; justify-content: space-between; }
h3 { font-size: 34px; line-height: .92; margin: 0; text-transform: uppercase; }
.card-grid p { font-size: 18px; line-height: 1.15; margin: 0; font-weight: 700; color: var(--muted); letter-spacing: -0.02em; }

.showcase { padding: 86px 24px 24px; }
.showcase-title { display: grid; grid-template-columns: 220px 1fr; gap: 32px; margin-bottom: 34px; }
.poster-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.poster { min-height: 520px; padding: 24px; display: flex; align-items: flex-end; font-size: clamp(56px, 7vw, 130px); line-height: .8; font-weight: 900; text-transform: uppercase; overflow: hidden; }
.accent-poster { background: var(--accent); color: var(--accent-ink); }
.black-poster { background: var(--ink); color: var(--bg); }
.white-poster { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.marquee { overflow: hidden; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--ink); color: var(--bg); }
.marquee div { white-space: nowrap; font-size: 14vw; line-height: .85; font-weight: 900; text-transform: uppercase; animation: move 16s linear infinite; }
@keyframes move { from { transform: translateX(0); } to { transform: translateX(-50%); } }

footer { padding: 64px 24px 42px; border-bottom: 0; }
.footer-kicker { font-size: 18px; font-weight: 900; text-transform: uppercase; margin: 0 0 10px; color: var(--muted); }
.footer-mail { font-size: clamp(36px, 6vw, 96px); line-height: .9; font-weight: 900; text-transform: uppercase; }
.small { max-width: 360px; align-self: end; }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; gap: 16px; }
  nav { gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
  .hero, .grid-section, .showcase-title { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 48px; }
  .strip, .card-grid, .poster-grid { grid-template-columns: 1fr; }
  .strip span { border-right: 0; border-bottom: 1px solid var(--ink); }
  .strip span:last-child { border-bottom: 0; }
  .poster { min-height: 330px; }
  footer { padding: 64px 24px 42px; border-bottom: 0; }
}

@media (max-width: 560px) {
  .site-header { padding: 14px; }
  .brand img { width: 86px; }
  nav a { display: none; }
  .hero, .grid-section, .showcase, footer { padding: 64px 24px 42px; border-bottom: 0; }
  h1 { font-size: 64px; }
}

.card-grid.four-cards { grid-template-columns: repeat(4, 1fr); }
.card-grid.four-cards article { min-height: 300px; }
@media (max-width: 1100px) {
  .card-grid.four-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .card-grid.four-cards { grid-template-columns: 1fr; }
}

/* Requested revisions */
.theme-toggle { display: none !important; }
.footer-mail { font-size: clamp(21px, 3.48vw, 56px); text-transform: lowercase; }


/* CTA requested revisions */
.brand { background: transparent !important; }
.site-header .brand, .site-header .brand img { box-shadow: none !important; }
.lead, .statement p { font-size: clamp(20px, 2.2vw, 34px); }
