/* =========================================================================
   Der Schwarze Rabe — Site Stylesheet
   Design system: warm paper + raven ink, editorial typography, generous space.
   ========================================================================= */

/* -------------------- Reset & base -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { margin: 0; }
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--ochre); outline-offset: 3px; border-radius: 2px; }

.visually-hidden {
    position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; left: 0; top: 0; padding: .75rem 1rem; background: var(--ink); color: var(--paper);
    transform: translateY(-110%); z-index: 999; font-weight: 500;
}
.skip-link:focus { transform: translateY(0); }

/* -------------------- Tokens -------------------- */
:root {
    --ink:        #0a0a0a;
    --ink-soft:   #1a1a1a;
    --ash:        #6f6759;
    --ash-soft:   #8a8273;

    --paper:      #f4efe6;
    --paper-warm: #ebe3d3;
    --cream:      #ede5d3;
    --bone:       #f8f5ee;

    --moss:       #2a3a2e;
    --moss-deep:  #1a2820;
    --ochre:      #b8865a;
    --ochre-warm: #c97b54;

    --rule:       rgba(10,10,10,.14);
    --rule-soft:  rgba(10,10,10,.07);

    --serif: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container:    72rem;       /* ~1152px */
    --container-x:  clamp(1.25rem, 4vw, 3rem);

    --t-step--1: clamp(.84rem, .82rem + .15vw, .92rem);
    --t-step-0:  clamp(1rem, .96rem + .25vw, 1.12rem);
    --t-step-1:  clamp(1.18rem, 1.1rem + .45vw, 1.42rem);
    --t-step-2:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --t-step-3:  clamp(2rem, 1.6rem + 2vw, 3rem);
    --t-step-4:  clamp(2.5rem, 1.8rem + 3.4vw, 4.25rem);
    --t-step-5:  clamp(3rem, 2rem + 5vw, 6rem);

    --radius: 14px;
    --radius-lg: 22px;

    --ease: cubic-bezier(.2,.65,.2,1);
    --dur:  .45s;
}

/* -------------------- Theme variants (per body[data-theme]) -------------------- */
body[data-theme="paper"] { --bg: var(--paper); --fg: var(--ink); --fg-soft: var(--ash); }
body[data-theme="bone"]  { --bg: var(--bone);  --fg: var(--ink); --fg-soft: var(--ash); }
body[data-theme="ink"]   { --bg: var(--ink);   --fg: var(--paper); --fg-soft: #b9b1a0; --rule: rgba(244,239,230,.16); --rule-soft: rgba(244,239,230,.08); }
body[data-theme="moss"]  { --bg: var(--moss-deep); --fg: var(--paper); --fg-soft: #b9b1a0; --rule: rgba(244,239,230,.16); --rule-soft: rgba(244,239,230,.08); }

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--sans);
    font-size: var(--t-step-0);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

/* Subtle paper grain via SVG noise */
body::before {
    content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .35; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .25 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body[data-theme="ink"]::before,
body[data-theme="moss"]::before { mix-blend-mode: screen; opacity: .07; }

/* -------------------- Typography -------------------- */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.012em;
    line-height: 1.05;
    margin: 0;
    color: var(--fg);
}

.h-display { font-size: var(--t-step-5); line-height: .98; letter-spacing: -0.025em; font-weight: 300; }
.h-1 { font-size: var(--t-step-4); line-height: 1; letter-spacing: -0.02em; }
.h-2 { font-size: var(--t-step-3); line-height: 1.05; }
.h-3 { font-size: var(--t-step-2); line-height: 1.15; }
.h-4 { font-size: var(--t-step-1); line-height: 1.25; }

.serif-italic { font-style: italic; font-feature-settings: "ss01"; }

.eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .22em;
    font-weight: 500;
    color: var(--fg-soft);
    margin: 0 0 1rem;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
}
.eyebrow::before {
    content: ""; width: 1.5rem; height: 1px; background: currentColor;
}

.lead {
    font-family: var(--serif);
    font-size: var(--t-step-2);
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: -.01em;
    color: var(--fg);
}

