:root {
  --sand: #f4dfbd;
  --sand-soft: #faedd4;
  --navy: #061923;
  --navy-soft: #102a35;
  --cream: #ffe9b8;
  --teal: #078b7e;
  --red: #e6381e;
  --gold: #e4b05e;
  --ink: #13262f;
  --muted: #6f5b42;
  --line: rgba(6, 25, 35, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(6, 25, 35, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(6, 25, 35, 0.04) 1px, transparent 1px),
    var(--sand-soft);
  background-size: 34px 34px;
  color: var(--ink);
  font-family: Satoshi, Outfit, "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(230, 56, 30, 0.12), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(7, 139, 126, 0.12), transparent 30%);
  transform: translateZ(0);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

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

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(6, 25, 35, 0.16);
  z-index: 20;
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.nav {
  position: sticky;
  top: 4px;
  z-index: 12;
  width: min(1240px, calc(100% - 28px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 14px auto 0;
  padding: 10px 12px;
  color: var(--cream);
  background: rgba(6, 25, 35, 0.88);
  border: 1px solid rgba(255, 233, 184, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 44px rgba(6, 25, 35, 0.18);
  backdrop-filter: blur(18px);
}

.nav-logo,
.nav nav {
  display: flex;
  align-items: center;
}

.nav-logo {
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav nav {
  gap: clamp(10px, 2vw, 24px);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  transition: transform 0.28s var(--ease), color 0.28s var(--ease);
}

.nav a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  width: min(1240px, calc(100% - 28px));
  min-height: calc(100dvh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(400px, 1.02fr);
  grid-template-rows: 1fr auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: end;
  margin: 18px auto 0;
  padding: clamp(18px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(250, 237, 212, 0.94), rgba(244, 223, 189, 0.8));
  border: 4px solid var(--navy);
  box-shadow: 12px 12px 0 rgba(6, 25, 35, 0.18);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--navy);
  font-family: "Arial Black", Impact, Satoshi, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 6.4vw, 6.35rem);
  line-height: 0.88;
  text-wrap: balance;
}

h2 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6.4vw, 7rem);
  line-height: 0.86;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 950;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.55;
}

.hero-line {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid var(--navy);
  box-shadow: 5px 5px 0 var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--navy);
}

.button:active {
  transform: translate(1px, 1px) scale(0.98);
  box-shadow: 3px 3px 0 var(--navy);
}

.primary {
  color: var(--cream);
  background: var(--red);
}

.ghost {
  color: var(--navy);
  background: var(--cream);
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  border: 4px solid var(--navy);
  background: var(--navy);
  transform: rotate(1.4deg);
  box-shadow: -12px 12px 0 var(--red);
}

.hero-media > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-float {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: clamp(120px, 18vw, 220px);
  filter: drop-shadow(0 16px 20px rgba(6, 25, 35, 0.34));
  animation: floatBadge 5s var(--ease) infinite;
}

.status-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.status-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--navy);
  border: 2px solid var(--navy);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  font-weight: 950;
  text-transform: uppercase;
}

.status-strip span:nth-child(2) {
  background: var(--teal);
}

.status-strip span:nth-child(3) {
  background: var(--red);
}

.marquee {
  display: flex;
  gap: 0;
  overflow: hidden;
  margin: 28px 0;
  color: var(--cream);
  background: var(--navy);
  border-block: 4px solid var(--red);
}

.marquee div {
  display: flex;
  flex: 0 0 auto;
  min-width: 100%;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 18px 28px;
  white-space: nowrap;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(1.5rem, 4vw, 4.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.image-run {
  width: min(1240px, calc(100% - 28px));
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  grid-template-rows: 420px 360px;
  gap: 16px;
  margin: 0 auto;
}

.shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border: 4px solid var(--navy);
}

.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(6, 25, 35, 0.28));
  pointer-events: none;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.shot:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.tall {
  grid-row: 1 / 3;
}

.wide {
  transform: translateY(42px);
}

