/* ============================================================
   Waldkind — Editorial Components (from mockups)
   Builds on waldkind.css tokens. Component classes only.
   ============================================================ */

/* Webfonts werden über assets/fonts.css (lokal gehostet) geladen — DSGVO-konform. */

:root {
  --film-amber:   #B47A3C;
  --film-amber-d: #6E4F31;
  --film-cyan:    #6B8B8E;
  --rule:         1px solid var(--ink);
  --rule-soft:    1px solid var(--ash);
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter Tight', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Shell + Eyebrow --------------------------------------- */
.shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}
.eyebrow.cyan  { color: var(--film-cyan); }
.eyebrow.amber { color: var(--film-amber); }
.eyebrow.bone  { color: var(--bone); }

.mono  { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.serif { font-family: 'Source Serif 4', Georgia, serif; }

/* ============================================================
   HEADER (editorial)
   ============================================================ */
header.top {
  border-bottom: var(--rule);
  background: var(--paper);
  position: sticky; top: 0; z-index: 10;
}
header.top.dark {
  background: var(--ink);
  border-bottom-color: var(--moss-700);
}
header.top .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; gap: 48px;
}
.brand {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand .accent { color: var(--moss-500); }
header.top.dark .brand        { color: var(--bone); }
header.top.dark .brand .accent { color: var(--film-amber); }
.brand .sub {
  color: var(--film-amber);
  font-style: normal;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--moss-700);
}
nav.primary {
  display: flex; gap: 48px;
  font-size: 15px; font-weight: 500;
}
header.top.dark nav.primary { color: var(--ash); }
nav.primary a { position: relative; padding: 4px 0; }
nav.primary a:hover { text-decoration: underline; text-underline-offset: 4px; }
header.top.dark nav.primary a:hover { color: var(--bone); text-decoration: none; }
header.top.dark nav.primary a.is-active { color: var(--bone); }
nav.primary a.is-active::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--ink);
}
header.top.dark nav.primary a.is-active::after { background: var(--film-amber); }
.cart {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--slate);
  border: var(--rule-soft);
  padding: 6px 12px; border-radius: 4px;
}
header.top.dark .cart {
  color: var(--ash);
  border-color: var(--moss-700);
}
.lang-switch {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.14em; color: var(--slate);
  margin-right: 12px;
}
.lang-switch a { padding: 0 4px; }
.lang-switch a.is-active { color: var(--ink); border-bottom: 1px solid var(--ink); }

/* ============================================================
   HERO (editorial — Index)
   ============================================================ */
section.hero-editorial {
  padding: 96px 0 64px;
  border-bottom: var(--rule);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero-mark {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 14vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-transform: lowercase;
  /* nowrap: die Klammern + Buchstaben sind separate <span>s,
     Browser würde sonst zwischen ihnen umbrechen. Über clamp-min
     wird die Schrift auf kleinen Phones klein genug gewählt. */
  white-space: nowrap;
  margin-top: 24px;
}
.hero-mark > span { display: inline; }
.hero-mark .bracket { color: var(--clay-300); font-weight: 700; }
.hero-mark .accent  { background: var(--moss-500); color: var(--paper); padding: 0 0.05em; }

.hero-meta {
  border-left: var(--rule);
  padding-left: 32px;
  align-self: start;
  margin-top: 16px;
}
.hero-tagline {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px; line-height: 1.4;
  font-style: italic;
  margin-top: 16px;
  max-width: 24em;
}
.hero-charge {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 48px; padding-top: 24px;
  border-top: var(--rule-soft);
}
.charge-tag {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  border: var(--rule);
  padding: 4px 12px;
  font-size: 14px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

/* ============================================================
   HERO (analog — dark, with filmstrip)
   ============================================================ */
section.hero-analog {
  background: var(--ink); color: var(--bone);
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--moss-700);
  position: relative; overflow: hidden;
}
section.hero-analog::before,
section.hero-analog::after {
  content: ""; position: absolute;
  left: 0; right: 0; height: 18px;
  background-color: var(--film-amber-d);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='18' viewBox='0 0 24 18'><rect x='6' y='5' width='12' height='8' rx='1.5' fill='%231A1916'/></svg>");
  background-repeat: repeat-x;
  background-size: 24px 18px;
}
section.hero-analog::before { top: 0; }
section.hero-analog::after  { bottom: 0; }
section.hero-analog .hero-grid {
  grid-template-columns: 1.4fr 1fr;
  position: relative; z-index: 1;
}
section.hero-analog .hero-mark { color: var(--paper); }
section.hero-analog .hero-mark .bracket { color: var(--film-amber); }
section.hero-analog .hero-mark .accent  { background: var(--film-amber); color: var(--ink); }
.hero-sub {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--film-amber); margin-top: 24px;
}
section.hero-analog .hero-meta { border-left-color: var(--moss-700); }
section.hero-analog .hero-tagline { color: var(--bone); }
section.hero-analog .hero-charge { border-top-color: var(--moss-700); }
section.hero-analog .charge-tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--film-cyan);
  border: 1px solid var(--film-cyan);
  padding: 5px 10px;
}

/* ============================================================
   MANIFEST (Drop-Cap + Footnotes)
   ============================================================ */
section.manifest {
  padding: 96px 0;
  border-bottom: var(--rule);
}
.manifest-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}
.manifest-side {
  border-top: 4px solid var(--ink);
  padding-top: 16px;
}
.manifest-side h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
}
.manifest-body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px; line-height: 1.7;
  max-width: 46ch;
}
.manifest-body p { margin: 0 0 24px; }
.manifest-body .dropcap::first-letter {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 5em;
  line-height: 0.85;
  float: left;
  margin: 0.05em 0.12em 0 0;
}
.manifest-body em { font-style: italic; color: var(--moss-700); }
.footnotes {
  margin-top: 32px; padding-top: 16px;
  border-top: var(--rule-soft);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; color: var(--slate); line-height: 1.7;
}
.footnotes ol { padding-left: 24px; margin: 0; }

/* ============================================================
   SECTION HEAD (mit Heavy-Rule)
   ============================================================ */