p { margin: 0 0 1em; max-width: 60ch; }
.muted { color: var(--fg-soft); }

a:not([class]) {
    color: inherit;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--rule);
    text-underline-offset: 4px;
    transition: text-decoration-color var(--dur) var(--ease);
}
a:not([class]):hover { text-decoration-color: currentColor; }

::selection { background: var(--ink); color: var(--paper); }

/* -------------------- Layout helpers -------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--container-x);
    position: relative;
    z-index: 1;
}
.container--wide { max-width: 84rem; }
.container--narrow { max-width: 48rem; }

.section { padding-block: clamp(4rem, 8vw, 9rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 5rem); }
.section--top { padding-top: clamp(7rem, 12vw, 11rem); }

.divider { height: 1px; background: var(--rule); width: 100%; }
.divider--soft { background: var(--rule-soft); }

/* -------------------- Header / nav -------------------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in oklab, var(--bg) 78%, transparent);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--rule); }

.site-header__inner {
    max-width: var(--container);
    width: 100%;
    margin-inline: auto;
    padding: 1.1rem var(--container-x);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: var(--fg);
}
/* Raven mark — real logo (PNG), aspect 768/1275 ≈ 0.6 */
.raven-mark { display: block; height: auto; width: 100%; }
.raven-mark--light { filter: brightness(0) invert(1); }

.site-brand__mark { width: 30px; height: auto; flex-shrink: 0; aspect-ratio: 768 / 1275; }

.site-footer__mark { width: 56px; height: auto; aspect-ratio: 768 / 1275; margin-bottom: 1.25rem; }

/* -------------------- Site footer -------------------- */
.site-footer {
    background: var(--ink);
    color: var(--paper);
    padding: clamp(4rem, 8vw, 7rem) 0 2.5rem;
    margin-top: 0;
    position: relative;
}
.site-footer .container { position: relative; z-index: 1; }
.site-footer__manifesto {
    text-align: center;
    padding-bottom: clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid rgba(244,239,230,.16);
    margin-bottom: clamp(3rem, 5vw, 4rem);
}
.site-footer__manifesto .eyebrow { color: #b9b1a0; justify-content: center; }
.site-footer__manifesto .eyebrow::before,
.site-footer__manifesto .eyebrow::after { content: ""; width: 1.5rem; height: 1px; background: currentColor; }
.site-footer__quote {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3.6vw, 2.75rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -.018em;
    font-style: italic;
    margin: 1rem auto 0;
    max-width: 28ch;
    color: var(--paper);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
    border-bottom: 1px solid rgba(244,239,230,.12);
}
@media (min-width: 700px)  { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; } }

.site-footer__about { font-size: .95rem; color: #c8c0b1; line-height: 1.6; max-width: 32ch; margin: 0; }
.site-footer__heading {
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #b9b1a0;
    margin: 0 0 1.25rem;
    font-weight: 500;
}
.site-footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer__list a {
    color: var(--paper);
    text-decoration: none;
    font-size: .98rem;
    font-family: var(--serif);
    transition: color var(--dur) var(--ease);
}
.site-footer__list a:hover { color: var(--ochre); }
.site-footer__list--plain a { font-family: var(--sans); font-size: .92rem; }
.site-footer__list .muted { color: #8a8273; font-size: .82rem; font-family: var(--sans); }

.site-footer__base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    flex-wrap: wrap;
    color: #8a8273;
    font-size: .82rem;
    letter-spacing: .05em;
}
.site-footer__base p { margin: 0; max-width: none; }
.site-brand__word {
    font-family: var(--serif);
    line-height: .95;
    display: grid;
    font-size: 1.08rem;
    letter-spacing: -.01em;
    font-weight: 400;
}
.site-brand__word-line--ital { font-style: italic; font-weight: 500; }

.site-nav { justify-self: center; }
.site-nav__list {
    display: flex; align-items: center; gap: 2rem;
    list-style: none; margin: 0; padding: 0;
}
.site-nav__link {
    text-decoration: none; color: var(--fg-soft);
    font-size: .94rem; font-weight: 500;
    position: relative; padding: .35rem 0;
    transition: color var(--dur) var(--ease);
}
.site-nav__link::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: currentColor;
    transform-origin: left; transform: scaleX(0); transition: transform var(--dur) var(--ease);
}
.site-nav__link:hover,
.site-nav__link.is-active { color: var(--fg); }
.site-nav__link:hover::after,
.site-nav__link.is-active::after { transform: scaleX(1); }

