/*
 * Foto zu Figur — gemeinsames Stylesheet (v2)
 *
 * Erweitertes Design-System: warme Papier-Farbpalette, Fraunces für Display,
 * Inter für Fließtext, Caveat für handschriftliche Akzente. Subtile Papier-
 * Textur über Noise-Filter, ornamentale Trennlinien, asymmetrische Layouts.
 *
 * Verwendet von: landing.html, upload.html, upload_success.html
 */

/* ===================== Tokens ===================== */
:root {
  --bg: #faf6ef;
  --bg-cream: #f3ebd9;
  --bg-warm: #ede1c8;
  --bg-deep: #1a1612;
  --card: #ffffff;
  --ink: #15110b;
  --ink-muted: #6b6258;
  --ink-soft: #97907f;
  --accent: #b8453f;
  --accent-deep: #8a2f2a;
  --accent-soft: #f4e3df;
  --brass: #b89968;
  --brass-soft: #e8d9b8;
  --ornament: #d4c5a8;
  --line: #e6dcc8;
  --line-soft: #ede4d2;
  --success: #2f7d5b;
  --success-bg: #e3efe7;
  --error: #b8453f;
  --error-bg: #fbecea;
  --shadow-sm: 0 1px 2px rgba(20,15,8,.04), 0 4px 12px rgba(20,15,8,.04);
  --shadow-md: 0 12px 32px rgba(20,15,8,.10), 0 4px 8px rgba(0,0,0,.04);
  --shadow-lg: 0 32px 64px rgba(20,15,8,.14), 0 8px 16px rgba(0,0,0,.06);
  --shadow-xl: 0 48px 80px rgba(20,15,8,.18), 0 12px 20px rgba(0,0,0,.08);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
}

/* ===================== Reset / base ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg); color: var(--ink);
  line-height: 1.65;
  font-feature-settings: 'ss01', 'cv01';
  -webkit-font-smoothing: antialiased;
  position: relative; overflow-x: hidden;
}
body::before {
  content: ""; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0 0.04  0 0 0 0.045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none; z-index: 1; opacity: .8; mix-blend-mode: multiply;
}
body.upload-page { min-height: 100vh; display: flex; flex-direction: column; }
body.upload-page main { flex: 1; padding: 56px 0 96px; position: relative; }

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; width: 100%; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ===================== Header ===================== */
header {
  position: sticky; top: 0;
  background: rgba(250,246,239,.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.nav-left { display: flex; align-items: center; gap: 32px; }

.logo {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 24px; letter-spacing: -0.025em;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: baseline;
}
.logo-mark {
  display: inline-block; width: 7px; height: 7px;
  background: var(--accent); border-radius: 50%;
  margin-right: 4px; transform: translateY(-3px);
}
.logo i { font-style: italic; color: var(--accent); }
.logo-sub {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  margin-left: 12px; padding-left: 12px;
  border-left: 1px solid var(--line);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--ink); color: var(--bg);
  padding: 11px 22px; border-radius: 999px;
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }
.nav-link {
  color: var(--ink-muted); text-decoration: none; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 4px; transition: color .2s;
}
.nav-link:hover { color: var(--accent); }
@media (max-width: 800px) { .nav-links, .logo-sub { display: none; } }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-family: inherit; font-weight: 500; font-size: 16px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
}
.btn-primary {
  background: var(--accent); color: white;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-primary:hover {
  background: var(--accent-deep); transform: translateY(-1px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--card); border-color: var(--ink); }

/* ===================== Hero ===================== */
.hero { position: relative; padding: 80px 0 96px; overflow: hidden; }
.hero-blob {
  position: absolute; pointer-events: none; z-index: 0;
  filter: blur(80px); opacity: .55;
}
.hero-blob-1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--brass-soft) 0%, transparent 70%);
  bottom: -120px; left: -100px;
}
.hero-grid {
  position: relative; display: grid;
  grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 64px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line);
  color: var(--ink-muted);
  padding: 7px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 28px; box-shadow: var(--shadow-sm);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.02; letter-spacing: -0.035em;
  max-width: 14ch; color: var(--ink); margin-bottom: 28px;
}
h1 em {
  font-style: italic; font-weight: 500; color: var(--accent);
  position: relative; display: inline-block;
}
h1 em::after {
  content: ""; position: absolute;
  left: -2%; right: -2%; bottom: 6%;
  height: 12px; background: var(--accent-soft);
  z-index: -1; border-radius: 4px;
}

