/* Our Little Paws — the app's own palette, light values, so the site and the app
   read as one thing. Values copied from OurLittlePaws/Design/Palette.swift. */
:root {
  --cream: #FDF6EE;
  --sand: #F6E1CE;
  --card: #FFFFFF;
  --ink: #2A211C;
  --ink-soft: #5E4C43;
  --clay: #9C4227;
  --hairline: #8A7565;

  --receipt-shadow: 0 18px 40px -18px rgba(42, 33, 28, .35);
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container: 1180px;
}

/* =================== FONT FACES (self-hosted, latin subset) =================== */
@font-face {
  font-family: "General Sans";
  src: url("/assets/fonts/general-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("/assets/fonts/general-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("/assets/fonts/general-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-600i.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

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

/* =================== SHARED CONTAINER — one edge, every block =================== */
.wrap { max-width: var(--container); margin: 0 auto; padding-left: 20px; padding-right: 20px; }
@media (min-width: 640px) { .wrap { padding-left: 32px; padding-right: 32px; } }

/* narrow reading column for privacy/support prose — nests INSIDE .wrap so its
   left edge matches every other block's left edge; it is not itself a wrap */
.prose { max-width: 46rem; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.18; }
h3 { font-size: 1.2rem; line-height: 1.3; }
p { margin: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  display: block;
}

.icon { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: var(--cream); padding: 12px 18px; border-radius: 8px;
  text-decoration: none; font-weight: 600; transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* =================== FOCUS-VISIBLE, everywhere =================== */
a:focus-visible, button:focus-visible, .btn:focus-visible, .nav a:focus-visible,
.brand:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =================== HEADER — one bar, shared by every page =================== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(253, 246, 238, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138, 117, 101, .18);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 10px;
}
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; min-width: 0; }
.brand__mark { width: 30px; height: 30px; color: var(--clay); flex-shrink: 0; }
.brand__word { font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, 4.4vw, 1.25rem); color: var(--ink); white-space: nowrap; }
@media (min-width: 420px) { .brand__mark { width: 34px; height: 34px; } }

.nav { display: none; align-items: center; gap: 32px; }
.nav a { text-decoration: none; font-size: 16px; color: var(--ink-soft); font-weight: 500; padding: 4px 2px; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--clay); }
.nav a[aria-current="page"] { color: var(--clay); border-bottom-color: var(--clay); }
@media (min-width: 800px) { .nav { display: flex; } }

.header__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header__actions .btn--primary { padding: 0 14px; font-size: 14px; white-space: nowrap; }
@media (min-width: 420px) { .header__actions .btn--primary { padding: 0 22px; font-size: 16px; } }
@media (min-width: 800px) { .header__actions { gap: 10px; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: transparent; border: 1px solid var(--hairline); color: var(--ink);
  cursor: pointer;
}
@media (min-width: 800px) { .nav-toggle { display: none; } }

.nav-mobile {
  display: none; flex-direction: column; gap: 2px;
  background: var(--card); border-top: 1px solid rgba(138, 117, 101, .18);
  padding: 8px 0 16px;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  display: flex; align-items: center; min-height: 44px;
  padding: 12px 4px; text-decoration: none; color: var(--ink-soft);
  font-weight: 500; font-size: 16px; border-bottom: 1px solid rgba(138, 117, 101, .12);
}
.nav-mobile a[aria-current="page"] { color: var(--clay); font-weight: 600; }
@media (min-width: 800px) { .nav-mobile { display: none !important; } }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 22px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn--primary { background: var(--clay); color: var(--cream); box-shadow: 0 10px 24px -10px rgba(156, 66, 39, .6); }
.btn--primary:hover { transform: translateY(-1px); }
.btn--primary:visited { color: var(--cream); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn--ghost:hover { border-color: var(--clay); color: var(--clay); }
.btn--ghost:visited { color: var(--ink); }

/* =================== MOTION — reveal on scroll, safety net included =================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
  .receipt { transition: transform .4s cubic-bezier(.2,.8,.2,1); }
  .hero-stack:hover .receipt { transform: translateY(-6px); }
  .float { animation: floaty 6s ease-in-out infinite; }
  @keyframes floaty {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-8px) rotate(var(--r, 0deg)); }
  }
}

/* =================== SIGNATURE COMPONENT: THE CARE RECEIPT =================== */
.receipt {
  --tilt: 0deg;
  background: var(--card);
  border-radius: 18px;
  padding: 20px 22px 18px;
  width: 272px;
  box-shadow: var(--receipt-shadow);
  position: relative;
  transform: rotate(var(--tilt));
  font-family: var(--font-body);
}
.receipt::before {
  content: "";
  position: absolute; top: 0; left: 16px; right: 16px; height: 10px;
  background-image: radial-gradient(circle, var(--cream) 3.5px, transparent 3.6px);
  background-size: 16px 10px; background-position: top center; background-repeat: repeat-x;
}
.receipt__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.receipt__pet { display: flex; align-items: center; gap: 10px; }
.receipt__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sand); color: var(--clay);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  border: 2px solid var(--card); box-shadow: 0 0 0 1.5px var(--hairline);
}
.receipt__name { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.receipt__stamp {
  display: flex; align-items: center; gap: 5px;
  color: #345E41; font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1.5px solid #345E41; border-radius: 999px; padding: 3px 10px;
  transform: rotate(-6deg);
}
.receipt__stamp .icon--sm { width: 13px; height: 13px; }
.receipt__line {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 7px 0; border-top: 1px dashed rgba(138, 117, 101, .35);
  font-size: 15px; color: var(--ink-soft);
}
.receipt__line:first-of-type { border-top: none; }
.receipt__line b { color: var(--ink); font-weight: 600; }
.receipt__foot {
  margin-top: 12px; padding-top: 10px; border-top: 1px solid rgba(138, 117, 101, .25);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--ink-soft);
}
.receipt__by { display: flex; align-items: center; gap: 6px; }
.receipt--sm { width: 224px; padding: 16px 18px 14px; }
.receipt--sm .receipt__name { font-size: 15px; }
.receipt--sm .receipt__avatar { width: 32px; height: 32px; font-size: 13px; }