.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 48px; padding-bottom: 16px;
  border-bottom: 4px solid var(--ink);
}
.section-head h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin: 0;
}
.section-head a, .section-head .num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
}
.section-head.amber { border-bottom-color: var(--film-amber); }
.section-head.cyan  { border-bottom-color: var(--film-cyan); }
.section-head.dark h2 { color: var(--paper); }
.section-head.dark .num { color: var(--ash); }

/* ============================================================
   EDITION CARDS
   ============================================================ */
section.edition {
  padding: 96px 0;
  border-bottom: var(--rule);
}
.cards {
  display: grid;
  /* auto-FILL (not -fit): leere Spalten bleiben leer, einzelne
     Cards blähen sich nicht auf die volle Containerbreite auf.
     Maximalbreite gekappt, damit auch im Vollbild eine konsistente
     Card-Größe entsteht. */
  grid-template-columns: repeat(auto-fill, minmax(280px, 380px));
  gap: 32px;
  justify-content: start;
}
.card {
  border: var(--rule);
  background: var(--paper);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.card-img {
  aspect-ratio: 4 / 5;
  border-bottom: var(--rule);
  background:
    linear-gradient(135deg, transparent 49.5%, var(--ash) 49.5%, var(--ash) 50.5%, transparent 50.5%),
    var(--paper-warm);
  background-size: cover;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic; font-size: 28px;
  color: var(--slate);
}
.card-img.has-photo {
  background-size: cover; background-position: center;
}
.card-img.has-photo span.placeholder-label { display: none; }
.card-img .corner-tl, .card-img .corner-br {
  position: absolute;
  width: 32px; height: 32px;
  border: var(--rule);
}
.card-img .corner-tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.card-img .corner-br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
.card-meta {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; color: var(--slate);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 16px 24px;
  border-bottom: var(--rule-soft);
}
.card-body { padding: 16px 24px 24px; }
.card-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 22px;
  line-height: 1.1; letter-spacing: -0.01em;
  margin: 0;
}
.card-ipa {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic; font-size: 14px;
  color: var(--slate); margin-top: 2px;
}
.card-specs {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; line-height: 1.8; color: var(--slate);
  margin: 16px 0; padding: 12px 0;
  border-top: var(--rule-soft);
  border-bottom: var(--rule-soft);
}
.card-specs .row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
}
.card-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 24px;
  border-top: var(--rule);
}
.card-price {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 22px;
}
.card-stock {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--moss-700);
}
.card-stock.low { color: var(--bauhaus-red); }
.card-stock.out { color: var(--ash); text-decoration: line-through; }

/* ============================================================
   ANALOG TEASER
   ============================================================ */
section.analog-teaser {
  background: var(--ink); color: var(--paper);
  border-bottom: var(--rule);
}
section.analog-teaser a.teaser-link { display: block; padding: 48px 0; transition: background 0.2s; }
section.analog-teaser a.teaser-link:hover { background: var(--void); }
section.analog-teaser a.teaser-link:hover .arrow { transform: translateX(6px); }
.teaser-row {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 48px; align-items: center;
}
.sub-brand-line {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--clay-300);
}
.sub-brand-line .bracket { color: var(--clay-500); }
.sub-brand-line .sub {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-style: normal;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clay-300); margin-left: 2px;
}
.teaser-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1; letter-spacing: -0.02em; text-transform: lowercase;
  color: var(--paper);
  margin: 16px 0 24px;
}
.teaser-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.bracket-tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.1em;
  border: 1px solid var(--moss-300);
  color: var(--moss-100);
  padding: 6px 10px; border-radius: 4px;
}
.bracket-tag.clay  { border-color: var(--clay-300); color: var(--clay-300); }
.bracket-tag.amber { border-color: var(--film-amber); color: var(--film-amber); }
.teaser-meta {
  text-align: right;
  border-left: 1px solid var(--moss-700);
  padding-left: 32px;
}
.teaser-cta {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 22px;
  text-transform: lowercase; letter-spacing: -0.01em;
  color: var(--paper);
  margin-top: 12px;
}
.teaser-cta .arrow {
  display: inline-block; color: var(--clay-300);
  transition: transform 0.2s;
}

/* ============================================================
   BRIEFE (Newsletter)
   ============================================================ */
section.briefe {
  padding: 96px 0;
  border-bottom: var(--rule);
  background: var(--paper-warm);
}
.briefe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.briefe h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin: 0;
}
.briefe h2 .accent { color: var(--moss-500); }
.briefe p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px; line-height: 1.6;
  margin-top: 24px; max-width: 36ch;
}
.briefe form {
  display: flex; gap: 12px; margin-top: 32px;
}
.briefe input[type="email"] {
  flex: 1; border: var(--rule); background: var(--paper);
  padding: 12px 14px; font-family: inherit; font-size: 15px;
  border-radius: 4px;
}
.briefe input[type="email"]:focus { outline: 2px solid var(--moss-500); outline-offset: -2px; }
.briefe button {
  border: 1px solid var(--ink); background: var(--ink); color: var(--paper);
  font-family: inherit; font-weight: 600;
  padding: 0 22px; cursor: pointer; border-radius: 4px;
}
.briefe-fineprint {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; color: var(--slate);
  margin-top: 16px; letter-spacing: 0.06em;
}
.briefe-archive {
  border: var(--rule); padding: 32px; background: var(--paper);
}
.briefe-archive h3 {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--slate); margin: 0 0 16px;
  padding-bottom: 12px; border-bottom: var(--rule-soft);
}
.brief-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 12px 0;
  border-bottom: var(--rule-soft);
  font-size: 14px;
}
.brief-item:last-child { border-bottom: 0; }
.brief-item .num   { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; color: var(--slate); }
.brief-item .title { font-family: 'Source Serif 4', Georgia, serif; font-style: italic; }
.brief-item .date  { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; color: var(--slate); }

/* ============================================================
   WORKFLOW (analog)
   ============================================================ */
section.workflow {
  padding: 96px 0;
  border-bottom: 1px solid var(--moss-700);
  background: var(--void);
  color: var(--bone);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.step {
  border: 1px solid var(--moss-700);
  padding: 32px 24px;
}
.step .num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 56px; line-height: 1;
  color: var(--film-amber);
  letter-spacing: -0.04em;
}
.step h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin: 24px 0 0;
  color: var(--paper);
  text-transform: lowercase;
  letter-spacing: -0.01em;
}
.step p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px; line-height: 1.6;
  color: var(--ash); margin-top: 12px;
}
.step-spec {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--film-cyan);
  margin-top: 16px; padding-top: 12px;
  border-top: 1px solid var(--moss-700);
}