.site-cta {
    display: inline-flex; align-items: center; gap: .6rem;
    background: var(--ink); color: var(--paper);
    padding: .65rem 1.05rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-cta:hover { background: var(--moss); transform: translateX(2px); }
body[data-theme="ink"] .site-cta,
body[data-theme="moss"] .site-cta { background: var(--paper); color: var(--ink); }
body[data-theme="ink"] .site-cta:hover,
body[data-theme="moss"] .site-cta:hover { background: var(--ochre); }

.site-burger {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--rule);
    position: relative;
}
.site-burger__bar {
    display: block; position: absolute; width: 18px; height: 1.5px; background: var(--fg);
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.site-burger__bar:nth-child(2) { transform: translateY(5px); }
.site-burger__bar:nth-child(3) { transform: translateY(-5px); }
.site-burger[aria-expanded="true"] .site-burger__bar:nth-child(2) { transform: rotate(45deg); }
.site-burger[aria-expanded="true"] .site-burger__bar:nth-child(3) { transform: rotate(-45deg); }

.site-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 1rem var(--container-x) 2rem;
}
.site-menu__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .25rem; }
.site-menu__link {
    display: block; padding: .9rem 0;
    font-family: var(--serif); font-size: 1.55rem; color: var(--fg);
    text-decoration: none; border-bottom: 1px solid var(--rule-soft);
}
.site-menu__link--accent { color: var(--ochre); }

/* -------------------- Buttons -------------------- */
.btn {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: .9rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    line-height: 1;
    transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--moss); }

.btn--paper { background: var(--paper); color: var(--ink); border-color: var(--ink); }
.btn--paper:hover { background: var(--ink); color: var(--paper); }

.btn--ghost { color: var(--fg); border-color: var(--rule); }
.btn--ghost:hover { border-color: var(--fg); background: var(--fg); color: var(--bg); }

.btn--lg { padding: 1.1rem 1.7rem; font-size: 1rem; }

/* Inline arrow link */
.linklike {
    display: inline-flex; align-items: center; gap: .55rem;
    text-decoration: none; color: var(--fg);
    font-weight: 500; font-size: .95rem;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}
.linklike svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.linklike:hover svg { transform: translateX(4px); }

/* -------------------- Reveal animations -------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
    will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* =========================================================================
   PAGE: HOME
   ========================================================================= */

