:root {
  --bg: #f4f1eb;
  --surface: rgba(255, 252, 247, 0.92);
  --surface-strong: #fffdf9;
  --ink: #1b2730;
  --muted: #5d6972;
  --accent: #1f4f66;
  --accent-dark: #153847;
  --sand: #d7c1a2;
  --line: rgba(27, 39, 48, 0.12);
  --shadow: 0 18px 40px rgba(27, 39, 48, 0.08);
  --shadow-strong: 0 30px 70px rgba(27, 39, 48, 0.14);
  --scoping: #dde8f6;
  --consultation: #deeee7;
  --drafting: #f6ead8;
  --review: #f4e1dc;
  --complete: #e7ebe2;
  --content-width: min(1240px, calc(100vw - 2rem));
  --radius: 1.5rem;
  --radius-large: 2rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 193, 162, 0.24), transparent 30rem),
    linear-gradient(180deg, #f1ede6 0%, var(--bg) 42%, #f8f5ef 100%);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(244, 241, 235, 0.94), rgba(244, 241, 235, 0.72));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 39, 48, 0.08);
}

.nav-shell,
.hero__content,
.section,
.footer-shell {
  width: var(--content-width);
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.site-mark,
.footer-brand {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.site-nav__label {
  color: rgba(93, 105, 114, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-divider {
  color: rgba(27, 39, 48, 0.28);
}

.page-shell {
  padding-bottom: 4rem;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 42rem;
  padding: 6.5rem 0 3rem;
  background-size: cover;
  background-position: center;
  color: #f8f5ef;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 19, 24, 0.16) 0%, rgba(13, 19, 24, 0.48) 54%, rgba(13, 19, 24, 0.78) 100%),
    linear-gradient(90deg, rgba(13, 19, 24, 0.66) 0%, rgba(13, 19, 24, 0.22) 56%, rgba(13, 19, 24, 0.08) 100%);
}

.hero--curriculum {
  background-image: url("banner_curr.JPG");
  background-position: center 48%;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow,
.section-kicker,
.board-column__eyebrow,
.document-card__eyebrow,
.metric-card__label {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__eyebrow {
  color: rgba(248, 245, 239, 0.8);
}

.hero__title,
.section-heading h2,
.split-callout h2,
.work-card h4,
.timeline-body h3,
.document-card h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
}

.hero__title {
  max-width: 12ch;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.hero__lede,
.section-heading p,
.split-callout p,
.work-card p,
.timeline-body p,
.document-list a,
.footer-copy,
.panel-note {
  color: var(--muted);
}

.hero__lede {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(248, 245, 239, 0.9);
  font-size: 1.05rem;
}

.hero__actions,
.footer-links,
.tag-list,
.timeline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__actions {
  margin-top: 1.8rem;
}

.approval-banner {
  max-width: 56rem;
  margin-top: 1.4rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(27, 39, 48, 0.12);
  border-left: 6px solid #b7793f;
  border-radius: 0 1.1rem 1.1rem 0;
  background: rgba(255, 248, 239, 0.94);
  box-shadow: var(--shadow);
}

.approval-banner__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.approval-banner__body {
  margin: 0;
  color: var(--ink);
}

.approval-banner--hero {
  background: rgba(255, 249, 241, 0.14);
  border-color: rgba(248, 245, 239, 0.22);
  border-left-color: rgba(231, 191, 132, 0.95);
  backdrop-filter: blur(10px);
}

.approval-banner--hero .approval-banner__eyebrow {
  color: rgba(248, 245, 239, 0.78);
}

.approval-banner--hero .approval-banner__body {
  color: rgba(248, 245, 239, 0.96);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #f8f5ef;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
}

.button:hover {
  color: #f8f5ef;
  background: var(--accent-dark);
}

.button--ghost {
  border-color: rgba(248, 245, 239, 0.26);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.section {
  padding: 4rem 0 0;
}

.section--tight {
  padding-top: 2rem;
}

.section-heading {
  width: min(48rem, 100%);
  margin-bottom: 1.75rem;
}

.section-kicker,
.document-card__eyebrow,
.timeline-date,
.board-column__eyebrow {
  color: var(--accent);
}

.section-heading h2 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
}

.metric-grid,
.board-grid,
.document-grid {
  display: grid;
  gap: 1.4rem;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card,
.split-callout,
.board-column,
.work-card,
.document-card,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 1.35rem;
}

.metric-card__value {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.metric-card__label {
  margin-top: 0.85rem;
}

.split-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  overflow: hidden;
}

.split-callout__copy,
.process-panel {
  padding: 1.6rem;
}

.process-panel {
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.process-list,
.document-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list {
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
}

.process-list li {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.65rem;
  align-items: start;
}

.process-list strong {
  color: var(--ink);
}

.stage-dot {
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: var(--line);
}

.stage-dot--scoping {
  background: #87a9ce;
}

.stage-dot--consultation {
  background: #77a889;
}

.stage-dot--active {
  background: #8a9f64;
}

.stage-dot--drafting {
  background: #cf9e52;
}

.stage-dot--review {
  background: #cc7d66;
}

.stage-dot--complete {
  background: #7f8d6f;
}

.panel-note {
  margin: 1.2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.board-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  margin-bottom: 1.4rem;
}

.board-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.board-toolbar__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.filter-chip {
  padding: 0.62rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  cursor: pointer;
}

.filter-chip[aria-pressed="true"] {
  background: var(--accent);
  color: #f8f5ef;
  border-color: var(--accent);
}

.board-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.board-column {
  min-height: 100%;
  padding: 1rem;
}

.board-column--scoping {
  background: linear-gradient(180deg, rgba(221, 232, 246, 0.92), rgba(255, 252, 247, 0.94));
}

.board-column--consultation {
  background: linear-gradient(180deg, rgba(222, 238, 231, 0.92), rgba(255, 252, 247, 0.94));
}

.board-column--active {
  background: linear-gradient(180deg, rgba(238, 242, 224, 0.94), rgba(255, 252, 247, 0.94));
}

.board-column--drafting {
  background: linear-gradient(180deg, rgba(246, 234, 216, 0.92), rgba(255, 252, 247, 0.94));
}

.board-column--review {
  background: linear-gradient(180deg, rgba(244, 225, 220, 0.92), rgba(255, 252, 247, 0.94));
}

.board-column--complete {
  background: linear-gradient(180deg, rgba(231, 235, 226, 0.94), rgba(255, 252, 247, 0.94));
}

.board-column__header {
  margin-bottom: 1rem;
}

.board-column__header h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.65rem;
}

.work-card {
  margin-bottom: 1rem;
  padding: 1.15rem;
  background: rgba(255, 253, 249, 0.84);
}

.work-card--collapsible {
  padding: 0;
  overflow: hidden;
}

.work-card--collapsible[hidden] {
  display: none;
}

.work-card:last-child {
  margin-bottom: 0;
}

.work-card h4 {
  margin-bottom: 0.65rem;
  font-size: 1.38rem;
}

.work-card p {
  margin: 0.45rem 0 0;
}

.work-card__summary {
  position: relative;
  display: block;
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 3rem 1rem 1.15rem;
}

.work-card__summary::-webkit-details-marker {
  display: none;
}

.work-card__summary::after {
  content: "+";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(31, 79, 102, 0.08);
  color: var(--accent-dark);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.work-card--collapsible[open] > .work-card__summary::after {
  content: "−";
}

.work-card__summary .status-pill {
  margin-bottom: 0.65rem;
}

.work-card__summary-title,
.work-card__summary-lede,
.work-card__meta-inline {
  display: block;
}

.work-card__summary-title {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.work-card__summary-lede {
  margin-top: 0.45rem;
  color: var(--muted);
}

.work-card__meta-inline {
  margin-top: 0.55rem;
  color: var(--ink);
  font-size: 0.88rem;
}

.work-card__body {
  padding: 0 1.15rem 1.15rem;
  border-top: 1px solid var(--line);
}

.work-card__body > :first-child {
  margin-top: 0.9rem;
}

.work-meta {
  color: var(--ink);
  font-size: 0.92rem;
}

.work-card--empty {
  min-height: 17rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill--scoping {
  background: rgba(31, 79, 102, 0.1);
  color: #355c88;
}

.status-pill--consultation {
  background: rgba(71, 120, 88, 0.12);
  color: #3c6d4d;
}

.status-pill--drafting {
  background: rgba(168, 116, 36, 0.14);
  color: #9f6d23;
}

.status-pill--review {
  background: rgba(158, 78, 53, 0.12);
  color: #995541;
}

.status-pill--complete {
  background: rgba(93, 105, 69, 0.12);
  color: #5d6945;
}

.tag-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.tag {
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: rgba(31, 79, 102, 0.08);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.tag:hover,
.text-link:hover {
  color: var(--accent-dark);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(10rem, 12rem) minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem;
}

.timeline-date {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline-body h3 {
  margin-bottom: 0.45rem;
  font-size: 1.32rem;
}

.timeline-body p {
  margin: 0;
}

.timeline-links {
  margin-top: 0.7rem;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.document-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.document-card {
  padding: 1.35rem;
}

.document-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.42rem;
}

.document-list {
  display: grid;
  gap: 0.6rem;
}

.document-list a {
  color: var(--muted);
}

.document-list a:hover {
  color: var(--accent-dark);
}

.site-footer {
  border-top: 1px solid rgba(27, 39, 48, 0.08);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 0 3rem;
}

@media (max-width: 1180px) {
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .board-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-callout {
    grid-template-columns: 1fr;
  }

  .process-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .metric-grid,
  .timeline-item,
  .board-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .hero__content,
  .section,
  .footer-shell {
    width: min(100vw - 1.2rem, 100%);
  }

  .hero {
    min-height: 34rem;
    padding-top: 5.4rem;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .section {
    padding-top: 3rem;
  }

  .metric-card,
  .split-callout__copy,
  .process-panel,
  .board-column,
  .work-card,
  .work-card__summary,
  .work-card__body,
  .timeline-item,
  .document-card {
    padding: 1rem;
  }

  .footer-shell {
    flex-direction: column;
    padding-bottom: 2.25rem;
  }
}