.lede {
  font-size: 19px; color: var(--ink-muted);
  max-width: 48ch; margin-bottom: 36px; line-height: 1.6;
}
.lede.with-cap::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 1.6em; font-weight: 500;
  color: var(--ink); margin-right: 2px;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-muted); font-weight: 500;
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

.hero-visual {
  position: relative; aspect-ratio: 1 / 1;
  max-width: 480px; margin-left: auto;
}
@media (max-width: 960px) { .hero-visual { margin: 0 auto; } }
.polaroid {
  position: absolute; background: var(--card);
  padding: 14px 14px 56px; border-radius: 4px;
  box-shadow: var(--shadow-lg);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.polaroid::after {
  content: attr(data-caption);
  position: absolute; left: 0; right: 0; bottom: 16px;
  text-align: center;
  font-family: 'Caveat', cursive; font-size: 22px;
  color: var(--ink-muted);
}
.polaroid img, .polaroid .ph {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 2px;
  background: linear-gradient(135deg, #d4c5a8 0%, #b89968 100%);
}
.polaroid-1 { width: 56%; top: 6%; left: 4%; transform: rotate(-7deg); z-index: 3; }
.polaroid-1 .ph { background: linear-gradient(135deg, #d4c5a8 0%, #ad8e57 100%); }
.polaroid-2 { width: 50%; top: 22%; right: 6%; transform: rotate(6deg); z-index: 2; }
.polaroid-2 .ph { background: linear-gradient(135deg, #c2a583 0%, #8a6f4a 100%); }
.polaroid-3 { width: 46%; bottom: 8%; left: 22%; transform: rotate(-3deg); z-index: 4; }
.polaroid-3 .ph { background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent) 100%); }
.hero-visual:hover .polaroid-1 { transform: rotate(-9deg) translate(-6px, -6px); }
.hero-visual:hover .polaroid-2 { transform: rotate(8deg) translate(6px, -4px); }
.hero-visual:hover .polaroid-3 { transform: rotate(-2deg) translate(-2px, 4px); }
.hero-arrow {
  position: absolute; top: 44%; right: -2%;
  font-family: 'Caveat', cursive; font-size: 24px;
  color: var(--accent); transform: rotate(-12deg); z-index: 5;
}
@media (max-width: 540px) { .hero-arrow { display: none; } }

/* ===================== Trust strip ===================== */
.trust-strip {
  background: var(--bg-cream);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.trust-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; align-items: center;
}
@media (max-width: 800px) { .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.trust-cell { display: flex; gap: 14px; align-items: center; }
.trust-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: var(--card);
  display: grid; place-items: center;
  color: var(--accent); box-shadow: var(--shadow-sm);
}
.trust-cell-text strong {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--ink); margin-bottom: 2px;
}
.trust-cell-text span { font-size: 12px; color: var(--ink-muted); }

/* ===================== Ornament & section heads ===================== */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 60px 0 16px;
}
.ornament-line { flex: 0 0 80px; height: 1px; background: var(--ornament); }
.ornament-mark {
  font-family: 'Fraunces', serif; font-size: 18px;
  color: var(--brass); transform: translateY(-2px);
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-head h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 16px;
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head p { font-size: 18px; color: var(--ink-muted); line-height: 1.6; }

/* ===================== Steps ===================== */
.steps { padding: 40px 0 100px; position: relative; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; gap: 32px; } }
.step { text-align: center; padding: 32px; position: relative; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 80px; right: -16px;
  width: 32px; height: 1px;
  background: linear-gradient(to right, transparent, var(--ornament), transparent);
}
@media (max-width: 800px) { .step::after { display: none; } }
.step-number {
  font-family: 'Fraunces', serif; font-size: 14px; font-weight: 500;
  color: var(--accent); letter-spacing: 0.1em; margin-bottom: 8px;
}
.step-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--card); border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--accent); box-shadow: var(--shadow-sm); position: relative;
}
.step-icon::before {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%; border: 1px dashed var(--line); opacity: .8;
}
.step h3 {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500;
  letter-spacing: -0.015em; margin-bottom: 10px;
}
.step p {
  font-size: 15px; color: var(--ink-muted); line-height: 1.6;
  max-width: 28ch; margin: 0 auto;
}