/* =================== HERO =================== */
.hero { padding: 44px 0 40px; position: relative; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 82% 10%, rgba(156, 66, 39, .10), transparent 60%),
    radial-gradient(50% 40% at 10% 90%, rgba(246, 225, 206, .9), transparent 65%);
}
.hero__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 980px) { .hero__grid { grid-template-columns: 1.05fr .95fr; } }
.hero__copy { max-width: 560px; }
.hero__eyebrow { margin-bottom: 18px; }
.hero__title { margin-bottom: 20px; }
.hero__title em { font-style: italic; color: var(--clay); }
.hero__sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 30px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 22px; }

.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--cream); border-radius: 12px;
  padding: 10px 18px; min-height: 52px; text-decoration: none;
}
.store-badge:visited { color: var(--cream); }
.store-badge svg { width: 22px; height: 22px; }
.store-badge__text { line-height: 1.15; }
.store-badge__text small { display: block; font-size: 11px; opacity: .85; }
.store-badge__text strong { display: block; font-size: 17px; font-family: var(--font-display); }

.hero__proof-line { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-soft); }
.hero__proof-line .icon { width: 16px; height: 16px; color: var(--clay); }

/* hero photograph: ground beneath the receipt stack (approved change #1) */
.hero-stack { position: relative; height: 360px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 480px) { .hero-stack { height: 420px; } }
.hero-stack__photo {
  position: absolute; inset: 6% 4%;
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(42, 33, 28, .5);
}
.hero-stack__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-stack__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(253, 246, 238, 0) 40%, rgba(42, 33, 28, .28) 100%);
}
.hero-stack .receipt { position: absolute; z-index: 1; }
.hero-stack .receipt.r1 { --tilt: -8deg; left: 0%; top: 4%; }
.hero-stack .receipt.r2 { --tilt: 6deg; right: -2%; bottom: 0%; }

/* =================== SECTIONS shared =================== */
section { padding: 56px 0; }
@media (min-width: 760px) { section { padding: 64px 0; } }
.section--tinted { background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%); }
.section__head { max-width: 640px; margin-bottom: 40px; }
.section__head h2 { margin-top: 10px; }
.section__head p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 14px; }

/* ---------- the doubt (pain) ---------- */
.doubt { display: grid; gap: 32px; }
@media (min-width: 900px) { .doubt { grid-template-columns: 1fr 1fr; align-items: center; } }
.doubt__copy h2 { margin-top: 10px; }
.doubt__copy p { color: var(--ink-soft); margin-top: 16px; max-width: 46ch; }
.doubt__quotes { display: grid; gap: 14px; }
.quote-bubble {
  background: var(--card); border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 10px 26px -16px rgba(42, 33, 28, .3);
  max-width: 420px; font-size: 17px; color: var(--ink);
  border: 1px solid rgba(138, 117, 101, .15);
}
.quote-bubble small { display: block; margin-top: 6px; color: var(--ink-soft); font-size: 13px; }
.quote-bubble.q2 { margin-left: auto; }

/* ---------- answer blocks (GEO — self-contained passages) ---------- */
.answer { max-width: 640px; margin-bottom: 40px; }
.answer h2 { margin-bottom: 12px; }
.answer p { color: var(--ink-soft); font-size: 1.05rem; max-width: 62ch; }
.answer:last-child { margin-bottom: 0; }

