
:root {
  --navy: #0d1b2a;
  --ink: #12181f;
  --cream: #f3efe4;
  --paper: #fbfaf6;
  --lime: #bfff19;
  --blue: #315c75;
  --clay: #c8674b;
  --line: rgba(18, 24, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  align-items: center;
  background: var(--navy);
  color: white;
  display: flex;
  height: 92px;
  justify-content: space-between;
  padding: 0 clamp(24px, 4.5vw, 72px);
}

.brand,
.footer-brand {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(26px, 2.5vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
}

.brand img {
  height: 60px;
  object-fit: contain;
  width: 60px;
}

.brand-words {
  color: white;
  white-space: nowrap;
}

.brand b,
.footer-brand span {
  color: var(--lime);
  font-weight: inherit;
}

nav {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
}

nav a {
  font-size: 17px;
  position: relative;
}

nav a::after {
  background: var(--lime);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: 68px minmax(480px, 48%) 1fr;
  min-height: calc(100svh - 92px);
  overflow: hidden;
}

.coordinate-rail {
  align-items: center;
  background: var(--cream);
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  font-size: 10px;
  font-weight: 800;
  justify-content: space-around;
  letter-spacing: 0.16em;
  padding: 28px 0;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.coordinate-rail i {
  background: var(--lime);
  height: 40px;
  width: 2px;
}

.hero-copy {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px);
  position: relative;
}

.eyebrow,
.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  align-items: center;
  display: flex;
  gap: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow i {
  background: var(--lime);
  height: 3px;
  width: 48px;
}

.hero h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(72px, 7.5vw, 132px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.84;
  margin: 38px 0 28px;
  max-width: 720px;
}

.hero-intro {
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.45;
  margin: 0 0 32px;
  max-width: 580px;
}

.primary-button {
  align-items: center;
  align-self: flex-start;
  background: var(--lime);
  display: flex;
  font-size: 19px;
  font-weight: 800;
  gap: 40px;
  padding: 20px 24px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--navy);
  color: var(--lime);
  transform: translateY(-3px);
}

.arrow {
  display: inline-block;
  font-size: 1.25em;
  transition: transform 180ms ease;
}

a:hover .arrow,
button:hover .arrow {
  transform: translateX(5px);
}

a:hover .diagonal {
  transform: translate(4px, -4px);
}

.micro-note {
  bottom: 22px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0;
  position: absolute;
  text-transform: uppercase;
}

.hero-image {
  background: #6c7b75 url("hero-urban-motion.png") center / cover no-repeat;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.hero-image::after {
  background: linear-gradient(90deg, rgba(13, 27, 42, 0.1), transparent 35%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-mark {
  bottom: 7%;
  color: var(--lime);
  font-size: clamp(160px, 18vw, 320px);
  font-weight: 200;
  line-height: 0.6;
  position: absolute;
  right: 9%;
  z-index: 1;
}

.manifesto {
  background: var(--navy);
  color: white;
  display: grid;
  gap: 8vw;
  grid-template-columns: 160px minmax(0, 1fr);
  padding: clamp(80px, 10vw, 160px) clamp(24px, 7vw, 112px);
}

.manifesto .section-label {
  color: var(--lime);
}

.manifesto > div {
  display: grid;
  gap: clamp(36px, 7vw, 100px);
  grid-template-columns: 1.35fr 0.65fr;
}

.manifesto-lead {
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 0;
}

.manifesto-copy {
  align-self: end;
  color: #c9d2da;
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.pillars,
.stories {
  overflow: clip;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px);
}

.section-heading {
  margin-bottom: 64px;
  max-width: 820px;
}

.section-heading h2,
.about h2,
.newsletter h2 {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(54px, 6vw, 100px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.9;
  margin: 18px 0 22px;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  font-size: 20px;
  line-height: 1.5;
  max-width: 600px;
}

.pillar-grid {
  border-left: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pillar-card {
  aspect-ratio: 0.7;
  border-bottom: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pillar-card:hover {
  box-shadow: 9px 9px 0 var(--ink);
  transform: translate(-4px, -4px);
  z-index: 1;
}

.pillar-card.lime { background: var(--lime); }
.pillar-card.cream { background: var(--cream); }
.pillar-card.blue { background: var(--blue); color: white; }
.pillar-card.clay { background: var(--clay); color: var(--ink); }

.pillar-top {
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
}

.pillar-card h3 {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(48px, 4.5vw, 76px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.pillar-tagline {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 16px;
}

.pillar-copy {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.stories {
  background: var(--cream);
}

.section-heading.horizontal {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: none;
}

.section-heading.horizontal > a {
  border-bottom: 2px solid var(--ink);
  font-weight: 800;
  padding: 10px 0;
}

.story-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.story-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
}

.story-visual {
  align-items: flex-start;
  aspect-ratio: 1.35;
  display: flex;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.story-visual span {
  background: var(--paper);
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 8px 10px;
  text-transform: uppercase;
  z-index: 2;
}

.story-visual.steps {
  background: repeating-linear-gradient(135deg, var(--navy) 0 35px, var(--lime) 35px 70px);
}

.story-visual.steps::after {
  color: var(--paper);
  content: "01";
  font-family: Impact, sans-serif;
  font-size: 180px;
  position: absolute;
  right: -5px;
  top: 15px;
}

.story-visual.bowl {
  background: var(--clay);
}

.story-visual.bowl::after {
  background: radial-gradient(circle at 35% 35%, var(--lime) 0 12%, #f0bf55 12% 23%, #274d3a 23% 34%, var(--cream) 34% 51%, var(--ink) 52% 54%, transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}

.story-visual.sun {
  background: var(--blue);
}

.story-visual.sun::before,
.story-visual.sun::after {
  border: 25px solid var(--lime);
  border-radius: 50%;
  content: "";
  height: 180px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
}

.story-visual.sun::after {
  border-color: var(--paper);
  height: 95px;
  width: 95px;
}

.story-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.story-meta {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.story-body h3 {
  font-size: clamp(24px, 2vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.07;
  margin: 0 0 18px;
}

.story-body > p:not(.story-meta) {
  color: #4a5156;
  line-height: 1.6;
  margin: 0 0 30px;
}

.story-body a {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  text-transform: uppercase;
}

.about {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: 0.8fr 1.2fr;
  padding: clamp(90px, 12vw, 180px) clamp(24px, 9vw, 140px);
}

.about-stamp {
  align-items: center;
  aspect-ratio: 1;
  background: var(--navy);
  border-radius: 50%;
  color: white;
  display: flex;
  flex-direction: column;
  font-family: Impact, sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  justify-content: center;
  line-height: 0.8;
  outline: 4px solid var(--lime);
  outline-offset: 12px;
  transform: rotate(-7deg);
}

.about-stamp strong {
  color: var(--lime);
  font-size: 1.7em;
  font-weight: 300;
  line-height: 0.65;
}

.about-copy .section-label {
  color: var(--blue);
}

.about-copy > p:not(.section-label) {
  font-size: 18px;
  line-height: 1.75;
  max-width: 720px;
}

.newsletter {
  background: var(--lime);
  padding: clamp(80px, 10vw, 150px) clamp(24px, 12vw, 190px);
  text-align: center;
}

.newsletter h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

.newsletter > p:not(.section-label) {
  font-size: 19px;
  line-height: 1.6;
  margin: 0 auto 34px;
  max-width: 640px;
}

.newsletter form {
  display: flex;
  margin: 0 auto 16px;
  max-width: 720px;
}

.newsletter input {
  background: var(--paper);
  border: 2px solid var(--ink);
  flex: 1;
  min-width: 0;
  padding: 20px;
}

.newsletter button {
  align-items: center;
  background: var(--navy);
  border: 2px solid var(--navy);
  color: white;
  cursor: pointer;
  display: flex;
  font-weight: 800;
  gap: 28px;
  padding: 20px 24px;
  text-transform: uppercase;
}

.newsletter input:disabled,
.newsletter button:disabled {
  cursor: not-allowed;
  opacity: 0.78;
}

.newsletter small {
  display: block;
  font-size: 11px;
}

footer {
  background: var(--navy);
  color: white;
  display: grid;
  gap: 42px;
  grid-template-columns: 1.2fr 0.8fr;
  padding: 70px clamp(24px, 7vw, 112px) 36px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
  justify-content: flex-end;
}

.disclaimer {
  color: #9eabb6;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}

.copyright {
  align-self: end;
  color: #9eabb6;
  font-size: 12px;
  margin: 0;
  text-align: right;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 48px 55% 1fr;
  }

  .hero-copy {
    padding: 48px;
  }

  .hero h1 {
    font-size: clamp(64px, 9vw, 100px);
  }

  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-card {
    aspect-ratio: auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .story-visual {
    aspect-ratio: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    height: auto;
    padding-bottom: 20px;
    padding-top: 22px;
  }

  .brand img {
    height: 48px;
    width: 48px;
  }

  nav {
    gap: 24px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  nav a {
    font-size: 14px;
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .coordinate-rail {
    display: none;
  }

  .hero-copy {
    min-height: 570px;
    padding: 54px 24px 70px;
  }

  .hero h1 {
    font-size: clamp(64px, 20vw, 94px);
    margin-top: 30px;
  }

  .hero-image {
    min-height: 540px;
  }

  .micro-note {
    bottom: 24px;
  }

  .manifesto {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .manifesto > div {
    grid-template-columns: 1fr;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 390px;
  }

  .section-heading.horizontal {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .story-card {
    display: flex;
  }

  .story-visual {
    aspect-ratio: 1.25;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-stamp {
    margin: 0 auto;
    max-width: 320px;
    width: 85%;
  }

  .newsletter form {
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
