/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --off:      #f4f1ec;
  --surface:  #ede9e3;
  --border:   #ddd9d2;
  --text:     #181613;
  --muted:    #6a6460;
  --muted-lt: #9e9894;
  --gold:     #b8952e;
  --gold-lt:  rgba(184,149,46,.15);
  --white:    #ffffff;
  --max:      1240px;
  --ease:     cubic-bezier(.16,1,.3,1);
  --r:        2px;
}

html { scroll-behavior: auto; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--off);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
}

/* ── CURSOR ── */
.cursor { display: none !important;
  position: fixed; width: 10px; height: 10px;
  background: #ffffff; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s var(--ease), height .2s var(--ease);
  mix-blend-mode: difference;
}
.cursor-ring { display: none !important;
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid #ffffff; border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all .1s linear;
  mix-blend-mode: difference;
}
@media (hover: none) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } }

/* ─────────────── LOADER ─────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--text);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3rem;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

#loader.done {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.loader-svg {
  width: min(700px, 90vw);
  overflow: visible;
}

.loader-text {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -2px;
  fill: none;
  stroke: rgba(255,255,255,.1);
  stroke-width: 1;
}

.loader-text-fill {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -2px;
  fill: var(--white);
  clip-path: url(#printClip);
}

.loader-nozzle {
  transition: transform .05s linear;
}

.loader-bottom {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: min(700px, 90vw);
}

.loader-bar-track {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.12);
  position: relative;
  overflow: visible;
}

.loader-bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--gold);
  width: 0%;
  transition: width .05s linear;
}

.loader-pct {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(255,255,255,.4);
  font-variant-numeric: tabular-nums;
  min-width: 3rem;
  text-align: right;
}

.loader-sub {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  text-align: center;
}

/* ─────────────── NAV ─────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 66px; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(244,241,236,.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.06); }

.nav-logo {
  font-size: .88rem; font-weight: 900;
  letter-spacing: -.03em; color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: .5rem;
}
.nav-logo img {
  height: 28px; width: auto; display: block; flex-shrink: 0;
}
.nav-logo span { line-height: 1; }

.nav-right { display: flex; align-items: center; gap: 2rem; }

.nav-link {
  font-size: .78rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.nav-link:hover { color: var(--text); }

/* Active Page-Indicator im Nav */
.nav-link--active {
  color: var(--gold) !important;
  position: relative;
  font-weight: 700;
}
.nav-link--active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--gold);
  border-radius: 2px;
}

.nav-cta {
  font-size: .75rem; font-weight: 700;
  color: var(--white); background: var(--text);
  padding: .5rem 1.2rem; text-decoration: none;
  border-radius: var(--r);
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: #333; transform: translateY(-1px); }

/* Service-Pills im Header: Buchstaben · STL · Logo */
.nav-pills {
  display: flex; gap: .4rem; margin-left: .8rem;
  padding-left: 1.2rem; border-left: 1px solid var(--border);
}
.nav-pill {
  font-size: .72rem; font-weight: 700;
  color: var(--gold); background: rgba(184,149,46,.08);
  padding: .5rem 1rem; text-decoration: none;
  border-radius: 100px; border: 1px solid rgba(184,149,46,.28);
  letter-spacing: .04em;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.nav-pill:hover {
  background: var(--gold); color: var(--white);
  border-color: var(--gold);
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .nav-pills {
    flex-direction: column;
    margin: .8rem 0 0; padding: 1rem 0 0;
    border-left: none;
    border-top: 1px solid var(--border);
    gap: .6rem;
    order: -1;
    width: 100%;
  }
  .nav-pill {
    text-align: center;
    padding: 1rem 1.2rem;
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
}

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--text); }

@media (max-width: 860px) {
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* ─────────────── HERO ─────────────── */
.hero {
  min-height: 100vh;
  background: var(--text);
  color: var(--white);
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 10vh 5% 5vh;
  padding-top: calc(66px + 6vw);
  position: relative;
  overflow: hidden;
}

/* Subtle grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Corner accent */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle at top right, rgba(184,149,46,.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; justify-content: center;
  gap: 3vw;
}

.hero-kicker {
  display: flex; align-items: center; gap: .75rem;
  opacity: 0; animation: fadeUp .7s 1s var(--ease) forwards;
}

.hero-kicker-line {
  width: 32px; height: 1px; background: var(--gold);
}

.hero-kicker span {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-size: clamp(3rem, 8.5vw, 8.5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
}

.hero-line {
  display: block;
  opacity: 0; transform: translateY(60px);
}
.hero-line:nth-child(1) { animation: lineUp .85s 1.1s var(--ease) forwards; }
.hero-line:nth-child(2) { animation: lineUp .85s 1.25s var(--ease) forwards; }
.hero-line.ghost {
  color: var(--gold);
  animation: lineUp .85s 1.4s var(--ease) forwards;
}

@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  opacity: 0; animation: fadeUp .8s 1.65s var(--ease) forwards;
}

.hero-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  max-width: 400px;
}

.hero-ctas { display: flex; flex-direction: column; align-items: flex-end; gap: .85rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; text-decoration: none;
  padding: .85rem 1.7rem;
  border-radius: var(--r);
  transition: background .2s, transform .2s, box-shadow .2s, color .2s;
}

.btn-light {
  background: var(--white); color: var(--text);
}
.btn-light:hover { background: var(--off); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.12); }

