:root {
  color-scheme: light;
  --paper: #f1ece2;
  --ink: #181816;
  --muted: #6f6a62;
  --line: rgba(24, 24, 22, .22);
  --dark: #242321;
  --light: #e9dfcf;
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.85;
}

a { color: inherit; }

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: linear-gradient(90deg, var(--light) 0 50%, var(--dark) 50% 100%);
}

.mode {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  opacity: .55;
}

.mode-light {
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,.9), transparent 35%);
}

.mode-dark {
  left: 50%;
  background: radial-gradient(circle at 80% 68%, rgba(255,255,255,.08), transparent 40%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 0 8vw 8vw;
  padding: 34px 38px;
  background: rgba(241, 236, 226, .92);
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 10vw, 132px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.055em;
}

.lead {
  max-width: 660px;
  margin: 32px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
}

.content,
.policy {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

h2 {
  max-width: 820px;
  margin: 0 0 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.035em;
}

h3 {
  margin: 42px 0 10px;
  font-size: 14px;
  letter-spacing: .08em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.grid article:first-child { padding-left: 0; }
.grid article:last-child { border-right: 0; }
.number { color: var(--muted); font-family: Georgia, serif; font-size: 28px; }

.lane-note {
  margin: 84px 0;
  padding: 36px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.text-link {
  display: inline-block;
  padding: 10px 0;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.policy-header {
  padding: 36px max(20px, 8vw) 90px;
  color: var(--paper);
  background: var(--dark);
}

.policy-header .wordmark {
  display: inline-block;
  margin-bottom: 110px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}

.policy section { max-width: 820px; }
.policy section + hr { margin: 100px 0; border: 0; border-top: 1px solid var(--ink); }
.policy ul { padding-left: 1.4em; }

.draft-notice {
  margin: 100px 0 50px;
  padding: 28px;
  color: var(--paper);
  background: var(--dark);
}

.draft-notice p { margin-bottom: 0; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px max(20px, 5vw);
  color: var(--paper);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: .08em;
}

footer p { margin: 0; }

.not-found {
  min-height: 100vh;
  display: grid;
  align-content: center;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.not-found .text-link { margin-top: 40px; }

@media (max-width: 720px) {
  .hero { min-height: 76vh; }
  .hero-copy { margin: 0 20px 34px; padding: 26px; }
  .grid { grid-template-columns: 1fr; }
  .grid article { min-height: 0; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .grid article:last-child { border-bottom: 0; }
  .content, .policy { padding: 72px 0; }
  .policy-header .wordmark { margin-bottom: 72px; }
  footer { flex-direction: column; }
}