/* ===================== Products ===================== */
.products { padding: 40px 0 120px; position: relative; }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: 1fr; gap: 24px; } }
.product {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: var(--shadow-sm); position: relative;
}
.product:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}
.product-image {
  position: relative; aspect-ratio: 4 / 5;
  background: var(--bg-cream); overflow: hidden;
}
.product-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,8,.06), transparent 40%);
  pointer-events: none;
}
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.product:hover .product-image img { transform: scale(1.06); }
.product-image .ph-art {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--bg-cream) 0%, var(--brass) 100%);
}
.product-numeral {
  position: absolute; top: 20px; right: 22px;
  font-family: 'Fraunces', serif;
  font-size: 60px; font-weight: 400;
  color: var(--card); line-height: 1; letter-spacing: -0.04em;
  opacity: .92; mix-blend-mode: overlay; z-index: 1;
}
.product-tag {
  position: absolute; top: 20px; left: 22px;
  background: var(--card); color: var(--accent);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: var(--shadow-sm); z-index: 2;
}
.product-tag.is-popular { background: var(--accent); color: white; }
.product-body {
  padding: 28px; display: flex; flex-direction: column;
  gap: 10px; flex: 1;
}
.product-meta {
  font-size: 12px; font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.product h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500; font-size: 26px; letter-spacing: -0.015em;
}
.product-desc {
  color: var(--ink-muted); font-size: 15px;
  line-height: 1.6; flex: 1;
}
.product-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; margin-top: 8px; border-top: 1px solid var(--line);
}
.product-price {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em;
}
.product-arrow {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--bg-cream);
  display: grid; place-items: center;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
}
.product:hover .product-arrow {
  background: var(--accent); color: white; transform: translateX(2px);
}

/* ===================== Promise (dark block) ===================== */
.promise {
  background: var(--bg-deep); color: #f3ebd9;
  padding: 100px 0; position: relative; overflow: hidden;
}
.promise::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none; opacity: .4;
}
.promise-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 900px) { .promise-grid { grid-template-columns: 1fr; gap: 40px; } }
.promise-eyebrow {
  color: var(--brass); letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
  font-size: 12px; margin-bottom: 20px;
}
.promise h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1; letter-spacing: -0.025em;
  color: #fff; margin-bottom: 24px;
}
.promise h2 em { font-style: italic; color: var(--brass); }
.promise p {
  font-size: 17px; color: #d4c5a8; line-height: 1.7;
  max-width: 50ch; margin-bottom: 16px;
}
.promise-quote {
  background: rgba(255,255,255,.03);
  border-left: 2px solid var(--brass);
  padding: 28px 32px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.promise-quote q {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 22px; line-height: 1.45; color: #fff;
  display: block; quotes: "„" "\201C" "‚" "\2018";
}
.promise-quote q::before, .promise-quote q::after { color: var(--brass); }
.promise-quote cite {
  display: block; margin-top: 16px;
  font-style: normal; font-size: 13px;
  color: var(--brass); letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
}

/* ===================== Final CTA card ===================== */
.final { padding: 100px 0; text-align: center; }
.final-card {
  max-width: 760px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 64px 48px;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.final-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-soft) 0%, transparent 60%);
  opacity: .8;
}
.final-card > * { position: relative; z-index: 1; }
.final-card h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 16px;
}
.final-card h2 em { font-style: italic; color: var(--accent); }
.final-card p {
  color: var(--ink-muted); font-size: 17px;
  max-width: 48ch; margin: 0 auto 28px;
}
@media (max-width: 540px) { .final-card { padding: 40px 24px; } }