.btn-dark {
  background: var(--text); color: var(--white);
}
.btn-dark:hover { background: #333; transform: translateY(-2px); }

.btn-ghost-light {
  color: rgba(255,255,255,.4);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 0 0 .2rem;
  border-radius: 0;
  font-size: .72rem;
  letter-spacing: .08em;
}
.btn-ghost-light:hover { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.35); }

/* Stats strip in hero */
.hero-stats {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  margin-top: 4vw;
  opacity: 0; animation: fadeUp .8s 1.9s var(--ease) forwards;
}

.stat-item {
  padding: 0 1.5rem;
  border-left: 1px solid rgba(255,255,255,.07);
}
.stat-item:first-child { border: none; padding-left: 0; }

.stat-val {
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--white);
  line-height: 1.1;
}

.stat-val .unit { font-size: .5em; opacity: .6; font-weight: 600; }

.stat-key {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: .3rem;
}

@media (max-width: 860px) {
  .hero-body { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas { align-items: flex-start; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .stat-item { padding: 0 .75rem; border-left: 1px solid rgba(255,255,255,.07); }
  .stat-item:first-child { padding-left: 0; }
}

@media (max-width: 520px) {
  .hero-stats { grid-template-columns: repeat(2,1fr); }
}

/* ─────────────── TICKER ─────────────── */
.ticker {
  background: var(--gold);
  padding: .7rem 0;
  overflow: hidden; white-space: nowrap;
}
.ticker-track { display: inline-flex; animation: tick 20s linear infinite; }
.ticker-item {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(0,0,0,.55); padding: 0 2rem;
}
.ticker-sep { color: rgba(0,0,0,.3); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────── SECTIONS ─────────────── */
.section { padding: 7vw 5%; }
.section--alt { background: var(--surface); }

.inner { max-width: var(--max); margin: 0 auto; }

.label {
  display: block;
  font-size: .6rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}

.h2 {
  font-size: clamp(1.7rem, 4vw, 3.8rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.0;
}

.muted { color: var(--muted); line-height: 1.75; }

/* ─────────────── USP STRIP ─────────────── */
.usp-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 5rem;
}

.usp-item {
  padding: 2.5rem;
  background: var(--off);
  border-left: 1px solid var(--border);
  transition: background .3s;
  position: relative;
}
.usp-item:first-child { border-left: none; }
.usp-item:hover { background: var(--white); }

.usp-num {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
}

.usp-item h3 {
  font-size: 1.05rem; font-weight: 800;
  letter-spacing: -.02em; margin-bottom: .6rem; line-height: 1.2;
}

.usp-item p {
  font-size: .82rem; color: var(--muted); line-height: 1.7;
}

@media (max-width: 768px) { .usp-strip { grid-template-columns: 1fr; } }

/* ─────────────── CAPACITY ─────────────── */
.capacity-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4rem;
}

.cap-panel {
  background: var(--off);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.cap-panel:hover { background: var(--white); }

.cap-panel::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width .5s var(--ease);
}
.cap-panel:hover::after { width: 100%; }

.cap-badge {
  display: inline-block;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  background: var(--text); color: var(--white);
  padding: .28rem .7rem; margin-bottom: 1.5rem;
  border-radius: var(--r);
}

.cap-panel h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 900; letter-spacing: -.04em;
  line-height: 1.1; margin-bottom: .4rem;
}

.cap-focus {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2rem;
}

.spec-rows { margin-bottom: 2rem; }

.spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; padding: .52rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .8rem;
}
.spec-row span { color: var(--muted); }
.spec-row strong { font-weight: 600; }
.spec-row strong.hi { color: var(--gold); }

