/* Renditerezept — Editorial Finance Paper · v2026-05 */

:root {
  color-scheme: light only;

  --paper:        #F7F3EC;
  --paper-deep:   #EFE9DE;
  --ink:          #1A1815;
  --ink-2:        #4A453E;
  --muted:        #8A8278;
  --rule:         rgba(26, 24, 21, 0.10);

  --petrol:       #2A7B6F;
  --petrol-deep:  #1F5E55;
  --petrol-soft:  rgba(42, 123, 111, 0.08);
  --apricot:      #E8944A;
  --apricot-deep: #C4761A;
  --apricot-ink:  #8F5511;   /* shade of apricot for TEXT on paper — 5.5:1 on --paper (deep fails AA at 3.2:1) */
  --apricot-on-dark: #F5C49B; /* tint of apricot for TEXT on petrol/ink bands */
  --apricot-soft: rgba(232, 148, 74, 0.14);

  --surface:      #FFFFFF;
  --surface-ink:  #0E0D0B;

  --success:      #2F8F5A;
  --success-ink:  #257247;   /* shade of success for small TEXT on white cards — 5.9:1 (base fails AA at 4.1:1) */
  --warning:      #C77A1F;
  --danger:       #B84432;

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, system-ui, sans-serif;
  --font-marker:  'Caveat', 'Comic Sans MS', cursive;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-17: 1.0625rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-32: 2rem;
  --fs-44: 2.75rem;
  --fs-60: 3.75rem;
  --fs-80: 5rem;

  --s-4: 0.25rem;
  --s-8: 0.5rem;
  --s-12: 0.75rem;
  --s-16: 1rem;
  --s-24: 1.5rem;
  --s-32: 2rem;
  --s-48: 3rem;
  --s-64: 4rem;
  --s-96: 6rem;
  --s-128: 8rem;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;

  --shadow-raised: 0 2px 16px rgba(26, 24, 21, 0.06);

  --max-w: 1200px;
  --gutter: 24px;
}

@media (max-width: 1023px) { :root { --gutter: 20px; } }
@media (max-width: 639px)  { :root { --gutter: 16px; } }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-17);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: clamp(2.5rem, 5vw + 1rem, var(--fs-80)); line-height: 1.05; }
h2 { font-size: clamp(2rem, 3vw + 0.5rem, var(--fs-44)); letter-spacing: -0.015em; }
h3 { font-size: var(--fs-24); font-weight: 500; letter-spacing: -0.01em; line-height: 1.3; }
h4 { font-size: var(--fs-20); font-weight: 500; }

p { margin: 0; }
a { color: var(--petrol); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(42,123,111,0.4); }
a:hover { background: var(--petrol-soft); text-decoration: none; }

.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--petrol); color: #fff; padding: 8px 16px;
}
.skip-link:focus { left: 8px; top: 8px; z-index: 999; }

.eyebrow {
  font-family: var(--font-marker);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--apricot-ink);
  display: inline-block;
  transform: rotate(var(--rot, -2deg));
  margin-bottom: var(--s-16);
}
.eyebrow[data-rotate="-2"] { --rot: -2deg; }
.eyebrow[data-rotate="-1"] { --rot: -1deg; }
.eyebrow[data-rotate="1"]  { --rot: 1deg; }
.eyebrow[data-rotate="2"]  { --rot: 2deg; }
.eyebrow[data-rotate="3"]  { --rot: 3deg; }

.label-uc {
  font-family: var(--font-body);
  font-size: var(--fs-12);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--s-96); }
@media (max-width: 1023px) { .section { padding-block: var(--s-64); } }
@media (max-width: 639px)  { .section { padding-block: var(--s-48); } }

.section--dark { background: var(--surface-ink); color: var(--paper); }
.section--petrol { background: var(--petrol); color: var(--paper); }
.section--paper-deep { background: var(--paper-deep); }