/* Hero */
.hero {
    position: relative;
    padding: clamp(5rem, 10vw, 10rem) 0 clamp(3.5rem, 7vw, 7rem);
    overflow: hidden;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: end;
}
.hero__eyebrow { display: flex; align-items: center; gap: 1rem; color: var(--fg-soft); }
.hero__eyebrow-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--ochre);
    box-shadow: 0 0 0 6px color-mix(in oklab, var(--ochre) 30%, transparent);
    animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 6px color-mix(in oklab, var(--ochre) 18%, transparent); }
    50%      { box-shadow: 0 0 0 11px color-mix(in oklab, var(--ochre) 0%, transparent); }
}
.hero__title {
    font-family: var(--serif);
    font-size: var(--t-step-5);
    line-height: .96;
    letter-spacing: -.025em;
    font-weight: 300;
    margin: 1.2rem 0 0;
    max-width: 18ch;
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--ochre); }
.hero__sub {
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
    font-size: var(--t-step-1);
    color: var(--fg-soft);
    max-width: 38ch;
    line-height: 1.5;
}
.hero__actions {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: flex; flex-wrap: wrap; gap: .75rem;
}
.hero__meta {
    margin-top: clamp(3rem, 6vw, 5rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
    font-size: .92rem;
    color: var(--fg-soft);
}
.hero__meta strong { display: block; color: var(--fg); font-weight: 500; margin-bottom: .25rem; font-family: var(--serif); font-size: 1.1rem; }

/* The raven sigil floating in hero */
.hero__sigil {
    position: absolute;
    right: -4%; top: 4%;
    width: clamp(220px, 34vw, 460px);
    height: auto;
    aspect-ratio: 768 / 1275;
    opacity: .12;
    pointer-events: none;
    transform: rotate(-6deg);
    z-index: 0;
    user-select: none;
}
body[data-theme="ink"] .hero__sigil { opacity: .18; }

/* Two pillars */
.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.pillar {
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 3rem);
    display: flex; flex-direction: column;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    text-decoration: none;
    color: var(--fg);
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.pillar + .pillar { border-left: 1px solid var(--rule); }
.pillar:hover { background: var(--ink); color: var(--paper); }
.pillar:hover .pillar__num,
.pillar:hover .pillar__list { color: rgba(244,239,230,.7); }
.pillar:hover .pillar__cta { color: var(--ochre); }

.pillar__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.pillar__num {
    font-family: var(--serif);
    font-size: .95rem;
    letter-spacing: .15em;
    color: var(--fg-soft);
    font-feature-settings: "tnum";
    transition: color var(--dur) var(--ease);
}
.pillar__kind {
    font-family: var(--sans);
    font-size: .75rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--fg-soft);
    transition: color var(--dur) var(--ease);
}
.pillar__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -.02em;
    margin: 2rem 0 1.25rem;
    max-width: 14ch;
}
.pillar__title em { font-style: italic; }
.pillar__lead {
    font-size: 1.05rem;
    max-width: 38ch;
    color: inherit;
    opacity: .88;
}
.pillar__list {
    list-style: none; padding: 0; margin: 2rem 0 0;
    display: grid; gap: .35rem;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--fg-soft);
    transition: color var(--dur) var(--ease);
}
.pillar__list li { display: flex; align-items: center; gap: .75rem; }
.pillar__list li::before {
    content: ""; width: .5rem; height: 1px; background: currentColor; flex: 0 0 auto;
}
.pillar__cta {
    margin-top: auto;
    padding-top: 2.5rem;
    display: inline-flex; align-items: center; gap: .6rem;
    font-weight: 500;
    color: inherit;
    transition: color var(--dur) var(--ease);
}
.pillar__cta svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.pillar:hover .pillar__cta svg { transform: translateX(5px); }

/* Manifesto block */
.manifest {
    padding-block: clamp(5rem, 10vw, 11rem);
    background: var(--paper-warm);
    color: var(--ink);
    position: relative;
}
.manifest__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.manifest__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -.02em;
    line-height: 1.05;
    max-width: 22ch;
}
.manifest__title em { font-style: italic; color: var(--moss); }
.manifest__body { font-size: 1.1rem; line-height: 1.65; color: var(--ash); max-width: 60ch; }
.manifest__body p + p { margin-top: 1.2em; }
.manifest__signoff {
    margin-top: 2rem;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--ink);
}

@media (min-width: 800px) {
    .manifest__grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

/* Process / how it works */
.process { padding-block: clamp(4rem, 9vw, 9rem); }
.process__head { max-width: 50rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.process__title { font-size: var(--t-step-3); font-weight: 300; letter-spacing: -.02em; margin-top: .5rem; }
.process__title em { font-style: italic; color: var(--ochre); }
.process__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    border-top: 1px solid var(--rule);
}
@media (min-width: 720px) {
    .process__grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .process__step:nth-child(odd) { border-right: 1px solid var(--rule); }
}
@media (min-width: 1024px) {
    .process__grid { grid-template-columns: repeat(4, 1fr); }
    .process__step:nth-child(odd) { border-right: 0; }
    .process__step:not(:last-child) { border-right: 1px solid var(--rule); }
}
.process__step {
    padding: 2rem 1.75rem 2.5rem;
    border-bottom: 1px solid var(--rule);
}
.process__step-num {
    font-family: var(--serif);
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--ochre);
    line-height: 1;
    margin-bottom: .5rem;
}
.process__step-title { font-size: 1.4rem; font-weight: 400; margin: .35rem 0 .75rem; }
.process__step-body { color: var(--fg-soft); font-size: .98rem; line-height: 1.55; }

