:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --paper: #fffdf8;
  --ink: #1d2522;
  --muted: #59645f;
  --line: #d9d4c8;
  --accent: #245b4f;
  --accent-strong: #123b35;
  --accent-soft: #d7ebe5;
  --gold: #b8792e;
  --blue: #2d5f8b;
  --shadow: 0 24px 70px rgba(29, 37, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  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;
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav,
.hero-actions,
.status-row,
.contact-section {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 38%, var(--gold) 0 22%, transparent 23%),
    linear-gradient(135deg, var(--accent), var(--blue));
  box-shadow: 0 0 0 5px rgba(36, 91, 79, 0.1);
}

.nav {
  gap: 8px;
}

.nav a {
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(36, 91, 79, 0.1);
  color: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  width: min(1120px, calc(100% - 40px));
  min-height: calc(100vh - 116px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.74fr);
  gap: 64px;
  align-items: center;
  padding: 46px 0 84px;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 92px);
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

h3 {
  font-size: 22px;
}

.lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 760;
  font-size: 15px;
}

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

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

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.66);
  color: var(--ink);
}

.hero-panel {
  min-height: 490px;
  border: 1px solid rgba(36, 91, 79, 0.16);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.74)),
    repeating-linear-gradient(0deg, rgba(36, 91, 79, 0.08) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(45, 95, 139, 0.08) 0 1px, transparent 1px 42px);
  box-shadow: var(--shadow);
}

.status-row {
  width: fit-content;
  gap: 10px;
  border: 1px solid rgba(36, 91, 79, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  background: var(--paper);
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 740;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2aa36b;
  box-shadow: 0 0 0 5px rgba(42, 163, 107, 0.14);
}

.signal-list {
  display: grid;
  gap: 18px;
  margin: 128px 0 0;
}

.signal-list div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.signal-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-list dd {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 720;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

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

.work-item {
  min-height: 232px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--paper);
}

.work-item p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

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

.note-list {
  border-top: 1px solid var(--line);
}

.note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  font-size: 22px;
  font-weight: 720;
}

.note time {
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

.contact-section {
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  max-width: 760px;
}

.site-footer {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 36px 0 58px;
  }

  .hero-panel {
    min-height: 360px;
  }

  .signal-list {
    margin-top: 72px;
  }

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

  .section {
    padding: 64px 0;
  }

  .note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-header,
  .site-footer,
  .hero,
  .section {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions .button,
  .contact-section .button {
    width: 100%;
  }

  .hero-panel,
  .work-item {
    padding: 20px;
  }
}