.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
  min-height: 44px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--fs-16);
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.btn--primary { background: var(--petrol); color: var(--paper); }
.btn--primary:hover { background: var(--petrol-deep); text-decoration: none; }
.btn--secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--secondary:hover { background: rgba(26,24,21,0.04); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--ink); border-color: transparent; text-decoration: underline; text-decoration-color: rgba(26,24,21,0.3); text-underline-offset: 4px; padding-inline: 8px; }
.btn--on-petrol { background: var(--paper); color: var(--petrol-deep); }
.btn--on-petrol:hover { background: #fff; text-decoration: none; }
.btn .arrow { transition: transform 160ms; }
.btn:hover .arrow { transform: translateX(4px); }

/* Pills */
.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: var(--paper-deep);
  color: var(--ink-2);
  font-size: var(--fs-14);
  border: 1px solid var(--rule);
}

/* Trust list */
.trust { display: flex; flex-wrap: wrap; gap: var(--s-24); list-style: none; padding: 0; margin: var(--s-32) 0 0; font-size: var(--fs-14); color: var(--ink-2); }
.trust li::before { content: "✓"; color: var(--petrol); font-weight: 600; margin-right: 6px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--paper); transition: background 200ms, height 200ms, box-shadow 200ms; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--rule); background: rgba(247, 243, 236, 0.92); backdrop-filter: saturate(140%) blur(8px); -webkit-backdrop-filter: saturate(140%) blur(8px); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: var(--s-32); }
.site-header.is-scrolled .site-header__inner { height: 56px; }
.logo-link { display: inline-flex; align-items: center; }
.logo-link img { height: 36px; width: auto; }
.nav { display: flex; gap: var(--s-32); align-items: center; list-style: none; padding: 0; margin: 0; }
.nav a { font-size: var(--fs-16); font-weight: 500; color: var(--ink); text-decoration: none; padding: 8px 0; }
.nav a:hover { color: var(--petrol-deep); background: none; text-decoration: underline; text-underline-offset: 6px; }
.mobile-toggle { display: none; background: transparent; border: 0; padding: 8px; color: var(--ink); cursor: pointer; }
.mobile-menu { display: none; position: fixed; inset: 72px 0 0 0; background: var(--paper); padding: var(--s-32) var(--s-24); flex-direction: column; gap: var(--s-16); z-index: 49; }
.mobile-menu.active { display: flex; }
.mobile-menu a { color: var(--ink); text-decoration: none; font-size: var(--fs-20); padding: 8px 0; border-bottom: 1px solid var(--rule); }
.mobile-menu .mob-cta { background: var(--petrol); color: var(--paper); padding: 12px 22px; border-radius: var(--r-md); border: 0; text-align: center; margin-top: var(--s-16); }

@media (max-width: 1023px) {
  .nav, .btn-nav { display: none; }
  .mobile-toggle { display: block; }
  .site-header__inner { height: 56px; }
}

/* Hero — Depot-Küche */
.hero { position: relative; padding-top: var(--s-96); padding-bottom: var(--s-128); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero .container { position: relative; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); grid-template-rows: max-content 1fr; grid-template-areas: "copy cards" "trust cards"; gap: var(--s-16) var(--s-48); align-items: start; }
.hero__copy { grid-area: copy; }
.hero__trust { grid-area: trust; }
.depots { grid-area: cards; }
@media (max-width: 1199px) { .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--s-16) var(--s-32); } }
@media (max-width: 1023px) {
  .hero__grid { grid-template-columns: 1fr; grid-template-areas: "copy" "cards" "trust"; gap: var(--s-32); }
  .hero { padding-top: var(--s-48); padding-bottom: var(--s-64); }
}
@media (max-width: 639px) { .hero { padding-top: var(--s-32); } .hero__grid { gap: var(--s-24); } }
.hero__title { font-size: clamp(2.75rem, 4.5vw + 1.2rem, 5.5rem); line-height: 1.02; overflow-wrap: break-word; }
.hero__title .accent { font-style: italic; color: var(--petrol); font-weight: 600; }
.hero__sub { margin-top: var(--s-24); font-size: var(--fs-20); color: var(--ink-2); max-width: 50ch; line-height: 1.55; }
.hero__cta { margin-top: var(--s-32); display: flex; gap: var(--s-16); flex-wrap: wrap; }
@media (max-width: 639px) {
  .hero__sub { font-size: var(--fs-17); margin-top: var(--s-16); }
  .hero__cta { margin-top: var(--s-24); }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; }
}

