:root {
  --navy: #082f63;
  --royal: #1760cf;
  --aqua: #2eb5e4;
  --ink: #11243b;
  --paper: #f7f8fa;
  --white: #ffffff;
  --mist: #e8eef5;
  --muted: #6d7b8c;
  --line: rgba(8, 47, 99, .16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(8,47,99,.08);
}

.brand img {
  width: 128px;
  max-height: 55px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  gap: 2rem;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  padding: 8px 0;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 2px;
  height: 1px;
  background: var(--aqua);
  transition: right .25s ease;
}

nav a:hover::after { right: 0; }

.hero {
  min-height: calc(100vh - 78px);
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(5,25,49,.78) 0%, rgba(5,25,49,.42) 46%, rgba(5,25,49,.06) 76%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  width: min(760px, 90vw);
  padding: 8vh 0 9vh 6vw;
}

.eyebrow, .section-kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 600;
}

.eyebrow { color: #bdeeff; }

h1, h2, h3 {
  font-family: "Montserrat", Arial, sans-serif;
  margin-top: 0;
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 6.5vw, 6.7rem);
  letter-spacing: -.045em;
  margin: .6rem 0 1.3rem;
}

.intro {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  max-width: 620px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.9);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.65);
  color: white;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .73rem;
  transition: .25s ease;
}

.button:hover {
  background: white;
  color: var(--navy);
}

.section {
  padding: 110px 6vw;
}

.section-kicker {
  color: var(--royal);
  margin-bottom: 1.4rem;
}

.manifesto {
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 8vw;
}

.manifesto h2,
.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  letter-spacing: -.04em;
  max-width: 820px;
}

.manifesto-copy {
  font-size: 1.08rem;
  color: #425268;
}

.manifesto-copy p:first-child {
  font-size: 1.28rem;
  color: var(--ink);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 52px;
}

.section-heading p {
  max-width: 520px;
  color: var(--muted);
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 28px;
}

.project-card--wide {
  grid-column: span 2;
}

.project-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--mist);
}

.project-card--wide img {
  aspect-ratio: 16 / 7.5;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}

.project-meta h3 {
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.project-meta p, .project-meta span {
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.perspective {
  min-height: 520px;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.perspective-content {
  position: relative;
  z-index: 2;
  max-width: 1020px;
}

.section-kicker.light { color: #8fdfff; }

blockquote {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1.12;
  letter-spacing: -.04em;
  margin: 0;
  max-width: 1000px;
}

.perspective-line {
  height: 2px;
  width: 120vw;
  position: absolute;
  left: -15vw;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, var(--aqua), rgba(46,181,228,.15));
  opacity: .72;
}
.line-a { top: 22%; transform: rotate(12deg); }
.line-b { top: 62%; transform: rotate(-8deg); }
.line-c { top: 83%; transform: rotate(-17deg); background: linear-gradient(90deg, transparent, var(--royal), rgba(23,96,207,.15)); }

.process {
  background: #fbfcfd;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.step {
  background: #fbfcfd;
  padding: 34px 28px 38px;
  min-height: 250px;
}

.step span {
  color: var(--aqua);
  font-size: .76rem;
  letter-spacing: .1em;
}

.step h3 {
  margin: 36px 0 14px;
  font-size: 1.45rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.closing-project {
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: end;
}

.closing-project > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.closing-card {
  position: relative;
  z-index: 2;
  width: min(610px, 86vw);
  margin: 0 0 6vw 6vw;
  background: rgba(255,255,255,.96);
  padding: 44px;
  box-shadow: 0 20px 80px rgba(0,0,0,.18);
}

.closing-card .eyebrow { color: var(--royal); }
.closing-card h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); margin-bottom: 18px; }
.closing-card p { color: var(--muted); }

.button--dark {
  color: var(--navy);
  border-color: var(--navy);
  margin-top: 8px;
}

.button--dark:hover {
  background: var(--navy);
  color: white;
}

footer {
  background: #fff;
  padding: 50px 6vw;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  max-width: 640px;
  width: min(100%, 640px);
}

.footer-copy {
  text-align: right;
  font-size: .9rem;
  color: var(--muted);
}

.footer-copy p { margin: 4px 0; }
.footer-copy a { color: var(--navy); }
.fineprint { margin-top: 18px !important; font-size: .78rem; }

@media (max-width: 900px) {
  nav { display: none; }
  .site-header { height: 66px; }
  .brand img { width: 110px; }
  .hero { min-height: 82vh; }
  .hero-content { padding: 7vh 6vw; }
  .hero-overlay { background: linear-gradient(0deg, rgba(5,25,49,.8) 0%, rgba(5,25,49,.15) 75%); }

  .section { padding: 78px 6vw; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 16px; }

  .project-grid { grid-template-columns: 1fr; gap: 36px; }
  .project-card--wide { grid-column: span 1; }
  .project-card--wide img, .project-card img { aspect-ratio: 4 / 3; }

  .steps { grid-template-columns: 1fr 1fr; }
  .closing-project { min-height: 620px; }
  .closing-card { margin: 0 6vw 6vw; }

  footer { grid-template-columns: 1fr; align-items: start; }
  .footer-copy { text-align: left; }
}

@media (max-width: 560px) {
  h1 { font-size: 3rem; }
  .hero-content { width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .closing-card { padding: 30px; }
}
