/* ============================================================
   COMPACT CUT & PRINT — Design System
   Richtung: "Precision Tech" — hell, präzise, grün-technisch,
   abgeleitet aus dem Original-Logo (squared Type, Grün #0D8E28, Schwarz)
   ============================================================ */

:root {
  /* Farben — Grün aus dem Original-Logo per HSL abgeleitet (Basis #0d8e28) */
  --green: #0d8e28;
  --green-bright: #25e64e;
  --green-deep: #0a691d;
  --green-glow: rgba(37, 230, 78, 0.32);
  --ink: #0d120e;
  --ink-soft: #22291f;
  --paper: #f6f7f4;
  --paper-raise: #ffffff;
  --line: rgba(13, 18, 14, 0.12);
  --line-soft: rgba(13, 18, 14, 0.07);
  --muted: #5d675c;

  /* Typografie */
  --font-display: "Michroma", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.9rem;
  --text-base: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  --text-lg: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
  --text-h2: clamp(1.9rem, 1.2rem + 3vw, 3.6rem);
  --text-hero: clamp(2.2rem, 1rem + 5.6vw, 6.2rem);

  /* Raster & Rhythmus */
  --space-section: clamp(4.5rem, 3rem + 6vw, 10rem);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 4px;

  /* Motion */
  --duration-fast: 160ms;
  --duration-normal: 340ms;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--green); color: #fff; }

h1, h2, h3 { line-height: 1.06; font-weight: 400; }

.wrap { max-width: 1440px; margin-inline: auto; padding-inline: var(--gutter); }

/* Technisches Hintergrundraster */
.grid-bg {
  position: relative;
}
.grid-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

/* Sektions-Kopf mit technischer Nummerierung */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2rem, 5vw, 4.5rem); }
.sec-tag {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  color: var(--green-deep);
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.sec-tag::before { content: ""; width: 34px; height: 2px; background: var(--green); }
.sec-title { font-family: var(--font-display); font-size: var(--text-h2); text-transform: uppercase; letter-spacing: 0.01em; }
.sec-title em { font-style: normal; color: var(--green); }
.sec-side { max-width: 34ch; color: var(--muted); font-size: var(--text-base); padding-bottom: 0.5rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background var(--duration-normal), box-shadow var(--duration-normal),
    transform 0.8s var(--ease-expo);
}
.site-header.pre-reveal { transform: translateY(-110%); }
.site-header.is-scrolled {
  background: rgba(246, 247, 244, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.logo { display: flex; flex-direction: column; line-height: 1; gap: 5px; }
.logo-top { font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.52em; color: var(--muted); text-transform: uppercase; }
.logo-img { display: block; height: 24px; width: auto; }

.nav-links { display: flex; gap: clamp(1rem, 2.5vw, 2.4rem); align-items: center; }
.nav-links a:not(.btn) {
  font-weight: 600; font-size: var(--text-sm); letter-spacing: 0.14em; text-transform: uppercase;
  position: relative; padding: 4px 0;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--green); transform: scaleX(0); transform-origin: right;
  transition: transform var(--duration-normal) var(--ease-expo);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn):focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); transition: transform var(--duration-normal), opacity var(--duration-normal); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  font-size: var(--text-sm);
  padding: 0.85rem 1.7rem; border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: color var(--duration-fast), box-shadow var(--duration-normal) var(--ease-expo), transform var(--duration-fast);
}
.btn .arr { transition: transform var(--duration-normal) var(--ease-expo); }
.btn:hover .arr { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn-solid { background: var(--ink); color: #fff; }
.btn-solid::before {
  content: ""; position: absolute; inset: 0; background: var(--green);
  transform: translateX(-101%); transition: transform var(--duration-normal) var(--ease-expo);
  z-index: 0;
}
.btn-solid:hover::before { transform: translateX(0); }
.btn-solid > * { position: relative; z-index: 1; }
.btn-solid:hover { box-shadow: 0 8px 24px -8px var(--green-glow); }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { box-shadow: 0 10px 28px -8px var(--green-glow); }

.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--green); color: var(--green-deep); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); color: #fff; }
.hero-media { position: absolute; inset: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.62; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9, 12, 9, 0.94) 8%, rgba(9, 12, 9, 0.35) 55%, rgba(9, 12, 9, 0.55));
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(6rem, 12vh, 9rem) clamp(3rem, 7vh, 5.5rem); }

.hero-tag { display: inline-flex; align-items: center; gap: 0.8rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; font-size: var(--text-xs); color: var(--green-bright); margin-bottom: 1.6rem; }
.hero-tag::before { content: ""; width: 44px; height: 2px; background: var(--green-bright); }

.hero-title { font-family: var(--font-display); font-size: var(--text-hero); text-transform: uppercase; letter-spacing: 0.005em; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; will-change: transform; }
.hero-title .green { color: var(--green-bright); }

