:root {
  color-scheme: light;
  --ink: #1e2522;
  --muted: #5e6964;
  --paper: #f8f6ef;
  --surface: #ffffff;
  --line: #d8d6cb;
  --forest: #24352f;
  --moss: #687965;
  --clay: #9a5f45;
  --gold: #c5a45d;
  --blue: #536f82;
  --shadow: 0 24px 70px rgba(30, 37, 34, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 54px);
  background: rgba(248, 246, 239, 0.92);
  border-bottom: 1px solid rgba(36, 53, 47, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--forest);
  color: var(--paper);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.brand-name,
.brand-line {
  display: block;
}

.brand-name {
  font-weight: 760;
  letter-spacing: 0;
}

.brand-line {
  color: var(--muted);
  font-size: 13px;
}

.menu-button {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(36, 53, 47, 0.16);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.language-switch a,
.language-switch span {
  display: inline-flex;
  min-width: 34px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
}

.language-switch span {
  background: var(--forest);
  color: var(--paper);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(20px, 4vw, 54px) 72px;
  background:
    linear-gradient(90deg, rgba(197, 164, 93, 0.16), transparent 32%),
    linear-gradient(180deg, #f8f6ef 0%, #eee9dd 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 6vw, 90px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  font-weight: 720;
  text-decoration: none;
}

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

.button.secondary {
  background: transparent;
  color: var(--forest);
}

.evidence-panel,
.contact-card,
.status-box {
  border: 1px solid rgba(36, 53, 47, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.evidence-panel {
  padding: 22px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  text-transform: uppercase;
}

.record-row {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.record-row:last-child {
  border-bottom: 0;
}

.row-key {
  font-weight: 760;
}

.row-value {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
}

.body-copy {
  color: var(--muted);
  font-size: 18px;
}

.body-copy p {
  margin-bottom: 18px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(36, 53, 47, 0.14);
  border-radius: var(--radius);
  background: var(--surface);
}

.card:nth-child(2) {
  border-top: 4px solid var(--blue);
}

.card:nth-child(3) {
  border-top: 4px solid var(--gold);
}

.card:first-child {
  border-top: 4px solid var(--clay);
}

.card-number {
  display: block;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.card p,
.principle-list li {
  color: var(--muted);
}

.principles {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  padding: 24px 0 0;
  border-top: 3px solid rgba(104, 121, 101, 0.35);
  font-size: 17px;
}

.principle-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.status {
  width: min(980px, calc(100% - 40px));
}

.status-box {
  padding: clamp(28px, 5vw, 54px);
  background: var(--forest);
  color: var(--paper);
}

.status-box .section-kicker {
  color: #d7bd78;
}

.status-box p {
  max-width: 760px;
  color: rgba(248, 246, 239, 0.78);
  font-size: 18px;
}

.download-note {
  max-width: 760px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(248, 246, 239, 0.22);
}

.download-note p {
  margin-bottom: 14px;
}

.download-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid rgba(248, 246, 239, 0.46);
  border-radius: var(--radius);
  color: var(--paper);
  font-weight: 760;
  text-decoration: none;
}

.download-link:hover {
  background: rgba(248, 246, 239, 0.1);
}

.contact {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-card {
  padding: 30px;
}

.contact-card p {
  color: var(--muted);
  font-size: 18px;
}

.contact-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--forest);
  font-weight: 760;
}

.secondary-link {
  margin-left: 18px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(20px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
  }

  .menu-button {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(36, 53, 47, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--forest);
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.is-menu-open .menu-button span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-button span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav,
  .language-switch {
    display: none;
    grid-column: 1 / -1;
  }

  .site-header.is-menu-open .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 8px;
  }

  .site-header.is-menu-open .nav a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(36, 53, 47, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.48);
    color: var(--ink);
  }

  .site-header.is-menu-open .language-switch {
    display: inline-flex;
    justify-self: start;
    margin-top: 2px;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-grid,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .cards,
  .principle-list {
    grid-template-columns: 1fr;
  }

  .record-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .brand-line {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .site-header.is-menu-open .nav {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 43px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