.cap-tags { display: flex; flex-wrap: wrap; gap: .45rem; }

.cap-tag {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .7rem;
  border: 1px solid var(--border); color: var(--muted);
  border-radius: 100px;
  transition: border-color .2s, color .2s;
}
.cap-panel:hover .cap-tag { border-color: var(--gold); color: var(--text); }

@media (max-width: 768px) { .capacity-wrap { grid-template-columns: 1fr; } }

/* ─────────────── MATERIALS ─────────────── */
.mat-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden; margin-top: 4rem;
}

.mat-card { background: var(--off); padding: 2.6rem; transition: background .3s; }
.mat-card:hover { background: var(--white); }

.mat-abbr {
  font-size: 3rem; font-weight: 900; letter-spacing: -.04em;
  color: var(--border); line-height: 1; margin-bottom: 1.2rem;
  transition: color .3s;
}
.mat-card:hover .mat-abbr { color: var(--gold); }

.mat-name { font-size: 1rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .2rem; }
.mat-role { font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }

.mat-list { list-style: none; margin-bottom: 1.8rem; }
.mat-list li {
  font-size: .8rem; color: var(--muted);
  padding: .42rem 0; border-bottom: 1px solid var(--border);
  display: flex; gap: .55rem;
}
.mat-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

.mat-price { font-size: 1.9rem; font-weight: 900; letter-spacing: -.04em; }
.mat-price span { font-size: .72rem; font-weight: 500; color: var(--muted); margin-left: .1rem; }

@media (max-width: 768px) { .mat-grid { grid-template-columns: 1fr; } }

/* ─────────────── PROCESS ─────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; margin-top: 4rem;
}

.p-step {
  padding: 2.4rem; background: var(--off);
  border-left: 1px solid var(--border); transition: background .3s;
}
.p-step:first-child { border-left: none; }
.p-step:hover { background: var(--white); }

.p-step-n {
  font-size: 2.8rem; font-weight: 900; letter-spacing: -.05em;
  color: var(--border); line-height: 1; margin-bottom: 1.1rem;
  transition: color .3s;
}
.p-step:hover .p-step-n { color: var(--gold); }

.p-step h3 { font-size: .92rem; font-weight: 700; margin-bottom: .55rem; }
.p-step p  { font-size: .8rem; color: var(--muted); line-height: 1.65; }

@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .p-step:nth-child(3) { border-left: none; }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
  .p-step { border-left: none !important; border-top: 1px solid var(--border); }
  .p-step:first-child { border-top: none; }
}

/* ─────────────── TARGETS ─────────────── */
.targets-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden; margin-top: 4rem;
}

.t-card { background: var(--off); padding: 2.6rem; transition: background .3s; }
.t-card:hover { background: var(--white); }

.t-n {
  font-size: 3.5rem; font-weight: 900; letter-spacing: -.05em;
  color: var(--border); line-height: 1; margin-bottom: 1rem;
  transition: color .3s;
}
.t-card:hover .t-n { color: rgba(184,149,46,.2); }

.t-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .45rem; }
.t-card p  { font-size: .82rem; color: var(--muted); margin-bottom: 1.1rem; line-height: 1.65; }

.t-examples { list-style: none; }
.t-examples li {
  font-size: .76rem; color: var(--muted);
  padding: .28rem 0; display: flex; gap: .5rem;
}
.t-examples li::before { content: '→'; color: var(--gold); flex-shrink: 0; }

@media (max-width: 768px) { .targets-grid { grid-template-columns: 1fr; } }

/* ─────────────── FAQ ─────────────── */
.faq-list { margin-top: 4rem; max-width: 800px; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 1.4rem 0;
  font-size: .9rem; font-weight: 600; color: var(--text);
  font-family: inherit; letter-spacing: -.01em;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }

.faq-ico {
  width: 22px; height: 22px; flex-shrink: 0; position: relative;
}
.faq-ico::before, .faq-ico::after {
  content: ''; position: absolute;
  background: currentColor; border-radius: 1px;
  transition: transform .3s var(--ease), opacity .3s;
}
.faq-ico::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-ico::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.open .faq-ico::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0; overflow: hidden;
  font-size: .85rem; color: var(--muted); line-height: 1.75;
  transition: max-height .4s var(--ease), padding .3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.4rem; }

