:root {
  --bg: #f5f1e9;
  --bg-strong: #eee7dc;
  --paper: #fbfaf6;
  --ink: #10231d;
  --ink-soft: #31423b;
  --muted: #6a706a;
  --line: rgba(16, 35, 29, 0.17);
  --line-strong: rgba(16, 35, 29, 0.28);
  --forest: #0d2a21;
  --forest-2: #081813;
  --brass: #a8793c;
  --brass-soft: #c9a16a;
  --white: #fffdfa;
  --shadow: 0 24px 70px rgba(16, 35, 29, 0.14);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1440px;
  --pad: clamp(22px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(168, 121, 60, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--paper), var(--bg) 32rem);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--forest);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  min-height: 58px;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 8px 24px rgba(16, 35, 29, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 1.8vw, 1.72rem);
  letter-spacing: 0;
}

.brand-mark {
  display: none;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4.2vw, 64px);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.site-nav a {
  position: relative;
  padding: 20px 0 18px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
}

.section-band {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: var(--pad);
  padding-left: var(--pad);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(360px, 1fr);
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 76px);
  padding-top: clamp(42px, 8vh, 96px);
  padding-bottom: clamp(42px, 8vh, 96px);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: var(--pad);
  bottom: 34px;
  width: 72px;
  height: 1px;
  background: var(--brass);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 680px;
  padding-right: clamp(0px, 1.5vw, 18px);
}

.small-caps {
  margin: 0 0 20px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(3.55rem, 6.1vw, 6.25rem);
  line-height: 0.94;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border: 1px solid var(--forest);
  border-radius: 2px;
  font-size: 0.92rem;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #17382d;
}

.button-secondary {
  color: var(--forest);
  background: rgba(251, 250, 246, 0.7);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--brass);
  color: #62421e;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: none;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(251, 250, 246, 0.98) 28%, rgba(251, 250, 246, 0.5) 47%, rgba(251, 250, 246, 0) 68%),
    linear-gradient(180deg, rgba(251, 250, 246, 0) 78%, var(--paper) 100%);
  pointer-events: none;
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center center;
}

.intro {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  padding-top: clamp(52px, 7vw, 90px);
  padding-bottom: clamp(52px, 7vw, 90px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  min-width: 0;
}

.rule {
  display: block;
  width: 68px;
  height: 1px;
  margin-bottom: 22px;
  background: var(--brass);
}

.rule.light {
  background: var(--brass-soft);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.intro-text {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
}

.intro-text p:last-child,
.scope-lead p:last-child,
.scope-item p:last-child,
.step p:last-child,
.details p:last-child {
  margin-bottom: 0;
}

.principles {
  display: grid;
  gap: 18px;
  padding-left: clamp(26px, 5vw, 70px);
  border-left: 1px solid var(--line);
}

.principle {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--ink-soft);
}

.principle svg,
.scope-item svg,
.step svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--brass);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.scope {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(36px, 5vw, 76px);
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(62px, 7vw, 104px);
}

.scope-lead p {
  max-width: 330px;
  margin-top: 26px;
  color: var(--muted);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.scope-item {
  min-height: 310px;
  padding: 8px clamp(26px, 4vw, 56px) 0;
  border-right: 1px solid var(--line);
}

.scope-item svg {
  width: 46px;
  height: 46px;
  margin-bottom: 40px;
}

.scope-item h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.08;
}

.scope-item p {
  color: var(--muted);
  font-size: 0.96rem;
}

.governance {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-2);
}

.governance-bg {
  position: absolute;
  inset: 0;
}

.governance-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 19, 0.97) 0%, rgba(8, 24, 19, 0.88) 35%, rgba(8, 24, 19, 0.55) 66%, rgba(8, 24, 19, 0.86) 100%),
    linear-gradient(0deg, rgba(8, 24, 19, 0.85), rgba(8, 24, 19, 0.18));
  content: "";
}

.governance-bg img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.governance-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(42px, 6vw, 90px);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) var(--pad);
}

.governance-intro {
  max-width: 390px;
}

.governance-intro h2 {
  margin-bottom: 26px;
}

.governance-intro p {
  color: rgba(255, 253, 250, 0.76);
}

.governance-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-self: end;
  border-left: 1px solid rgba(201, 161, 106, 0.58);
}

.step {
  min-height: 240px;
  padding: 12px clamp(22px, 3vw, 40px) 0;
  border-right: 1px solid rgba(201, 161, 106, 0.58);
}

.step svg {
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  color: var(--brass-soft);
}

.step h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 650;
}

.step p {
  color: rgba(255, 253, 250, 0.68);
  font-size: 0.88rem;
}

.details {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 90px);
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(60px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
}

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

.details-grid > div {
  min-height: 190px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(251, 250, 246, 0.74);
}

.details h3 {
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.details p {
  color: var(--muted);
}

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 82px) var(--pad) 36px;
}

.footer-heading {
  margin-bottom: 34px;
}

.footer-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 5vw, 72px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

address {
  display: grid;
  gap: 4px;
  color: var(--ink-soft);
  font-style: normal;
}

address strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 650;
}

.registry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-left: 1px solid var(--line);
}

.registry div {
  padding-left: clamp(22px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.registry dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.registry dd {
  margin: 0;
  color: var(--ink-soft);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--ink);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--brass);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
  }

  .hero-media {
    min-height: 460px;
    margin: 0 calc(var(--pad) * -1);
    order: -1;
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(251, 250, 246, 0) 0%, var(--paper) 100%);
  }

  .hero-media img {
    min-height: 460px;
  }

  .intro,
  .scope,
  .details,
  .governance-content {
    grid-template-columns: 1fr;
  }

  .principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 0;
    border-left: 0;
  }

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

  .scope-grid,
  .governance-steps {
    border-top: 1px solid var(--line);
  }

  .governance-steps {
    border-top-color: rgba(201, 161, 106, 0.58);
  }

  .scope-item,
  .step {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .scope-item:nth-child(2),
  .step:nth-child(2) {
    border-right: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

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

  .brand {
    font-size: 1.15rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .menu-button {
    position: relative;
    z-index: 31;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 20px;
    padding: 96px var(--pad) 40px;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 8px 0;
    font-family: var(--serif);
    font-size: 2.1rem;
  }

  .site-nav a::after {
    bottom: 2px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-media img {
    min-height: 330px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.7vw, 3rem);
    line-height: 1.02;
  }

  .hero-copy {
    padding-right: 0;
  }

  .button {
    width: 100%;
  }

  .intro,
  .scope,
  .details,
  .site-footer {
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .principles,
  .scope-grid,
  .governance-steps,
  .details-grid,
  .registry {
    grid-template-columns: 1fr;
  }

  .scope-grid,
  .governance-steps,
  .registry {
    border-left: 0;
  }

  .scope-item,
  .step,
  .registry div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step {
    border-bottom-color: rgba(201, 161, 106, 0.58);
  }

  .scope-item {
    padding-right: 0;
    padding-left: 0;
  }

  .scope-item svg {
    margin-bottom: 22px;
  }

  .governance-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .governance-bg::after {
    background: linear-gradient(180deg, rgba(8, 24, 19, 0.94), rgba(8, 24, 19, 0.82));
  }

  .step {
    min-height: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .registry div {
    padding: 18px 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