/* ===================== Footer ===================== */
footer {
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px; position: relative; z-index: 2;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand .logo { font-size: 28px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px; color: var(--ink-muted); line-height: 1.6;
  max-width: 36ch; margin-bottom: 20px;
}
.footer-col h5 {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: var(--ink-muted); text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bar {
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--ink-soft);
}
.footer-bar a { color: var(--ink-muted); text-decoration: none; }
.footer-bar a:hover { color: var(--accent); }
.footer-brand-mention { font-family: 'Fraunces', serif; font-style: italic; }
.footer-brand-mention a {
  color: var(--ink); text-decoration: underline;
  text-decoration-color: var(--ornament); text-underline-offset: 3px;
}
.footer-brand-mention a:hover { color: var(--accent); }

/* Compact footer (Upload-Seiten) */
.footer-compact {
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  padding: 36px 0; color: var(--ink-muted); font-size: 13px;
  position: relative; z-index: 2;
}
.foot-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot-row a { color: var(--ink-muted); text-decoration: none; margin-right: 16px; }
.foot-row a:hover { color: var(--accent); }

/* ===================== Upload-Seite ===================== */
.bg-blob {
  position: absolute; pointer-events: none;
  filter: blur(100px); opacity: .5; z-index: 0;
}
.bg-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  top: 10%; right: -200px;
}
.bg-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--brass-soft) 0%, transparent 70%);
  bottom: 5%; left: -150px;
}
.upload-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px;
  align-items: start; position: relative; z-index: 2;
}
@media (max-width: 1000px) {
  .upload-grid { grid-template-columns: 1fr; gap: 40px; max-width: 720px; margin: 0 auto; }
}
.page-head { margin-bottom: 32px; }
.step-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.step-pill-dots { display: inline-flex; gap: 4px; }
.step-pill-dots span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--line);
}
.step-pill-dots span.active { background: var(--accent); }
.step-pill-dots span.done { background: var(--accent); opacity: .35; }
.page-head h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 16px; max-width: 14ch;
}
.page-head .lede {
  font-size: 17px; color: var(--ink-muted);
  line-height: 1.65; max-width: 50ch; margin-bottom: 0;
}

/* Form card */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 48px;
  box-shadow: var(--shadow-md); position: relative;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg) 0%, transparent 30%);
  opacity: .5; pointer-events: none;
}
@media (max-width: 640px) { .card { padding: 28px; border-radius: var(--radius); } }

.field { margin-bottom: 22px; position: relative; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

label.lbl {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--ink); margin-bottom: 8px;
}
label.lbl .req { color: var(--accent); margin-left: 2px; }

input[type="text"], input[type="email"], input[type="tel"], input[type="url"] {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: inherit; font-size: 15px; color: var(--ink);
  transition: all .15s;
}
input:focus {
  outline: none; border-color: var(--accent);
  background: var(--card);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
input::placeholder { color: var(--ink-soft); }
.help { font-size: 13px; color: var(--ink-muted); margin-top: 6px; }

.section-title {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Fraunces', serif;
  font-size: 16px; font-weight: 500;
  color: var(--ink); margin-bottom: 18px;
}
.section-title-num {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}
.section-title-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, var(--line), transparent);
}
.divider {
  border: none; height: 1px;
  background: linear-gradient(to right, transparent, var(--line) 20%, var(--line) 80%, transparent);
  margin: 36px 0 28px;
}

/* Drop zone */
.dropzone {
  position: relative; border: 2px dashed var(--line);
  border-radius: var(--radius); background: var(--bg);
  padding: 44px 24px; text-align: center; cursor: pointer;
  transition: all .25s; display: block; overflow: hidden;
}
.dropzone::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, var(--accent-soft) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, var(--brass-soft) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
}
.dropzone:hover, .dropzone.is-drag { border-color: var(--accent); }
.dropzone:hover::before, .dropzone.is-drag::before { opacity: .6; }
.dropzone > * { position: relative; z-index: 1; }
.dropzone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2;
}
.dropzone-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--card); border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--accent); box-shadow: var(--shadow-sm); position: relative;
}
.dropzone-icon::before {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%; border: 1px dashed var(--line);
}
.dropzone-title {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 500; margin-bottom: 6px;
}
.dropzone-hint { font-size: 13px; color: var(--ink-muted); }
.dropzone-or {
  display: inline-block; margin: 12px 0;
  font-size: 12px; color: var(--ink-soft);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.dropzone-btn {
  display: inline-block; padding: 8px 18px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--ink);
}
.dropzone.has-file { padding: 18px; border-style: solid; text-align: left; background: var(--card); }
.dropzone.has-file::before { display: none; }
.file-preview { display: none; align-items: center; gap: 16px; }
.dropzone.has-file .dropzone-empty { display: none; }
.dropzone.has-file .file-preview { display: flex; }
.file-preview img {
  width: 80px; height: 80px; object-fit: cover;
  border-radius: var(--radius-sm); border: 1px solid var(--line);
}
.file-info { flex: 1; min-width: 0; }
.file-name {
  font-weight: 500; font-size: 15px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.file-size { font-size: 13px; color: var(--ink-muted); margin-top: 4px; }
.file-remove {
  background: none; border: none; color: var(--ink-muted);
  font-size: 13px; cursor: pointer; padding: 8px 12px;
  border-radius: 6px; transition: all .15s; font-family: inherit;
}
.file-remove:hover { color: var(--accent); background: var(--accent-soft); }

/* Checkboxes */
.check {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--bg);
  cursor: pointer; transition: all .2s; margin-bottom: 12px;
  position: relative;
}
.check:hover { border-color: var(--brass); background: var(--card); }
.check input[type="checkbox"] {
  flex-shrink: 0; width: 20px; height: 20px;
  margin-top: 1px; accent-color: var(--accent); cursor: pointer;
}
.check-content { font-size: 14px; line-height: 1.55; color: var(--ink-muted); }
.check-content strong { color: var(--ink); font-weight: 600; }
.check-content a {
  color: var(--accent); text-decoration: underline;
  text-underline-offset: 2px; text-decoration-color: var(--accent-soft);
}
.check-content a:hover { text-decoration-color: var(--accent); }
.check input:checked ~ .check-content { color: var(--ink); }