/* Depot cards — Rezeptkarten auf dem Küchentisch */
.depots { display: flex; flex-direction: column; }
.depot {
  position: relative;
  width: 88%;
  background-color: var(--surface);
  background-image: repeating-linear-gradient(transparent 0, transparent 27px, rgba(26, 24, 21, 0.045) 27px, rgba(26, 24, 21, 0.045) 28px);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  box-shadow: 0 1px 2px rgba(26, 24, 21, 0.08), 0 8px 28px rgba(26, 24, 21, 0.09);
  padding: var(--s-24) var(--s-24) var(--s-16) calc(var(--s-24) + 14px);
  display: flex; flex-direction: column; gap: var(--s-12);
  min-width: 0;
  text-decoration: none; color: inherit;
  transform: rotate(var(--tilt, 0deg));
  transition: transform 180ms, box-shadow 180ms;
}
.depot:nth-child(1) { --tilt: -1.5deg; --deal-rot: -7deg; align-self: flex-start; }
.depot:nth-child(2) { --tilt: 1.2deg;  --deal-rot: 6deg;  align-self: flex-end; margin-top: -10px; }
.depot:nth-child(3) { --tilt: -0.8deg; --deal-rot: -5deg; align-self: center; margin-top: -10px; }
@media (hover: hover) {
  .depot:hover { transform: rotate(var(--tilt, 0deg)) translateY(-3px); box-shadow: 0 2px 4px rgba(26, 24, 21, 0.08), 0 14px 36px rgba(26, 24, 21, 0.13); text-decoration: none; z-index: 4; }
}
.depot::before { content: ""; position: absolute; top: 0; bottom: 0; left: 16px; width: 1px; background: var(--depot-accent-soft, rgba(42, 123, 111, 0.4)); }
.depot::after { content: ""; position: absolute; top: -9px; left: 50%; width: 58px; height: 17px; transform: translateX(-50%) rotate(var(--tape-rot, -2deg)); background: rgba(239, 233, 222, 0.78); border: 1px solid rgba(26, 24, 21, 0.06); box-shadow: 0 1px 2px rgba(26, 24, 21, 0.05); }
.depot:nth-child(2)::after { --tape-rot: 2deg; }
.depot:nth-child(3)::after { --tape-rot: -1deg; }
.depot[data-color="etf"]      { --depot-accent-soft: rgba(42, 123, 111, 0.40); }
.depot[data-color="cashflow"] { --depot-accent-soft: rgba(232, 148, 74, 0.50); }
.depot[data-color="growth"]   { --depot-accent-soft: rgba(74, 69, 62, 0.35); }
@media (max-width: 1023px) {
  .depot { width: 94%; }
  .depot:nth-child(1) { --tilt: -1.1deg; }
  .depot:nth-child(2) { --tilt: 0.9deg; margin-top: -8px; }
  .depot:nth-child(3) { --tilt: -0.7deg; margin-top: -8px; }
}
@media (max-width: 639px) {
  .depots { gap: var(--s-16); }
  .depot { width: 100%; }
  .depot:nth-child(1) { --tilt: -0.8deg; }
  .depot:nth-child(2) { --tilt: 0.6deg; margin-top: 0; }
  .depot:nth-child(3) { --tilt: -0.5deg; margin-top: 0; }
}
.depot__head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-12); margin-bottom: var(--s-4); }
.depot__pre-tag { font-family: var(--font-marker); font-size: 1.05rem; color: var(--apricot-ink); transform: rotate(-2deg); display: inline-block; line-height: 1; align-self: flex-start; text-align: right; }
.depot__live { font-family: var(--font-marker); font-size: 1.05rem; color: var(--success-ink); transform: rotate(-2deg); display: inline-block; line-height: 1; }
.depot__name { font-family: var(--font-display); font-size: var(--fs-24); font-weight: 600; color: var(--ink); margin-top: var(--s-4); letter-spacing: -0.01em; line-height: 1.2; overflow-wrap: break-word; }
.depot__strategy { font-size: var(--fs-14); color: var(--ink-2); line-height: 1.5; }
.depot__figures { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-16); }
.depot__status { font-family: var(--font-display); font-size: var(--fs-16); font-style: italic; color: var(--ink-2); }
.depot__value { font-family: var(--font-mono); font-size: var(--fs-32); font-weight: 500; color: var(--ink); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; line-height: 1; white-space: nowrap; }
.depot__perf { font-family: var(--font-mono); font-size: var(--fs-14); color: var(--success-ink); font-variant-numeric: tabular-nums; margin-top: var(--s-4); }
.depot__spark { width: 110px; max-width: 38%; height: 30px; flex: 0 0 auto; color: var(--ink-2); opacity: 0.65; margin-bottom: 2px; }
.depot__spark--flat { opacity: 0.35; }
.depot__note { font-family: var(--font-marker); font-size: 1.05rem; color: var(--ink-2); transform: rotate(-1.5deg); align-self: flex-end; line-height: 1; }
.depot__sub { display: flex; gap: var(--s-12); flex-wrap: wrap; font-size: var(--fs-12); color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.depot__sub span + span::before { content: "·"; color: var(--rule); margin-right: var(--s-12); }
.depot__meta { font-size: var(--fs-12); color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.depot__link { font-size: var(--fs-14); color: var(--petrol-deep); text-decoration: none; border-top: 1px solid var(--rule); padding-top: var(--s-12); margin-top: var(--s-8); display: inline-block; }
.depot__link:hover { background: none; text-decoration: underline; }
.depot .label-uc { font-family: var(--font-mono); font-size: var(--fs-12); font-weight: 500; color: var(--muted); }

/* Numbered ingredient cards — Zutaten */
.zutaten-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-24); }
@media (max-width: 1023px) { .zutaten-grid { grid-template-columns: 1fr; gap: var(--s-16); } }
.zutaten { position: relative; display: grid; grid-template-columns: auto 1fr; gap: var(--s-24); align-items: start; padding: var(--s-32); background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-lg); box-shadow: var(--shadow-raised); transition: transform 180ms, box-shadow 180ms; }
@media (hover: hover) { .zutaten:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(26, 24, 21, 0.06), 0 12px 32px rgba(26, 24, 21, 0.10); } }
.zutaten__num { font-family: var(--font-display); font-size: var(--fs-44); font-weight: 500; color: var(--muted); letter-spacing: -0.04em; line-height: 1; }
.zutaten__body h3 { margin-bottom: var(--s-12); display: inline-block; padding-bottom: 6px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' preserveAspectRatio='none'%3E%3Cpath d='M2 5.5 Q 20 2.5 40 5 T 78 4.5 T 118 5' fill='none' stroke='%23E8944A' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left bottom; background-size: 0% 7px; transition: background-size 280ms ease-out; }
@media (hover: hover) { .zutaten:hover .zutaten__body h3 { background-size: 100% 7px; } }
.zutaten__body p { color: var(--ink-2); max-width: 60ch; margin-bottom: var(--s-16); }
.zutaten__tags { display: flex; gap: var(--s-8); flex-wrap: wrap; }
@media (max-width: 639px) { .zutaten { grid-template-columns: 1fr; gap: var(--s-12); padding: var(--s-24); } .zutaten__num { font-size: var(--fs-32); } }

/* Update band — dark */
.update-band { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: var(--s-48); align-items: center; }
@media (max-width: 1199px) { .update-band { grid-template-columns: 1fr; gap: var(--s-32); } }
.update-band h2 { color: var(--paper); }
.update-band .eyebrow { color: var(--apricot); }
.update-band p { color: rgba(247,243,236,0.85); margin-top: var(--s-16); max-width: 56ch; }

.snapshot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(247,243,236,0.12); border-radius: var(--r-lg); overflow: hidden; }
.snapshot__cell { padding: var(--s-24) var(--s-16); border-right: 1px solid rgba(247,243,236,0.12); min-width: 0; }
.snapshot__cell:last-child { border-right: 0; }
.snapshot__label { font-size: var(--fs-12); letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,243,236,0.6); white-space: nowrap; }
.snapshot__value { font-family: var(--font-mono); font-size: clamp(1.25rem, 1.3vw + 0.4rem, 1.8rem); font-weight: 500; color: var(--paper); font-variant-numeric: tabular-nums; margin-top: var(--s-8); letter-spacing: -0.04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.snapshot__value--green { color: #6FD0A1; }
.snapshot__note { display: inline-block; font-family: var(--font-marker); font-size: 1.2rem; color: rgba(247, 243, 236, 0.75); transform: rotate(-2deg); margin-top: var(--s-12); text-shadow: 0 0 0.65px currentColor; }
@media (max-width: 639px) { .snapshot { grid-template-columns: 1fr; } .snapshot__cell { border-right: 0; border-bottom: 1px solid rgba(247,243,236,0.12); } .snapshot__cell:last-child { border-bottom: 0; } }

/* About */
.about { display: grid; grid-template-columns: 6fr 4fr; gap: var(--s-64); align-items: start; }
@media (max-width: 1023px) { .about { grid-template-columns: 1fr; gap: var(--s-32); } }
.about__quote { font-family: var(--font-display); font-size: clamp(1.75rem, 2.5vw + 0.5rem, var(--fs-44)); font-weight: 500; letter-spacing: -0.015em; line-height: 1.2; }
.about__quote .strong { color: var(--ink); font-weight: 600; }
.about__credentials { background: var(--paper-deep); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: var(--s-32); }
.cred-list { list-style: none; padding: 0; margin: 0; }
.cred-list li { position: relative; padding-left: 24px; padding-block: 12px; border-bottom: 1px solid var(--rule); font-size: var(--fs-16); color: var(--ink); }
.cred-list li:last-child { border-bottom: 0; }
.cred-list li::before { content: "—"; position: absolute; left: 0; color: var(--apricot-deep); font-weight: 600; }
.about__footnote { margin-top: var(--s-16); font-style: italic; color: var(--ink-2); font-size: var(--fs-14); line-height: 1.55; }
.about-annotation { display: inline-block; font-family: var(--font-marker); color: var(--apricot-ink); font-size: 1.5rem; transform: rotate(-2deg); margin-top: var(--s-16); }
/* Letter from the author */
.about__letter { margin-top: var(--s-32); background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-md); box-shadow: var(--shadow-raised); padding: var(--s-32); max-width: 60ch; color: var(--ink-2); font-size: var(--fs-17); line-height: 1.7; display: flex; flex-direction: column; gap: var(--s-16); transform: rotate(-0.4deg); }
.about__sig { font-family: var(--font-marker); font-size: 1.75rem; color: var(--ink); transform: rotate(-2deg); align-self: flex-end; margin-top: var(--s-8); text-shadow: 0 0 0.65px currentColor; }
@media (max-width: 639px) { .about__letter { padding: var(--s-24); } }

/* Tools */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-24); }
@media (max-width: 1023px) { .tools-grid { grid-template-columns: 1fr; } }
.tool-card { position: relative; border: 1px dashed rgba(26, 24, 21, 0.18); border-radius: var(--r-lg); padding: var(--s-32); background: transparent; text-align: left; }
.tool-card .eyebrow { color: var(--apricot-ink); font-size: 1.15rem; }
.tool-card h3 { margin-block: var(--s-12) var(--s-8); color: var(--ink-2); }
.tool-card p { color: var(--ink-2); font-size: var(--fs-16); }
.tool-card__stamp { position: absolute; top: var(--s-16); right: var(--s-16); font-family: var(--font-marker); font-size: 1.3rem; line-height: 1; color: var(--apricot-ink); border: 1.5px solid currentColor; border-radius: var(--r-sm); padding: 3px 10px 5px; transform: rotate(-8deg); opacity: 0.9; text-shadow: 0 0 0.65px currentColor; }

