/* ============================================================
   ghostsites.de — Site-Styles
   Konsumiert ausschließlich Tokens aus tokens.css (DESIGN-SYSTEM.md).
   Mobile-first. Abweichungen fließen zurück ins System, nie hierher.
   ============================================================ */

/* ---------- Grundgerüst ---------- */
.wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.wrap--text { max-width: var(--container-text); }
section { padding-block: var(--section-y); }
h1, h2 { font-family: var(--font-display); letter-spacing: var(--tracking-display); line-height: var(--leading-tight); margin: 0; }
h3 { font-family: var(--font-body); font-weight: 600; font-size: var(--text-h3); margin: 0; }
p { margin: 0; }
img { max-width: 100%; height: auto; display: block; }

/* Pflicht-Sektionskopf: Label + H2 + genau ein Lead-Satz */
.shead { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-7); }
.shead .label { color: var(--accent); }
.shead h2 { font-weight: 700; font-size: var(--text-h2); }
.shead .lead { font-size: var(--text-lead); color: var(--ink-muted); max-width: 620px; }
.label { font-family: var(--font-mono); font-size: var(--text-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.mono-note { font-family: var(--font-mono); font-size: var(--text-small); color: var(--ink-muted); }

/* ---------- Buttons & Links ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2); min-height: 48px; padding: 0 var(--space-6);
  border-radius: var(--radius-pill); border: 1px solid transparent; cursor: pointer;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  transition: background var(--dur-fast) var(--ease-brand), border-color var(--dur-fast) var(--ease-brand), box-shadow var(--dur-fast) var(--ease-brand), transform var(--dur-fast) var(--ease-brand); }
.btn--primary { background: var(--accent); color: var(--ink-on-accent); }
.btn--primary:hover { background: var(--accent-soft); box-shadow: var(--glow-accent); transform: translateY(-1px); }
.btn--primary:active { box-shadow: none; transform: translateY(0); }
.btn--primary:disabled { background: var(--glass-warm); color: var(--ink-dim); cursor: not-allowed; }
.btn--secondary { background: transparent; border-color: var(--line-strong); color: var(--accent-soft); }
.btn--secondary:hover { border-color: var(--accent-soft); background: var(--glass); }
.btn--ghost { background: none; border: none; color: var(--accent); padding: 0 var(--space-2); }
.btn--ghost .arr { transition: transform var(--dur-fast) var(--ease-brand); }
.btn--ghost:hover { color: var(--accent-soft); }
.btn--ghost:hover .arr { transform: translateX(4px); }
a.textlink { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(167, 139, 250, .4); }
a.textlink:hover { text-decoration-color: currentColor; }

/* ---------- Navigation ---------- */
.nav { position: fixed; inset-inline: 0; top: 0; z-index: 50; transition: background var(--dur-base) var(--ease-brand), border-color var(--dur-base) var(--ease-brand); border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: var(--glass); backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass); border-color: var(--line); }
.nav__row { display: flex; align-items: center; gap: var(--space-5); min-height: 64px; }
.nav__lockup { display: inline-flex; align-items: center; }
.nav__lockup svg, .nav__lockup img { height: 26px; width: auto; }
.nav__links { margin-left: auto; display: none; gap: var(--space-5); }
.nav__links a { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); text-decoration: none; white-space: nowrap; transition: color var(--dur-fast) var(--ease-brand); }
@media (min-width: 768px) and (max-width: 1023px) { .nav__links { gap: var(--space-4); } .nav__links a { font-size: 11px; } }
.nav__links a:hover { color: var(--accent-soft); }
.nav__cta { display: none; min-height: 40px; padding: 0 var(--space-5); font-size: 11px; }
.nav__burger { margin-left: auto; width: 48px; height: 48px; display: grid; place-items: center; background: none; border: none; cursor: pointer; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: background var(--dur-fast) var(--ease-brand); }
.nav__burger span::before, .nav__burger span::after { content: ''; position: absolute; inset-inline: 0; height: 2px; background: var(--ink); transition: transform var(--dur-base) var(--ease-brand), top var(--dur-base) var(--ease-brand); }
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }
.nav__burger[aria-expanded="true"] span { background: transparent; }
.nav__burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
.mobilemenu { position: fixed; inset: 0; z-index: 40; background: var(--bg-deep); display: flex; flex-direction: column; justify-content: center; gap: var(--space-5); padding: var(--gutter); opacity: 0; visibility: hidden; transition: opacity var(--dur-base) var(--ease-brand), visibility 0s var(--dur-base); }
.mobilemenu.is-open { opacity: 1; visibility: visible; transition: opacity var(--dur-base) var(--ease-brand); }
.mobilemenu a { font-family: var(--font-body); font-weight: 600; font-size: var(--text-h3); color: var(--ink); text-decoration: none; }
.mobilemenu a:hover { color: var(--accent-soft); }
@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger, .mobilemenu { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--bg-deep); padding-block: calc(64px + var(--section-y)) var(--space-8); overflow: clip; }
.hero h1 { font-weight: 900; font-size: var(--text-display); max-width: 15ch; }
.hero h1 .accent { color: var(--accent); display: block; }
.hero .lead { font-size: var(--text-lead); color: var(--ink-muted); max-width: 560px; margin-top: var(--space-5); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6); }
.hero__meta { margin-top: var(--space-5); font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--ink-muted); }
.hero__meta b { color: var(--accent-soft); font-weight: 400; }
/* Full-Bleed-Glow (Regel: aus der Spalte ziehen, body clipt) */
.hero::before { content: ''; position: absolute; inset: auto calc(50% - 50vw) -40%; height: 80%; background: radial-gradient(ellipse at 70% 100%, rgba(124, 92, 214, .16), transparent 60%); pointer-events: none; }
/* Ghost-Drift-Ambiente */
.spook { position: absolute; opacity: 0; width: var(--size, 40px); pointer-events: none; animation: spook-drift var(--dur, 16s) var(--ease-brand) var(--delay, 0s) infinite alternate; top: var(--top, 20%); left: var(--left, 80%); filter: drop-shadow(0 0 14px rgba(167, 139, 250, .35)); }
@keyframes spook-drift {
  0% { opacity: .26; transform: translate(0, 0) rotate(-3deg); }
  100% { opacity: .42; transform: translate(34px, -18px) rotate(3deg); }
}