.hero-sub { max-width: 54ch; font-size: var(--text-lg); font-weight: 500; color: rgba(255, 255, 255, 0.82); margin-top: 1.6rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero .btn-ghost { border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.hero .btn-ghost:hover { border-color: var(--green-bright); color: var(--green-bright); }

.hero-meta { display: flex; gap: clamp(1.5rem, 4vw, 4rem); margin-top: clamp(2.5rem, 6vh, 4.5rem); padding-top: 1.6rem; border-top: 1px solid rgba(255, 255, 255, 0.16); flex-wrap: wrap; }
.hero-meta div { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-meta b { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.08em; color: #fff; font-weight: 400; }
.hero-meta span { font-size: var(--text-sm); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }

/* Laser-Scanlinie im Hero */
.hero-laser {
  position: absolute; z-index: 3; top: 0; left: 0; width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--green-bright), transparent);
  filter: drop-shadow(0 0 6px var(--green-bright));
  opacity: 0;
}

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); color: var(--paper); overflow: hidden; padding: 1.05rem 0; border-block: 1px solid rgba(255, 255, 255, 0.08); position: relative; z-index: 2; }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; white-space: nowrap; will-change: transform; }
.marquee-track span { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.3em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 3.5rem; }
.marquee-track .dot { color: var(--green-bright); }

/* ---------- Leistungen ---------- */
.services { padding-block: var(--space-section); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.8rem); }
.service-card {
  position: relative; background: var(--paper-raise); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--duration-normal) var(--ease-expo), box-shadow var(--duration-normal) var(--ease-expo), border-color var(--duration-normal);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: 0 24px 48px -24px rgba(13, 18, 14, 0.35); }
.service-media { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-expo); }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.2em;
  background: rgba(9, 12, 9, 0.72); color: var(--green-bright);
  padding: 6px 12px; border-radius: 3px; backdrop-filter: blur(6px);
}
.service-body { padding: clamp(1.4rem, 2vw, 2rem); display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.service-body h3 { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.04em; }
.service-body p { color: var(--muted); }
.service-specs { list-style: none; margin-top: auto; padding-top: 1rem; border-top: 1px dashed var(--line); display: flex; flex-direction: column; gap: 0.45rem; }
.service-specs li { display: flex; align-items: center; gap: 0.6rem; font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.service-specs li::before { content: "▸"; color: var(--green); font-size: 0.8em; }

/* ---------- Zwei Wege ---------- */
.paths { padding-block: var(--space-section); background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.paths .sec-tag { color: var(--green-bright); }
.paths .sec-side { color: rgba(255, 255, 255, 0.6); }
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.8rem); }
.path-card {
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 3rem); position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  transition: border-color var(--duration-normal), transform var(--duration-normal) var(--ease-expo);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.path-card:hover { border-color: var(--green); transform: translateY(-4px); }
.path-label { font-family: var(--font-display); font-size: var(--text-xs); letter-spacing: 0.3em; color: var(--green-bright); text-transform: uppercase; }
.path-card h3 { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.9rem); text-transform: uppercase; line-height: 1.2; }
.path-card p { color: rgba(255, 255, 255, 0.68); max-width: 46ch; }
.path-steps { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-block: 0.4rem 0.8rem; }
.path-steps li { display: flex; gap: 0.85rem; align-items: baseline; font-weight: 600; letter-spacing: 0.04em; }
.path-steps .n { font-family: var(--font-display); font-size: 0.7rem; color: var(--green-bright); min-width: 2.2em; }
.path-card .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Ablauf ---------- */
.process { padding-block: var(--space-section); }
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 2rem); position: relative; }
.process-line { position: absolute; top: 27px; left: 0; height: 2px; width: 100%; background: var(--line); }
.process-line-fill { position: absolute; top: 27px; left: 0; height: 2px; width: 100%; background: var(--green); transform: scaleX(0); transform-origin: left; }
.process-step { position: relative; padding-top: 4.4rem; }
.process-dot {
  position: absolute; top: 16px; left: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--green);
  display: grid; place-items: center;
}
.process-dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.process-step h3 { font-family: var(--font-display); font-size: 1.02rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.process-step .p-num { font-family: var(--font-display); position: absolute; top: 0; right: 0; font-size: 2.6rem; color: transparent; -webkit-text-stroke: 1px var(--line); }
.process-step p { color: var(--muted); font-size: var(--text-base); max-width: 30ch; }

/* ---------- Materialien-Band ---------- */
.materials { padding-block: 0 var(--space-section); }
.materials-band {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
}
.mat-chip {
  border: 1px solid var(--line); border-radius: 100px; padding: 0.5rem 1.2rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: var(--text-sm);
  background: var(--paper-raise);
  transition: border-color var(--duration-fast), color var(--duration-fast), transform var(--duration-fast);
}
.mat-chip:hover { border-color: var(--green); color: var(--green-deep); transform: translateY(-2px); }

/* ---------- Shop-Teaser ---------- */
.shop-teaser { padding-block: var(--space-section); background: linear-gradient(180deg, var(--paper), #eef1ea); }
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.6vw, 1.5rem); }
.product-card {
  background: var(--paper-raise); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-expo), box-shadow var(--duration-normal) var(--ease-expo);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -22px rgba(13, 18, 14, 0.3); }
