@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("/fonts/source-sans-3-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
}

:root {
  --paper: #f6f3ea;
  --forest: #1d3a2f;
  --ink: #3d3a30;
  --muted: #5b5545;
  --brass: #8a815f;
  --brass-light: #c9bf9c;
  --line: #d8d2c0;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(1.25rem, 6vw, 4.5rem);
  --content-width: 100rem;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.content-frame {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.65rem 0.9rem;
  background: var(--forest);
  color: var(--paper);
  font-size: 0.875rem;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px var(--gutter);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--forest);
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 120px var(--gutter) 100px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--brass);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero .eyebrow {
  font-size: 11.5px;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.hero-rule {
  width: 1px;
  height: 56px;
  margin: 0;
  border: 0;
  background: var(--forest);
}

.hero-copy {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18.5px;
  font-weight: 400;
  line-height: 1.7;
  text-wrap: balance;
}

.section-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(64px, 7vw, 124px);
  padding-inline: var(--gutter);
}

.group-section {
  padding-block: 96px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.section-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.12;
}

.group-copy {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.group-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}

.group-copy p + p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
}

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

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

.tenet {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 52px 48px;
}

.tenet + .tenet {
  border-left: 1px solid var(--line);
}

.tenet h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.2;
}

.tenet p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.7;
}

.site-footer {
  padding-inline: 0;
  background: var(--forest);
  color: rgb(246 243 234 / 82%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 28px var(--gutter);
}

.site-footer p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
}

.site-footer .disclaimer {
  max-width: 700px;
  color: rgb(246 243 234 / 70%);
  font-size: 12.5px;
  font-weight: 400;
  text-align: right;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 5px;
}

@media (max-width: 960px) {
  .section-grid {
    grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
    gap: 48px;
  }
}

@media (min-width: 1440px) {
  .site-header {
    min-height: 102px;
    padding-block: 30px;
  }

  .brand {
    gap: 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 22px;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero {
    gap: 30px;
    padding-top: 128px;
    padding-bottom: 112px;
  }

  .hero .eyebrow {
    font-size: 12px;
  }

  .hero-copy {
    font-size: 19px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 76px;
    gap: 1rem;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 19px;
  }

  .brand-name {
    max-width: 150px;
    font-size: 13px;
    line-height: 1.15;
    letter-spacing: 0.12em;
  }

  .hero {
    gap: 24px;
    padding-top: 84px;
    padding-bottom: 76px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.5rem);
  }

  .hero-rule {
    height: 44px;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.65;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .group-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .tenets {
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .tenet {
    min-height: auto;
    padding: 36px var(--gutter) 38px;
  }

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

  .tenet p {
    max-width: 480px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .site-footer .disclaimer {
    max-width: 560px;
    text-align: left;
  }
}

@media (max-width: 500px) {
  .brand-name {
    max-width: none;
  }

  .hero {
    padding-top: 70px;
    padding-bottom: 66px;
  }

  .hero .eyebrow {
    max-width: 16rem;
  }

  .group-copy p {
    font-size: 16.5px;
  }

  .group-copy p + p {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
