@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/source-serif-4-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/source-serif-4-latin-600.woff2") format("woff2");
}

:root {
  --paper: #f4efe6;
  --paper-2: #fbf8f2;
  --ink: #1c1915;
  --ink-soft: #3f3a33;
  --pine: #10261c;
  --pine-2: #1b3a2c;
  --charcoal: #1a1916;
  --line: #e0d6c6;
  --brass: #8a7040;
  --brass-bg: #f7f1e4;
  --brass-line: #e4d5b8;
  --sage: #3e5348;
  --max: 74rem;
  --header-pad: 0.85rem;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.75rem;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  background-color: var(--paper);
  background-image:
    radial-gradient(900px 420px at 100% -8%, rgba(16, 38, 28, 0.06), transparent 60%),
    radial-gradient(700px 380px at -12% 18%, rgba(138, 112, 64, 0.07), transparent 55%),
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(28, 25, 21, 0.015) 4px);
}

::selection {
  background: #d5e3d8;
}

:focus-visible {
  outline: 2px solid var(--pine);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 40;
  background: var(--paper-2);
  color: var(--ink);
  padding: 0.5rem 0.75rem;
}

.skip:focus {
  top: 0.75rem;
}

.aurora {
  height: 3px;
  background: linear-gradient(90deg, #10261c 0%, #2f5a44 32%, #c6a56a 58%, #7f98a0 78%, #10261c 100%);
}

.wrap {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.75rem;
  padding-block: var(--header-pad);
  flex-wrap: wrap;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  text-decoration: none;
}

.monogram {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--paper-2);
  background: var(--pine);
  padding: 0.55rem 0.42rem 0.45rem;
}

.wordmark-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.wordmark-name {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.wordmark-legal {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.nav-button {
  display: none;
}

.nav-toggle:focus-visible + .nav-button {
  outline: 2px solid var(--pine);
  outline-offset: 3px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  line-height: 1.2;
}

.nav a:hover {
  background: rgba(16, 38, 28, 0.06);
}

.nav a[aria-current="page"] {
  color: var(--paper-2);
  background: var(--pine);
  font-weight: 600;
}

.identity {
  background: var(--charcoal);
  color: #f4efe6;
}

.identity a {
  color: #f4efe6;
  text-underline-offset: 0.16em;
}

.identity a:focus-visible {
  outline-color: #f4efe6;
}

.identity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
  list-style: none;
  margin: 0;
  padding-block: 0.7rem;
  font-size: 0.92rem;
}

.identity-row li {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.identity .k,
.license-strip .k {
  color: #d4c4a1;
  margin-right: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main {
  padding-bottom: 5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.8fr);
  gap: 2.75rem;
  align-items: end;
  padding-block: 3.6rem 0.5rem;
}

.eyebrow,
.kicker {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

h1,
h2,
h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  max-width: 11ch;
}

.hero h1 {
  max-width: none;
  margin-bottom: 1rem;
}

.page-title {
  padding-top: 3.2rem;
}

.page-title h1 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.lede,
.prose p,
.prose li,
.section-lead {
  font-size: 1.08rem;
}

.lede {
  margin: 0;
  max-width: 36rem;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.45;
}

.hero-copy .subhead,
.section-lead {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: var(--ink-soft);
}

.section-lead a {
  color: var(--pine-2);
  text-underline-offset: 0.18em;
}

.section-head {
  max-width: 40rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.6rem;
}

.actions .button,
.actions .button-secondary {
  margin: 0;
}

.fact-grid {
  background: var(--pine);
  color: #f4efe6;
  padding: 0.4rem 1.25rem 0.55rem;
  box-shadow: 0 18px 40px rgba(16, 38, 28, 0.12);
}

.fact {
  padding: 0.95rem 0 1rem;
  border-top: 1px solid rgba(244, 239, 230, 0.16);
}

.fact:first-child {
  border-top: none;
}

.fact .k {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4c4a1;
}

.fact .v,
.fact a {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #f4efe6;
}

.section {
  padding-top: 4.25rem;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.steps li {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--pine);
  padding: 1.25rem 1.2rem 1.4rem;
}

.step-num {
  display: block;
  margin-bottom: 0.85rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--sage);
}

.steps h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
}

.prose h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
}

.prose p,
.prose ul {
  margin: 0 0 1rem;
}

.prose ul {
  padding-left: 1.15rem;
}

.prose li + li {
  margin-top: 0.4rem;
}

.prose a {
  color: var(--pine-2);
  text-underline-offset: 0.18em;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.plain-list li {
  margin: 0;
  padding: 0.85rem 1rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--pine);
}

.sample {
  background: var(--brass-bg);
  border: 1px solid var(--brass-line);
  padding: clamp(1.35rem, 3vw, 2.1rem);
}

.sample-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6d5528;
}

.sample h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  max-width: 18ch;
}

