* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
}
body.no-scroll {
  overflow: hidden;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
button,
a,
[tabindex] {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -80px;
  background: var(--paper);
  padding: 12px 18px;
}
.skip-link:focus {
  top: 16px;
}
.container {
  width: min(var(--max), calc(100% - 64px));
  margin: auto;
}
.section {
  padding: 112px 0;
}
.section-sm {
  padding: 72px 0;
}
.dark {
  background: var(--charcoal);
  color: var(--cream);
}
.eyebrow {
  color: var(--bronze);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.dark .eyebrow {
  color: var(--gold);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.03;
}
h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}
h2 {
  font-size: clamp(2.4rem, 4vw, 4.25rem);
}
h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}
p {
  color: var(--muted);
}
.dark p {
  color: #c8c0b5;
}
.lede {
  font-size: 1.2rem;
  max-width: 640px;
}
.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.split-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}
.grid {
  display: grid;
  gap: 24px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hide {
  display: none !important;
}
.muted {
  color: var(--muted);
}
.gold {
  color: var(--gold);
}
.rule {
  width: 72px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.noscript {
  padding: 20px;
  text-align: center;
  background: #fff0d9;
}
@media (max-width: 800px) {
  .container {
    width: min(100% - 32px, var(--max));
  }
  .section {
    padding: 72px 0;
  }
  .section-sm {
    padding: 48px 0;
  }
  .split-head {
    display: block;
  }
  .split-head .btn {
    margin-top: 20px;
  }
  body {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
