:root {
  color-scheme: light;
  --ink: #1d1c18;
  --paper: #f7f0e6;
  --paper-soft: #fffaf2;
  --sage: #58746c;
  --brick: #9a4d3d;
  --blue-black: #12212a;
  --line: rgba(29, 28, 24, 0.18);
  --shadow: 0 22px 70px rgba(18, 33, 42, 0.18);
}

* {
  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;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.splash {
  min-height: 100vh;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--blue-black);
  color: var(--paper-soft);
}

.site-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 18px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.18);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  min-width: 0;
}

.site-header__mark {
  display: grid;
  place-items: center;
  width: clamp(46px, 4.4vw, 58px);
  height: clamp(46px, 4.4vw, 58px);
  border: 1px solid rgba(255, 250, 242, 0.68);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.84rem, 1vw, 1rem);
  line-height: 1;
  letter-spacing: 0.08em;
}

.site-header__name {
  flex: 1;
  min-width: 0;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.05vw, 2.95rem);
  line-height: 1.05;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: break-word;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: clamp(16px, 2.4vw, 30px);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-header__nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  border-color: currentColor;
}

.hero__content {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  align-self: center;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px) 0 clamp(34px, 5vw, 56px);
}

.hero__art {
  margin: 0;
  align-self: stretch;
  display: grid;
  place-items: center;
}

.hero__art img {
  display: block;
  width: min(100%, 420px);
  max-height: min(50vh, 560px);
  height: auto;
  object-fit: contain;
  filter: contrast(1.04);
}

.hero__copy {
  max-width: 680px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.75vw, 2.7rem);
  line-height: 1.08;
  font-weight: 500;
}

.hero__intro {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: clamp(1.2rem, 1.85vw, 1.6rem);
  line-height: 1.58;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 242, 0.72);
  background: var(--paper-soft);
  color: var(--blue-black);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #ffffff;
  transform: translateY(-2px);
}

.content-band {
  background:
    linear-gradient(180deg, rgba(247, 240, 230, 0) 0%, var(--paper) 14%),
    var(--paper);
  padding: clamp(34px, 5vw, 72px) 0;
}

.content-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.7fr) minmax(250px, 0.85fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.mission,
.board {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.section-label {
  color: var(--brick);
}

.mission p:last-child {
  max-width: 670px;
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.portrait {
  margin: 0;
  align-self: stretch;
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: 50% 30%;
  box-shadow: var(--shadow);
}

.board ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.board li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1.35;
}

.board span {
  font-weight: 700;
}

.board strong {
  color: var(--sage);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  background: var(--blue-black);
  color: var(--paper-soft);
  padding: clamp(42px, 6vw, 82px) 0;
}

.site-footer__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.4fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.site-footer .section-label {
  color: rgba(255, 250, 242, 0.72);
  margin-bottom: 16px;
}

.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer p {
  margin: 0;
  color: inherit;
}

.site-footer h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 500;
  margin-bottom: 24px;
}

.site-footer h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 22px;
}

.site-footer h4 {
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

address {
  font-style: normal;
  line-height: 1.5;
}

.site-footer__intro address {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.85vw, 1.9rem);
  line-height: 1.28;
  margin-bottom: 22px;
}

.footer-link {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-block {
  border-top: 1px solid rgba(255, 250, 242, 0.18);
  padding-top: 22px;
}

.contact-block--wide {
  grid-column: 2;
}

.contact-block + .contact-block {
  margin-top: 8px;
}

.rep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.rep-card p,
.contact-block p {
  font-size: 1rem;
  line-height: 1.6;
}

.rep-card p + p {
  margin-top: 3px;
}

.rep-card address {
  margin-bottom: 12px;
}

.site-footer a:not(.footer-link) {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 250, 242, 0.48);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 28px;
    align-self: start;
  }

  .hero__art {
    justify-items: start;
  }

  .hero__art img {
    width: min(100%, 360px);
    max-height: 46vh;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .portrait {
    max-width: 420px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-block--wide {
    grid-column: 1;
  }

  .rep-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    gap: 12px;
    padding: 18px 0 16px;
  }

  .site-header__brand {
    align-items: start;
    gap: 12px;
  }

  .site-header__mark {
    width: 42px;
    height: 42px;
    font-size: 0.78rem;
  }

  .site-header__name {
    font-size: clamp(1.35rem, 7.4vw, 2.25rem);
    line-height: 1.02;
    white-space: normal;
  }

  .site-header__nav {
    justify-self: start;
    gap: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .content-grid {
    width: min(100% - 28px, 1180px);
  }

  .site-footer__inner {
    width: min(100% - 28px, 1180px);
  }

  .hero__content {
    width: min(100% - 28px, 1180px);
    padding-top: 22px;
    padding-bottom: 46px;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.55rem);
  }

  .hero__intro {
    font-size: 1rem;
  }

  .board li {
    display: grid;
    gap: 4px;
  }
}