/* ---------- how it works ---------- */
.steps { display: grid; gap: 24px; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--card); border-radius: 20px; padding: 28px 24px; box-shadow: 0 14px 30px -20px rgba(42, 33, 28, .3); }
.step__num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--sand); color: var(--clay);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 16px; }

/* ---------- product moment ---------- */
.moment { display: grid; gap: 40px; align-items: center; }
@media (min-width: 980px) { .moment { grid-template-columns: .9fr 1.1fr; } }
.moment__visual { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.moment__visual img {
  /* height:auto or the browser uses the HTML height attribute as the used height and
     squashes the screenshot sideways — which is exactly what it did. */
  width: 260px; height: auto; max-width: 100%; border-radius: 34px; border: 6px solid var(--card);
  box-shadow: 0 30px 60px -24px rgba(42, 33, 28, .4);
}
.moment__visual .receipt { position: absolute; bottom: -24px; left: -18px; --tilt: -4deg; }
@media (min-width: 641px) { .moment__visual { flex-direction: row; } }
@media (max-width: 640px) {
  .moment__visual .receipt { position: static; margin-top: -40px; --tilt: 0deg; }
}
.moment__copy h2 { margin-top: 10px; }
.feature-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .icon { color: var(--clay); margin-top: 3px; }
.feature-list b { display: block; font-size: 17px; margin-bottom: 2px; }
.feature-list span { color: var(--ink-soft); font-size: 16px; }

/* ---------- multi-pet mention: supporting, low on the page (approved change #2) ---------- */
.mini-band { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.mini-band__text { max-width: 520px; }
.mini-band__text h2 { font-size: 1.5rem; margin-top: 10px; }
.mini-band__text p { color: var(--ink-soft); margin-top: 8px; }
.receipt-row { display: flex; }
.receipt-row .receipt--sm { margin-left: -36px; box-shadow: 0 10px 20px -14px rgba(42, 33, 28, .4); }
.receipt-row .receipt--sm:first-child { margin-left: 0; }
@media (max-width: 480px) {
  .receipt-row .receipt--sm { width: 168px; padding: 14px 16px 12px; margin-left: -28px; }
  .receipt-row .receipt--sm .receipt__name { font-size: 14px; }
  .receipt-row .receipt--sm .receipt__avatar { width: 28px; height: 28px; font-size: 12px; }
  .receipt-row .receipt--sm .receipt__line { font-size: 13px; }
}

/* ---------- FAQ (GEO) ---------- */
.faq { display: grid; gap: 16px; max-width: 760px; }
.faq-item { background: var(--card); border-radius: 16px; padding: 20px 22px; border: 1px solid rgba(138, 117, 101, .15); }
.faq-item h3 { margin-bottom: 8px; font-size: 1.05rem; }
.faq-item p { color: var(--ink-soft); font-size: 16px; }

/* ---------- final CTA ---------- */
.cta-final { text-align: center; padding: 72px 0; }
.cta-final h2 { max-width: 16ch; margin: 0 auto 18px; }
.cta-final p { color: var(--ink-soft); max-width: 44ch; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-final .btn { margin: 0 auto; }

/* =================== FOOTER =================== */
.site-footer { background: var(--ink); color: var(--cream); padding: 48px 0 28px; }
.site-footer a { text-decoration: none; }
.footer__top { display: grid; gap: 32px; }
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.2fr 1fr 1fr; align-items: start; } }
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__brand .brand__mark { color: var(--sand); }
.footer__brand .brand__word { color: var(--cream); }
.footer__about p { color: rgba(253, 246, 238, .72); max-width: 38ch; }
.footer__col h3 { font-family: var(--font-body); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(253, 246, 238, .55); margin-bottom: 14px; font-weight: 600; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__col a { color: var(--cream); font-size: 15px; }
.footer__col a:hover { color: var(--sand); }
.footer__col a:visited { color: var(--cream); }
.footer__bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(253, 246, 238, .15);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 14px; color: rgba(253, 246, 238, .6);
}
.footer__bottom a { color: rgba(253, 246, 238, .75); }
.footer__bottom a:hover { color: var(--sand); }
.footer__bottom a:visited { color: rgba(253, 246, 238, .75); }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }

