:root {
  color-scheme: light;
  --paper: #f7f4ee;
  --paper-strong: #fffdf8;
  --ink: #151713;
  --muted: #6a6f66;
  --line: rgba(28, 33, 26, 0.16);
  --forest: #173e34;
  --forest-strong: #0e2b24;
  --copper: #9f6b3f;
  --plum: #4f2f45;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(21, 23, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(23, 62, 52, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 62, 52, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 88px 88px;
}

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

#signalCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-strong);
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(23, 62, 52, 0.28);
  background: var(--forest);
  color: var(--paper-strong);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

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

.hero {
  display: flex;
  align-items: center;
  min-height: 74svh;
  padding: clamp(72px, 12vh, 132px) clamp(20px, 5vw, 72px) clamp(54px, 9vh, 96px);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(900px, 100%);
}

.eyebrow,
.section-kicker,
.role-meta {
  margin: 0;
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin-bottom: 18px;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--forest-strong);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  margin: 0;
  color: var(--forest-strong);
  font-size: 18px;
  line-height: 1.3;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: #3c433b;
  font-size: 22px;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--forest);
  font-size: 14px;
  font-weight: 700;
}

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

.button.primary:hover {
  background: var(--forest-strong);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.48);
  color: var(--forest);
}

.button.secondary:hover {
  background: var(--paper-strong);
}

.section {
  padding: clamp(56px, 9vw, 112px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 86px);
  max-width: 1180px;
  margin: 0 auto;
}

.prose {
  color: #3d433c;
  font-size: 18px;
  line-height: 1.75;
}

.prose p {
  margin: 0;
}

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

.intro-section {
  background: rgba(255, 253, 248, 0.72);
}

.approach-section {
  background: rgba(239, 233, 223, 0.62);
}

.approach-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.approach-list article {
  display: grid;
  grid-template-columns: 52px minmax(160px, 0.62fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.approach-list span {
  color: var(--plum);
  font-size: 13px;
  font-weight: 700;
}

.approach-list p {
  margin: 0;
  color: #454a44;
  line-height: 1.65;
}

.careers-section {
  background: rgba(255, 253, 248, 0.78);
}

.role-board {
  max-width: 1180px;
  margin: 46px auto 0;
  border-top: 1px solid var(--line);
}

.role-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 116px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.role-row h3 {
  margin-top: 9px;
  font-size: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 40px;
  border: 1px solid rgba(23, 62, 52, 0.35);
  color: var(--forest);
  font-weight: 700;
}

.text-link:hover {
  background: var(--forest);
  color: var(--white);
}

.role-detail {
  max-width: 1180px;
  margin: 50px auto 0;
  border-top: 1px solid var(--line);
}

.role-detail-head {
  max-width: 760px;
  padding: 34px 0 22px;
}

.role-detail-head p:last-child {
  margin: 18px 0 0;
  color: #3d433c;
  font-size: 18px;
  line-height: 1.7;
}

.role-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 68px);
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
}

.role-detail-grid section {
  min-width: 0;
}

.role-detail-grid h3,
.role-apply h3 {
  margin-bottom: 16px;
}

.role-detail-grid ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-detail-grid li {
  position: relative;
  padding-left: 22px;
  color: #414740;
  line-height: 1.65;
}

.role-detail-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  background: var(--copper);
}

.role-apply {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.role-apply p {
  max-width: 720px;
  margin: 0;
  color: #414740;
  line-height: 1.65;
}

.contact-section {
  background: var(--forest-strong);
  color: var(--paper-strong);
}

.contact-band {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-band h2,
.contact-band p {
  color: var(--paper-strong);
}

.contact-band p {
  margin: 12px 0 0;
}

.contact-links {
  display: grid;
  gap: 12px;
  min-width: min(420px, 100%);
}

.contact-links a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
  color: var(--paper-strong);
  font-weight: 700;
}

.contact-links a:hover {
  color: #d8b48a;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #11130f;
  color: rgba(255, 253, 248, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

  .hero {
    min-height: 66svh;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section-grid,
  .approach-list article {
    grid-template-columns: 1fr;
  }

  .approach-list article {
    gap: 10px;
  }

  .role-row,
  .role-apply,
  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .role-detail-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .brand {
    white-space: normal;
  }

  .nav-links {
    font-size: 13px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .button,
  .text-link {
    width: 100%;
  }
}

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