@font-face {
  font-family: "Instrument Sans";
  src: url("/fonts/InstrumentSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("/fonts/InstrumentSans-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("/fonts/InstrumentSans-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --green: #31443a;
  --graphite: #1d1d1b;
  --muted: #68635c;
  --hairline: rgba(29, 29, 27, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  color: var(--graphite);
  font-family: "Instrument Sans", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
}

a {
  color: inherit;
}

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

.landing {
  display: grid;
  grid-template-columns: minmax(0, 62fr) minmax(430px, 38fr);
  min-height: 100svh;
  background: var(--white);
}

.image-field {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--green);
}

.hero-image,
.image-tone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 44% center;
  filter: grayscale(1) contrast(0.94) brightness(1.04);
}

.image-tone {
  background: var(--green);
  mix-blend-mode: color;
  opacity: 0.88;
  pointer-events: none;
}

.image-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 24, 19, 0.01), rgba(15, 24, 19, 0.14));
  pointer-events: none;
}

.hero-wordmark {
  position: absolute;
  z-index: 2;
  left: clamp(34px, 4.1vw, 78px);
  bottom: clamp(34px, 4vw, 68px);
  width: clamp(270px, 25vw, 455px);
  height: auto;
}

.information {
  min-height: 100svh;
  padding: clamp(38px, 4.2vw, 76px) clamp(34px, 4.1vw, 72px) clamp(26px, 3vw, 52px);
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--white);
}

.statement {
  display: flex;
  align-items: center;
  padding: clamp(58px, 7vh, 108px) 0;
}

.statement h1 {
  margin: 0;
  font-size: clamp(54px, 5.15vw, 96px);
  line-height: 0.93;
  letter-spacing: -0.061em;
  font-weight: 400;
}

.identity {
  display: grid;
  gap: 34px;
}

.person span {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.25;
}

.person h2 {
  margin: 0 0 7px;
  font-size: clamp(30px, 2.15vw, 42px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.person p {
  margin: 0;
  max-width: 390px;
  font-size: 16px;
  line-height: 1.3;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: 17px;
  line-height: 1.4;
  font-style: normal;
}

.contact a,
.legal-nav a,
.legal-copy a {
  text-decoration-color: transparent;
  text-underline-offset: 0.18em;
  transition: text-decoration-color 160ms ease;
}

.contact a:hover,
.contact a:focus-visible,
.legal-nav a:hover,
.legal-nav a:focus-visible,
.legal-copy a:hover,
.legal-copy a:focus-visible {
  text-decoration-color: currentColor;
}

.contact span {
  margin-top: 14px;
  color: var(--muted);
}

.footer-line {
  padding-top: 15px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.legal-nav {
  display: flex;
  gap: 18px;
}

.legal-nav a {
  text-decoration: underline;
  text-decoration-color: transparent;
}

.legal-overlay {
  position: fixed;
  z-index: 50;
  inset: 0;
  padding: clamp(24px, 4vw, 64px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.legal-overlay:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(49, 68, 58, 0.94);
}

.legal-content {
  position: relative;
  width: min(1060px, 100%);
  max-height: calc(100svh - 48px);
  overflow: auto;
  padding: clamp(28px, 4.2vw, 68px);
  background: var(--white);
}

.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.legal-header h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 400;
}

.legal-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--graphite);
  font-size: 34px;
  line-height: 1;
  text-decoration: none;
}

.legal-copy {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.55;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 96px);
}

.legal-copy p {
  margin: 0 0 28px;
}

.legal-copy h3 {
  margin: 38px 0 8px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.legal-copy h3:first-child {
  margin-top: 0;
}

.legal-small {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .landing {
    grid-template-columns: 56fr 44fr;
  }

  .information {
    padding-left: 32px;
    padding-right: 32px;
  }

  .statement h1 {
    font-size: clamp(46px, 6.2vw, 66px);
  }
}

@media (max-width: 740px) {
  .landing {
    display: block;
    min-height: 100svh;
  }

  .image-field {
    min-height: 56svh;
    height: 56svh;
  }

  .hero-image {
    object-position: 48% center;
  }

  .hero-wordmark {
    left: 26px;
    bottom: 26px;
    width: min(64vw, 310px);
  }

  .information {
    min-height: 60svh;
    padding: 30px 26px 22px;
    grid-template-rows: auto auto;
  }

  .statement {
    align-items: flex-start;
    padding: 70px 0 92px;
  }

  .statement h1 {
    font-size: clamp(44px, 13.2vw, 64px);
    line-height: 0.94;
  }

  .identity {
    gap: 30px;
  }

  .person h2 {
    font-size: 34px;
  }

  .person p,
  .person span,
  .contact {
    font-size: 16px;
  }

  .footer-line {
    margin-top: 12px;
  }

  .legal-overlay {
    padding: 0;
  }

  .legal-content {
    width: 100%;
    max-height: 100svh;
    min-height: 100svh;
    padding: 28px 26px 58px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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