/* Newsletter */
.newsletter-band { background: var(--petrol); color: var(--paper); padding-block: var(--s-96); }
.newsletter-band h2 { color: var(--paper); max-width: 22ch; }
.newsletter-band p { color: rgba(247,243,236,0.85); max-width: 50ch; margin-top: var(--s-16); }
.newsletter-form { margin-top: var(--s-32); display: flex; gap: var(--s-12); max-width: 520px; flex-wrap: wrap; }
.newsletter-form input[type="email"] { flex: 1; min-width: 240px; background: transparent; color: var(--paper); border: 0; border-bottom: 1px solid rgba(247,243,236,0.4); font-family: var(--font-body); font-size: var(--fs-17); padding: 14px 4px; outline: none; border-radius: 0; }
.newsletter-form input[type="email"]::placeholder { color: rgba(247,243,236,0.5); }
.newsletter-form input[type="email"]:focus { border-bottom-color: var(--apricot); }
.newsletter-band small, .newsletter-note { display: block; margin-top: var(--s-16); font-size: var(--fs-12); color: rgba(247,243,236,0.6); max-width: 60ch; line-height: 1.6; }
.newsletter-note a { color: var(--paper); text-decoration: underline; }

/* FAQ */
.faq { max-width: 760px; }
.faq__item { border-bottom: 1px solid var(--rule); padding-block: var(--s-24); }
.faq__item summary { cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: var(--fs-20); color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s-16); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--font-display); font-size: var(--fs-24); color: var(--apricot-deep); transition: transform 200ms; }
.faq__item[open] summary::after { content: "–"; }
.faq__item .faq-answer { margin-top: var(--s-12); color: var(--ink-2); font-size: var(--fs-17); line-height: 1.7; max-width: 65ch; }