/* ============================================================
   PRICING TABLE (analog)
   ============================================================ */
section.services-analog {
  padding: 96px 0;
  border-bottom: 1px solid var(--moss-700);
  background: var(--ink); color: var(--bone);
}
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.svc-intro h2 {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 48px; line-height: 0.95; letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--paper);
  margin: 12px 0 0;
}
.svc-intro p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px; line-height: 1.6;
  color: var(--bone);
  margin: 24px 0 0; max-width: 32ch;
}
.format-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 32px;
}
.svc-table { border: 1px solid var(--moss-700); }
.svc-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 100px;
  padding: 24px;
  border-bottom: 1px solid var(--moss-700);
  align-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px; color: var(--bone);
}
.svc-row:last-child { border-bottom: 0; }
.svc-row.head {
  background: var(--void);
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 11px; color: var(--ash);
}
.svc-row .name {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 17px; text-transform: lowercase;
  color: var(--paper); letter-spacing: -0.01em;
}
.svc-row.head .name {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-weight: 400;
  font-size: 11px; text-transform: uppercase;
}
.svc-row .price { color: var(--film-amber); font-weight: 500; }

/* ============================================================
   CONTACT-SHEET GALLERY (analog)
   ============================================================ */
section.gallery {
  padding: 96px 0;
  border-bottom: 1px solid var(--moss-700);
  background: var(--void); color: var(--bone);
}
.contact-sheet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 4px;
  border: 1px solid var(--moss-700);
  padding: 6px;
  position: relative;
}
.contact-sheet::before,
.contact-sheet::after {
  content: ""; position: absolute;
  left: 0; right: 0; height: 14px;
  background-color: var(--film-amber-d);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='14' viewBox='0 0 20 14'><rect x='5' y='4' width='10' height='6' rx='1' fill='%230A0A09'/></svg>");
  background-repeat: repeat-x;
  background-size: 20px 14px;
}
.contact-sheet::before { top: -14px; }
.contact-sheet::after  { bottom: -14px; }
.frame {
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, #2a2725, #1a1916);
  position: relative;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 6px 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  color: var(--film-amber);
  letter-spacing: 0.1em;
}
.frame:nth-child(2n) { background: linear-gradient(135deg, #2c2a26, #1f1d1a); }
.frame:nth-child(3n) { background: linear-gradient(135deg, #28251f, #1c1a16); }
.frame.has-photo { background-size: cover; background-position: center; }
.frame .num    { color: var(--film-amber); }
.frame .marker { color: var(--film-cyan); }

/* ============================================================
   CTA-LARGE (analog)
   ============================================================ */
section.cta-large {
  padding: 96px 0;
  text-align: center;
  border-bottom: 1px solid var(--moss-700);
  background: var(--ink); color: var(--bone);
}
.cta-large h2 {
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92; letter-spacing: -0.03em;
  text-transform: lowercase; color: var(--paper);
  margin: 0;
}
.cta-large h2 .accent { color: var(--film-amber); }
.cta-large p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic; font-size: 20px;
  color: var(--bone);
  margin: 24px auto 0; max-width: 36ch;
}
.btn-large {
  display: inline-block;
  font-family: inherit; font-weight: 600; font-size: 16px;
  padding: 14px 28px; border-radius: 4px;
  margin-top: 48px;
  border: 1px solid var(--film-amber);
  background: var(--film-amber); color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.btn-large:hover { background: transparent; color: var(--film-amber); }

/* ============================================================
   FAQ
   ============================================================ */
section.faq {
  padding: 96px 0;
  border-bottom: 1px solid var(--moss-700);
  background: var(--ink); color: var(--bone);
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 64px;
}
.faq-side {
  border-top: 4px solid var(--film-cyan);
  padding-top: 16px;
}
.faq-side h2 {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 32px; line-height: 1; letter-spacing: -0.02em;
  color: var(--paper); text-transform: lowercase;
  margin: 12px 0 0;
}
.faq-item {
  border-bottom: 1px solid var(--moss-700);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--moss-700); }
.faq-q {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 18px; color: var(--paper);
  text-transform: lowercase; letter-spacing: -0.01em;
}
.faq-a {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px; line-height: 1.7;
  color: var(--bone); margin-top: 12px; max-width: 60ch;
}

/* ============================================================
   FOOTER (editorial)
   ============================================================ */
footer.editorial {
  padding: 64px 0 32px;
  background: var(--paper);
}
footer.editorial.dark {
  background: var(--ink); color: var(--ash);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: var(--rule-soft);
}
footer.editorial.dark .footer-grid { border-bottom-color: var(--moss-700); }
.footer-brand {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic; font-size: 18px;
}
footer.editorial.dark .footer-brand { color: var(--bone); }
.footer-brand small {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-style: normal; font-size: 11px;
  color: var(--slate);
  margin-top: 12px; letter-spacing: 0.1em; text-transform: uppercase;
}
footer.editorial.dark .footer-brand small { color: var(--ash); }
.footer-grid h4 {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--slate); margin: 0 0 16px;
}
footer.editorial.dark .footer-grid h4 { color: var(--ash); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 3px 0; font-size: 14px; }
footer.editorial.dark .footer-grid li { color: var(--bone); }
.footer-grid a:hover { text-decoration: underline; text-underline-offset: 3px; }
footer.editorial.dark .footer-grid a:hover { color: var(--film-amber); text-decoration: none; }
.footer-meta {
  display: flex; justify-content: space-between;
  margin-top: 24px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--slate); text-transform: uppercase;
}
footer.editorial.dark .footer-meta { color: var(--ash); }

/* ============================================================
   INLINE-EDIT highlights (only when active)
   ============================================================ */
[data-edit] {
  cursor: text;
  transition: outline 0.1s;
}
body.inline-edit-mode [data-edit]:hover {
  outline: 1px dashed var(--moss-500);
  outline-offset: 2px;
}
body.inline-edit-mode [data-edit]:focus {
  outline: 2px solid var(--moss-500);
  outline-offset: 2px;
  background: rgba(212, 219, 198, 0.3);
}

/* ============================================================
   RESPONSIVE — mobile-first patterns (Sushi-Bikes inspired)
   ============================================================ */
@media (max-width: 980px) {
  body .shell, body .shell.row { padding-left: 28px !important; padding-right: 28px !important; }
  /* Single-column layouts (always stack on tablets) — analog-Hero ist spezifischer,
     daher explizit überschreiben */
  .hero-grid, .manifest-grid, .briefe-grid, .svc-grid, .faq-grid, .teaser-row,
  section.hero-analog .hero-grid, section.hero-editorial .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* .cards, .steps, .contact-sheet use auto-fit — no override needed */
  .cards { gap: 20px; }
  .hero-meta { border-left: 0; padding-left: 0; border-top: var(--rule); padding-top: 24px; margin-top: 8px; }
  .teaser-meta { text-align: left; border-left: 0; padding-left: 0; border-top: 1px solid var(--moss-700); padding-top: 24px; }

  /* Header collapses */
  nav.primary {
    display: flex; flex-wrap: wrap; gap: 16px 20px;
    font-size: 14px;
  }
  header.top .row { flex-wrap: wrap; gap: 12px; padding: 16px 0; }
  .brand { font-size: 19px; }

  /* Larger touch targets */
  .btn-large, .briefe button, .card { min-height: 44px; }
}
@media (max-width: 560px) {
  /* — Shell-Padding spürbarer auf Phones — */
  body .shell, body .shell.row { padding-left: 28px !important; padding-right: 28px !important; }
  .cards { gap: 16px; }
  .steps { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* — Header: compact, sticky, nav als horizontale Scroll-Strip — */
  header.top .row {
    padding: 14px 0; gap: 8px; flex-wrap: wrap; align-items: center;
  }
  .brand { font-size: 17px; flex: 0 1 auto; min-width: 0; }
  .brand .sub { font-size: 9px; margin-left: 6px; padding-left: 6px; }
  nav.primary {
    display: flex !important;
    width: 100%; order: 99;     /* full-width row below brand */
    overflow-x: auto; gap: 16px;
    padding: 6px 0 4px;
    border-top: 1px solid var(--line-soft);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  nav.primary::-webkit-scrollbar { display: none; }
  nav.primary a { font-size: 13px; flex-shrink: 0; padding: 4px 2px; }
  .cart { font-size: 10px; padding: 5px 10px; flex-shrink: 0; }
  .lang-switch { display: none; }

  /* — Heroes: large but contained type — */
  section.hero-editorial, section.hero-analog { padding: 48px 0 36px; }
  .hero-grid { gap: 24px; }
  .hero-mark {
    font-size: clamp(36px, 12vw, 64px);
    margin-top: 8px;
    line-height: 0.92;
    white-space: nowrap;
  }
  .hero-sub { font-size: 11px; letter-spacing: 0.18em; margin-top: 16px; }
  .hero-tagline { font-size: 17px; line-height: 1.45; }
  .hero-charge {
    margin-top: 28px; padding-top: 20px;
    flex-direction: column; align-items: flex-start; gap: 14px;
  }
  .charge-tag { padding: 4px 10px; font-size: 11px; }

  /* Filmstrip thinner */
  section.hero-analog::before, section.hero-analog::after { height: 10px; background-size: 16px 10px; }

  /* — Sections: tighter vertical rhythm — */
  section.manifest, section.edition, section.briefe, section.workflow,
  section.services-analog, section.gallery, section.cta-large, section.faq { padding: 48px 0; }
  .manifest-grid, .briefe-grid, .svc-grid, .faq-grid { gap: 24px; }
  .manifest-body { font-size: 16px; line-height: 1.6; }
  .manifest-body .dropcap::first-letter { font-size: 3.5em; margin: 0.04em 0.1em 0 0; }
  .footnotes { font-size: 11px; }

  /* Section heads */
  .section-head { margin-bottom: 24px; padding-bottom: 10px; gap: 8px; }
  .section-head h2 { font-size: 26px; line-height: 1.05; }
  .section-head .num, .section-head a { font-size: 10px; }

  /* — Edition Cards: card content tighter — */
  .card-img { aspect-ratio: 4/3.5; }
  .card-meta { padding: 12px 16px; font-size: 10px; }
  .card-body { padding: 14px 16px 16px; }
  .card-name { font-size: 18px; }
  .card-foot { padding: 14px 16px; }
  .card-price { font-size: 18px; }
  .card-stock { font-size: 10px; }

  /* — Briefe: form stacks, full-width button — */
  .briefe h2 { font-size: 38px; }
  .briefe p { font-size: 17px; }
  .briefe form { flex-direction: column; gap: 10px; }
  .briefe button { padding: 13px; width: 100%; font-size: 15px; }
  .briefe-archive { padding: 22px; }
  .brief-item { grid-template-columns: 60px 1fr auto; gap: 10px; font-size: 13px; }

  /* — Analog teaser — */
  section.analog-teaser a.teaser-link { padding: 36px 0; }
  .teaser-title { font-size: 26px; }
  .teaser-meta { text-align: left; border-left: 0; padding-left: 0; border-top: 1px solid var(--moss-700); padding-top: 20px; margin-top: 20px; }

  /* — Pricing Table → stacked list — */
  .svc-table { border-radius: 4px; }
  .svc-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 18px; }
  .svc-row.head { display: none; }
  .svc-row .name { font-size: 16px; margin-bottom: 4px; }
  .svc-row .price { font-size: 14px; }

  /* — Workflow Steps — */
  .step { padding: 24px 20px; }
  .step .num { font-size: 44px; }
  .step h3 { font-size: 18px; margin-top: 18px; }

  /* — FAQ — */
  .faq-side h2 { font-size: 24px; }
  .faq-q { font-size: 17px; }
  .faq-a { font-size: 15px; }
  .faq-item { padding: 20px 0; }

  /* — CTA full-bleed — */
  .cta-large h2 { font-size: clamp(36px, 13vw, 60px); }
  .cta-large p { font-size: 16px; }
  .btn-large { padding: 14px 24px; font-size: 15px; width: 100%; max-width: 320px; text-align: center; }

  /* — Footer compacted — */
  footer.editorial { padding: 40px 0 24px; }
  .footer-grid { padding-bottom: 24px; }
  .footer-grid li { font-size: 14px; padding: 4px 0; }
  .footer-meta { flex-direction: column; gap: 8px; margin-top: 20px; }
}

/* Very small phones */
@media (max-width: 380px) {
  body .shell, body .shell.row { padding-left: 22px !important; padding-right: 22px !important; }
  .hero-mark { font-size: clamp(30px, 11vw, 48px); line-height: 0.95; }
  .section-head h2 { font-size: 22px; }
  .briefe h2, .teaser-title { font-size: 30px; }
  header.top .row { gap: 6px; }
  .brand { font-size: 15px; }
  .cart { font-size: 9px; padding: 4px 8px; }
}

/* ============================================================
   GALLERY-SPOT — Dark Museum / Spotlight portfolio
   Vertikale Werk-für-Werk-Hängung. Anthrazit-Wand, Spot-Highlight
   pro Werk, Tombstone-Label (Titel · Jahr · Technik · IG-Link).
   ============================================================ */
.gallery-spot {
  background: #0a0a0c;
  color: #d8d6d2;
  padding: 96px 0 128px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.gallery-spot::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 50% -5%, rgba(255, 240, 215, 0.08), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(180, 122, 60, 0.04), transparent 70%);
  pointer-events: none; z-index: 0;
}
.gallery-spot > * { position: relative; z-index: 1; }

/* Intro / Heading */
.gs-intro {
  max-width: 720px;
  margin: 0 auto 112px;
  text-align: center;
  padding: 0 32px;
}
.gs-intro .gs-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B47A3C;
  margin-bottom: 24px;
}
.gs-intro h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #f5f3ee;
  margin: 0 0 24px;
}
.gs-intro h2 em {
  font-style: italic;
  color: #c9c3b6;
}
.gs-intro .gs-lead {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px; line-height: 1.7;
  color: #a8a39a;
  font-style: italic;
}

