:root {
  color-scheme: light;
  --paper: #f8f7f1;
  --panel: #ffffff;
  --ink: #202522;
  --muted: #60685f;
  --line: #d9ded4;
  --forest: #2f5f48;
  --brick: #a3533c;
  --blue: #567f91;
  --gold: #cf9b42;
  --shadow: 0 24px 80px rgba(32, 37, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(86, 127, 145, 0.13), transparent 28rem),
    linear-gradient(180deg, #fbfbf8 0%, var(--paper) 54%, #f1f4ef 100%);
  color: var(--ink);
  font-family: Aptos, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header,
.hero,
.section-intro,
.scope-grid,
.statement,
.details,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  flex: 0 0 auto;
  border-radius: 8px;
}

.brand-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  min-width: 0;
  padding: 4px;
  border: 1px solid rgba(47, 95, 72, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 40px rgba(32, 37, 34, 0.06);
}

.site-nav a {
  min-width: 0;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--forest);
  color: #ffffff;
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: stretch;
  gap: 56px;
  min-height: 650px;
  padding: 82px 0 74px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 5rem;
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 700;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #394139;
  font-size: 1.35rem;
}

.anchor-link {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.anchor-link:hover,
.anchor-link:focus-visible {
  background: #244c39;
  outline: 3px solid rgba(207, 155, 66, 0.42);
  outline-offset: 3px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 37, 34, 0.12);
  border-radius: 8px;
  background: #e8efe8;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-intro {
  max-width: 840px;
  margin-top: 18px;
  margin-bottom: 30px;
}

.section-intro p:last-child,
.statement p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.14rem;
}

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

.scope-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
}

.scope-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
}

.scope-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.statement {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement .section-label {
  grid-column: 1 / -1;
  margin-bottom: -42px;
}

.statement h2 {
  margin-bottom: 0;
}

.details {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 56px;
  padding: 96px 0 80px;
}

.details dl {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.details dl div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.details dt {
  color: var(--muted);
  font-weight: 800;
}

.details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.details a {
  color: var(--forest);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-top: 48px;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.35rem;
  }

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

  .scope-grid,
  .statement,
  .details {
    grid-template-columns: 1fr;
  }

  .statement {
    gap: 22px;
  }

  .statement .section-label {
    grid-column: auto;
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section-intro,
  .scope-grid,
  .statement,
  .details,
  .site-footer {
    width: min(1120px, calc(100% - 28px));
  }

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

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 8px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 36px 0 54px;
  }

  h1 {
    font-size: 2.22rem;
    line-height: 1.06;
    text-wrap: wrap;
  }

  h2 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.12rem;
  }

  .hero-visual {
    min-height: 300px;
  }

  .scope-grid {
    margin-bottom: 72px;
  }

  .statement {
    padding: 56px 0;
  }

  .details {
    gap: 24px;
    padding: 72px 0 58px;
  }

  .details dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
