:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #596574;
  --paper: #fbf7ee;
  --line: rgba(23, 32, 42, 0.14);
  --white: #fffaf2;
  --blue: #185fa5;
  --blue-deep: #042c53;
  --gold: #c8a45a;
  --green: #1f7a62;
  --shadow: 0 24px 70px rgba(28, 45, 63, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px clamp(18px, 4vw, 64px);
  color: #142234;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-wordmark {
  display: block;
  width: clamp(210px, 22vw, 274px);
  height: auto;
  filter: drop-shadow(0 10px 26px rgba(32, 54, 76, 0.08));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  font-size: 14px;
  font-weight: 680;
}

.header-actions a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.header-actions a:hover {
  border-color: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 63% center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 247, 238, 0.96) 0%, rgba(251, 247, 238, 0.84) 31%, rgba(251, 247, 238, 0.18) 68%),
    linear-gradient(180deg, rgba(251, 247, 238, 0.58) 0%, rgba(251, 247, 238, 0.04) 34%, rgba(251, 247, 238, 0.7) 100%);
}

.hero-content {
  align-self: center;
  width: min(760px, 100%);
  padding: 130px clamp(18px, 7vw, 96px) 76px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(52px, 8.2vw, 112px);
  line-height: 0.96;
  font-weight: 820;
  letter-spacing: 0;
}

.intro {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 760;
  box-shadow: var(--shadow);
}

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

.button.secondary {
  color: var(--blue-deep);
  border: 1px solid rgba(18, 60, 99, 0.2);
  background: rgba(255, 250, 242, 0.76);
  backdrop-filter: blur(14px);
}

.button:hover {
  transform: translateY(-1px);
}

.status-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.status-item {
  min-height: 210px;
  padding: clamp(24px, 4vw, 46px);
  background: var(--paper);
}

.status-item span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 820;
}

.status-item strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.status-item p {
  max-width: 330px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    padding-top: 18px;
  }

  .brand-wordmark {
    width: 186px;
  }

  .header-actions {
    gap: 14px;
    font-size: 13px;
  }

  .header-actions a:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(251, 247, 238, 0.96) 0%, rgba(251, 247, 238, 0.84) 43%, rgba(251, 247, 238, 0.32) 100%),
      linear-gradient(90deg, rgba(251, 247, 238, 0.94) 0%, rgba(251, 247, 238, 0.52) 100%);
  }

  .hero-content {
    padding: 118px 20px 58px;
  }

  h1 {
    font-size: clamp(46px, 16vw, 74px);
  }

  .intro {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .status-band {
    grid-template-columns: 1fr;
  }

  .status-item {
    min-height: auto;
  }

  .status-item span {
    margin-bottom: 20px;
  }
}
