:root {
  --navy: #061a2f;
  --navy-deep: #03111f;
  --cream: #f2eadc;
  --paper: #f8f4ec;
  --gold: #d69a24;
  --ink: #101921;
  --line-light: rgba(255, 255, 255, 0.22);
  --font-display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --font-sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
}

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

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.site-header {
  align-items: center;
  background: rgba(248, 244, 236, 0.96);
  border-bottom: 1px solid rgba(6, 26, 47, 0.12);
  display: flex;
  height: 96px;
  justify-content: center;
  padding: 0 clamp(24px, 4vw, 64px);
  position: relative;
  z-index: 20;
}

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

.brand-mark {
  height: 86px;
  object-fit: contain;
  width: auto;
}

.hero {
  background: var(--navy);
  display: grid;
  grid-template-columns: minmax(350px, 0.72fr) minmax(640px, 1.5fr);
  min-height: calc(100dvh - 96px);
}

.hero-copy {
  align-items: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(56px, 7vw, 112px) clamp(32px, 5vw, 84px);
  position: relative;
  text-align: center;
}

.hero-copy::before {
  border: 1px solid rgba(214, 154, 36, 0.2);
  border-radius: 50%;
  content: "";
  height: 420px;
  left: -235px;
  position: absolute;
  top: -190px;
  width: 420px;
}

.kicker {
  align-items: center;
  color: #e1b85f;
  display: flex;
  font-size: 10px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.21em;
  margin: 0 0 32px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.88;
  margin: 0;
}

.hero h1 em {
  color: var(--gold);
  font-weight: 500;
}

.hero-description {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.85;
  margin: 36px 0 0;
  max-width: 560px;
}

.primary-cta {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.16em;
  margin: 44px auto 0;
  padding: 0 3px 12px;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
  width: fit-content;
}

.primary-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  overflow: hidden;
}

.experience-card {
  background-color: #172637;
  background-image: linear-gradient(
      180deg,
      rgba(3, 17, 31, 0.18) 0%,
      rgba(3, 17, 31, 0.08) 32%,
      rgba(3, 17, 31, 0.92) 100%
    ),
    var(--card-image);
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  overflow: hidden;
  padding: clamp(22px, 2.4vw, 38px);
  position: relative;
  isolation: isolate;
}

.experience-card[href] {
  cursor: pointer;
}

.experience-card::before {
  background: var(--card-image) center / cover;
  content: "";
  inset: 0;
  position: absolute;
  transform: scale(1.001);
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: -2;
}

.experience-card::after {
  background: linear-gradient(
    180deg,
    rgba(3, 17, 31, 0.28) 0%,
    rgba(3, 17, 31, 0.06) 40%,
    rgba(3, 17, 31, 0.94) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.experience-card:hover::before {
  transform: scale(1.07);
}

.card-topline {
  align-items: center;
  display: flex;
  font-size: 9px;
  font-weight: 700;
  justify-content: flex-end;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-topline span {
  color: rgba(255, 255, 255, 0.68);
}

.card-content h2 {
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 0 0 12px;
}

.card-content p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 330px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.card-content .card-action,
.card-content .card-status {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.16em;
  margin-top: 18px;
  text-transform: uppercase;
  width: fit-content;
}

.card-status {
  color: rgba(255, 255, 255, 0.62);
}

.card-action span {
  color: var(--gold);
  font-size: 17px;
  transition: transform 180ms ease;
}

.experience-card:hover .card-action span {
  transform: translate(3px, -3px);
}

.experience-card:hover .card-content p,
.experience-card:focus-within .card-content p {
  opacity: 1;
  transform: translateY(0);
}

.manifesto {
  background: var(--paper);
  padding: clamp(80px, 11vw, 160px) clamp(24px, 8vw, 128px);
}

.section-label {
  color: #796b57;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0 0 48px;
  text-transform: uppercase;
}

.manifesto-grid {
  display: grid;
  gap: clamp(40px, 8vw, 140px);
  grid-template-columns: minmax(320px, 1.2fr) minmax(300px, 0.8fr);
}

.manifesto h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.82;
  margin: 0;
}

.manifesto h2 span {
  color: var(--gold);
  font-style: italic;
}

.manifesto-copy {
  align-self: end;
  border-left: 1px solid rgba(6, 26, 47, 0.18);
  padding-left: clamp(24px, 4vw, 56px);
}

.manifesto-copy p {
  color: #4f5150;
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
}

.manifesto-copy p + p {
  margin-top: 22px;
}

footer {
  align-items: center;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.13em;
  padding: 34px clamp(24px, 5vw, 72px);
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer a:last-child:hover {
  color: var(--gold);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 570px;
  }

  .experience-grid {
    min-height: 900px;
  }

  .card-content p {
    opacity: 1;
    transform: none;
  }
}

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

  .brand-mark {
    height: 72px;
  }

  .hero-copy {
    min-height: calc(100dvh - 82px);
    padding: 72px 24px 62px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 68px);
    line-height: 0.92;
  }

  .hero-description {
    font-size: 15px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .experience-card {
    border-left: 0;
    min-height: 64vh;
    padding: 24px;
  }

  .card-content h2 {
    font-size: 44px;
  }

  .manifesto {
    padding-block: 96px;
  }

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

  .manifesto h2 {
    font-size: clamp(58px, 18vw, 78px);
  }

  .manifesto-copy {
    border-left: 0;
    border-top: 1px solid rgba(6, 26, 47, 0.18);
    padding-left: 0;
    padding-top: 32px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

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

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