:root {
  --paper: #efe8d8;
  --paper-2: #e7dcc8;
  --ink: #0a0a0a;
  --blue: #123a9f;
  --line: rgba(10, 10, 10, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-image:
    radial-gradient(circle at 30% 15%, rgba(255,255,255,.45), transparent 32rem),
    linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px);
  background-size: auto, 100% 7px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.15rem clamp(1rem, 4vw, 3rem);
  border-bottom: 3px solid var(--ink);
  background: rgba(239, 232, 216, .94);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-wordmark {
  display: block;
  width: clamp(15rem, 31vw, 30rem);
  max-width: min(52vw, 30rem);
  height: auto;
  flex: 0 1 auto;
  object-fit: contain;
}

.brand-mark {
  display: block;
  width: clamp(3.2rem, 6vw, 5.5rem);
  height: auto;
  flex: 0 0 auto;
}

.mark {
  display: inline-block;
  width: 3.5rem;
  height: 2rem;
  background: var(--ink);
  border-radius: 4rem 4rem 0 0;
  clip-path: polygon(0 100%, 0 62%, 10% 62%, 10% 38%, 22% 38%, 22% 18%, 36% 18%, 36% 4%, 64% 4%, 64% 18%, 78% 18%, 78% 38%, 90% 38%, 90% 62%, 100% 62%, 100% 100%);
}
.mark.large { width: 7rem; height: 4rem; background: var(--blue); flex: 0 0 auto; }

nav {
  display: flex;
  gap: clamp(.8rem, 2.2vw, 2rem);
  flex: 0 0 auto;
}
nav a, .footer-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
nav a:hover, .footer-links a:hover { color: var(--blue); }

.hero {
  display: grid;
  grid-template-columns: minmax(18rem, .74fr) minmax(22rem, 1.26fr);
  min-height: auto;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow, .label {
  margin: 0 0 1rem;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 8rem;
  height: 4px;
  background: var(--blue);
  margin-top: .5rem;
}

h1, h2, .section-title, .names span {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  line-height: .92;
  font-weight: 400;
}

h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(4.4rem, 10.5vw, 10rem);
}

.tagline {
  margin: 2rem 0 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  padding: 0 1.5rem;
  border: 2px solid var(--blue);
  color: var(--blue);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.button.primary { color: #fff; background: var(--blue); }
.button:hover { transform: translateY(-2px); }

.poster-card {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(1rem, 2.5vw, 2rem);
}
.poster-card img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  filter: contrast(1.05) grayscale(.05);
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,.14);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.info-block {
  padding: clamp(2rem, 5vw, 4rem);
  min-height: 16rem;
  border-right: 4px solid var(--blue);
}
.info-block:last-child { border-right: 0; }
.info-block h2 { margin: 0; font-size: clamp(2.5rem, 6vw, 5rem); }
.info-block p:not(.label) { font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.center { text-align: center; }

.split-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.section-title { margin: 0; font-size: clamp(3rem, 8vw, 8rem); color: var(--blue); }
.names { display: grid; gap: 1rem; align-content: center; }
.names span { font-size: clamp(4rem, 10vw, 9rem); }

.about-card {
  margin: clamp(1rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  gap: 2rem;
  align-items: center;
  border: 2px solid var(--line);
  border-radius: 1rem;
  background: rgba(255,255,255,.24);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.08);
}
.about-card h2 { margin: 0 0 1rem; font-size: clamp(2.5rem, 6vw, 5rem); }
.about-card p:last-child { max-width: 48rem; font-size: 1.1rem; line-height: 1.6; font-weight: 700; }

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: var(--blue);
  color: #fff;
}
footer p { margin: 0; font-weight: 700; }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-links a { color: #fff; }

@media (max-width: 1200px) {
  .site-header { position: static; flex-wrap: wrap; gap: 1rem; }
  .brand { flex: 1 1 100%; justify-content: space-between; }
  .brand-wordmark { width: min(74vw, 28rem); max-width: 74vw; }
  .brand-mark { width: 5rem; }
  nav { width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: .3rem; }
  .hero, .split-section { grid-template-columns: 1fr; }
  .poster-card { border-left: 0; border-top: 1px solid var(--line); }
  .poster-card img { max-width: 820px; max-height: none; }
  h1 { font-size: clamp(4.5rem, 18vw, 9rem); }
}

@media (max-width: 760px) {
  .site-header { padding: 1rem; }
  .brand-wordmark { width: min(74vw, 18rem); max-width: 74vw; }
  .brand-mark { width: 3.5rem; }
  nav { gap: 1rem; }
  nav a { font-size: .9rem; }
  .hero-copy { padding: 2rem 1rem; }
  h1 { font-size: clamp(4rem, 24vw, 7rem); }
  .poster-card { padding: 1rem; }
  .info-grid { grid-template-columns: 1fr; }
  .info-block { border-right: 0; border-bottom: 4px solid var(--blue); }
  .info-block:last-child { border-bottom: 0; }
  .center { text-align: left; }
  .about-card { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; align-items: flex-start; }
}
