:root {
  --ink: #18201d;
  --muted: #68716c;
  --paper: #f1f0e9;
  --acid: #d7f35b;
  --line: rgba(24, 32, 29, 0.18);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', 'Helvetica Neue', sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 24px 4vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.wordmark {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-decoration: none;
}
.wordmark-mark {
  align-items: center;
  background: var(--ink);
  color: var(--acid);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  height: 32px;
  justify-content: center;
  letter-spacing: -0.12em;
  padding-right: 2px;
  width: 32px;
}
.header-link, .text-link {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.header-link span, .text-link span { color: #758c36; font-size: 18px; margin-left: 7px; vertical-align: -2px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 38vw);
  min-height: 100vh;
  padding: 136px 4vw 42px;
  position: relative;
}
.hero-copy {
  align-self: center;
  max-width: 820px;
  padding: 0 8vw 5vh;
}
.eyebrow, .section-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow span, .section-label span { color: #759126; padding: 0 8px; }
.hero-image {
  align-self: center;
  background: var(--acid);
  margin: 0;
  max-height: 77vh;
  overflow: hidden;
  position: relative;
}
.hero-image img { display: block; height: auto; max-height: 77vh; width: 100%; }
figcaption { bottom: 19px; color: var(--paper); font-family: var(--mono); font-size: 10px; left: 20px; letter-spacing: 0.08em; position: absolute; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,.2); z-index: 1; }
figcaption span { padding: 0 6px; }
h1 {
  font-size: clamp(54px, 7.2vw, 116px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.91;
  margin: 28px 0 35px;
  max-width: 760px;
}
h1 em { color: #738e27; font-family: var(--serif); font-weight: 400; letter-spacing: -0.09em; }
.intro { font-size: clamp(16px, 1.55vw, 21px); line-height: 1.45; margin: 0 0 35px; max-width: 420px; }
.text-link { border-bottom: 1px solid var(--ink); display: inline-block; padding-bottom: 9px; }
.scroll-note { bottom: 45px; color: var(--muted); font-family: var(--mono); font-size: 10px; left: 4vw; position: absolute; text-transform: uppercase; }
.scroll-note span { color: #759126; display: block; font-size: 18px; margin-top: 7px; }

.details { border-top: 1px solid var(--line); padding: 100px 12vw 125px; }
.details-content { display: grid; gap: 10vw; grid-template-columns: 1fr 1fr; margin-top: 68px; }
h2 { font-size: clamp(34px, 4vw, 60px); letter-spacing: -0.07em; line-height: .95; margin: 0 0 24px; }
.details-lede { color: var(--muted); font-family: var(--serif); font-size: 23px; line-height: 1.25; margin: 0; max-width: 320px; }
.company-facts { margin: 0; }
.company-facts div { border-top: 1px solid var(--line); display: flex; gap: 24px; justify-content: space-between; padding: 18px 0; }
.company-facts div:last-child { border-bottom: 1px solid var(--line); }
dt { color: var(--muted); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
dd { font-size: 14px; margin: 0; text-align: right; }
.site-footer { border-top: 1px solid var(--line); display: flex; font-family: var(--mono); font-size: 10px; justify-content: space-between; padding: 20px 4vw; text-transform: uppercase; }

@media (max-width: 760px) {
  .site-header { padding: 18px 6vw; }
  .header-link { font-size: 0; }
  .header-link span { font-size: 22px; margin: 0; }
  .hero { display: flex; flex-direction: column; min-height: auto; padding: 126px 6vw 64px; }
  .hero-copy { padding: 0 0 54px; }
  h1 { font-size: clamp(54px, 16vw, 88px); margin: 24px 0 27px; }
  .hero-image { align-self: stretch; max-height: none; }
  .hero-image img { max-height: none; width: 100%; }
  .scroll-note { display: none; }
  .details { padding: 70px 6vw 80px; }
  .details-content { display: block; margin-top: 46px; }
  .company-facts { margin-top: 55px; }
  .company-facts div { align-items: flex-start; flex-direction: column; gap: 8px; }
  dd { text-align: left; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 10px; line-height: 1.5; padding: 18px 6vw; }
}
