@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --navy: #102d36;
  --blue: #173f51;
  --coral: #e9583e;
  --teal: #a9d8cf;
  --yellow: #f1c84b;
  --green: #789e62;
  --line: rgba(16, 45, 54, 0.2);
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  background: var(--navy);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px clamp(24px, 4vw, 68px);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 230, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.brand-mark {
  width: 50px;
  color: var(--coral);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  font-size: 13px;
  font-weight: 600;
}

nav a,
.footer-links a {
  position: relative;
}

nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding: 13px 18px;
  border: 1px solid var(--navy);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--navy);
  color: var(--cream);
}

.hero {
  min-height: calc(100vh - 100px);
  max-height: 950px;
  display: grid;
  grid-template-columns: minmax(430px, 42%) 1fr;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 7vw, 110px) clamp(36px, 5vw, 88px);
}

.eyebrow,
.kicker {
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
}

.eyebrow span {
  width: 27px;
  height: 3px;
  background: var(--coral);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  margin-bottom: 34px;
  font-size: clamp(55px, 6.5vw, 105px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

h1 em,
.join h2 em {
  color: var(--coral);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 520px;
  margin-bottom: 40px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.hero-actions,
.join-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 56px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--coral);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy);
}

.text-link {
  padding: 12px 0 7px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(16, 45, 54, 0.08);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 56% center;
}

.hero-stamp {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 124px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: rotate(7deg);
}

.hero-stamp b {
  font-size: 21px;
  line-height: 1;
}

.image-caption {
  position: absolute;
  bottom: 24px;
  left: 28px;
  margin: 0;
  padding: 10px 13px;
  background: rgba(245, 240, 230, 0.92);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticker {
  overflow: hidden;
  background: var(--coral);
  color: white;
}

.ticker div {
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 19px 28px;
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker b {
  color: var(--yellow);
}

.section {
  display: grid;
  grid-template-columns: minmax(150px, 18%) 1fr;
}

.section-label {
  padding: 110px clamp(24px, 4vw, 68px);
  border-right: 1px solid var(--line);
}

.section-label span {
  display: block;
  margin-bottom: 13px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
}

.section-label p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.mission-content,
.principles-content {
  padding: 105px clamp(36px, 8vw, 135px) 120px;
}

.kicker {
  color: var(--coral);
}

.mission h2 {
  max-width: 1100px;
  margin-bottom: 68px;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.mission h2 em {
  display: inline-block;
  padding: 0 0.18em 0.06em;
  background: var(--teal);
  font-style: normal;
  font-weight: inherit;
  transform: rotate(-1deg);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 7vw, 110px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.mission-grid p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75;
}

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

.section-label-light {
  border-color: rgba(245, 240, 230, 0.22);
}

.actions-content {
  padding: 105px clamp(36px, 8vw, 135px) 120px;
}

.actions-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 80px;
}

.actions-heading h2,
.principles h2 {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.action-list {
  border-top: 1px solid rgba(245, 240, 230, 0.3);
}

.action-list article {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  gap: 25px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid rgba(245, 240, 230, 0.3);
}

.action-number {
  padding-top: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.action-list h3 {
  margin-bottom: 9px;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1.1;
}

.action-list p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(245, 240, 230, 0.72);
  line-height: 1.6;
}

.action-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(245, 240, 230, 0.4);
  border-radius: 50%;
  color: var(--yellow);
  font-weight: 700;
}

.principles-content h2 {
  max-width: 900px;
  margin-bottom: 75px;
}

.principle-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.principle-cards article {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
}

.principle-cards article:nth-child(2) {
  background: var(--teal);
  transform: translateY(24px);
}

.principle-cards article:nth-child(3) {
  background: var(--yellow);
}

.principle-cards span {
  font-size: 11px;
  font-weight: 700;
}

.principle-cards h3 {
  margin: auto 0 18px;
  font-size: clamp(26px, 2.5vw, 38px);
}

.principle-cards p {
  margin-bottom: 0;
  line-height: 1.55;
}

.join {
  position: relative;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  overflow: hidden;
  background: var(--coral);
  color: white;
  text-align: center;
}

.join .kicker {
  color: var(--yellow);
}

.join h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.join h2 em {
  color: var(--yellow);
}

.join > p:not(.kicker) {
  position: relative;
  z-index: 1;
  margin-bottom: 38px;
  font-size: 17px;
  line-height: 1.6;
}

.join-actions {
  position: relative;
  z-index: 1;
  justify-content: center;
  gap: 12px;
}

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

.button-outline {
  border-color: white;
  color: white;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: white;
  color: var(--coral);
}

.join-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.orbit-one {
  width: 760px;
  height: 760px;
}

.orbit-two {
  width: 1100px;
  height: 410px;
  transform: rotate(-13deg);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 70px clamp(24px, 4vw, 68px) 35px;
  background: var(--navy);
  color: var(--cream);
}

.footer-brand {
  grid-row: span 2;
}

footer > p,
.footer-links {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-links span {
  color: rgba(245, 240, 230, 0.6);
}

.copyright {
  grid-column: 2 / 4;
  margin: 35px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 240, 230, 0.2);
  color: rgba(245, 240, 230, 0.55);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

*:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    max-height: none;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .section {
    grid-template-columns: 90px 1fr;
  }

  .section-label {
    padding-right: 30px;
    padding-left: 30px;
  }

  .actions-heading {
    grid-template-columns: 1fr;
  }

  .principle-cards {
    grid-template-columns: 1fr;
  }

  .principle-cards article {
    min-height: 240px;
  }

  .principle-cards article:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 82px;
    padding: 14px 18px;
  }

  .brand-mark {
    width: 44px;
  }

  .header-cta {
    padding: 11px 13px;
  }

  .header-cta span {
    display: none;
  }

  .hero-copy {
    padding: 58px 22px 62px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-visual img {
    object-position: 62% center;
  }

  .hero-stamp {
    width: 100px;
    right: 16px;
    top: 16px;
    font-size: 10px;
  }

  .ticker div {
    justify-content: flex-start;
  }

  .section {
    display: block;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-label span {
    margin: 0;
  }

  .section-label p {
    writing-mode: initial;
    transform: none;
  }

  .mission-content,
  .actions-content,
  .principles-content {
    padding: 68px 22px 80px;
  }

  .mission h2 {
    margin-bottom: 48px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .actions-heading {
    margin-bottom: 50px;
  }

  .action-list article {
    grid-template-columns: 35px 1fr;
    gap: 12px;
  }

  .action-icon {
    display: none;
  }

  .principles-content h2 {
    margin-bottom: 50px;
  }

  .join {
    min-height: 670px;
  }

  .join-actions {
    flex-direction: column;
    width: min(100%, 340px);
  }

  .join-actions .button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

  .footer-brand,
  .copyright {
    grid-row: auto;
    grid-column: auto;
  }

  .copyright {
    margin-top: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