/* Works column */
.gs-works {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 144px;
}

/* Single work — frame + tombstone label */
.gs-work {
  display: block;
  text-decoration: none;
  color: inherit;
}
.gs-work-frame {
  position: relative;
  overflow: hidden;
  background: #16161a;
  aspect-ratio: 4 / 5;
  isolation: isolate;
  cursor: zoom-in;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 40px 80px -30px rgba(0,0,0,0.9),
    0 8px 24px -8px rgba(0,0,0,0.6);
}
.gs-work-frame::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(255,245,225,0.22), transparent 55%),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.45));
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity .5s ease;
  z-index: 2;
}
.gs-work-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.93) contrast(1.03) saturate(0.95);
  transition: filter .5s ease, transform .8s cubic-bezier(.22,.61,.36,1);
}
.gs-work-frame .gs-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.18em;
  color: #5a564f; text-transform: uppercase;
  background: repeating-linear-gradient(45deg, #15151a 0 8px, #131318 8px 16px);
}
.gs-work:hover .gs-work-frame img,
.gs-work:focus-visible .gs-work-frame img {
  filter: brightness(1.02) contrast(1.05) saturate(1);
  transform: scale(1.012);
}
.gs-work:hover .gs-work-frame::after,
.gs-work:focus-visible .gs-work-frame::after {
  opacity: 1;
}