.sample p {
  max-width: 42rem;
  margin: 0 0 0.9rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin: 0.35rem 0 0.8rem;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  border: 2px solid var(--pine);
}

.button {
  background: var(--pine);
  color: #f6f1e7;
}

.button:hover {
  background: #0b1c15;
}

.button:focus-visible,
.button-secondary:focus-visible {
  outline-color: var(--brass);
}

.button-secondary {
  background: #fffdf8;
  color: var(--pine);
}

.button-secondary:hover {
  background: #e6efe8;
}

.fine {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 40rem;
}

.sample-limits {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 0;
  border-top: 1px solid var(--brass-line);
  max-width: 42rem;
}

.sample-limits li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--brass-line);
}

.defs {
  margin: 0.5rem 0 0;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 0.2rem 1.15rem;
}

.defs div {
  display: grid;
  grid-template-columns: minmax(8rem, 12rem) minmax(0, 1fr);
  gap: 0.75rem 1.25rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.defs div:first-child {
  border-top: none;
}

.defs dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

.defs dd {
  margin: 0;
}

.defs a {
  color: var(--pine-2);
}

.callout {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--pine);
  padding: 1rem 1.15rem;
  margin: 0 0 1.6rem;
  max-width: 42rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.info-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 1.25rem 1.2rem 1.35rem;
}

.info-card h2 {
  font-size: 1.15rem;
}

.contact-email {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
  margin-bottom: 0.7rem;
}

.contact-email a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

address {
  font-style: normal;
}

.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 2.6rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.2fr;
  gap: 1.75rem 2.25rem;
  padding-bottom: 0.4rem;
}

.footer-name {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.site-footer p {
  margin: 0 0 0.75rem;
}

.site-footer a {
  color: var(--pine-2);
  overflow-wrap: anywhere;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  list-style: none;
  padding: 0.35rem 0 0;
  margin: 0 0 0.8rem;
}

.footer-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.license-strip {
  background: var(--charcoal);
  color: #f4efe6;
  margin-top: 1.5rem;
}

.license-strip a {
  color: #f4efe6;
}

.license-strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.5rem;
  padding-block: 0.95rem;
}

.license-strip p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1.35rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-base p {
  margin: 0;
}

@media (max-width: 1100px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero,
  .footer-grid,
  .steps,
  .info-grid,
  .defs div {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .hero {
    padding-top: 2.4rem;
    gap: 1.75rem;
  }

  .fact-grid {
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  .header-row {
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-block: 0.55rem;
  }

  .wordmark {
    flex: 1 1 0;
    min-width: 0;
  }

  .wordmark-text {
    min-width: 0;
  }

  .wordmark-name {
    font-size: 0.98rem;
  }

  .nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 4.75rem;
    min-height: 44px;
    padding: 0.45rem 0.9rem;
    border: 2px solid var(--pine);
    background: #fffdf8;
    color: var(--pine);
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
  }

  .nav-button-close {
    display: none;
  }

  .nav-toggle:checked + .nav-button .nav-button-open {
    display: none;
  }

  .nav-toggle:checked + .nav-button .nav-button-close {
    display: inline;
  }

  .nav {
    display: none;
    flex: 1 0 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    margin: 0.35rem 0 0.15rem;
    padding-top: 0.35rem;
    border-top: 1px solid var(--line);
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 0.65rem 0.85rem;
    border-radius: 0.35rem;
    font-size: 1.05rem;
  }

  .button,
  .button-secondary,
  .actions .button,
  .actions .button-secondary {
    width: 100%;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .identity-row {
    display: grid;
    gap: 0.45rem;
    padding-block: 0.9rem;
    font-size: 1rem;
    line-height: 1.4;
  }

  .license-strip p,
  .footer-base {
    font-size: 1rem;
    line-height: 1.45;
  }

  .license-strip-row {
    display: grid;
    gap: 0.45rem;
    padding-block: 1rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0;
  }

  .footer-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .page-title {
    padding-top: 2rem;
  }

  .lede {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: rise 680ms ease both;
  }

  .aurora {
    background-size: 220% 100%;
    animation: drift 22s linear infinite;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 220% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-copy,
  .aurora {
    animation: none;
  }
}

@media print {
  .aurora,
  .nav,
  .nav-button,
  .nav-toggle,
  .skip,
  .footer-nav {
    display: none;
  }

  .site-header {
    position: static;
  }

  body {
    background: #fff;
    color: #000;
  }

  .identity,
  .license-strip,
  .fact-grid {
    background: #fff;
    color: #000;
    border-bottom: 1px solid #000;
    box-shadow: none;
  }

  .identity a,
  .license-strip a,
  .site-footer a,
  .prose a,
  .fact .v {
    color: #000;
  }

  a[href^="http"]::after,
  a[href^="mailto:"]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
  }
}