/* Testimonial */
.witness {
    padding-block: clamp(4rem, 8vw, 8rem);
    background: var(--ink);
    color: var(--paper);
}
.witness__inner { display: grid; gap: 2rem; align-items: center; }
.witness__quote {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3.6vw, 3rem);
    line-height: 1.15;
    letter-spacing: -.018em;
    font-weight: 300;
    max-width: 30ch;
}
.witness__quote em { font-style: italic; color: var(--ochre); }
.witness__by {
    margin-top: 1.5rem;
    font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; color: #b9b1a0;
}

/* CTA band */
.cta-band {
    padding-block: clamp(4rem, 8vw, 8rem);
    background: var(--moss-deep);
    color: var(--paper);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band__title {
    font-family: var(--serif);
    font-size: var(--t-step-4);
    font-weight: 300;
    letter-spacing: -.02em;
    margin: 0 auto;
    max-width: 22ch;
    line-height: 1.05;
}
.cta-band__title em { font-style: italic; color: var(--ochre); }
.cta-band__sub { margin: 1.25rem auto 2.25rem; color: #c8c0b1; max-width: 40ch; font-size: 1.05rem; }
.cta-band__sigil {
    position: absolute;
    width: 42vw; max-width: 520px; height: auto;
    aspect-ratio: 768 / 1275;
    left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(-4deg);
    opacity: .08;
    pointer-events: none;
    user-select: none;
}

/* =========================================================================
   PAGE: Pillar (Trauerbegleitung & Bestattung)
   ========================================================================= */
.pillar-hero { padding: clamp(6rem, 12vw, 11rem) 0 clamp(3.5rem, 7vw, 6rem); }
.pillar-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: end;
}
@media (min-width: 900px) {
    .pillar-hero__grid { grid-template-columns: 7fr 5fr; gap: 4rem; }
}
.pillar-hero__title {
    font-family: var(--serif);
    font-size: var(--t-step-5);
    font-weight: 300;
    letter-spacing: -.025em;
    line-height: .98;
    margin: 1rem 0 0;
    max-width: 16ch;
}
.pillar-hero__title em { font-style: italic; color: var(--ochre); }
.pillar-hero__lead {
    font-family: var(--serif);
    font-size: var(--t-step-2);
    font-weight: 300;
    color: var(--fg-soft);
    line-height: 1.3;
    max-width: 38ch;
}

/* Offerings grid */
.offerings { padding-block: clamp(3rem, 7vw, 7rem); }
.offerings__head { max-width: 56rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.offerings__title { font-size: var(--t-step-3); font-weight: 300; letter-spacing: -.02em; margin-top: .5rem; }
.offerings__title em { font-style: italic; color: var(--ochre); }

.offering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.offering {
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: var(--bg);
    display: flex; flex-direction: column;
    transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.offering:hover { border-color: var(--fg); transform: translateY(-4px); }
.offering__mark {
    width: 42px; height: 42px;
    color: var(--ochre);
    margin-bottom: 1.5rem;
}
.offering__title {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 .75rem;
    letter-spacing: -.01em;
}
.offering__body { color: var(--fg-soft); font-size: .98rem; line-height: 1.55; margin: 0 0 1.5rem; }
.offering__meta {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--rule);
    display: flex; justify-content: space-between; align-items: center;
    font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-soft);
}
.offering__price { font-family: var(--serif); font-size: 1.1rem; text-transform: none; letter-spacing: -.01em; color: var(--fg); font-style: italic; }

/* Editorial / long sections (Atemtechniken, Natur, Expedition etc.) */
.editorial { padding-block: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--rule); }
.editorial--ink { background: var(--ink); color: var(--paper); border-color: rgba(244,239,230,.16); }
.editorial__grid {
    display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 900px) {
    .editorial__grid { grid-template-columns: 5fr 7fr; gap: 5rem; }
}
.editorial__eyebrow { color: var(--ochre); }
.editorial__title {
    font-family: var(--serif);
    font-size: var(--t-step-3);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -.02em;
}
.editorial__title em { font-style: italic; }
.editorial__body p {
    font-size: 1.08rem; line-height: 1.7;
    color: var(--fg-soft);
}
.editorial--ink .editorial__body p { color: #c8c0b1; }
.editorial__list {
    list-style: none; padding: 0; margin: 1.5rem 0 0;
    display: grid; gap: 1rem;
}
.editorial__list li {
    display: grid; grid-template-columns: 24px 1fr; gap: 1rem;
    padding: 1rem 0; border-top: 1px solid var(--rule);
}
.editorial__list li:last-child { border-bottom: 1px solid var(--rule); }
.editorial--ink .editorial__list li { border-color: rgba(244,239,230,.16); }
.editorial__list svg { width: 20px; height: 20px; color: var(--ochre); margin-top: 4px; }
.editorial__list strong {
    display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--fg); margin-bottom: .15rem;
}