.workshop {
  transform: translateX(-72px);
}

.manifesto {
  width: min(1240px, calc(100% - 28px));
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(20px, 4vw, 70px);
  align-items: center;
  margin: clamp(80px, 11vw, 160px) auto;
  padding-left: clamp(0px, 8vw, 120px);
}

.manifesto-mark {
  position: sticky;
  top: 120px;
  align-self: start;
}

.manifesto-mark img {
  filter: drop-shadow(0 24px 28px rgba(6, 25, 35, 0.22));
  animation: floatBadge 6s var(--ease) infinite;
}

.manifesto-copy p:not(.eyebrow) {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.22;
  font-weight: 750;
}

.education {
  width: min(1240px, calc(100% - 28px));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(22px, 5vw, 80px);
  align-items: end;
  margin: 0 auto clamp(80px, 10vw, 140px);
  padding: clamp(24px, 5vw, 64px);
  color: var(--cream);
  background: var(--navy);
  border: 4px solid var(--navy);
  box-shadow: 12px 12px 0 var(--teal);
}

.education h2 {
  color: var(--cream);
}

.edu-grid {
  display: grid;
  gap: 18px;
}

.edu-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 233, 184, 0.22);
}

.edu-grid span {
  color: var(--red);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.edu-grid p {
  margin: 0;
  color: rgba(255, 233, 184, 0.82);
}

.cinema {
  position: relative;
  width: min(1240px, calc(100% - 28px));
  min-height: 720px;
  display: grid;
  align-items: end;
  margin: 0 auto;
  overflow: hidden;
  border: 4px solid var(--navy);
  background: var(--navy);
}

.cinema img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transform: scale(1.04);
}

.cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 25, 35, 0.92), rgba(6, 25, 35, 0.16));
}

.cinema div {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: clamp(28px, 5vw, 64px);
}

.cinema h2 {
  color: var(--cream);
}

.closing {
  width: min(1240px, calc(100% - 28px));
  min-height: 78dvh;
  display: grid;
  align-content: center;
  justify-items: start;
  margin: 28px auto;
  padding: clamp(28px, 6vw, 80px);
  background:
    linear-gradient(135deg, rgba(230, 56, 30, 0.12), transparent 40%),
    var(--sand);
  border: 4px solid var(--navy);
  box-shadow: 12px 12px 0 rgba(6, 25, 35, 0.18);
}

.closing h2 {
  max-width: 1040px;
}

.footer {
  width: min(1240px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 28px;
  padding: 18px;
  color: var(--cream);
  background: var(--navy);
  border: 4px solid var(--navy);
}

.footer img {
  width: 76px;
}

.footer p {
  margin: 0;
  color: rgba(255, 233, 184, 0.84);
  font-weight: 800;
}

.footer a {
  font-weight: 950;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

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

@media (max-width: 980px) {
  .hero,
  .manifesto,
  .education {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 520px;
    transform: none;
  }

  .status-strip {
    grid-template-columns: 1fr;
  }

  .image-run {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .shot {
    min-height: 440px;
  }

  .tall,
  .wide,
  .workshop {
    grid-row: auto;
    transform: none;
  }

  .manifesto {
    padding-left: 0;
  }

  .manifesto-mark {
    position: relative;
    top: auto;
    max-width: 300px;
  }
}

@media (max-width: 680px) {
  .nav {
    position: relative;
    top: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .hero,
  .education,
  .closing,
  .cinema {
    border-width: 3px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
    line-height: 0.88;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 4rem);
    line-height: 0.9;
  }

  .marquee span {
    padding: 14px 18px;
    font-size: 1.5rem;
  }

  .cinema div {
    max-width: 100%;
    padding: 22px;
  }

  .cinema h2 {
    font-size: clamp(2rem, 9.5vw, 3.2rem);
  }

  .hero-media,
  .shot,
  .cinema {
    min-height: 420px;
  }

  .manifesto-copy p:not(.eyebrow) {
    font-size: 1.3rem;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