/* Honeypot */
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.captcha-note {
  font-size: 13px; color: var(--ink-soft);
  text-align: center; margin: 24px 0 4px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* Submit */
.submit {
  width: 100%; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  background: var(--accent); color: white;
  padding: 18px 32px; border: none; border-radius: 999px;
  font-family: inherit; font-weight: 500; font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.15);
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  margin-top: 12px; text-decoration: none;
}
.submit:hover:not(:disabled) {
  background: var(--accent-deep); transform: translateY(-1px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.15);
}
.submit:disabled { background: var(--ink-soft); cursor: not-allowed; box-shadow: none; opacity: .7; }

/* Reassurance sidebar */
.sidebar { position: sticky; top: 100px; }
@media (max-width: 1000px) { .sidebar { position: static; } }
.reassure {
  background: var(--bg-deep); color: #f3ebd9;
  border-radius: var(--radius-lg); padding: 40px 36px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.reassure::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .4; pointer-events: none;
}
.reassure > * { position: relative; z-index: 1; }
.reassure-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 14px;
}
.reassure h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 500;
  color: #fff; line-height: 1.2;
  letter-spacing: -0.015em; margin-bottom: 24px;
}
.reassure h3 em { color: var(--brass); font-style: italic; }
.reassure-list { list-style: none; }
.reassure-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid rgba(212,197,168,.15);
}
.reassure-list li:last-child { border-bottom: none; }
.reassure-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%; background: rgba(184,153,104,.15);
  color: var(--brass); display: grid; place-items: center;
}
.reassure-text strong {
  display: block; font-size: 14px; font-weight: 600;
  color: #fff; margin-bottom: 2px;
}
.reassure-text span { font-size: 13px; color: #d4c5a8; line-height: 1.5; }

.quote-card {
  margin-top: 24px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.quote-card q {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 18px; line-height: 1.5; color: var(--ink);
  display: block; quotes: "„" "\201C";
}
.quote-card q::before, .quote-card q::after { color: var(--accent); }
.quote-card cite {
  display: block; margin-top: 14px; font-style: normal;
  color: var(--ink-muted); font-family: 'Caveat', cursive; font-size: 18px;
}

/* Alerts */
.alert {
  padding: 16px 20px; border-radius: var(--radius-sm);
  margin-bottom: 24px; font-size: 14px;
  display: flex; gap: 12px; align-items: flex-start;
}
.alert-error {
  background: var(--error-bg); color: var(--error);
  border: 1px solid rgba(184,69,63,.2);
}
.alert-success {
  background: var(--success-bg); color: var(--success);
  border: 1px solid rgba(47,125,91,.2);
}

/* Success-Seite */
.success-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--success-bg); color: var(--success);
  display: grid; place-items: center; margin: 0 auto;
  position: relative;
}
.success-circle::before {
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%; border: 1px dashed var(--ornament);
}
.info-box {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 24px;
  margin: 32px auto 0; max-width: 420px; text-align: left;
}
.info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 14px;
}
.info-row + .info-row { border-top: 1px solid var(--line); }
.info-row span { color: var(--ink-muted); }
.info-row strong { color: var(--ink); font-family: 'Fraunces', serif; font-weight: 500; font-size: 16px; }

/* Mobile */
@media (max-width: 640px) {
  .hero { padding: 56px 0 64px; }
  .products { padding: 32px 0 80px; }
  body.upload-page main { padding: 32px 0 64px; }
}
