:root {
  color-scheme: light;
  --ink: #1e2227;
  --muted: #5d6570;
  --line: #d9ded8;
  --paper: #f7f5ef;
  --field: #44684d;
  --gold: #b88a32;
  --sky: #d7e5e7;
  --rust: #8c4b35;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 78vh;
  overflow: hidden;
  background: linear-gradient(180deg, #eef4f2 0%, #f7f5ef 72%);
}

.hero-art {
  position: relative;
  min-height: 520px;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 253, 248, 0.92) 0 8%, transparent 9%),
    linear-gradient(180deg, var(--sky) 0 48%, #e9dfc9 49% 63%, #57765b 64% 100%);
  isolation: isolate;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  inset: auto -12% 0;
  height: 43%;
  background:
    linear-gradient(142deg, transparent 0 21%, rgba(255, 253, 248, 0.18) 21% 23%, transparent 23% 100%),
    repeating-linear-gradient(168deg, rgba(30, 34, 39, 0.16) 0 2px, transparent 2px 58px),
    linear-gradient(150deg, #335641, #6f7f4d 52%, #a67839);
  clip-path: polygon(0 36%, 100% 4%, 100% 100%, 0% 100%);
  z-index: 2;
}

.hero-art::after {
  inset: auto -8% 0;
  height: 28%;
  background:
    repeating-linear-gradient(172deg, rgba(255, 253, 248, 0.26) 0 1px, transparent 1px 42px),
    linear-gradient(145deg, #6b8a55, #c1a45b);
  clip-path: polygon(0 24%, 100% 22%, 100% 100%, 0% 100%);
  z-index: 3;
}

.horizon {
  position: absolute;
  left: 10%;
  right: 8%;
  top: 44%;
  height: 2px;
  background: rgba(30, 34, 39, 0.32);
  z-index: 4;
}

.signal {
  position: absolute;
  width: 2px;
  background: rgba(30, 34, 39, 0.7);
  transform-origin: bottom center;
  z-index: 5;
}

.signal::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -16px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(30, 34, 39, 0.26);
  border-radius: 50%;
  transform: translateX(-50%);
}

.signal-one {
  left: 58%;
  bottom: 31%;
  height: 210px;
  transform: rotate(-8deg);
}

.signal-two {
  left: 72%;
  bottom: 35%;
  height: 168px;
  transform: rotate(5deg);
  opacity: 0.7;
}

.signal-three {
  left: 42%;
  bottom: 28%;
  height: 138px;
  transform: rotate(10deg);
  opacity: 0.55;
}

.hero-content {
  align-self: center;
  padding: clamp(40px, 7vw, 96px);
  max-width: 720px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.9;
  font-weight: 700;
}

.lede {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  background: transparent;
}

.status-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(38px, 6vw, 84px) clamp(22px, 7vw, 96px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-band h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.status-band p:last-child {
  align-self: end;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.grid article {
  min-height: 230px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--paper);
}

.grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.grid h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.grid p {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .hero,
  .status-band,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 340px;
    order: -1;
  }

  .hero-content {
    padding: 34px 22px 46px;
  }

  .status-band {
    padding: 42px 22px;
  }
}