/* Tombstone label under each work */
.gs-work-label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  padding-top: 22px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.gs-work-num {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #B47A3C;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gs-work-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: #f5f3ee;
  margin: 0 0 10px;
}
.gs-work-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a857c;
}
.gs-work-meta .sep { margin: 0 10px; opacity: 0.45; }
.gs-work-caption {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14px;
  line-height: 1.65;
  color: #a8a39a;
  margin: 14px 0 0;
  max-width: 560px;
}
.gs-work-link {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B8B8E;
  white-space: nowrap;
  align-self: end;
  transition: color .2s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.gs-work-link:hover { color: #B47A3C; }
.gs-work-link .arrow { transition: transform .25s ease; }
.gs-work-link:hover .arrow { transform: translateX(3px); }

/* Lightbox */
.gs-lightbox {
  position: fixed; inset: 0;
  background: rgba(8,8,10,0.97);
  display: none;
  z-index: 9999;
  padding: 64px 32px 96px;
  cursor: zoom-out;
  backdrop-filter: blur(4px);
}
.gs-lightbox.is-open { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px; }
.gs-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
}
.gs-lightbox-caption {
  max-width: 720px;
  text-align: center;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: #c9c3b6;
}
.gs-lightbox-caption strong {
  display: block;
  font-style: normal;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B47A3C;
  margin-bottom: 8px;
}
.gs-lightbox-close {
  position: absolute;
  top: 28px; right: 32px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #d8d6d2;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 14px;
  background: transparent;
}
.gs-lightbox-close:hover { border-color: #B47A3C; color: #B47A3C; }

/* Tablet adjustments */
@media (max-width: 860px) {
  .gallery-spot { padding: 72px 0 96px; }
  .gs-works { gap: 96px; }
  .gs-intro { margin-bottom: 80px; }
  .gs-work-label { grid-template-columns: 1fr; gap: 12px; }
  .gs-work-link { align-self: start; }
}

@media (max-width: 480px) {
  .gallery-spot { padding: 56px 0 80px; }
  .gs-works { padding: 0 18px; gap: 72px; }
  .gs-intro { padding: 0 18px; margin-bottom: 56px; }
  .gs-work-frame { aspect-ratio: 1 / 1; }
  .gs-work-title { font-size: 20px; }
}

/* Footer- und Header-Anpassung wenn Page komplett dark */
body.is-dark { background: #0a0a0c; }
body.is-dark header.top:not(.dark) { background: #0a0a0c; border-bottom-color: rgba(255,255,255,0.08); }
body.is-dark header.top a { color: #d8d6d2; }
body.is-dark header.top a.is-active { color: #B47A3C; }
body.is-dark header.top .accent { color: #B47A3C; }

/* ============================================================
   CHARGE-TAG (interactive variant — used as anchor link)
   ============================================================ */
.charge-tag.is-link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.charge-tag.is-link:hover {
  background: var(--film-amber);
  color: var(--ink);
  transform: translateY(-1px);
}

/* ============================================================
   ORDER-FORM (Auftrag · Filmlabor · CSS-Modal über :target)

   Live behavior:
     - section.order-form starts hidden (display: none)
     - clicking an <a href="#auftrag"> sets the URL hash → :target matches
       → section becomes a fixed-position overlay with backdrop
     - close link points to "#close" (no matching id) → :target stops matching
       → modal hides

   Editor preview uses .is-editor class to render the form inline so the
   user can edit fields without dealing with the modal mechanic.
   ============================================================ */
section.order-form { display: none; }
section.order-form.is-editor { display: block; }
section.order-form:target { display: block; }

/* When rendered inline in the editor preview, look like the rest of the
   analog page — full-bleed dark section. */
section.order-form.is-editor {
  padding: 96px 0;
  background: #0e0d0c;
  color: var(--paper);
  border-bottom: 1px solid var(--moss-700);
  scroll-margin-top: 80px;
}
section.order-form.is-editor .order-backdrop,
section.order-form.is-editor .order-close { display: none; }
section.order-form.is-editor .order-modal { background: transparent; padding: 0; border: 0; box-shadow: none; }

/* Live :target — fixed overlay covering the viewport */
section.order-form:target {
  position: fixed; inset: 0;
  z-index: 1000;
  overflow-y: auto;
  padding: 48px 16px;
  color: var(--paper);
  animation: order-fade 0.16s ease-out;
}
@keyframes order-fade { from { opacity: 0; } to { opacity: 1; } }

.order-backdrop {
  position: fixed; inset: 0;
  background: rgba(8, 7, 6, 0.94);
  z-index: -1;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.order-modal {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  background: #0e0d0c;
  border: 1px solid var(--moss-700);
  border-radius: 6px;
  padding: 40px 40px 48px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.order-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--bone);
  background: rgba(255, 255, 255, 0.04);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 22px; line-height: 1;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  z-index: 10;
}
.order-close:hover { background: var(--film-amber); color: var(--ink); }

/* Neutralize .shell wrapping inside modal — modal already constrains width */
.order-modal .shell { max-width: 100%; padding: 0; }

/* Body scroll lock while modal is open (modern browsers via :has) */
html:has(section.order-form:target) { overflow: hidden; }

/* Tighter grid in modal (less width than full-bleed section) */
@media (min-width: 800px) {
  section.order-form:target .order-grid { gap: 40px; }
}
.order-grid {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(320px, 6fr);
  gap: 64px;
  align-items: start;
}
.order-intro h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--paper);
  margin: 12px 0 24px;
}
.order-intro-body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px; line-height: 1.55;
  color: var(--bone);
  margin: 0 0 32px;
  max-width: 38ch;
}
.order-shipping {
  border-top: 1px solid var(--moss-700);
  padding-top: 24px;
}
.order-shipping-addr {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 15px; line-height: 1.55;
  color: var(--paper);
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--film-amber);
  padding: 14px 18px;
  margin: 12px 0 12px;
  white-space: pre-line;
}
.order-shipping-note {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; color: var(--slate);
  letter-spacing: 0.06em;
}

/* form column */
.order-form-fields {
  display: grid; gap: 16px;
  background: rgba(255,255,255,0.03);
  padding: 32px;
  border: 1px solid var(--moss-700);
  border-radius: 4px;
  position: relative;
}
.order-form-fields label {
  display: grid; gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bone);
}
.order-form-fields input,
.order-form-fields textarea {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  background: rgba(0,0,0,0.4);
  color: var(--paper);
  border: 1px solid var(--moss-700);
  padding: 11px 13px;
  border-radius: 3px;
  text-transform: none;
  letter-spacing: normal;
}
.order-form-fields textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.order-form-fields input:focus,
.order-form-fields textarea:focus {
  outline: 2px solid var(--film-amber);
  outline-offset: -1px;
  border-color: var(--film-amber);
}
.order-form-fields input::placeholder,
.order-form-fields textarea::placeholder { color: rgba(255,255,255,0.3); }
.order-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.order-submit {
  margin-top: 8px;
  background: var(--film-amber);
  color: var(--ink);
  border: 0;
  padding: 14px 18px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.15s, transform 0.15s;
}
.order-submit:hover { background: #d49452; transform: translateY(-1px); }
.order-fineprint {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.08em; color: var(--slate);
  margin-top: 4px;
}

@media (max-width: 800px) {
  .order-grid { grid-template-columns: 1fr; gap: 40px; }
  .order-intro h2 { font-size: 44px; }
  .order-row-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   THANKS (danke.php)
   ============================================================ */
section.thanks {
  padding: 120px 0 80px;
  min-height: 60vh;
  border-bottom: var(--rule);
}
.thanks-inner { max-width: 600px; }
.thanks-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin: 12px 0 24px;
}
.thanks-body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px; line-height: 1.6;
  margin: 0 0 24px;
  max-width: 44ch;
}
.thanks-address {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 16px; line-height: 1.55;
  background: var(--paper-warm);
  border-left: 2px solid var(--moss-500);
  padding: 16px 20px;
  margin: 8px 0 16px;
  white-space: pre-line;
  display: inline-block;
}
.thanks-fineprint {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; color: var(--slate);
  margin: 0 0 16px;
}
.thanks-back {
  margin-top: 48px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
}
.thanks-back a { color: var(--moss-500); text-decoration: none; }
.thanks-back a:hover { text-decoration: underline; }

/* ============================================================
   MOTION — On-load reveals + cursor micro-animations
   Uses tokens from waldkind.css:
     --dur-2 (200ms) · --dur-3 (320ms) · --dur-4 (520ms)
     --ease-standard · --ease-out
   Fallback values inline for safety.
   ============================================================ */

/* ---- Keyframes ---------------------------------------------- */
@keyframes wk-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wk-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes wk-clip-in {
  from { opacity: 0; clip-path: inset(0 100% 0 0); }
  to   { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes wk-scalex {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ---- Hero mark (the [ˈvaltkɪnt] wordmark) ------------------- */
/* Staggered per-span reveal. The 5 spans are:
   [  ·  ˈva  ·  l (accent)  ·  tkɪnt  ·  ]
   We use longhand animation-* so hover can LAYER a second
   animation on top instead of replacing the reveal (which would
   drop the opacity:1 lock and make the spans disappear). */
.hero-mark > span {
  display: inline-block;
  vertical-align: baseline;
  animation-name: wk-rise;
  animation-duration: var(--dur-4, 520ms);
  animation-timing-function: var(--ease-out, cubic-bezier(0,0,.2,1));
  animation-fill-mode: both;       /* keyframe 0% applied during delay,
                                      keyframe 100% applied after end */
  will-change: transform, opacity;
}
.hero-mark > span:nth-child(1) { animation-delay:  60ms; }
.hero-mark > span:nth-child(2) { animation-delay: 160ms; }
.hero-mark > span:nth-child(3) { animation-delay: 260ms; }
.hero-mark > span:nth-child(4) { animation-delay: 340ms; }
.hero-mark > span:nth-child(5) { animation-delay: 440ms; }

/* Hop only animates transform — opacity stays locked by wk-rise's
   forwards-filled 100% (opacity:1) because wk-rise keeps running
   in slot #0 of the animation list. */
@keyframes wk-hop {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-18px); }
  55%  { transform: translateY(0); }
  72%  { transform: translateY(-6px); }
  88%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}

/* On hover: append wk-hop as a SECOND animation. wk-hop is later in
   the list → wins on transform. wk-rise stays in slot #0 (same name,
   same position → not restarted), keeping opacity locked at 1. */
.hero-mark:hover > span {
  animation-name: wk-rise, wk-hop;
  animation-duration: var(--dur-4, 520ms), 720ms;
  animation-timing-function:
    var(--ease-out, cubic-bezier(0,0,.2,1)),
    var(--ease-out, cubic-bezier(0,0,.2,1));
  animation-fill-mode: both, none;
}
.hero-mark:hover > span:nth-child(1) { animation-delay:  60ms,   0ms; }
.hero-mark:hover > span:nth-child(2) { animation-delay: 160ms,  60ms; }
.hero-mark:hover > span:nth-child(3) { animation-delay: 260ms, 120ms; }
.hero-mark:hover > span:nth-child(4) { animation-delay: 340ms, 180ms; }
.hero-mark:hover > span:nth-child(5) { animation-delay: 440ms, 240ms; }

/* ---- Hero supporting elements (staggered after mark) -------- */
.hero-editorial .eyebrow,
.hero-analog .eyebrow {
  opacity: 0;
  animation: wk-clip-in var(--dur-4, 520ms) var(--ease-out, cubic-bezier(0,0,.2,1)) 80ms forwards;
}
.hero-editorial .hero-tagline,
.hero-analog .hero-tagline,
.hero-editorial .hero-sub,
.hero-analog .hero-sub {
  opacity: 0;
  animation: wk-rise var(--dur-4, 520ms) var(--ease-out, cubic-bezier(0,0,.2,1)) 540ms forwards;
}
.hero-editorial .hero-charge,
.hero-analog .hero-charge {
  opacity: 0;
  animation: wk-rise var(--dur-4, 520ms) var(--ease-out, cubic-bezier(0,0,.2,1)) 700ms forwards;
}

/* ---- Brand wordmark in header (subtle on hover) ------------- */
.brand .accent {
  display: inline-block;
  transition: color var(--dur-2, 200ms) var(--ease-standard);
}
.brand:hover .accent { color: var(--clay-500); }

/* ---- Nav: underline sweep on hover -------------------------- */
/* Keep the existing .is-active::after rules untouched. */
nav.primary a:not(.is-active) {
  transition: color var(--dur-2, 200ms) var(--ease-standard);
}
nav.primary a:not(.is-active)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-3, 320ms) var(--ease-standard);
}
nav.primary a:not(.is-active):hover { text-decoration: none; }
nav.primary a:not(.is-active):hover::after { transform: scaleX(1); }

/* ---- Eyebrow micro-rule ------------------------------------- */
/* Adds a tiny growing line in front of every eyebrow caption.
   Skipped in headers/footers + when followed by status-dots. */
.shell .eyebrow:not(.no-rule)::before {
  content: "";
  display: inline-block;
  width: 18px; height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 10px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: wk-scalex var(--dur-4, 520ms) var(--ease-out) 200ms forwards;
}

/* ---- Charge-tag + buttons: hover lift ----------------------- */
.charge-tag,
.btn-large,
.briefe button {
  transition:
    transform var(--dur-2, 200ms) var(--ease-standard),
    background var(--dur-2, 200ms) var(--ease-standard),
    color var(--dur-2, 200ms) var(--ease-standard),
    border-color var(--dur-2, 200ms) var(--ease-standard);
}
.charge-tag:hover { transform: translateY(-2px); }
.btn-large:hover,
.briefe button:hover { transform: translateY(-1px); }
.btn-large:active,
.briefe button:active { transform: translateY(0); transition-duration: 60ms; }

/* ---- Cards: subtle lift + image zoom ------------------------ */
.card {
  transition:
    transform var(--dur-3, 320ms) var(--ease-standard),
    border-color var(--dur-2, 200ms) var(--ease-standard),
    box-shadow var(--dur-3, 320ms) var(--ease-standard);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 6px 18px -10px rgba(26,25,22,.18);
}
.card .card-img {
  overflow: hidden;
}
.card .card-img.has-photo {
  transition: background-size var(--dur-4, 520ms) var(--ease-standard);
  background-size: 100% auto;
}
.card:hover .card-img.has-photo { background-size: 108% auto; }
.card .card-img .corner-tl,
.card .card-img .corner-br {
  transition: transform var(--dur-3, 320ms) var(--ease-standard);
}
.card:hover .card-img .corner-tl { transform: translate(-4px, -4px); }
.card:hover .card-img .corner-br { transform: translate( 4px,  4px); }

/* ---- Brief-Items: highlight on hover ------------------------ */
.brief-item {
  transition:
    background var(--dur-2, 200ms) var(--ease-standard),
    transform  var(--dur-2, 200ms) var(--ease-standard);
}
.brief-item:hover {
  background: var(--paper-warm);
  transform: translateX(4px);
}

/* ---- Analog teaser arrow (already animates) ----------------- */
/* extend: stronger arrow shift, slight letter-spacing tightening */
section.analog-teaser .teaser-cta {
  transition: letter-spacing var(--dur-3, 320ms) var(--ease-standard);
}
section.analog-teaser a.teaser-link:hover .teaser-cta {
  letter-spacing: 0.02em;
}

/* ---- Scroll reveal (progressive enhancement) ---------------- */
/* Modern browsers (Chrome 115+, Safari 26+, Edge): sections fade in
   as they enter the viewport. Fallback: no animation, content visible. */
@supports (animation-timeline: view()) {
  .manifest,
  .edition,
  .briefe,
  section.analog-teaser,
  section.svc,
  section.contact {
    animation: wk-rise linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }
}

/* ============================================================
   MOTION — Continuous / ambient animations
   "Living" details that loop forever. Tuned to subliminal speeds
   so they read as life, not movement. All paused under reduce.
   ============================================================ */

/* ---- Filmstrip: sprocket holes scroll horizontally ---------- */
/* The two ::before/::after bars at top/bottom of the analog hero
   already use a 24×18 SVG repeated on background-image. We just
   animate background-position-x to roll it. Top + bottom run in
   the SAME direction → reads as a single piece of film passing
   through the page. */
@keyframes wk-film-roll-24 {
  from { background-position:    0 0; }
  to   { background-position: -24px 0; }
}
@keyframes wk-film-roll-16 {
  from { background-position:    0 0; }
  to   { background-position: -16px 0; }
}
section.hero-analog::before,
section.hero-analog::after {
  animation: wk-film-roll-24 2.4s linear infinite;
  will-change: background-position;
}
/* The mobile-rule (max-width: 760px) shrinks size to 16×10 — sync
   the keyframe to match the smaller sprocket pitch. */
@media (max-width: 760px) {
  section.hero-analog::before,
  section.hero-analog::after {
    animation-name: wk-film-roll-16;
    animation-duration: 1.8s;
  }
}

/* ---- Charge-Tag: gentle breathing -------------------------- */
/* Subtle scale + opacity wobble. Pauses while hovered so the
   hover-lift (translateY -2px) stays clean. */
@keyframes wk-breathe {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.03); opacity: 0.88; }
}
.charge-tag {
  animation: wk-breathe 4.2s ease-in-out infinite;
  transform-origin: center;
}
/* Cancel the loop on hover so the hover-lift (translateY -2px from
   the earlier block) wins cleanly — pausing would freeze the
   current frame's transform and block the lift. */