.product-media { aspect-ratio: 1; overflow: hidden; position: relative; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-expo); }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 12px; left: 12px; background: var(--green); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 3px;
}
.product-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.3rem; }
.product-body h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.03em; }
.product-body .cat { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.product-body .price { font-family: var(--font-display); font-size: 0.95rem; color: var(--green-deep); margin-top: 0.4rem; }
.shop-cta-row { display: flex; justify-content: center; margin-top: 2.8rem; }

/* ---------- Werkstatt / About ---------- */
.about { position: relative; overflow: hidden; }
.about-media { height: clamp(360px, 60vh, 620px); overflow: hidden; }
.about-media img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.about-overlay {
  position: absolute; inset: 0; display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(9, 12, 9, 0.82) 0%, rgba(9, 12, 9, 0.25) 65%, transparent);
}
.about-content { color: #fff; max-width: 56ch; }
.about-content .sec-tag { color: var(--green-bright); }
.about-content h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.6rem); text-transform: uppercase; margin-bottom: 1.1rem; }
.about-content p { color: rgba(255, 255, 255, 0.8); font-size: var(--text-lg); }

/* ---------- Kontakt ---------- */
.contact { padding-block: var(--space-section); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: var(--text-h2); text-transform: uppercase; margin-bottom: 1.2rem; }
.contact-info p { color: var(--muted); max-width: 46ch; margin-bottom: 2rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: flex; align-items: center; gap: 0.9rem; font-weight: 600; letter-spacing: 0.04em; }
.contact-list .ico { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: var(--radius); display: grid; place-items: center; color: var(--green-deep); }

.form-card { background: var(--paper-raise); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.6rem); }
.form-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; margin-bottom: 1.4rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  font: inherit; padding: 0.8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--paper); color: var(--ink); width: 100%;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47, 164, 58, 0.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: var(--text-sm); color: var(--muted); margin-top: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.7); padding: clamp(2.5rem, 5vw, 4rem) 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-grid .logo-img { height: 27px; }
.footer-grid h4 { font-family: var(--font-display); color: #fff; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-grid a:hover { color: var(--green-bright); }
.footer-note { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.4rem; font-size: var(--text-sm); color: rgba(255, 255, 255, 0.45); }

/* ---------- Anfrage-Wizard ---------- */
.wizard-page { min-height: 100svh; background: var(--paper); padding-top: 76px; }
.wizard-hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.wizard-hero h1 { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 3rem); text-transform: uppercase; }
.wizard-hero p { color: var(--muted); margin-top: 0.8rem; max-width: 60ch; }

.wizard { max-width: 880px; margin-inline: auto; padding-bottom: var(--space-section); }
.wizard-progress { display: flex; align-items: center; gap: 0; margin-bottom: 2.4rem; }
.wp-step { display: flex; align-items: center; flex: 1; }
.wp-step:last-child { flex: 0; }
.wp-dot {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--line); background: var(--paper-raise);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 0.72rem; color: var(--muted);
  transition: all var(--duration-normal);
  position: relative;
}
.wp-bar { flex: 1; height: 2px; background: var(--line); margin-inline: 6px; position: relative; overflow: hidden; }
.wp-bar::after { content: ""; position: absolute; inset: 0; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-expo); }
.wp-step.is-done .wp-bar::after, .wp-step.is-active .wp-bar-prev::after { transform: scaleX(1); }
.wp-step.is-active .wp-dot { border-color: var(--green); color: var(--green-deep); box-shadow: 0 0 0 5px rgba(47, 164, 58, 0.14); }
.wp-step.is-done .wp-dot { border-color: var(--green); background: var(--green); color: #fff; }

.wizard-panel { background: var(--paper-raise); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 3rem); }
.wizard-step { display: none; }
.wizard-step.is-active { display: block; }
.wizard-step h2 { font-family: var(--font-display); font-size: clamp(1.15rem, 2.4vw, 1.7rem); text-transform: uppercase; margin-bottom: 0.5rem; }
.wizard-step .step-sub { color: var(--muted); margin-bottom: 1.8rem; }