/* Footer */
.site-footer { border-top: 1px solid var(--rule); padding-block: var(--s-64); font-size: var(--fs-14); color: var(--ink-2); }
.site-footer .footer-grid { display: grid; grid-template-columns: 4fr 3fr 3fr 3fr; gap: var(--s-32); }
@media (max-width: 1023px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 639px)  { .site-footer .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-size: var(--fs-14); font-family: var(--font-body); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--s-16); color: var(--ink-2); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-8); }
.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { color: var(--petrol-deep); background: none; text-decoration: underline; text-underline-offset: 4px; }
.footer-brand img { height: 28px; margin-bottom: var(--s-12); }
.footer-brand p { max-width: 32ch; color: var(--ink-2); }
.coming-soon { display: inline-block; font-size: 1rem; color: var(--apricot-ink); font-family: var(--font-marker); margin-left: var(--s-4); }
.danke { font-family: var(--font-marker); color: var(--apricot-ink); font-size: 1.4rem; display: block; margin-top: var(--s-24); transform: rotate(-1deg); }
.footer-bottom { padding-top: var(--s-32); margin-top: var(--s-32); border-top: 1px solid var(--rule); font-size: var(--fs-12); color: var(--muted); line-height: 1.7; }

/* Section heading */
.section-head { max-width: 56ch; margin-bottom: var(--s-64); }
.section-head h2 { margin-bottom: var(--s-16); }
.section-head p { color: var(--ink-2); font-size: var(--fs-20); line-height: 1.55; }

