/* =============================================================================
 * PALETTEN SCHWEIZ — Verkauf & Ankauf (warm, industriell, vertrauensvoll)
 * Identität: Sand/Off-White, warmes Holz-Amber + Recycling-Grün (Ankauf/Eco),
 * robuste Geometrie. Kein Framework — Vanilla CSS + Custom Properties.
 * Diese Datei ist identisch in /website (Verkauf) und /website-kauf (Ankauf).
 * ========================================================================== */

:root {
  --bg:          #faf8f4;
  --bg-soft:     #f1ece3;
  --bg-card:     #ffffff;
  --bg-ink:      #211b14;   /* dunkle Sektionen / Footer */
  --bg-ink-soft: #2e2619;
  --line:        #e6ddcf;
  --line-ink:    #3a3022;
  --ink:         #221d16;   /* Headlines */
  --fg:          #4a4035;   /* Fliesstext */
  --fg-soft:     #6a5d4c;
  --muted:       #998a73;
  --on-ink:      #f1e9da;
  --on-ink-soft: #b9ab93;
  --accent:      #c8761e;   /* Holz-Amber */
  --accent-hi:   #e08a2b;
  --accent-dk:   #a85e12;
  --accent-soft: rgba(200, 118, 30, 0.12);
  --eco:         #2f7d4f;   /* Recycling-Grün (Ankauf) */
  --eco-hi:      #38935d;
  --eco-soft:    rgba(47, 125, 79, 0.12);
  --shadow-sm:   0 2px 10px -4px rgba(34, 24, 12, 0.18);
  --shadow:      0 18px 50px -22px rgba(34, 24, 12, 0.28);
  --shadow-lg:   0 40px 90px -40px rgba(34, 24, 12, 0.42);
  --radius:      12px;
  --radius-lg:   22px;
  --radius-pill: 999px;
  --maxw:        1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 17px; line-height: 1.65; color: var(--fg); background: var(--bg);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #fff; }
img { max-width: 100%; display: block; }

/* ─── Typografie ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, .display {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 0.5em; color: var(--ink);
}
h1 { font-size: clamp(38px, 6vw, 72px); }
h2 { font-size: clamp(28px, 3.6vw, 47px); }
h3 { font-size: clamp(20px, 2.2vw, 27px); }
h4 { font-size: 18px; }
p  { margin: 0 0 1em; color: var(--fg); }

.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.eyebrow--eco { color: var(--eco); }
.eyebrow--eco::before { background: var(--eco); }

.lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.6; color: var(--fg-soft); max-width: 60ch; }
a { color: var(--accent-dk); text-decoration: none; transition: color 160ms ease; }
a:hover { color: var(--accent); }

/* ─── Layout ────────────────────────────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--bg-ink); color: var(--on-ink); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink p { color: var(--on-ink-soft); }
.section--tight { padding: clamp(44px, 6vw, 72px) 0; }
.center { text-align: center; }
.section__head { max-width: 720px; margin: 0 0 clamp(40px, 5vw, 64px); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head .eyebrow { margin-bottom: 18px; }
.section__head h2 { margin-bottom: 16px; }

/* ─── Navigation ────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100; padding: 16px 0;
  background: rgba(250, 248, 244, 0.82);
  backdrop-filter: blur(14px) saturate(150%); -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid transparent; transition: border-color 220ms ease, background 220ms ease, padding 220ms ease;
}
.nav.is-scrolled { background: rgba(250, 248, 244, 0.95); border-bottom-color: var(--line); padding: 11px 0; box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.nav__brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; }
.nav__brand:hover { color: inherit; }
.nav__logo {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%);
  display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px -8px rgba(200, 118, 30, 0.7);
}
.nav__logo svg { width: 22px; height: 22px; color: #fff; }
.nav__logo--eco { background: linear-gradient(135deg, var(--eco) 0%, #245f3c 100%); box-shadow: 0 8px 20px -8px rgba(47, 125, 79, 0.7); }
.nav__brand-text { display: inline-flex; flex-direction: column; line-height: 1; }
.nav__brand-text strong { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -0.01em; color: var(--ink); }
.nav__brand-text span { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.nav__links { display: flex; gap: 30px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--fg); font-size: 15px; font-weight: 500; position: relative; }
.nav__links a::after { content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 2px; background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 200ms ease; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__cta { color: #fff !important; }
.nav__burger { display: none; width: 42px; height: 42px; background: transparent; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); cursor: pointer; align-items: center; justify-content: center; }
.nav__burger svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; align-items: stretch; background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 12px 24px 22px; box-shadow: var(--shadow); }
  .nav__links.is-open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__links .btn { margin-top: 14px; justify-content: center; }
  .nav__burger { display: inline-flex; }
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: var(--radius-pill); border: 1.5px solid var(--accent);
  background: var(--accent); color: #fff; cursor: pointer; white-space: nowrap;
  transition: transform 200ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.btn:hover { background: var(--accent-dk); border-color: var(--accent-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(200, 118, 30, 0.55); }
.btn svg { width: 18px; height: 18px; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--bg-soft); color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn--eco { background: var(--eco); border-color: var(--eco); }
.btn--eco:hover { background: #265f3c; border-color: #265f3c; box-shadow: 0 14px 30px -12px rgba(47, 125, 79, 0.55); }
.btn--on-ink { background: #fff; color: var(--ink); border-color: #fff; }
.btn--on-ink:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--ghost-ink { background: transparent; color: #fff; border-color: var(--line-ink); }
.btn--ghost-ink:hover { background: var(--bg-ink-soft); color: #fff; border-color: var(--on-ink-soft); box-shadow: none; }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--block { width: 100%; }
.btn-row { display: inline-flex; gap: 14px; flex-wrap: wrap; }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: clamp(48px, 7vw, 92px) 0 clamp(60px, 8vw, 108px); overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: radial-gradient(820px 520px at 88% -8%, var(--accent-soft), transparent 62%), radial-gradient(640px 460px at -6% 10%, var(--eco-soft), transparent 60%); }
.hero__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; } }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--fg); background: var(--bg-card); border: 1px solid var(--line); padding: 7px 15px 7px 11px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.hero__badge b { color: var(--ink); }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--eco); box-shadow: 0 0 0 4px var(--eco-soft); }
.hero h1 { margin: 0 0 22px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--fg-soft); max-width: 54ch; margin-bottom: 30px; }
.hero__meta { display: flex; gap: 30px; margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero__meta-item { min-width: 120px; }
.hero__meta-item dt { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.hero__meta-item dd { margin: 0; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 18px; color: var(--ink); }

/* Hero-Visual: gestapelte Paletten (CSS) */
.hero__art { position: relative; aspect-ratio: 5 / 5; border-radius: var(--radius-lg); background: linear-gradient(160deg, #f6efe3 0%, #e7dcc8 100%); overflow: hidden; box-shadow: var(--shadow-lg); isolation: isolate; display: flex; align-items: flex-end; justify-content: center; padding: 0 0 8%; }
.hero__art::before { content: ''; position: absolute; inset: 0; background: radial-gradient(420px 320px at 72% 22%, var(--accent-soft), transparent 62%); }
.hero__stack { position: relative; width: 64%; z-index: 1; }
.hero__pallet { height: 30px; border-radius: 5px; background: repeating-linear-gradient(90deg, #b9844a 0 18%, #a06f38 18% 20%); border: 1px solid #8a5e2e; box-shadow: 0 8px 16px -8px rgba(34, 24, 12, 0.4); margin-bottom: 9px; position: relative; }
.hero__pallet::after { content: ''; position: absolute; left: 8%; right: 8%; bottom: -6px; height: 6px; background: linear-gradient(90deg, #9c6a34, #7d521f); border-radius: 0 0 4px 4px; }
.hero__chip { position: absolute; z-index: 2; background: rgba(255, 255, 255, 0.95); border-radius: var(--radius-pill); padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--ink); box-shadow: 0 10px 26px -12px rgba(34, 24, 12, 0.4); display: inline-flex; align-items: center; gap: 8px; }
.hero__chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero__chip--eco .dot { background: var(--eco); }
.hero__chip--1 { top: 26px; left: 26px; }
.hero__chip--2 { top: 86px; right: 26px; }

/* ─── Trust strip ───────────────────────────────────────────────────────── */
.trust { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 5vw, 60px); flex-wrap: wrap; }
.trust__item { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--fg-soft); }
.trust__item svg { width: 20px; height: 20px; color: var(--accent); }

/* ─── Cards (Features / Vorteile) ───────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 36px); transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon { width: 54px; height: 54px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-dk); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.card__icon--eco { background: var(--eco-soft); color: var(--eco); }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--fg-soft); margin-bottom: 0; font-size: 15.5px; }
.card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-weight: 600; font-size: 15px; }
.card__link svg { width: 16px; height: 16px; transition: transform 180ms ease; }
.card:hover .card__link svg { transform: translateX(4px); }

/* ─── Palettentypen (Produktkarten) ─────────────────────────────────────── */
.ptypes { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.ptype { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
.ptype:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.ptype__art { aspect-ratio: 16 / 10; position: relative; background: linear-gradient(160deg, #efe6d5, #e1d3ba); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 14px; overflow: hidden; }
.ptype__art .pal { width: 70%; }
.ptype__art .pal-row { height: 16px; border-radius: 3px; background: repeating-linear-gradient(90deg, #b9844a 0 18%, #a06f38 18% 20%); border: 1px solid #8a5e2e; margin-bottom: 6px; box-shadow: 0 4px 8px -5px rgba(34,24,12,.4); }
.ptype__tag { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 5px 11px; border-radius: var(--radius-pill); }
.ptype__tag--new { background: var(--eco); }
.ptype__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.ptype__name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; color: var(--ink); margin: 0 0 6px; }
.ptype__desc { font-size: 14.5px; color: var(--fg-soft); margin: 0 0 16px; }
.ptype__specs { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 7px; }
.ptype__specs li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--fg); }
.ptype__specs svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.ptype__foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ptype__price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; color: var(--ink); }
.ptype__price small { display: block; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.ptype__btn { flex-shrink: 0; padding: 10px 18px; font-size: 14px; }

/* ─── Preis-/Ankaufstabelle ─────────────────────────────────────────────── */
.ptable { width: 100%; border-collapse: collapse; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.ptable thead th { background: var(--bg-ink); color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px; text-align: left; padding: 16px 20px; }
.ptable tbody td { padding: 15px 20px; border-top: 1px solid var(--line); font-size: 15px; }
.ptable tbody tr:hover { background: var(--bg-soft); }
.ptable .pt-name { font-weight: 600; color: var(--ink); }
.ptable .pt-price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--eco); white-space: nowrap; }
.ptable .pt-cond { color: var(--fg-soft); font-size: 14px; }
@media (max-width: 640px) {
  .ptable, .ptable thead, .ptable tbody, .ptable tr, .ptable td { display: block; }
  .ptable thead { display: none; }
  .ptable tbody tr { border-top: 1px solid var(--line); padding: 8px 0; }
  .ptable tbody td { border: none; padding: 5px 20px; }
  .ptable .pt-name { font-size: 17px; padding-top: 14px; }
  .ptable .pt-price { font-size: 18px; padding-bottom: 14px; }
}

/* ─── Steps ─────────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step { padding-top: 14px; }
.step__num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--bg-ink); color: #fff; margin-bottom: 20px; }
.step--eco .step__num { background: var(--eco); }
.section--ink .step__num { background: var(--accent); }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--fg-soft); margin: 0; }
.section--ink .step p { color: var(--on-ink-soft); }

/* ─── KPI ───────────────────────────────────────────────────────────────── */
.kpi { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-ink); }
.kpi__cell { padding: 34px 26px; text-align: center; border-right: 1px solid var(--line-ink); }
.kpi__cell:last-child { border-right: none; }
.kpi__num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(36px, 4vw, 50px); color: #fff; line-height: 1; margin-bottom: 8px; }
.kpi__num em { font-style: normal; color: var(--accent); }
.kpi__label { font-size: 13px; letter-spacing: 0.04em; color: var(--on-ink-soft); }
@media (max-width: 640px) { .kpi__cell { border-right: none; border-bottom: 1px solid var(--line-ink); } .kpi__cell:last-child { border-bottom: none; } }

/* ─── Split ─────────────────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split__media { aspect-ratio: 4 / 3.2; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(160deg, #efe6d5, #ddccb0); position: relative; box-shadow: var(--shadow); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 10%; }
.split__media::after { content: ''; position: absolute; inset: 0; background: radial-gradient(380px 280px at 70% 26%, var(--accent-soft), transparent 62%); }
.split__media .hero__stack { width: 56%; }
.split__media-tag { position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 2; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 21px; color: var(--ink); line-height: 1.25; }
.split__media-tag small { display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-dk); margin-bottom: 8px; }

.checklist { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 13px; font-size: 16px; color: var(--fg); }
.checklist li svg { width: 22px; height: 22px; color: var(--eco); flex-shrink: 0; margin-top: 2px; }
.checklist li strong { color: var(--ink); }

/* ─── CTA band ──────────────────────────────────────────────────────────── */
.cta { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%); padding: clamp(40px, 6vw, 72px); text-align: center; color: #fff; box-shadow: var(--shadow); }
.cta--eco { background: linear-gradient(135deg, var(--eco) 0%, #245f3c 100%); }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% -20%, rgba(255,255,255,0.22), transparent 60%); }
.cta > * { position: relative; }
.cta h2 { color: #fff; margin-bottom: 14px; }
.cta p { color: rgba(255, 255, 255, 0.92); max-width: 56ch; margin: 0 auto 30px; }

/* ─── Forms ─────────────────────────────────────────────────────────────── */
.form-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea { font-family: inherit; font-size: 15.5px; color: var(--ink); background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 15px; transition: border-color 160ms ease, background 160ms ease; width: 100%; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--bg-card); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }
.form-feedback { margin-top: 18px; border-radius: 10px; padding: 14px 16px; font-size: 14.5px; display: none; }
.form-feedback.is-ok { display: block; background: var(--eco-soft); border: 1px solid rgba(47, 125, 79, 0.4); color: #1f6b3f; }
.form-feedback.is-err { display: block; background: rgba(180, 50, 30, 0.08); border: 1px solid rgba(180, 50, 30, 0.4); color: #9a3115; }

.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: 1.5px solid var(--line); background: var(--bg-soft); color: var(--fg); padding: 11px 17px; border-radius: var(--radius-pill); font-size: 14.5px; font-weight: 500; transition: all 160ms ease; }
.choice label:hover { border-color: var(--accent); color: var(--ink); }
.choice input:checked + label { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ─── Contact info ──────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-block { border-left: 3px solid var(--accent); padding: 4px 0 4px 20px; margin-bottom: 28px; }
.info-block dt { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.info-block dd { margin: 0; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 20px; color: var(--ink); }
.info-block dd a { color: var(--ink); }
.info-block dd a:hover { color: var(--accent); }
.info-block dd span { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 15px; color: var(--fg-soft); }

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 17px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; transition: transform 240ms ease; }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 280ms ease; }
.faq__a p { padding: 0 22px 20px; margin: 0; color: var(--fg-soft); font-size: 15.5px; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.foot { background: var(--bg-ink); color: var(--on-ink); padding: clamp(56px, 7vw, 84px) 0 40px; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; }
@media (max-width: 860px) { .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .foot__grid { grid-template-columns: 1fr; } }
.foot__brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.foot__brand .nav__logo { width: 38px; height: 38px; }
.foot__brand strong { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 19px; color: #fff; }
.foot__about { color: var(--on-ink-soft); font-size: 15px; max-width: 38ch; }
.foot__col h4 { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-ink-soft); margin: 0 0 16px; }
.foot__col ul { list-style: none; margin: 0; padding: 0; }
.foot__col li { margin-bottom: 11px; }
.foot__col a { color: var(--on-ink); font-size: 15px; }
.foot__col a:hover { color: var(--accent-hi); }
.foot__col p { color: var(--on-ink-soft); font-size: 15px; margin: 0 0 11px; }
.foot__bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line-ink); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13.5px; color: var(--on-ink-soft); }
.foot__bottom a { color: var(--on-ink-soft); }
.foot__bottom a:hover { color: var(--accent-hi); }

/* ─── Page hero (Unterseiten) ───────────────────────────────────────────── */
.page-hero { padding: clamp(48px, 6vw, 84px) 0 clamp(28px, 4vw, 48px); background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 60px); margin-bottom: 16px; }
.page-hero p { max-width: 62ch; }

/* ─── Animations ────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ─── Utilities ─────────────────────────────────────────────────────────── */
.muted { color: var(--muted); }
.mb-0 { margin-bottom: 0; }