/* ─────────────── CTA SECTION ─────────────── */
.cta-section {
  background: var(--text); padding: 8vw 5%;
}

.cta-inner { text-align: center; }
.cta-section .h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.45); font-size: .92rem; max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.65; }
.cta-fine {
  display: block; margin-top: 1.2rem;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.2);
}

/* ─────────────── FOOTER ─────────────── */
footer {
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 5rem 5% 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; font-weight: 900;
  color: var(--white); margin-bottom: .8rem;
  letter-spacing: -.02em;
}
.footer-brand img {
  height: 28px; width: auto; display: block; flex-shrink: 0;
}
.footer-brand-text { line-height: 1; }
.footer-brand-text span { color: var(--gold); }

.footer-desc { font-size: .8rem; color: rgba(255,255,255,.3); line-height: 1.75; max-width: 230px; }
.footer-materials { font-size: .75rem; color: rgba(255,255,255,.2); margin-top: 4px; letter-spacing: .03em; }

.f-col h4 {
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 1.2rem;
}
.f-col ul { list-style: none; }
.f-col li { margin-bottom: .5rem; }
.f-col a {
  font-size: .8rem; color: rgba(255,255,255,.4);
  text-decoration: none; transition: color .2s;
}
.f-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: .7rem; color: rgba(255,255,255,.2);
}

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 520px)  { .footer-grid { grid-template-columns: 1fr; } }

/* ─────────────── SCROLL REVEAL ─────────────── */
.reveal { opacity: 0; transform: translateY(28px); }

/* ─────────────── SUBPAGES ─────────────── */
.subpage { padding-top: 66px; min-height: 100vh; background: var(--off); }

.subpage-hero {
  background: var(--text); padding: 5rem 5% 4rem;
}
.subpage-hero .back {
  display: inline-flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.35); text-decoration: none;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 2rem; transition: color .2s;
}
.subpage-hero .back:hover { color: rgba(255,255,255,.7); }
.subpage-hero h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900; letter-spacing: -.04em; color: var(--white); line-height: 1;
}

.subpage-body {
  max-width: 720px; margin: 0 auto; padding: 5rem 5%;
}
.subpage-body h2 {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text);
  margin-top: 2.5rem; margin-bottom: .65rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.subpage-body h2:first-child { margin-top: 0; }
.subpage-body p {
  font-size: .86rem; color: var(--muted); line-height: 1.8; margin-bottom: .55rem;
}
.subpage-body a { color: var(--text); text-decoration: underline; text-decoration-color: var(--border); transition: text-decoration-color .2s; }
.subpage-body a:hover { text-decoration-color: var(--text); }
.subpage-body strong { color: var(--text); font-weight: 600; }

.info-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 4px; padding: 1.75rem; margin: 1.5rem 0;
}
.info-block p { margin-bottom: .3rem; }
.info-block p:last-child { margin-bottom: 0; }

/* ── IMAGE BREAKS ── */
.img-break {
  position: relative;
  overflow: hidden;
  max-height: 520px;
  background: var(--text);
}

.img-break img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.85);
  transition: transform .8s var(--ease), filter .8s;
}

.img-break:hover img {
  transform: scale(1.02);
  filter: brightness(.95);
}

.img-caption {
  position: absolute;
  bottom: 2rem; left: 5%;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.img-break--light img { filter: brightness(.9); }
.img-caption--dark { color: rgba(255,255,255,.5); }

/* Half+text layout */
.img-break--half {
  max-height: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--text);
  align-items: stretch;
}

.img-break--half img {
  height: 100%;
  min-height: 440px;
  max-height: none;
}

.img-break-text {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.img-break-img {
  overflow: hidden;
}

@media (max-width: 768px) {
  .img-break--half { grid-template-columns: 1fr; }
  .img-break-text { padding: 3rem 5%; }
  .img-break img, .img-break--half img { height: 300px; min-height: 300px; }
}

/* ── 4-COLUMN MATERIALS ── */
.mat-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) { .mat-grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px)  { .mat-grid--4 { grid-template-columns: 1fr; } }

.mat-card--new { position: relative; }

.mat-new-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: .58rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--gold); color: var(--white);
  padding: .22rem .6rem;
  border-radius: 2px;
}

.mat-cta {
  display: inline-flex;
  align-items: center;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: .2rem;
  transition: color .2s, border-color .2s;
  margin-top: .5rem;
}
.mat-cta:hover { color: var(--gold); border-color: var(--gold); }