/* Focus */
:focus-visible { outline: 2px solid var(--apricot); outline-offset: 2px; border-radius: 2px; }

/* === Motion === */
[data-motion="hero-stagger"] .hero__copy > *,
[data-motion="hero-stagger"] .hero__trust { opacity: 0; transform: translateY(14px); transition: opacity 600ms ease-out, transform 600ms cubic-bezier(0.22, 1, 0.36, 1); }
[data-motion="hero-stagger"].is-in .hero__copy > *,
[data-motion="hero-stagger"].is-in .hero__trust { opacity: 1; transform: none; }
[data-motion="hero-stagger"].is-in .hero__copy > *:nth-child(1) { transition-delay: 60ms; }
[data-motion="hero-stagger"].is-in .hero__copy > *:nth-child(2) { transition-delay: 140ms; }
[data-motion="hero-stagger"].is-in .hero__copy > *:nth-child(3) { transition-delay: 220ms; }
[data-motion="hero-stagger"].is-in .hero__copy > *:nth-child(4) { transition-delay: 300ms; }
[data-motion="hero-stagger"].is-in .hero__trust { transition-delay: 380ms; }

/* Rezeptkarten deal-in: transform-only, settles into resting tilt (zero CLS) */
[data-motion="hero-stagger"] .depot { opacity: 0; }
[data-motion="hero-stagger"].is-in .depot { opacity: 1; animation: depot-deal 560ms cubic-bezier(0.3, 1.25, 0.45, 1) backwards; }
[data-motion="hero-stagger"].is-in .depot:nth-child(1) { animation-delay: 240ms; }
[data-motion="hero-stagger"].is-in .depot:nth-child(2) { animation-delay: 380ms; }
[data-motion="hero-stagger"].is-in .depot:nth-child(3) { animation-delay: 520ms; }
@keyframes depot-deal {
  from { opacity: 0; transform: translate3d(0, 40px, 0) rotate(var(--deal-rot, 5deg)) scale(1.02); }
  to   { opacity: 1; transform: rotate(var(--tilt, 0deg)); }
}