/* FAQ */
.faq { padding-block: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--rule); }
.faq__head { max-width: 56rem; margin-bottom: 3rem; }
.faq__title { font-size: var(--t-step-3); font-weight: 300; letter-spacing: -.02em; margin-top: .5rem; }
.faq__list { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__q {
    width: 100%; text-align: left;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    padding: 1.6rem 0;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -.01em;
    color: var(--fg);
    cursor: pointer;
    line-height: 1.25;
}
.faq__q svg { width: 16px; height: 16px; color: var(--ochre); transition: transform var(--dur) var(--ease); flex-shrink: 0; }
.faq__item[open] .faq__q svg { transform: rotate(45deg); }
.faq__a {
    padding: 0 0 1.8rem;
    color: var(--fg-soft);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 64ch;
}

/* =========================================================================
   PAGE: Manifest / Über
   ========================================================================= */
.manifest-hero { padding: clamp(7rem, 14vw, 13rem) 0 clamp(4rem, 8vw, 8rem); }
.manifest-hero__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: var(--t-step-5);
    line-height: .98;
    letter-spacing: -.025em;
    max-width: 18ch;
}
.manifest-hero__title em { font-style: italic; color: var(--ochre); }
.manifest-hero__sub {
    margin-top: 2rem;
    font-family: var(--serif);
    font-size: var(--t-step-2);
    line-height: 1.3;
    color: var(--fg-soft);
    max-width: 44ch;
    font-weight: 300;
}

.values { padding-block: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--rule); }
.values__grid {
    display: grid; grid-template-columns: 1fr; gap: 0;
    border-top: 1px solid var(--rule);
}
@media (min-width: 800px) {
    .values__grid { grid-template-columns: repeat(3, 1fr); }
    .values__item:not(:last-child) { border-right: 1px solid var(--rule); }
}
.values__item { padding: 2.5rem 1.75rem; border-bottom: 1px solid var(--rule); }
.values__num {
    font-family: var(--serif);
    font-size: 1rem; font-style: italic; color: var(--ochre); margin-bottom: 1.5rem; font-feature-settings: "tnum";
}
.values__name {
    font-family: var(--serif);
    font-size: 2rem; font-weight: 300; letter-spacing: -.02em; line-height: 1.05;
    margin: 0 0 1rem;
}
.values__name em { font-style: italic; }
.values__body { color: var(--fg-soft); font-size: 1rem; line-height: 1.6; margin: 0; }

/* People */
.people { padding-block: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--rule); }
.people__grid {
    display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 700px) {
    .people__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}
.person {
    display: grid; grid-template-columns: 110px 1fr; gap: 1.5rem; align-items: start;
}
.person__portrait {
    width: 110px; height: 140px;
    background: var(--paper-warm);
    border-radius: 6px;
    display: grid; place-items: center;
    color: var(--ash);
    font-family: var(--serif);
    font-style: italic;
}
.person__name { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin: 0; letter-spacing: -.01em; }
.person__role { color: var(--ochre); font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; margin: .35rem 0 .9rem; }
.person__body { color: var(--fg-soft); font-size: .98rem; line-height: 1.55; margin: 0; }