/* ---------- Scrub-Intro (Muster der Alt-Website, IO-gegated) ---------- */
.scrub { position: relative; height: 100svh; background: var(--bg-deep); padding-block: 0; /* erbt sonst den Sektions-Rhythmus → schwarze Balken um die Animation */ }
.scrub.is-active { height: 550svh; }
.scrub__sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.scrub__media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.scrub__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.scrub.is-active .scrub__canvas { display: block; }
.scrub__shade { position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse at center, rgba(9, 9, 15, .55) 0%, rgba(9, 9, 15, .2) 55%, rgba(9, 9, 15, 0) 100%); pointer-events: none; }
/* Kanten weich in die Seite blenden — keine harten schwarzen Balken beim Ein-/Austritt.
   Geeaste Multi-Stop-Verläufe, weil die letzten Frames hell sind. */
.scrub__sticky::before, .scrub__sticky::after { content: ''; position: absolute; inset-inline: 0; height: 26svh; z-index: 1; pointer-events: none; }
.scrub__sticky::before { top: 0; background: linear-gradient(to bottom, var(--bg-deep) 0%, rgba(19, 18, 31, .8) 30%, rgba(19, 18, 31, .4) 60%, transparent 100%); }
.scrub__sticky::after { bottom: 0; background: linear-gradient(to top, var(--bg) 0%, rgba(19, 18, 31, .8) 30%, rgba(19, 18, 31, .4) 60%, transparent 100%); }
.scrub__layer { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; text-align: center; padding: var(--gutter); visibility: hidden; opacity: 0; }
.scrub__layer p { font-family: var(--font-display); font-weight: 700; font-size: var(--text-h2); color: var(--ink); text-shadow: 0 2px 30px rgba(9, 9, 15, .8); }
.scrub:not(.is-active) .scrub__layer:first-of-type { visibility: visible; opacity: 1; }

