@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/source-sans-3-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/source-sans-3-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f3efe4;
  --paper-2: #eae4d4;
  --raised: #faf7f0;
  --ink: #1a211c;
  --ink-soft: #3a433d;
  --muted: #5d655f;
  --line: #d4cdb8;
  --line-strong: #b9b09a;
  --pine: #214a3c;
  --pine-hover: #17362c;
  --pine-soft: #e4eee8;
  --copper: #8c4d27;
  --copper-soft: #f0e4d6;
  --focus: #214a3c;
  --shadow: 0 18px 40px -24px rgba(26, 33, 28, 0.35);
  --measure: 40rem;
  --page: 68rem;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--pine);
  text-underline-offset: 0.18em;
}

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

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.8rem;
  z-index: 20;
}

.skip:focus {
  top: 0.75rem;
}

.wrap {
  width: min(var(--page), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--paper) 92%, white);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.wordmark:hover {
  color: var(--pine);
}

.mark {
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1.15rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--copper);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--pine);
  color: #f7f4ee;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.7rem 1.1rem;
  border-radius: 3px;
  border: 1px solid var(--pine);
  line-height: 1.2;
}

.btn:hover {
  background: var(--pine-hover);
  color: #f7f4ee;
}

.btn-ghost {
  background: transparent;
  color: var(--pine);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  background: var(--pine-soft);
  color: var(--pine);
}

.btn-small {
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
}

.hero {
  padding: 3.4rem 0 2.8rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.8rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
.h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.05rem, 4.2vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0 0 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.2rem;
}

.mail {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
}

.mail:hover {
  color: var(--pine);
  text-decoration: underline;
}

.hero-art {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.1rem 0.9rem;
}

.hero-art figcaption {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.band {
  border-top: 1px solid var(--line);
  padding: 3.4rem 0;
}

.band-alt {
  background: var(--paper-2);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 1.8rem;
}

h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.step {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.25rem 1.2rem 1.3rem;
}

.num {
  display: inline-block;
  font-family: "Fraunces", Georgia, serif;
  color: var(--copper);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.step h3,
.audience h3,
.price-card h3,
.faq h3 {
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.step p,
.audience p,
.faq p {
  margin: 0;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
}

.audience {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.note {
  margin: 1.4rem 0 0;
  padding: 0.95rem 1.05rem;
  background: var(--copper-soft);
  border-left: 3px solid var(--copper);
  color: var(--ink-soft);
}

.note strong {
  color: var(--ink);
  font-weight: 600;
}

.prices {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.15rem;
  align-items: stretch;
}

.price-card {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.5rem 1.4rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--pine);
  border-color: var(--pine);
  color: #f4f1ea;
}

.price-card.featured p,
.price-card.featured .fine {
  color: #d5e0da;
}

.amount {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.15rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.15rem 0 0.55rem;
}

.amount span {
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}

.price-card ul {
  margin: 0.2rem 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.price-card.featured ul {
  color: #d5e0da;
}

.price-card li + li {
  margin-top: 0.28rem;
}

.price-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.price-card.featured .btn {
  background: var(--raised);
  color: var(--pine);
  border-color: var(--raised);
}

.price-card.featured .btn:hover {
  background: #fff;
  color: var(--pine-hover);
}

.fine {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 1.15rem;
}

.faq article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.1rem;
}

.legal-page {
  padding: 2.6rem 0 3.5rem;
  max-width: var(--measure);
}

.legal-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.legal-page h2 {
  margin-top: 1.8rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.legal-page ul {
  padding-left: 1.2rem;
}

.updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.4rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  justify-content: space-between;
  align-items: baseline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--pine);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero,
  .steps,
  .split,
  .prices {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.2rem;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--page), calc(100% - 1.6rem));
  }

  .header-inner {
    align-items: flex-start;
    padding: 0.75rem 0;
    flex-direction: column;
    gap: 0.55rem;
  }

  .site-nav {
    justify-content: flex-start;
    row-gap: 0.55rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  .lede {
    font-size: 1.05rem;
  }
}

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--paper-2);
  padding: 0.04em 0.28em;
  border-radius: 3px;
}

.price-card.featured code {
  background: rgba(247, 244, 238, 0.12);
  color: #f4f1ea;
}

.band,
.hero {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}