/* =========================================================================
   PAGE: Kontakt
   ========================================================================= */
.contact-hero { padding: clamp(6rem, 12vw, 11rem) 0 clamp(2rem, 4vw, 4rem); }
.contact-hero__grid {
    display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 900px) {
    .contact-hero__grid { grid-template-columns: 6fr 6fr; gap: 5rem; align-items: end; }
}
.contact-hero__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: var(--t-step-5);
    line-height: .98;
    letter-spacing: -.025em;
}
.contact-hero__title em { font-style: italic; color: var(--ochre); }
.contact-hero__lead {
    font-family: var(--serif);
    font-size: var(--t-step-2);
    font-weight: 300;
    color: var(--fg-soft);
    line-height: 1.3;
}

.contact-card-grid {
    margin-top: 3rem;
    display: grid; grid-template-columns: 1fr; gap: 0;
    border-top: 1px solid var(--rule);
}
@media (min-width: 800px) { .contact-card-grid { grid-template-columns: repeat(3, 1fr); } .contact-card:not(:last-child) { border-right: 1px solid var(--rule); } }
.contact-card { padding: 2rem 1.75rem; border-bottom: 1px solid var(--rule); }
.contact-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin: 0 0 .5rem; letter-spacing: -.01em; }
.contact-card p { color: var(--fg-soft); margin: 0 0 1rem; font-size: .98rem; }
.contact-card a { color: var(--fg); font-weight: 500; }

/* Form */
.contact-form { padding-block: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--rule); }
.contact-form__head { max-width: 56rem; margin-bottom: 3rem; }
.contact-form__title { font-size: var(--t-step-3); font-weight: 300; letter-spacing: -.02em; margin-top: .5rem; }

.form { display: grid; gap: 1.5rem; max-width: 44rem; }
.form-row { display: grid; gap: 1.5rem; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .5rem; }
.field label { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-soft); font-weight: 500; }
.field input, .field textarea, .field select {
    width: 100%;
    border: 0; border-bottom: 1px solid var(--rule);
    background: transparent;
    padding: .8rem 0;
    font: inherit; font-family: var(--serif); font-size: 1.2rem;
    color: var(--fg);
    border-radius: 0;
    transition: border-color var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ash-soft); font-style: italic; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--fg); }
.field textarea { min-height: 9rem; resize: vertical; }
.field--checkbox { display: flex; gap: .75rem; align-items: flex-start; }
.field--checkbox input { width: 18px; height: 18px; accent-color: var(--ink); }
.field--checkbox label { letter-spacing: 0; text-transform: none; color: var(--fg-soft); font-size: .9rem; line-height: 1.45; }
.form__submit { margin-top: 1rem; }

.form__note {
    margin-top: 1rem;
    font-size: .85rem;
    color: var(--fg-soft);
}

/* =========================================================================
   404 / 503
   ========================================================================= */
.errpage { min-height: 70vh; display: grid; place-items: center; padding-block: 4rem; text-align: center; }
.errpage__num {
    font-family: var(--serif);
    font-size: clamp(7rem, 22vw, 16rem);
    font-weight: 300;
    line-height: .85;
    margin: 0;
    letter-spacing: -.04em;
    color: var(--ochre);
}
.errpage__title { font-family: var(--serif); font-size: var(--t-step-3); font-weight: 300; margin: 1rem 0 .5rem; letter-spacing: -.02em; }
.errpage__body { color: var(--fg-soft); max-width: 38ch; margin: 0 auto 2rem; }

/* =========================================================================
   Responsive nav
   ========================================================================= */
@media (max-width: 880px) {
    .site-nav, .site-cta { display: none; }
    .site-burger { display: inline-flex; }
    .site-header__inner { grid-template-columns: auto 1fr; gap: 1rem; }
    .site-burger { justify-self: end; }
}

@media (max-width: 720px) {
    .pillars { grid-template-columns: 1fr; }
    .pillar + .pillar { border-left: 0; border-top: 1px solid var(--rule); }
    .hero__meta { grid-template-columns: 1fr; gap: 1rem; }
}