/* ---------- Karten ---------- */
.cardgrid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 768px) { .cardgrid--3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-m); padding: var(--space-6); }
.card .label { color: var(--accent); display: block; margin-bottom: var(--space-3); }
.card h3 { margin-bottom: var(--space-3); }
.card p { color: var(--ink-muted); }
a.card { display: block; color: inherit; text-decoration: none; transition: border-color var(--dur-fast) var(--ease-brand), transform var(--dur-fast) var(--ease-brand); }
a.card:hover { border-color: var(--line-strong); transform: translateY(-2px); }

/* ---------- Leistungen: Bento-Grid (refero: Vercel-Linie) ---------- */
.bento { display: grid; gap: var(--space-4); }
@media (min-width: 900px) {
  .bento { grid-template-columns: repeat(12, 1fr); }
  .bento__web { grid-column: span 7; }
  .bento__seo { grid-column: span 5; }
  .bento__brand { grid-column: span 5; }
  .bento__tech { grid-column: span 7; }
}
.bento .card { display: flex; flex-direction: column; gap: var(--space-3); position: relative; overflow: hidden; transition: border-color var(--dur-fast) var(--ease-brand), transform var(--dur-fast) var(--ease-brand); }
.bento .card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.bento .card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: var(--tracking-display); }
.bento__visual { margin-top: auto; padding-top: var(--space-5); }

/* Visual: Ladezeit-Metrik */
.metric__num { font-family: var(--font-mono); font-weight: 500; font-size: clamp(3rem, 2rem + 4vw, 5rem); line-height: 1; color: var(--ink); display: block; }
.metric__num small { font-size: .38em; color: var(--accent-soft); }
.metric__bar { position: relative; height: 6px; border-radius: 3px; background: var(--glass-warm); margin: var(--space-4) 0 var(--space-2); overflow: hidden; }
.metric__bar i { position: absolute; inset: 0 auto 0 0; width: var(--w, 20%); border-radius: 3px; background: var(--gradient-ghost); }
.metric__cap { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--ink-muted); }

/* Visual: Mini-SERP */
.serp { display: flex; flex-direction: column; gap: var(--space-2); }
.serp__row { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3) var(--space-4); border: 1px solid var(--line); border-radius: var(--radius-s); }
.serp__row--you { background: var(--glass); border-color: var(--line-strong); }
.serp__row--you svg { width: 16px; flex-shrink: 0; }
.serp__row--you span { font-family: var(--font-mono); font-size: 12px; color: var(--ink); letter-spacing: .04em; }
.serp__row--you .serp__pos { margin-left: auto; color: var(--success); }
.serp__row i { display: block; height: 8px; border-radius: 4px; background: var(--glass-warm); }
.serp__row--ghost1 i { width: 55%; }
.serp__row--ghost2 i { width: 40%; }

/* Visual: Marken-Bausteine */
.brandbits { display: flex; align-items: stretch; gap: var(--space-3); }
.brandbits__tile { flex: 1; display: grid; place-items: center; min-height: 72px; border: 1px solid var(--line); border-radius: var(--radius-s); }
.brandbits__tile .aa-display { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.brandbits__tile .aa-serif { font-family: var(--font-body); font-weight: 400; font-size: 1.6rem; }
.brandbits__dots { display: flex; gap: 8px; }
.brandbits__dots i { width: 16px; height: 16px; border-radius: 50%; display: block; }

/* Visual: Technik-Zeile */
.techline { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.techline span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding: 7px 12px; border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--ink-muted); }
.techline span b { color: var(--success); font-weight: 400; }
.techprompt { font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); margin-top: var(--space-3); }
.techprompt b { color: var(--accent-soft); font-weight: 400; }

/* ---------- Vergleichstabelle ---------- */
.compare-wrap { overflow-x: auto; }
.compare { width: 100%; min-width: 560px; border-collapse: separate; border-spacing: 0; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; }
.compare th, .compare td { padding: var(--space-4) var(--space-5); text-align: left; border-bottom: 1px solid var(--line); }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: none; }
.compare thead th { font-family: var(--font-mono); font-size: var(--text-label); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--ink-muted); font-weight: 400; }
.compare thead th.us { color: var(--accent-soft); }
.compare tbody th { font-weight: 600; font-size: var(--text-small); color: var(--ink); font-family: var(--font-body); }
.compare td { font-size: var(--text-small); color: var(--ink-muted); }
.compare td.us { background: var(--glass); color: var(--ink); }
.compare td.us::before { content: '✓ '; color: var(--success); font-family: var(--font-mono); }
.compare td.them::before { content: '✗ '; color: var(--ink-dim); font-family: var(--font-mono); }