.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.choice-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.choice-card {
  border: 2px solid var(--line); border-radius: var(--radius); overflow: hidden; text-align: left;
  background: var(--paper); transition: border-color var(--duration-fast), transform var(--duration-fast), box-shadow var(--duration-normal);
  display: flex; flex-direction: column;
}
.choice-card:hover { transform: translateY(-3px); border-color: var(--green); }
.choice-card.is-selected { border-color: var(--green); box-shadow: 0 0 0 3px rgba(47, 164, 58, 0.18); }
.choice-card .cc-media { aspect-ratio: 16 / 10; overflow: hidden; }
.choice-card .cc-media img { width: 100%; height: 100%; object-fit: cover; }
.choice-card .cc-body { padding: 1rem 1.1rem 1.2rem; }
.choice-card .cc-body b { display: block; font-size: 1.05rem; letter-spacing: 0.04em; }
.choice-card .cc-body span { font-size: var(--text-sm); color: var(--muted); }
.choice-card .cc-check {
  position: absolute;
}
.choice-card.text-only { padding: 1.4rem 1.5rem; gap: 0.4rem; }
.choice-card.text-only b { font-size: 1.1rem; }

.dropzone {
  border: 2px dashed var(--line); border-radius: var(--radius); padding: 2.6rem 1.5rem;
  text-align: center; color: var(--muted); background: var(--paper);
  transition: border-color var(--duration-fast), background var(--duration-fast);
  cursor: pointer;
}
.dropzone.is-drag { border-color: var(--green); background: rgba(47, 164, 58, 0.06); }
.dropzone b { color: var(--ink); }
.dropzone .dz-formats { display: block; font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.8rem; }
.dz-files { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.dz-files li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.6rem 1rem; font-weight: 600; font-size: var(--text-sm);
}
.dz-files button { color: #c0392b; font-weight: 700; }

.wizard-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.2rem; }
.wizard-nav .btn[disabled] { opacity: 0.4; pointer-events: none; }

.summary-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.6rem; }
.summary-list li { display: flex; gap: 1rem; padding: 0.7rem 1rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.summary-list b { min-width: 130px; font-size: var(--text-sm); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 700; padding-top: 2px; }

.wizard-success { text-align: center; padding: 2.5rem 1rem; }
.wizard-success .ok-ring {
  width: 84px; height: 84px; margin: 0 auto 1.6rem; border-radius: 50%;
  border: 3px solid var(--green); display: grid; place-items: center;
  color: var(--green); font-size: 2rem;
}
.wizard-success h2 { font-family: var(--font-display); text-transform: uppercase; margin-bottom: 0.7rem; }
.wizard-success p { color: var(--muted); max-width: 46ch; margin-inline: auto; }

/* ---------- Shop-Seite ---------- */
.shop-page-hero { padding: calc(76px + clamp(3rem, 8vw, 6rem)) 0 clamp(2rem, 5vw, 4rem); background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.shop-page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); text-transform: uppercase; }
.shop-page-hero h1 em { font-style: normal; color: var(--green-bright); }
.shop-page-hero p { color: rgba(255, 255, 255, 0.7); margin-top: 1rem; max-width: 60ch; font-size: var(--text-lg); }
.shop-filter { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 2.5rem 0 2rem; }
.filter-chip {
  border: 1.5px solid var(--line); border-radius: 100px; padding: 0.5rem 1.3rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: var(--text-xs);
  color: var(--muted); transition: all var(--duration-fast);
}
.filter-chip:hover { border-color: var(--green); color: var(--green-deep); }
.filter-chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.shop-page-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.6vw, 1.5rem); padding-bottom: var(--space-section); }
.shop-banner {
  margin: 0 0 2.5rem; padding: 1rem 1.4rem; border: 1px solid var(--green); border-radius: var(--radius);
  background: rgba(47, 164, 58, 0.07); color: var(--green-deep); font-weight: 600; letter-spacing: 0.04em;
  display: flex; gap: 0.8rem; align-items: center;
}

/* ---------- Reveal-Basisklassen (GSAP) ---------- */
.rv { opacity: 0; }
body.is-static .rv { opacity: 1 !important; transform: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .shop-grid, .shop-page-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .process-line, .process-line-fill { display: none; }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--paper-raise); border-bottom: 1px solid var(--line);
    padding: 1.2rem var(--gutter) 1.6rem; gap: 1rem;
    transform: translateY(-130%); transition: transform var(--duration-normal) var(--ease-expo);
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-burger { display: flex; }
  .site-header { background: rgba(246, 247, 244, 0.92); backdrop-filter: blur(14px); }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .path-grid, .contact-grid, .choice-grid, .choice-grid.cols-2 { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.2rem 2rem; }
}

@media (max-width: 560px) {
  .shop-grid, .shop-page-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wizard-progress .wp-label { display: none; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
