:root {
  --paper: #f5f5f3;
  --paper-bright: #ffffff;
  --ink: #090909;
  --ink-muted: #5d5d59;
  --clay: #090909;
  --spring: #d5d5d1;
  --river: #ddddda;
  --line: rgba(9, 9, 9, 0.22);
  --header-height: 72px;
  --page-gutter: clamp(22px, 3.2vw, 52px);
  --display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--paper-bright);
  color: var(--ink);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.header-inner,
.site-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--page-gutter);
}

.site-mark {
  display: inline-flex;
  align-items: center;
}

.site-mark-wordmark {
  display: block;
  width: 90px;
  height: 24px;
}

.site-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a,
.footer-links a,
.copyright {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--clay);
}

.info-hero {
  min-height: auto;
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  width: min(100%, 1080px);
  margin: 0 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 48px);
  padding: clamp(58px, 8vw, 112px) var(--page-gutter);
}

.eyebrow {
  margin: 0;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -0.026em;
}

h1 {
  max-width: none;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  font-weight: 580;
  line-height: 0.98;
}

.hero-lede {
  max-width: 650px;
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero-lede a {
  color: inherit;
  font-weight: 650;
  text-underline-offset: 4px;
}

.hero-field {
  display: none;
}

.hero-field::before {
  display: none;
}

.info-content {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: clamp(66px, 9vw, 130px) var(--page-gutter);
}

.info-section {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(38px, 5vw, 70px) 0;
  border-top: 1px solid var(--ink);
}

.info-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.info-section h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.25rem);
  font-weight: 580;
  line-height: 1;
}

.info-copy {
  max-width: 720px;
  color: var(--ink-muted);
}

.info-copy > :first-child { margin-top: 0; }
.info-copy > :last-child { margin-bottom: 0; }

.info-copy h3 {
  margin: 34px 0 8px;
  color: var(--ink);
  font-size: 1rem;
}

.info-copy a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 4px;
}

.site-footer {
  align-items: flex-start;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid var(--ink);
}

.copyright { white-space: nowrap; }

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

@media (max-width: 760px) {
  :root {
    --header-height: 62px;
    --page-gutter: 20px;
  }

  .site-mark-wordmark {
    width: 82px;
    height: 22px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.025em;
  }

  .info-hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
    gap: 30px;
    padding-top: 52px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(3.25rem, 14.5vw, 5.2rem);
  }

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

  .site-footer {
    flex-direction: column;
  }
}

/* Premium monochrome treatment shared by Contact and Privacy. */
:root {
  --paper: #f5f5f3;
  --paper-bright: #ffffff;
  --ink: #090909;
  --ink-muted: #5d5d59;
  --clay: #090909;
  --spring: #d5d5d1;
  --river: #ddddda;
  --line: rgba(9, 9, 9, 0.2);
  --display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --capybara: "Arial Rounded MT Bold", "Avenir Next Condensed", "Arial Black", sans-serif;
}

body {
  letter-spacing: -0.008em;
}

.site-header {
  background: rgba(245, 245, 243, 0.97);
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--ink);
  opacity: 0.58;
}

.eyebrow {
  color: var(--ink);
}

h1,
h2 {
  font-weight: 600;
  letter-spacing: -0.035em;
}

.capybara-name {
  font-family: var(--capybara);
  font-weight: 800;
  letter-spacing: -0.035em;
}

:focus-visible {
  outline-color: #090909;
}