/* ---------- Prozess (Glas-Geist auf Schiene) ---------- */
.process { position: relative; }
.process__rail { position: absolute; left: 19px; top: 0; bottom: 0; width: 2px; background: var(--line); border-radius: 1px; overflow: hidden; }
.process__rail i { position: absolute; inset: 0; background: linear-gradient(var(--accent-soft), var(--accent) 55%, var(--accent-strong)); transform-origin: top; transform: scaleY(var(--p, 0)); }
.process__ghost { position: absolute; left: 0; top: 0; width: 40px; transform: translateY(0); will-change: transform; filter: drop-shadow(0 0 16px rgba(167, 139, 250, .5)); transition: transform .2s linear; }
.process__steps { list-style: none; margin: 0; padding: 0 0 0 76px; display: flex; flex-direction: column; gap: var(--space-8); counter-reset: step; }
.process__steps li { max-width: 560px; }
.process__steps .step-label { display: block; margin-bottom: var(--space-2); color: var(--accent); }
.process__steps h3 { margin-bottom: var(--space-2); }
.process__steps p { color: var(--ink-muted); }

/* ---------- Preise ---------- */
.pricegrid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; padding-top: var(--space-4); }
@media (min-width: 900px) { .pricegrid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.price { display: flex; flex-direction: column; gap: var(--space-4); }
.price__head { display: flex; flex-direction: column; gap: var(--space-2); }
.price .amount { font-family: var(--font-mono); font-weight: 500; font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem); line-height: 1.1; color: var(--ink); }
.price .amount small { display: block; margin-top: var(--space-1); font-size: .45em; color: var(--ink-muted); font-weight: 400; }
.price ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: var(--space-2); color: var(--ink-muted); font-size: var(--text-small); }
.price ul li { padding-left: 1.4em; text-indent: -1.4em; }
.price ul li::before { content: '✓'; color: var(--success); font-family: var(--font-mono); margin-right: .6em; }
.price .btn { margin-top: auto; }
.price--featured { position: relative; border-color: var(--accent); box-shadow: var(--glow-accent); background-image: linear-gradient(180deg, rgba(167, 139, 250, 0) 40%, rgba(167, 139, 250, .07)); }
.price--featured .price__head { align-items: center; text-align: center; }
.price--featured > .badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); }
.price__who { margin: 0; color: var(--ink-muted); font-size: var(--text-small); }
.price ul li.price__anchor { padding-left: 0; text-indent: 0; color: var(--ink); }
.price ul li.price__anchor::before { content: none; }
@media (min-width: 900px) { .price--featured { margin-top: -10px; padding-top: calc(var(--space-6) + 10px); } }
.badge { display: inline-block; font-family: var(--font-mono); font-size: 10px; letter-spacing: var(--tracking-label); text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill); background: var(--accent); color: var(--ink-on-accent); }
.retainergrid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; margin-top: var(--space-6); }
@media (min-width: 900px) { .retainergrid { grid-template-columns: repeat(3, 1fr); } }
.retainer { padding: var(--space-5); }
.retainer .amount { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.8rem); }
.price__foot { margin-top: var(--space-5); color: var(--ink-muted); font-size: var(--text-small); max-width: 640px; }
.price__custom { margin-top: var(--space-5); }

/* ---------- Fraunces-Großmoment ---------- */
.serif-moment { text-align: center; }
.serif-moment p { font-family: var(--font-body); font-weight: 380; font-style: italic; font-size: var(--text-h2); line-height: 1.3; color: var(--ink); max-width: 22ch; margin-inline: auto; }