.charge-tag:hover { animation: none; }

/* ---- Teaser arrow: floating bob ---------------------------- */
@keyframes wk-bob-x {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
.teaser-cta .arrow,
.gs-work-link .arrow {
  animation: wk-bob-x 1.8s ease-in-out infinite;
}
/* Hover-shift overrides the bob — cancel the loop so the hover
   translateX (6px / 3px from earlier rules) wins cleanly. */
section.analog-teaser a.teaser-link:hover .arrow,
.gs-work-link:hover .arrow { animation: none; }

/* ---- Status-Dot: live pulse -------------------------------- */
/* Used inside `.pcard__status .dot` on product cards. */
@keyframes wk-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0   currentColor; opacity: 1;   }
  50%      { box-shadow: 0 0 0 4px transparent;  opacity: 0.6; }
}
.pcard__status .dot,
.status-dot,
.charge-tag .dot {
  animation: wk-dot-pulse 2s ease-in-out infinite;
}

/* ---- Brand wordmark accent: slow heartbeat ----------------- */
/* Header is sticky → the user sees this often. Keep it very
   subtle: opacity 1.0 → 0.78 over 4.5s. */
@keyframes wk-soft-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.78; }
}
.brand .accent { animation: wk-soft-pulse 4.5s ease-in-out infinite; }
.brand:hover .accent { animation-play-state: paused; }

