:root {
  --paper: #f3f0e8;
  --paper-deep: #e6dfcf;
  --ink: #181510;
  --muted: #625b4e;
  --line: #c9bda6;
  --green: #074f47;
  --green-dark: #032f2b;
  --coal: #100f0d;
  --sepia: #9b7a4d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 15, 13, .04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 15, 13, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px, 32px 32px, auto;
}

a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-dark);
}

.site-top {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .85rem clamp(1.25rem, 4vw, 4rem);
  color: #f7f1df;
  background: rgba(16, 15, 13, .94);
  border-bottom: 1px solid rgba(218, 198, 151, .32);
  backdrop-filter: blur(10px);
}

.brand {
  color: #f7f1df;
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
}

.site-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .95rem;
}

.site-top a {
  color: #f7f1df;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 3.3rem));
  display: flex;
  align-items: end;
  overflow: hidden;
  color: #f8f0db;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, .92), rgba(8, 8, 7, .48) 42%, rgba(8, 8, 7, .2)),
    linear-gradient(180deg, rgba(8, 8, 7, .15), rgba(8, 8, 7, .78)),
    url("hero-no-text.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background:
    repeating-linear-gradient(90deg, rgba(246, 224, 170, .14) 0 1px, transparent 1px 86px),
    linear-gradient(180deg, transparent, rgba(7, 7, 6, .68));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 0 clamp(1.25rem, 5vw, 6rem) clamp(3rem, 8vw, 6rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 .65rem;
  font-size: .78rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #9f8f6e;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.25rem, 10vw, 8.5rem);
  line-height: .92;
  letter-spacing: 0;
}

.subtitle {
  margin: 1rem 0 0;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  color: #f1dfb9;
}

.lead {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  font-size: 1.12rem;
}

.chapter-overview {
  width: min(1080px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.chapter-overview h2 {
  margin: 0 0 1.35rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.15;
}

.chapter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: clamp(3rem, 8vw, 7rem);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.chapter-list li {
  break-inside: avoid;
  margin: 0 0 1rem;
  padding: 0;
}

.status-band {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 6vw, 6rem);
  background: #15130f;
  color: #f6edda;
  border-top: 1px solid rgba(155, 122, 77, .45);
}

.status-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.status-band p:last-child {
  max-width: 44rem;
  margin: .2rem 0 0;
  font-size: 1.1rem;
}

.service-overview {
  width: min(1080px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.service-overview h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.15;
}

.service-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-links a {
  min-height: 7rem;
  display: flex;
  align-items: end;
  padding: 1rem;
  background: rgba(255, 253, 246, .9);
  font-size: 1.1rem;
}

.service-hero {
  min-height: 46svh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 6vw, 6rem) clamp(3rem, 6vw, 5rem);
  color: #f8f0db;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, .94), rgba(8, 8, 7, .62), rgba(8, 8, 7, .32)),
    url("hero-no-text.png") center / cover no-repeat;
}

.service-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  line-height: .95;
}

.service-hero .lead {
  max-width: 47rem;
}

.service-page {
  width: min(1080px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.progress-board,
.swot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.progress-board article,
.swot-grid article,
.text-page {
  background: rgba(255, 253, 246, .92);
}

.progress-board article,
.swot-grid article {
  padding: clamp(1.1rem, 2.5vw, 1.65rem);
}

.progress-board span {
  display: inline-block;
  margin-bottom: .75rem;
  color: var(--sepia);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.progress-board h2,
.swot-grid h2,
.text-page h2 {
  margin-top: 0;
  line-height: 1.2;
}

.text-page {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.page-header {
  position: relative;
  overflow: hidden;
  color: #f8f0db;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, .94), rgba(8, 8, 7, .58), rgba(8, 8, 7, .36)),
    url("hero-no-text.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(218, 198, 151, .38);
  padding: 2rem 0 clamp(2.5rem, 6vw, 5rem);
}

.page-header .wrap {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
}

.page-header .subtitle {
  max-width: 760px;
  font-size: 1.15rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: #f8f0db;
}

.page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  padding: 2.25rem 1.25rem 4rem;
}

.chapter-nav,
.chapter-main {
  background: rgba(255, 253, 246, .92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(38, 30, 16, .08);
  padding: 1.25rem;
}

.chapter-nav {
  align-self: start;
}

.chapter-nav h2,
.chapter-main h2 {
  line-height: 1.2;
}

.chapter-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chapter-nav li {
  border-top: 1px solid rgba(201, 189, 166, .7);
  padding: .65rem 0;
}

.chapter-nav li:first-child {
  border-top: 0;
}

.label {
  display: inline-block;
  background: #1b1812;
  border: 1px solid rgba(155, 122, 77, .55);
  border-radius: 999px;
  color: #f4e6c6;
  padding: .22rem .7rem;
  font-size: .85rem;
  margin-bottom: 1rem;
}

.meta-list {
  padding-left: 1.25rem;
}

.round-notes {
  border-left: 4px solid var(--sepia);
  padding-left: 1rem;
}

.round-notes p:first-child {
  margin-top: 0;
}

.round-notes p:last-child {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .site-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 620px;
    background-position: 58% center;
  }

  .chapter-list {
    columns: 1;
  }

  .status-band,
  .page-layout,
  .progress-board,
  .swot-grid,
  .service-links {
    grid-template-columns: 1fr;
  }
}