/* ---------- Projekte ---------- */
.project-card .shot { border-radius: var(--radius-s); overflow: hidden; border: 1px solid var(--line); margin-bottom: var(--space-4); background: var(--surface-3); aspect-ratio: 16 / 10; }
.project-card .shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.project-card .facts { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-3); font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--ink-muted); }
.project-card .facts b { color: var(--accent-soft); font-weight: 400; }

/* ---------- FAQ ---------- */
.faq { max-width: var(--container-text); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); cursor: pointer; list-style: none; padding: var(--space-4) 0; font-family: var(--font-body); font-weight: 600; font-size: var(--text-h3); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--font-mono); font-weight: 400; font-size: 22px; color: var(--accent); transition: transform var(--dur-base) var(--ease-brand); flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: var(--space-4); color: var(--ink-muted); }

/* ---------- Kontakt ---------- */
.contact { background: var(--bg-deep); position: relative; overflow: clip; }
.contact::before { content: ''; position: absolute; inset: -30% calc(50% - 50vw) auto; height: 70%; background: radial-gradient(ellipse at 30% 0%, rgba(124, 92, 214, .13), transparent 60%); pointer-events: none; }
.form { display: grid; gap: var(--space-4); max-width: 640px; position: relative; }
@media (min-width: 768px) { .form__row { display: grid; gap: var(--space-4); grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label { font-family: var(--font-mono); font-size: var(--text-label); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--ink-muted); }
.field input, .field textarea { min-height: 48px; padding: var(--space-3) var(--space-4); background: var(--glass); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-s); font-family: var(--font-body); font-size: var(--text-body); transition: border-color var(--dur-fast) var(--ease-brand); width: 100%; box-sizing: border-box; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field.is-error input, .field.is-error textarea { border-color: var(--error); }
.field .msg { font-size: var(--text-small); }
.field .msg.error { color: var(--error); }
.form__status { font-size: var(--text-body); min-height: 1.5em; }
.form__status.ok { color: var(--success); }
.form__status.error { color: var(--error); }
/* Honeypot: visuell weg, für Bots da */
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding: var(--space-8) 0 var(--space-5); }
.footer__cols { display: grid; gap: var(--space-6); grid-template-columns: 1fr; margin-bottom: var(--space-7); }
@media (min-width: 768px) { .footer__cols { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__brand img, .footer__brand svg { height: 22px; width: auto; margin-bottom: var(--space-3); }
.footer__brand p { color: var(--ink-muted); font-size: var(--text-small); }
.footer .label { color: var(--accent); display: block; margin-bottom: var(--space-3); }
.footer a { color: var(--ink-muted); text-decoration: none; font-size: var(--text-small); display: block; margin-bottom: var(--space-2); transition: color var(--dur-fast) var(--ease-brand); }
.footer a:hover { color: var(--accent-soft); }
.footer__legal { border-top: 1px solid var(--line); padding-top: var(--space-4); display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); }
.footer__legal a { display: inline; margin: 0; font-size: inherit; color: var(--ink-muted); }

/* ---------- Reveals ----------
   Versteckt wird NUR mit JS (html.js) — ohne JS ist alles sichtbar. */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--dur-base) var(--ease-brand), transform var(--dur-base) var(--ease-brand); transition-delay: var(--reveal-delay, 0s); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
.growline { height: 1px; background: var(--gradient-ghost); }
html.js .growline { width: 0; transition: width 1.2s var(--ease-brand); }
html.js .growline.is-visible { width: 100%; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
  html.js .growline { width: 100%; }
  .spook { animation: none; opacity: .3; }
}

/* ---------- Unterseiten ---------- */
.page-head { background: var(--bg-deep); padding-block: calc(64px + var(--space-8)) var(--space-8); }
.page-head h1 { font-weight: 700; font-size: var(--text-h2); }
.page-head .label { color: var(--accent); display: block; margin-bottom: var(--space-3); }
.prose { max-width: var(--container-text); padding-block: var(--space-8); }
.prose h2 { font-size: var(--text-h3); font-family: var(--font-body); font-weight: 600; margin: var(--space-6) 0 var(--space-3); }
.prose p, .prose li { color: var(--ink-muted); margin-bottom: var(--space-3); }
.prose strong { color: var(--ink); }