/* ---- Footer brand-line: same heartbeat, slower ------------- */
.footer-brand small { animation: wk-soft-pulse 6s ease-in-out infinite; }

/* ---- Manifest drop-cap: slow color drift ------------------- */
/* The big initial letter is decorative — drift it through clay
   every ~7s. Simple color transition, no background-clip hacks. */
@keyframes wk-dropcap-drift {
  0%, 100% { color: var(--ink); }
  50%      { color: var(--clay-500); }
}
.manifest-body .dropcap::first-letter {
  animation: wk-dropcap-drift 7s ease-in-out infinite;
}

/* ---- Section rule (hr): hairline drift --------------------- */
/* Very slow horizontal gradient drift to give the brand its
   "additive manufacturing layer-line" feel. */
@keyframes wk-rule-drift {
  from { background-position:   0 0; }
  to   { background-position: 64px 0; }
}
hr.rule-bauhaus {
  background-image: repeating-linear-gradient(
    90deg,
    var(--ink) 0 8px,
    transparent 8px 12px
  );
  background-size: 64px 4px;
  background-repeat: repeat-x;
  border-top-color: transparent;
  animation: wk-rule-drift 16s linear infinite;
}

/* ---- Respect prefers-reduced-motion ------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-mark > span,
  .hero-editorial .eyebrow,
  .hero-analog .eyebrow,
  .hero-editorial .hero-tagline,
  .hero-analog .hero-tagline,
  .hero-editorial .hero-charge,
  .hero-analog .hero-charge,
  .hero-editorial .hero-sub,
  .hero-analog .hero-sub {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .shell .eyebrow:not(.no-rule)::before { transform: scaleX(1); }
  /* Explicitly stop the infinite loops. */
  section.hero-analog::before,
  section.hero-analog::after,
  .charge-tag,
  .teaser-cta .arrow,
  .gs-work-link .arrow,
  .pcard__status .dot,
  .status-dot,
  .brand .accent,
  .footer-brand small,
  .manifest-body .dropcap::first-letter,
  hr.rule-bauhaus {
    animation: none !important;
  }
  hr.rule-bauhaus {
    background: none;
    border-top: 4px solid var(--ink);
  }
}