[data-motion="reveal-on-scroll"] { opacity: 0; transform: translateY(12px); transition: opacity 500ms ease-out, transform 500ms cubic-bezier(0.22, 1, 0.36, 1); will-change: opacity, transform; }
[data-motion="reveal-on-scroll"].is-in { opacity: 1; transform: none; }

/* Unified child stagger: fade-up 12px, 0.5s, 80ms steps */
[data-motion="reveal-stagger"] > * { opacity: 0; transform: translateY(12px); transition: opacity 500ms ease-out, transform 500ms cubic-bezier(0.22, 1, 0.36, 1); }
[data-motion="reveal-stagger"].is-in > * { opacity: 1; transform: none; }
[data-motion="reveal-stagger"].is-in > *:nth-child(2) { transition-delay: 80ms; }
[data-motion="reveal-stagger"].is-in > *:nth-child(3) { transition-delay: 160ms; }
[data-motion="reveal-stagger"].is-in > *:nth-child(4) { transition-delay: 240ms; }
[data-motion="reveal-stagger"].is-in > *:nth-child(5) { transition-delay: 320ms; }
[data-motion="reveal-stagger"].is-in > *:nth-child(6) { transition-delay: 400ms; }

/* Caveat ink pressure — subtle bleed, like a real felt pen */
.eyebrow, .depot__live, .depot__pre-tag, .depot__note, .about-annotation, .danke, .coming-soon { text-shadow: 0 0 0.65px currentColor; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-motion="hero-stagger"] .hero__copy > *,
  [data-motion="hero-stagger"] .hero__trust,
  [data-motion="reveal-on-scroll"],
  [data-motion="reveal-stagger"] > * { opacity: 1; transform: none; }
  /* cards: settled state incl. resting tilt, no deal animation */
  [data-motion="hero-stagger"] .depot { opacity: 1 !important; animation: none !important; }
}
