:root {
  --green: #536142;
  --green-dark: #313a28;
  --green-soft: #dbe1d2;
  --ivory: #f7f4ed;
  --paper: #fffdf8;
  --ink: #20231d;
  --muted: #626a59;
  --line: #d9d3c5;
  --gold: #b59a5b;
  --shadow: 0 24px 70px rgba(49, 58, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(247, 244, 237, 0.78), rgba(247, 244, 237, 0.86)),
    url("assets/paper-texture.png") center / 1200px 1200px,
    var(--ivory);
  font-family: "Calibri Light", Calibri, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

h1,
h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: Baskerville, "Baskerville Old Face", "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(3.25rem, 9vw, 7.9rem);
}

h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4.8vw, 4.25rem);
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-color: rgba(83, 97, 66, 0.4);
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--green);
  text-decoration-color: var(--green);
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--green-dark);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  align-items: end;
  overflow: hidden;
  padding: 56px 0 82px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(49, 58, 40, 0.94), rgba(49, 58, 40, 0.76) 46%, rgba(83, 97, 66, 0.22)),
    url("assets/foundation-hero.png") center / cover;
}

.subpage-hero {
  padding: clamp(92px, 14vw, 170px) 0 clamp(66px, 9vw, 112px);
  background: var(--green-dark);
  color: var(--paper);
}

.subpage-hero h1,
.subpage-hero .eyebrow {
  color: var(--paper);
}

.subpage-hero h1 {
  font-size: clamp(3.1rem, 8vw, 6.5rem);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero h1 {
  color: var(--paper);
}

.hero__lede {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.3rem, 2.5vw, 2.15rem);
  line-height: 1.35;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 253, 248, 0.82);
}

.section {
  padding: clamp(72px, 10vw, 124px) 0;
}

.section--intro {
  background: var(--paper);
}

.section--directors {
  background: var(--paper);
}

.section--contact {
  background: var(--paper);
}

.section__header {
  margin-bottom: 36px;
}

.wrap--two {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.copy {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.copy p + p {
  margin-top: 1.35em;
}

.notice {
  max-width: none;
  width: 100%;
  padding: 34px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow);
}

.directors {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  box-shadow: var(--shadow);
}

.directors li {
  min-height: 86px;
  padding: 22px 26px;
  background: var(--ivory);
  color: var(--green-dark);
  font-family: Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.15;
}

.directors span {
  display: block;
}

.directors small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: "Calibri Light", Calibri, "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.2;
}

.contact-panel {
  padding: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-panel a {
  color: var(--green-dark);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  overflow-wrap: anywhere;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--green-dark);
  color: rgba(255, 253, 248, 0.84);
  font-size: 1rem;
}

.footer__inner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: flex-end;
}

.footer a,
.footer p {
  overflow-wrap: anywhere;
}

.legal-copy {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.legal-copy h2 {
  margin-top: 2.1em;
  margin-bottom: 0.55em;
  color: var(--green-dark);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.legal-copy p + p {
  margin-top: 1.2em;
}

.legal-copy__back {
  margin-top: 2.6em;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 17px;
  }

  .hero {
    min-height: 82vh;
    padding-bottom: 58px;
    background:
      linear-gradient(180deg, rgba(49, 58, 40, 0.92), rgba(49, 58, 40, 0.72)),
      url("assets/foundation-hero.png") center / cover;
  }

  .wrap--two {
    grid-template-columns: 1fr;
  }

  .notice {
    padding: 26px;
  }
}

@media (max-width: 560px) {
  .wrap,
  .hero__content {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero {
    min-height: 78vh;
  }

  .hero__lede {
    font-size: 1.28rem;
  }

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

  .footer__links {
    justify-content: flex-start;
  }
}
