:root {
  color-scheme: light;
  --paper: #f3f1ea;
  --ink: #161616;
  --muted: #686761;
  --line: #cbc8bd;
  --accent: #2f5bea;
  --max-width: 1440px;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --display: clamp(5rem, 14vw, 12.5rem);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

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

html {
  min-width: 20rem;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    linear-gradient(rgba(22, 22, 22, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 8rem;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-underline-offset: 0.24em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

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

.site-header,
.site-footer,
.home-main,
.content-main,
.support-main {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.site-header {
  min-height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 2.4rem;
  height: auto;
  overflow: visible;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand-mark circle {
  fill: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.site-nav a {
  position: relative;
  padding-block: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 180ms ease;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-main {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.38fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.page-heading h1,
.support-card h1 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.79;
}

.hero h1 {
  max-width: 8ch;
  font-size: var(--display);
}

.accent {
  color: var(--accent);
}

.hero-note {
  max-width: 26rem;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.35;
}

.contact-block {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--ink);
}

.contact-block h2 {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.email-link {
  display: inline-block;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  overflow-wrap: anywhere;
}

.content-main,
.support-main {
  flex: 1;
  padding-top: clamp(4rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.policy {
  max-width: 50rem;
}

.page-heading {
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.page-heading h1,
.support-card h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
}

.lede {
  max-width: 38rem;
  margin: 2.5rem 0 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.5;
}

.notice {
  margin-bottom: 4rem;
  padding: 1.35rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.34);
}

.policy section {
  display: grid;
  grid-template-columns: minmax(10rem, 0.43fr) minmax(0, 1fr);
  gap: 2rem;
  padding-block: 2rem;
  border-top: 1px solid var(--line);
}

.policy h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.policy p {
  margin: 0;
  color: #3f3e3a;
}

.policy a {
  color: var(--ink);
}

.support-main {
  display: flex;
  align-items: center;
}

.support-card {
  width: 100%;
}

.support-card > p:not(.eyebrow) {
  margin: clamp(3rem, 7vw, 5.5rem) 0 0.5rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.site-footer {
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header {
    min-height: auto;
    padding-top: 1.25rem;
    padding-bottom: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }

  .home-main {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: clamp(3.5rem, 17vw, 6rem);
  }

  .hero h1 {
    font-size: clamp(4.5rem, 23vw, 8rem);
  }

  .contact-block {
    margin-top: 1rem;
  }

  .policy section {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .support-main {
    align-items: flex-start;
  }

  .site-footer {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.15rem;
  }
}

@media (max-width: 380px) {
  .brand {
    font-size: 0.78rem;
  }

  .site-nav a {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  body {
    background: #fff;
  }

  .site-nav,
  .skip-link {
    display: none;
  }
}
