:root {
  color-scheme: light;
  --paper: #f7f4ec;
  --ink: #181712;
  --muted: #625f57;
  --line: #d9d1c2;
  --field: #fffdfa;
  --forest: #214337;
  --blue: #315b7c;
  --persimmon: #d95f32;
  --mustard: #c7972b;
  --shadow: 0 24px 60px rgba(24, 23, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(217, 95, 50, 0.45);
  outline-offset: 4px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.brand,
.nav-links,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.nav-links {
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
  gap: clamp(28px, 7vw, 92px);
  min-height: calc(100svh - 82px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--persimmon);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 11vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
}

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

.button.secondary {
  background: transparent;
}

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

.signal-panel {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 28px;
  background: var(--forest);
  color: #f9f6ed;
  box-shadow: var(--shadow);
}

.signal-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
}

.panel-topline,
.metric-grid,
.signal-lines {
  position: relative;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.panel-topline span {
  color: rgba(255, 255, 255, 0.72);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.18);
}

.metric-grid div {
  min-height: 104px;
  padding: 16px;
  background: rgba(33, 67, 55, 0.92);
}

.metric-value,
.metric-label {
  display: block;
}

.metric-value {
  font-weight: 900;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.metric-label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.signal-lines {
  display: grid;
  gap: 16px;
  margin-top: 64px;
}

.signal-lines span {
  display: block;
  height: 12px;
  background: linear-gradient(90deg, var(--mustard), var(--persimmon), var(--blue));
}

.signal-lines span:nth-child(2) {
  width: 72%;
}

.signal-lines span:nth-child(3) {
  width: 88%;
}

.signal-lines span:nth-child(4) {
  width: 56%;
}

.section-band,
.notes-section,
.contact-strip {
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.section-band {
  background: var(--field);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
  margin-bottom: 44px;
}

.project-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.project-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--field);
}

.project-item p,
.note-columns p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.status-pill {
  align-self: flex-start;
  padding: 5px 9px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-pill.muted {
  border-color: var(--line);
  color: var(--muted);
}

.notes-section {
  border-bottom: 1px solid var(--line);
}

.note-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 5vw, 60px);
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: var(--ink);
  color: var(--paper);
}

.contact-strip .eyebrow {
  color: var(--mustard);
}

.contact-strip h2 {
  max-width: 850px;
}

.contact-strip .button.primary {
  flex: 0 0 auto;
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .site-header,
  .hero,
  .section-heading,
  .note-columns,
  .contact-strip {
    display: block;
  }

  .nav-links {
    margin-top: 18px;
    justify-content: space-between;
  }

  .signal-panel {
    min-height: 340px;
    margin-top: 42px;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: clamp(3rem, 18vw, 5.5rem);
  }

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

  .project-item,
  .site-footer {
    display: grid;
  }

  .contact-strip .button {
    margin-top: 28px;
  }
}

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