﻿:root {
  --navy: #031735;
  --navy-2: #062a5f;
  --blue: #0756b8;
  --blue-soft: #e8f1ff;
  --red: #d82032;
  --red-dark: #a90f1f;
  --white: #ffffff;
  --ink: #0d1420;
  --muted: #6d7888;
  --line: rgba(255,255,255,.14);
  --paper: #f3f6fb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #050b16;
  font-family: "Montserrat", Arial, sans-serif;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,0));
  transition: background .2s ease, padding .2s ease;
}
.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 14px;
  background: rgba(3, 23, 53, .96);
  backdrop-filter: blur(10px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 24px;
  font-weight: 900;
}
.brand strong,
.brand small { display: block; line-height: 1; }
.brand strong {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
}
.brand small {
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 26px; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.nav a { color: rgba(255,255,255,.8); }
.nav a:hover { color: #fff; }
.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(95deg, var(--red), var(--red-dark), var(--red));
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(216,32,50,.28);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; background: #fff; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  background: linear-gradient(90deg, var(--blue) 0 68%, var(--red) 68% 100%);
  z-index: 4;
}
.hero-image,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center top; z-index: 0; }
.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 28%, rgba(7,86,184,.15), transparent 32%),
    linear-gradient(90deg, rgba(1,9,22,.96) 0%, rgba(3,23,53,.82) 42%, rgba(3,23,53,.18) 100%),
    linear-gradient(0deg, #050b16 0%, rgba(5,11,22,.08) 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(82px, 13vh, 140px) clamp(18px, 7vw, 92px);
}
.hero-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.15;
}
.hero-kicker {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}
.eyebrow.red { color: var(--red); }
.eyebrow.light { color: rgba(255,255,255,.68); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Big Shoulders Display", Impact, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1 {
  margin: 0 0 18px;
  font-size: clamp(86px, 12vw, 168px);
  line-height: .78;
  color: #fff;
}
h1 span {
  display: block;
  color: var(--red);
  text-shadow: 0 16px 46px rgba(216,32,50,.28);
}
h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(48px, 6vw, 82px);
  line-height: .9;
}
h3 {
  margin-bottom: 8px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 600px;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  line-height: 1.45;
}
.hero-copy strong { color: #fff; font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 18px 34px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary,
.button.white {
  background: linear-gradient(95deg, var(--red), var(--red-dark), var(--red));
  background-size: 220% 100%;
  color: #fff;
  box-shadow: 0 14px 34px rgba(216,32,50,.28);
}
.button.secondary { border: 1px solid rgba(255,255,255,.36); color: #fff; background: rgba(255,255,255,.06); }

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #050b16;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.intro-item { padding: 34px clamp(18px, 4vw, 56px); border-right: 1px solid rgba(255,255,255,.1); }
.intro-item:last-child { border-right: 0; }
.intro-item strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: .95;
}
.intro-item span,
.section-copy p,
.section-heading p,
.proposal-list p,
.movement p,
.footer p,
.footer small { color: var(--muted); line-height: 1.65; }
.intro-item span { color: rgba(255,255,255,.64); font-size: 14px; }

.section { padding: clamp(78px, 10vw, 128px) clamp(18px, 6vw, 88px); }
.split {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(330px, .72fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  background: #fff;
}
.section-copy { max-width: 740px; }
.section-copy p { font-size: 17px; }
.portrait-panel { position: relative; overflow: hidden; border-radius: 0; box-shadow: 0 28px 70px rgba(3,23,53,.16); }
.portrait-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.46);
  z-index: 1;
  pointer-events: none;
}
.portrait-panel img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.blue-section {
  background:
    linear-gradient(180deg, rgba(3,23,53,.96), rgba(3,23,53,.98)),
    var(--navy);
  color: #fff;
}
.blue-section h2,
.blue-section h3 { color: #fff; }
.section-heading { width: min(980px, 100%); margin-bottom: 48px; }
.section-heading > p:last-child { max-width: 760px; font-size: 17px; }
.axis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.axis-card {
  min-height: 300px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.axis-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: .85;
}
.axis-card p { color: #fff; font-weight: 800; text-transform: uppercase; }
.axis-card ul { margin: 22px 0 0; padding-left: 0; list-style: none; }
.axis-card li { position: relative; margin-bottom: 12px; padding-left: 18px; color: rgba(255,255,255,.66); line-height: 1.5; }
.axis-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; background: var(--red); border-radius: 50%; }

.proposals { background: var(--paper); }
.proposal-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(3,23,53,.14);
}
.proposal-list > div {
  display: grid;
  grid-template-columns: minmax(220px, .35fr) 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(3,23,53,.14);
  background: transparent;
}
.proposal-list h3 { color: var(--navy); font-size: 42px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #050b16;
}
.gallery img { width: 100%; height: 420px; object-fit: cover; filter: saturate(.92) contrast(1.04); }

.movement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(74px, 9vw, 110px) clamp(18px, 6vw, 88px);
  background: var(--navy);
  color: #fff;
  border-top: 18px solid var(--red);
}
.movement > div { max-width: 860px; }
.movement h2 { color: #fff; }
.movement p { color: rgba(255,255,255,.68); font-size: 17px; }

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 42px clamp(18px, 6vw, 88px);
  background: #020814;
  color: #fff;
}
.footer strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}
.footer p { margin-bottom: 12px; color: rgba(255,255,255,.7); }
.footer small { color: rgba(255,255,255,.48); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 22px; max-width: 520px; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.72); }

@media (max-width: 1040px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 20px;
    background: rgba(3,23,53,.97);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 15px 4px; }
  .nav-cta { text-align: center; }
  .hero { min-height: 94vh; }
  .hero-content { margin-inline: 18px; }
  .intro-band,
  .split,
  .axis-grid { grid-template-columns: 1fr; }
  .intro-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .proposal-list > div { grid-template-columns: 1fr; gap: 8px; }
  .movement,
  .footer { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .site-header { padding-inline: 16px; }
  .brand strong { font-size: 22px; }
  .brand small { font-size: 9px; }
  .hero-image { object-position: 58% top; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(1,9,22,.96), rgba(3,23,53,.68)),
      linear-gradient(0deg, #050b16 0%, rgba(5,11,22,.1) 56%);
  }
  h1 { font-size: clamp(78px, 24vw, 112px); }
  h2 { font-size: clamp(44px, 15vw, 62px); }
  .hero-kicker { font-size: 16px; }
  .hero-actions,
  .button { width: 100%; }
  .axis-card { min-height: auto; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 310px; }
}