/* ── SPLIT HEADER HELPER ── */
.split-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .split-header { grid-template-columns: 1fr; gap: 1.5rem; }
}
/* Fix: Plugin-Loader initial versteckt */
/* (dieser Block ist für shop.3dprintpoint.de - wird im Child-Theme override.css gepflegt) */

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  display: flex !important;
  flex-direction: column !important;
  padding: 2.8rem !important;
  border-radius: 16px !important;
  border: 1px solid var(--border) !important;
  border-top: 3px solid var(--service-accent) !important;
  background: linear-gradient(135deg, var(--bg), var(--bg) 50%, rgba(184,149,46,.05)) !important;
  text-decoration: none !important;
  color: inherit !important;
  transition: all .35s var(--ease) !important;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.service-card:visited { color: inherit !important; }

.service-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(184,149,46,.2), transparent);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--gold) !important;
  background: linear-gradient(135deg, var(--bg), var(--bg) 50%, rgba(184,149,46,.08)) !important;
  transform: translateY(-4px) !important;
}

.service-card:hover::before { opacity: 1; }

.service-badge {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service-badge::after {
  content: ;
  flex: 1;
  height: 1px;
  background: var(--gold-lt);
}

.service-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--text) !important;
}

.service-desc {
  font-size: .95rem;
  color: var(--text2) !important;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.feature {
  font-size: .82rem;
  color: var(--text2) !important;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.feature::before {
  content: '✦';
  color: var(--gold);
  font-size: .5rem;
}

.service-cta {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--gold) !important;
  margin-top: auto;
  transition: all .2s var(--ease);
}

.service-card:hover .service-cta {
  color: var(--gold) !important;
  transform: translateX(4px);
}

/* Service badge color variations */
.service-card--01 { --service-accent: #b8952e; }
.service-card--02 { --service-accent: #a78226; }
.service-card--03 { --service-accent: #9a6e22; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-card { padding: 1.8rem !important; }
  .service-title { font-size: 1.4rem; }
}.service-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(184,149,46,.2), transparent);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg), var(--bg) 50%, rgba(184,149,46,.08));
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-badge {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

.service-desc {
  font-size: .95rem;
  color: var(--text2);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.feature {
  font-size: .82rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: .6rem;
}

.feature::before {
  content: '✦';
  color: var(--gold);
  font-size: .5rem;
}

.service-cta {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--gold);
  margin-top: auto;
  transition: all .2s var(--ease);
}

.service-card:hover .service-cta {
  color: var(--gold);
  transform: translateX(4px);
}

/* Service badge color variations */
.service-card--01 { --service-accent: #b8952e; }
.service-card--02 { --service-accent: #a78226; }
.service-card--03 { --service-accent: #9a6e22; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-card { padding: 1.8rem; }
  .service-title { font-size: 1.4rem; }
}

/* ════════════════════════════════════════════════════════════
   BFSG/WCAG AA Contrast + Landmark Fixes (23.04.2026)
   ════════════════════════════════════════════════════════════ */

/* Skip-Link */
.a11y-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  background: var(--text);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 6px 0;
}
.a11y-skip-link:focus,
.a11y-skip-link:focus-visible {
  left: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Sichtbarer Fokus auf allen interaktiven Elementen */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold) !important;
  outline-offset: 2px !important;
}

/* Label-Text auf hellem BG: Gold ist zu hell — darken für AA */
.label { color: #8a6e1f !important; }

/* Footer + CTA: Weiss-Alphas waren zu niedrig für AA */
.cta-section p        { color: rgba(255,255,255,.72) !important; }
.cta-fine             { color: rgba(255,255,255,.62) !important; }
.footer-desc          { color: rgba(255,255,255,.72) !important; }
.footer-materials     { color: rgba(255,255,255,.62) !important; }
.f-col h4             { color: rgba(255,255,255,.62) !important; }
.f-col a              { color: rgba(255,255,255,.78) !important; }
.f-col a:hover        { color: var(--white) !important; text-decoration: underline; }
.footer-bottom        { color: rgba(255,255,255,.62) !important; }

/* Loader-Texte, falls sichtbar */
#loaderPct,
.loader-sub { color: rgba(255,255,255,.75) !important; }

/* Ticker-Bar */
.ticker-item { color: rgba(255,255,255,.78) !important; }