/* =================== GUIDES: index + article =================== */
.guides-hero { padding: 48px 0 32px; }
.guides-hero p { color: var(--ink-soft); font-size: 1.1rem; max-width: 60ch; margin-top: 14px; }
.guide-list { display: grid; gap: 20px; padding: 8px 0 64px; }
.guide-card {
  display: block; background: var(--card); border-radius: 20px; padding: 26px 28px;
  box-shadow: 0 14px 30px -20px rgba(42, 33, 28, .3); text-decoration: none;
  border: 1px solid rgba(138, 117, 101, .12);
}
.guide-card:visited { color: var(--ink); }
.guide-card:hover { box-shadow: 0 20px 40px -20px rgba(42, 33, 28, .4); }
.guide-card h2 { font-size: 1.4rem; margin-bottom: 8px; }
.guide-card p { color: var(--ink-soft); font-size: 16px; }
.guide-card .eyebrow { margin-bottom: 10px; }

.article { padding: 40px 0 72px; }
.article__header { max-width: 720px; margin-bottom: 8px; }
.article__meta { color: var(--ink-soft); font-size: 14px; margin: 14px 0 0; }
.article__lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 68ch; margin-top: 18px; }
.article__body { max-width: 720px; margin-top: 36px; }
.article__body h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.article__body h2:first-child { margin-top: 0; }
.article__body p { color: var(--ink); font-size: 17px; margin-bottom: 16px; max-width: 68ch; }
.article__body ol, .article__body ul { padding-left: 26px; margin: 0 0 20px; display: grid; gap: 12px; }
.article__body li { color: var(--ink); font-size: 17px; }
.article__body li > ul { margin-top: 10px; margin-bottom: 0; }

.article__figure {
  margin: 24px 0 28px; padding: 22px; background: var(--card);
  border-radius: 18px; border: 1px dashed var(--hairline);
  display: grid; gap: 4px; justify-items: start;
}
.article__figure figcaption { color: var(--ink-soft); font-size: 14px; }

/* A real capture, once one exists. Held to a phone's width rather than the column's,
   because a screenshot blown up to full measure reads as a poster, not a reference. */
.article__shot {
  display: block; width: 100%; max-width: 268px; height: auto;
  border-radius: 22px; border: 1px solid var(--hairline);
  margin-bottom: 12px; justify-self: center;
}
/* A figure that has its picture is solid; only the ones still waiting stay dashed. */
.article__figure:has(.article__shot) {
  border-style: solid; justify-items: center; text-align: center;
}
.article__figure .figure__badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--clay); font-weight: 700; margin-bottom: 8px;
}

.article__crosslink {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--hairline);
  color: var(--ink-soft); font-size: 15px; max-width: 68ch;
}
.article__crosslink a { color: var(--clay); font-weight: 600; }

/* inline links inside step prose, e.g. "see the guide on adding a pet" */
/* Prose links only. WITHOUT :not(.btn) this rule (0,2,0) outranks .btn--primary (0,1,0)
   and paints a button's label in the button's own background colour — clay on clay, 1:1,
   an invisible label. It shipped that way once; do not remove the exclusion. */
.article__body a:not(.btn) { color: var(--clay); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(156, 66, 39, .35); }
.article__body a:not(.btn):hover { color: var(--ink); text-decoration-color: currentColor; }
.article__body a:not(.btn):visited { color: var(--clay); }
.article__body a:not(.btn):focus-visible { color: var(--ink); }

/* =================== PRIVACY / SUPPORT PROSE PAGES =================== */
/* scoped to .prose (a narrow column nested INSIDE .wrap) so it never
   overrides the shared header/footer/button components in body.prose-page,
   and its left edge matches every other block's left edge */
.prose { padding: 40px 0 24px; }
.prose main { padding-bottom: 40px; }
.prose h1 { font-size: clamp(28px, 5vw, 38px); line-height: 1.15; margin: 30px 0 6px; color: var(--clay); }
.prose h2 { font-size: 20px; margin: 34px 0 8px; }
.prose .updated { color: var(--ink-soft); font-size: 15px; margin: 0 0 8px; }
.prose p, .prose li { color: var(--ink); font-size: 17px; }
.prose p { margin: 0 0 14px; }
.prose ul { margin: 0 0 14px; padding-left: 22px; }
.prose li { margin-bottom: 7px; }
.prose a { color: var(--clay); }
.prose a:visited { color: var(--clay); }
.prose .callout {
  background: var(--sand); border-left: 4px solid var(--clay); border-radius: 10px;
  padding: 16px 18px; margin: 22px 0;
}
.prose .callout p:last-child { margin-bottom: 0; }

/* ---------- 404 ---------- */
.notfound { padding: 40px 0 20px; max-width: 640px; }
.notfound__lead { font-size: 1.125rem; color: var(--ink-soft); margin: 12px 0 26px; }
.notfound__links { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 2px; }
.notfound__links a {
  display: block; padding: 12px 0; min-height: 44px; line-height: 1.5;
  border-bottom: 1px solid var(--hairline);
}
.notfound__cta { margin: 0; }
