/* =========================================================
   Freiluftwerk – Stylesheet
   Palette: warmes Holz + tiefes Waldgrün + Naturpapier
   ========================================================= */

:root {
  --ink: #17211c;
  --ink-2: #2c3a31;
  --forest: #274135;
  --forest-2: #345040;
  --wood: #b5763f;
  --wood-dark: #96602f;
  --amber: #d98a3d;
  --paper: #fbf8f3;
  --paper-2: #f4eee3;
  --card: #ffffff;
  --line: #e7ded0;
  --muted: #6b7267;
  --text: #23302a;
  --white: #ffffff;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow: 0 10px 40px -12px rgba(23, 33, 28, .18);
  --shadow-lg: 0 30px 70px -25px rgba(23, 33, 28, .35);
  --shadow-sm: 0 4px 18px -8px rgba(23, 33, 28, .22);

  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--ink); letter-spacing: -0.01em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--forest); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 700; font-size: 16px;
  padding: 13px 24px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--wood); color: #fff; box-shadow: 0 10px 24px -10px rgba(181,118,63,.7); }
.btn-primary:hover { background: var(--wood-dark); transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(181,118,63,.75); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--forest); border-color: var(--line); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-lg { padding: 16px 30px; font-size: 17px; }
.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 243, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 24px -16px rgba(23,33,28,.4); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--ink); }
.brand-mark { color: var(--wood); display: inline-flex; }
.brand-accent { color: var(--wood); }
.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a { font-weight: 600; font-size: 15.5px; color: var(--ink-2); position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--wood); transition: width .25s var(--ease); border-radius: 2px; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--forest); font-size: 15px; }
.phone-link:hover { color: var(--wood); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 74px 0 90px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1000px 500px at 85% -5%, rgba(217,138,61,.16), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(39,65,53,.10), transparent 55%),
    var(--paper);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 12.5px; font-weight: 800; color: var(--wood); margin-bottom: 18px; }
.eyebrow-light { color: var(--amber); }
.hero-copy h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 600; }
.hero-copy h1 .hl { color: var(--forest); font-style: italic; }
.lead { font-size: 1.18rem; color: var(--muted); margin: 24px 0 32px; max-width: 34ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; }
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--ink-2); }
.hero-badges svg { color: var(--forest); }

.hero-visual { position: relative; }
.hero-scene { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-rating {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; font-size: 14px;
}
.hero-rating .stars { color: #f2a63a; font-size: 18px; letter-spacing: 1px; }
.hero-rating strong { font-family: var(--font-display); font-size: 17px; }

/* ---------- Stats ---------- */
.stats { background: var(--forest); color: #fff; padding: 42px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600; color: #fff; line-height: 1; }
.stat-label { display: block; margin-top: 8px; color: rgba(255,255,255,.72); font-size: 14.5px; font-weight: 500; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-soft { background: var(--paper-2); }
.section-head { max-width: 660px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.section-sub { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }
.section-sub.light { color: rgba(255,255,255,.78); }
.section-sub em { color: var(--wood); font-style: italic; }

/* ---------- Cards / Leistungen ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #ddd0bb; }
.card-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(181,118,63,.16), rgba(217,138,61,.14)); color: var(--wood-dark);
  margin-bottom: 20px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.card-list { margin-top: 16px; display: grid; gap: 8px; }
.card-list li { position: relative; padding-left: 22px; font-size: .95rem; color: var(--ink-2); font-weight: 500; }
.card-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--wood); }

/* ---------- Material (dark) ---------- */
.section-dark { background: linear-gradient(160deg, var(--ink) 0%, var(--forest) 100%); color: #fff; }
.section-dark h2 { color: #fff; }
.material-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.material-list { margin: 26px 0 30px; display: grid; gap: 12px; }
.material-list li { display: flex; align-items: center; gap: 12px; font-size: 1.02rem; color: rgba(255,255,255,.9); }
.material-list span { color: var(--amber); font-weight: 800; }
.material-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 40px; position: relative; backdrop-filter: blur(4px); }
.quote-mark { font-family: var(--font-display); font-size: 90px; line-height: .5; color: var(--amber); height: 40px; }
.material-quote { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; line-height: 1.4; color: #fff; }
.material-sign { margin-top: 22px; color: rgba(255,255,255,.7); font-weight: 600; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.step-num { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--forest); color: #fff; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 16px; }
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ---------- USP ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.usp { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .3s var(--ease), box-shadow .3s; }
.usp:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.usp h3 { font-size: 1.18rem; margin-bottom: 8px; }
.usp p { color: var(--muted); font-size: .97rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shot {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; padding: 18px; color: #fff; font-weight: 600; font-size: .95rem;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease);
}
.shot::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(23,33,28,.72)); z-index: 1; }
.shot figcaption { position: relative; z-index: 2; }
.shot:hover { transform: scale(1.02); }
.shot[data-tone="a"] { background: linear-gradient(135deg, #c98a4e, #8f5a2c); }
.shot[data-tone="b"] { background: linear-gradient(135deg, #3d6b52, #274135); }
.shot[data-tone="c"] { background: linear-gradient(135deg, #b5763f, #6f4522); }
.shot[data-tone="d"] { background: linear-gradient(135deg, #6b7c74, #2c3a31); }
.shot[data-tone="e"] { background: linear-gradient(135deg, #d1a06a, #a9662f); }
.shot[data-tone="f"] { background: linear-gradient(135deg, #4f8367, #274135); }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.testi .stars { color: #f2a63a; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.testi p { font-size: 1.02rem; color: var(--text); }
.testi footer { margin-top: 18px; font-weight: 700; color: var(--forest); font-size: .95rem; }

/* ---------- Regions ---------- */
.regions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.region { padding: 30px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); }
.region h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--forest); }
.region p { color: var(--muted); font-size: .98rem; }

/* ---------- FAQ ---------- */
.faq-inner { max-width: 820px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--wood); transition: transform .3s var(--ease); font-family: var(--font-sans); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; }
.faq-a p { color: var(--muted); }

/* ---------- Contact ---------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-methods { display: grid; gap: 14px; margin-top: 30px; }
.contact-method { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 16px 18px; color: #fff; transition: background .2s, transform .2s; }
.contact-method:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.cm-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.cm-icon.wa { background: #25d366; color: #fff; }
.cm-icon.mail { background: rgba(217,138,61,.9); color: #fff; }
.cm-icon.phone { background: rgba(255,255,255,.14); color: #fff; }
.contact-method strong { font-family: var(--font-sans); }

.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: var(--font-sans); font-size: 15.5px; color: var(--text); background: var(--paper); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--wood); box-shadow: 0 0 0 3px rgba(181,118,63,.14); background: #fff; }
.field textarea { resize: vertical; }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--muted); margin: 6px 0 22px; line-height: 1.5; }
.check input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--wood); }
.check a { color: var(--wood); text-decoration: underline; }
.form-note { margin-top: 14px; font-size: 14px; font-weight: 600; text-align: center; min-height: 20px; }
.form-note.ok { color: var(--forest); }
.form-note.err { color: #c0492f; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0492f; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 66px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand .brand-accent, .footer-brand .brand-mark { color: var(--amber); }
.footer-brand p { font-size: .96rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col a, .footer-col .muted { display: block; padding: 6px 0; font-size: .96rem; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col a:hover { color: var(--amber); }
.footer-col .muted { color: rgba(255,255,255,.45); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .9rem; flex-wrap: wrap; gap: 14px; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--amber); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .25s var(--ease), box-shadow .25s;
  animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse { 0%,100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); } 50% { box-shadow: 0 12px 30px -4px rgba(37,211,102,.9); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   PHOTO HERO (overrides the earlier illustrative hero)
   ============================================================ */
.hero { position: relative; padding: 0; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero .hero-bg { display: none; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,22,18,.86) 0%, rgba(15,22,18,.62) 42%, rgba(15,22,18,.15) 100%),
    linear-gradient(0deg, rgba(15,22,18,.55) 0%, transparent 45%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 110px; display: block; }
.hero-copy { max-width: 620px; }
.hero .eyebrow { color: var(--amber); }
.hero-copy h1 { color: #fff; font-size: clamp(2.5rem, 5.4vw, 4.2rem); text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero-copy h1 .hl { color: #fff; font-style: italic; position: relative; }
.hero-copy h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .14em; background: var(--wood); border-radius: 3px; opacity: .95; }
.hero .lead { color: rgba(255,255,255,.9); max-width: 44ch; font-size: 1.2rem; }
.hero-badges li { color: #fff; }
.hero-badges svg { color: var(--amber); }
.btn-glass { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.hero-rating {
  position: absolute; z-index: 3; right: 28px; bottom: 28px; left: auto; transform: none;
  background: #fff; border-radius: 16px; padding: 13px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; font-size: 14px;
}
.hero-rating .stars { color: #f2a63a; font-size: 18px; letter-spacing: 1px; }
.hero-rating strong { font-family: var(--font-display); font-size: 17px; }

/* ---------- Material photo ---------- */
.material-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.material-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.material-photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 22px 16px; color: #fff; font-weight: 600; font-size: .95rem; background: linear-gradient(180deg, transparent, rgba(15,22,18,.8)); }

/* ---------- Gallery real images ---------- */
.shot { padding: 0; background: #ddd; }
.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .6s var(--ease); }
.shot:hover img { transform: scale(1.06); }
.shot figcaption { padding: 16px 18px; }

/* ============================================================
   KONFIGURATOR
   ============================================================ */
.cfg-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 34px; align-items: start; }
.cfg-controls { display: grid; gap: 18px; }
.cfg-field { border: 0; padding: 0; margin: 0; }
.cfg-field legend { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 14.5px; color: var(--ink); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; padding: 0; }
.cfg-field legend span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--forest); color: #fff; font-size: 13px; font-family: var(--font-sans); }

.seg { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 8px; background: #fff; padding: 6px; border-radius: 14px; border: 1px solid var(--line); }
.seg-3 { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 420px) { .seg, .seg-3 { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); } }
.seg-btn {
  font-family: var(--font-sans); font-weight: 700; font-size: 14.5px; color: var(--ink-2);
  background: transparent; border: 0; border-radius: 10px; padding: 12px 8px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 2px; transition: background .2s, color .2s, box-shadow .2s; line-height: 1.2;
}
.seg-btn small { font-weight: 600; font-size: 11px; color: var(--muted); }
.seg-btn:hover { background: var(--paper-2); }
.seg-btn.is-active { background: var(--forest); color: #fff; box-shadow: 0 6px 16px -8px rgba(39,65,53,.7); }
.seg-btn.is-active small { color: rgba(255,255,255,.75); }
.seg-btn.is-disabled { opacity: .38; pointer-events: none; }
.cfg-hint { font-size: 12.5px; line-height: 1.5; color: var(--muted); margin-top: 10px; padding-left: 2px; }
.seg-4 { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); }
.seg-prod { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 440px) { .seg-4, .seg-prod { grid-template-columns: repeat(2, 1fr); } }
.chk.is-hidden { display: none; }
.cfg-illu { width: 100%; height: 100%; }
.cfg-illu svg { width: 100%; height: 100%; display: block; }
/* 3D-Bühne */
.cfg-stage { position: relative; }
.cfg-3d { position: absolute; inset: 0; cursor: grab; }
.cfg-3d:active { cursor: grabbing; }
.cfg-3d canvas { display: block; width: 100% !important; height: 100% !important; }
.cfg-flat { position: absolute; inset: 0; }
.cfg-flat .cfg-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.cfg-3dhint { position: absolute; left: 12px; bottom: 12px; z-index: 3; background: rgba(23,33,28,.72); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 100px; pointer-events: none; backdrop-filter: blur(4px); }

.swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.swatch {
  position: relative; border: 1.5px solid var(--line); background: #fff; border-radius: 12px; padding: 12px 10px 10px;
  cursor: pointer; font-family: var(--font-sans); font-weight: 700; font-size: 13.5px; color: var(--ink);
  display: flex; flex-direction: column; align-items: center; gap: 3px; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.swatch::before { content: ""; width: 100%; height: 34px; border-radius: 8px; background: var(--sw); border: 1px solid rgba(0,0,0,.12); margin-bottom: 6px; }
.swatch small { font-weight: 600; font-size: 11px; color: var(--muted); }
.swatch:hover { transform: translateY(-2px); }
.swatch.is-active { border-color: var(--wood); box-shadow: 0 0 0 3px rgba(181,118,63,.18); }

.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.chk { display: flex; align-items: center; gap: 10px; background: #fff; border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--ink-2); transition: border-color .2s, background .2s; }
.chk input { width: 18px; height: 18px; accent-color: var(--wood); }
.chk:has(input:checked) { border-color: var(--wood); background: #fff7ef; color: var(--ink); }

.cfg-panel { position: sticky; top: 96px; display: grid; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; }
.cfg-stage { position: relative; aspect-ratio: 16 / 11; background: #e7e2d6; display: block; overflow: hidden; }
.cfg-stage svg { width: 100%; height: 100%; display: block; }
.cfg-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .3s var(--ease); }
.cfg-chips { position: absolute; left: 12px; right: 12px; bottom: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.cfg-chip { background: rgba(23,33,28,.72); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 100px; backdrop-filter: blur(5px); display: inline-flex; align-items: center; gap: 7px; line-height: 1.2; }
.cfg-chip .dot { width: 11px; height: 11px; border-radius: 50%; border: 1px solid rgba(255,255,255,.55); flex-shrink: 0; }
.cfg-chip-x { background: rgba(181,118,63,.9); }
.cfg-detail { padding: 24px 26px 26px; }
.cfg-spec { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 6px; }
.cfg-spec b { color: var(--ink); font-weight: 700; }
.cfg-h { font-family: var(--font-sans); font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--wood-dark); font-weight: 800; margin: 22px 0 12px; display: flex; align-items: baseline; gap: 8px; }
.cfg-h-note { font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: 11.5px; }
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi { background: var(--paper-2); border-radius: 12px; padding: 12px 12px; }
.kpi .v { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--ink); line-height: 1.15; }
.kpi .l { font-size: 11.5px; color: var(--muted); margin-top: 3px; font-weight: 600; }
.price-items { display: grid; gap: 8px; }
.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; font-size: 14px; }
.price-row .pl { color: var(--ink-2); }
.price-row .pd { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-3px); }
.price-row .pv { font-weight: 700; color: var(--ink); white-space: nowrap; }
.cfg-total { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-top: 14px; margin-top: 12px; border-top: 2px solid var(--line); }
.cfg-total span { font-weight: 700; color: var(--ink-2); }
.cfg-total strong { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--forest); }
.includes { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; }
.includes li { position: relative; padding-left: 22px; font-size: 13px; color: var(--ink-2); }
.includes li::before { content: "✓"; position: absolute; left: 0; color: var(--forest); font-weight: 800; }

/* ---------- Preisvergleich (Online vs. Verkaufspreis) ---------- */
.price-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 14px 0 4px; }
.pc-col { border: 1px solid var(--line); border-radius: 12px; padding: 14px 14px 12px; background: var(--paper-2); }
.pc-col--hi { border-color: var(--wood); background: #fff7ef; box-shadow: 0 8px 22px -14px rgba(181,118,63,.55); }
.pc-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-2); margin-bottom: 10px; }
.pc-col--hi .pc-title { color: var(--wood-dark); }
.pc-row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; font-size: 13px; color: var(--muted); padding: 3px 0; }
.pc-row i { font-style: normal; font-size: 11px; color: var(--wood); }
.pc-row b { color: var(--ink); font-weight: 700; white-space: nowrap; }
.pc-total { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--line); font-weight: 700; }
.pc-total b { font-family: var(--font-display); font-size: 1.15rem; color: var(--forest); }
.pc-col--hi .pc-total b { color: var(--wood-dark); }
.pc-marge { display: flex; justify-content: space-between; gap: 8px; margin-top: 6px; font-size: 12px; color: var(--forest); font-weight: 700; }
@media (max-width: 400px) { .price-compare { grid-template-columns: 1fr; } }
.cfg-note { font-size: 12px; color: var(--muted); margin: 16px 0 18px; }
.cfg-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.cfg-field.is-hidden { display: none; }
@media (max-width: 480px) { .cfg-actions { grid-template-columns: 1fr; } .includes { grid-template-columns: 1fr; } }

/* ---------- Featured Leistungs-Karte ---------- */
.card-featured { border-color: var(--wood); box-shadow: 0 18px 44px -22px rgba(181,118,63,.5); position: relative; }
.card-featured::before { content: "Beliebt"; position: absolute; top: 18px; right: 18px; background: var(--wood); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em; padding: 5px 11px; border-radius: 100px; text-transform: uppercase; }

/* ---------- Wintergarten-Arten ---------- */
.arten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.art-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column; }
.art-card--hi { border-color: var(--forest); box-shadow: var(--shadow); }
.art-badge { position: absolute; top: -12px; left: 26px; background: var(--forest); color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .04em; padding: 5px 13px; border-radius: 100px; text-transform: uppercase; }
.art-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.art-tag { font-size: 13px; font-weight: 700; color: var(--wood); margin-bottom: 16px; }
.art-card ul { display: grid; gap: 9px; margin-bottom: 18px; }
.art-card li { font-size: 14px; color: var(--muted); line-height: 1.45; padding-left: 16px; position: relative; }
.art-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--wood); }
.art-card li b { color: var(--ink); font-weight: 700; }
.art-price { margin-top: auto; font-size: 15px; color: var(--muted); }
.art-price b { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest); }
.art-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 26px; }

/* ---------- Responsive add-ons ---------- */
@media (max-width: 960px) { .arten-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
@media (max-width: 520px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .material-inner, .contact-inner, .cfg-grid { grid-template-columns: 1fr; gap: 40px; }
  .cfg-panel { position: static; }
  .hero { min-height: 78vh; }
  .cards, .usp-grid, .gallery, .testimonials, .regions { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.phone-link span { white-space: nowrap; }
@media (max-width: 960px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px 24px 24px; box-shadow: var(--shadow);
  }
  .site-header.nav-open .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .site-header.nav-open .header-cta { display: flex; position: absolute; top: 74px; left: 0; right: 0; margin-top: 200px; padding: 0 24px 24px; background: var(--paper); justify-content: center; }
  .section { padding: 66px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .cards, .usp-grid, .gallery, .testimonials, .regions, .steps, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 70px; }
  .hero-actions .btn { flex: 1; }
  .contact-form { padding: 24px; }
  .hero-rating { left: 50%; transform: translateX(-50%); bottom: -22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   SHOP
   ============================================================ */
.shop-hero { background: linear-gradient(160deg, var(--paper) 0%, var(--paper-2) 100%); padding: 130px 0 44px; text-align: center; }
.shop-hero h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); margin-bottom: 14px; }
.shop-lead { max-width: 60ch; margin: 0 auto; color: var(--muted); font-size: 1.1rem; }
.shop-badge { display: inline-block; margin-top: 20px; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 8px 18px; font-weight: 700; font-size: 14px; color: var(--forest); box-shadow: var(--shadow-sm); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip-btn { font-family: var(--font-sans); font-weight: 700; font-size: 14px; color: var(--ink-2); background: #fff; border: 1.5px solid var(--line); border-radius: 100px; padding: 9px 18px; cursor: pointer; transition: all .2s var(--ease); }
.chip-btn:hover { border-color: #ddd0bb; }
.chip-btn.is-active { background: var(--forest); color: #fff; border-color: var(--forest); }
.shop-count { color: var(--muted); font-size: 14px; font-weight: 600; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.shop-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.shop-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.shop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.shop-card:hover .shop-img img { transform: scale(1.05); }
.shop-tag { position: absolute; top: 12px; left: 12px; background: rgba(23,33,28,.82); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .03em; padding: 5px 11px; border-radius: 100px; backdrop-filter: blur(4px); }
.shop-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.shop-body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.shop-body p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.shop-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.shop-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--forest); }
.shop-note { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 34px; max-width: 70ch; margin-inline: auto; }
.shop-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.shop-cta h2 { color: #fff; }
@media (max-width: 960px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .shop-grid { grid-template-columns: 1fr; } .shop-hero { padding-top: 110px; } }

/* ---------- Konfigurator-Animationen ---------- */
@keyframes chipIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.cfg-chips .cfg-chip { animation: chipIn .34s var(--ease) both; }
.cfg-chips .cfg-chip:nth-child(2) { animation-delay: .05s; }
.cfg-chips .cfg-chip:nth-child(3) { animation-delay: .10s; }
.cfg-chips .cfg-chip:nth-child(4) { animation-delay: .15s; }
.price-row { transition: background .3s var(--ease); }
.price-items .price-row:hover { background: rgba(181,118,63,.06); border-radius: 6px; }
.cfg-total strong, .pc-total b, .pc-marge b { transition: color .3s var(--ease); }
.cfg-3dhint { animation: chipIn .5s var(--ease) both; animation-delay: .2s; }
@media (prefers-reduced-motion: reduce) { .cfg-chips .cfg-chip, .cfg-3dhint { animation: none; } }

/* ============================================================
   KONFIGURATOR NEU – Terrassendach-Rechner (ohne Bild/interne Kalkulation)
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.legend-opt { font-weight: 600; text-transform: none; letter-spacing: 0; font-size: 11px; color: var(--muted); background: var(--paper-2); padding: 2px 8px; border-radius: 100px; }
.swatches-2 { grid-template-columns: repeat(2, 1fr); }
.checks-stack { grid-template-columns: 1fr; }
.checks-stack .chk { align-items: flex-start; }
.chk span { display: flex; flex-direction: column; gap: 2px; }
.chk span small { font-weight: 600; font-size: 11.5px; color: var(--muted); }
.chk:has(input:checked) span small { color: var(--wood-dark); }

/* Ergebnis-Panel */
.cfg-panel--result .cfg-result-head {
  background: linear-gradient(150deg, var(--forest) 0%, var(--ink) 100%);
  color: #fff; padding: 20px 26px;
}
.cfg-panel--result .cfg-chips { position: static; left: auto; right: auto; bottom: auto; margin-bottom: 12px; }
.cfg-panel--result .cfg-spec { color: rgba(255,255,255,.82); margin-bottom: 0; }
.cfg-panel--result .cfg-spec b { color: #fff; }

.cfg-price-hero { background: #fff7ef; border: 1px solid var(--wood); border-radius: var(--radius-sm); padding: 18px 20px; text-align: center; margin-bottom: 6px; }
.cph-label { display: block; font-size: 13px; font-weight: 700; color: var(--wood-dark); }
#cfgPrice { display: block; font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--forest); line-height: 1.1; margin: 4px 0; transition: color .3s var(--ease); }
.cph-range { display: block; font-size: 12.5px; color: var(--muted); }

.cfg-cta-box { margin-top: 22px; background: var(--paper-2); border-radius: var(--radius-sm); padding: 18px 18px 20px; }
.cfg-cta-box p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin-bottom: 14px; }
.cfg-cta-box .cfg-actions { grid-template-columns: 1fr; gap: 10px; }

/* ============================================================
   WINTERGARTEN-PREISE
   ============================================================ */
.art-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 14px; color: var(--wood-dark); }
.art-link:hover { color: var(--forest); }
.art-price--ind b { color: var(--wood-dark); font-size: 1.25rem; }
.preise-info { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.pinfo { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; }
.pinfo h4 { font-size: 1.12rem; color: var(--forest); margin-bottom: 14px; }
.pinfo ul { display: grid; gap: 9px; }
.pinfo li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--ink-2); line-height: 1.45; }
.pinfo li::before { content: "→"; position: absolute; left: 0; color: var(--wood); font-weight: 800; }
.preise-cta { text-align: center; margin-top: 34px; padding: 34px 24px; background: linear-gradient(150deg, var(--forest) 0%, var(--ink) 100%); border-radius: var(--radius-lg); color: #fff; }
.preise-cta p { font-size: 1.2rem; max-width: 46ch; margin: 0 auto 20px; }
.preise-cta em { color: var(--amber); font-style: normal; font-weight: 700; }

/* ============================================================
   RATGEBER / LEAD MAGNET
   ============================================================ */
.ratgeber-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 26px; align-items: start; }
.lead-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 32px; box-shadow: var(--shadow-sm); }
.lead-card--primary { border-color: var(--wood); box-shadow: 0 18px 44px -22px rgba(181,118,63,.5); }
.lead-badge { display: inline-block; background: var(--wood); color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 5px 13px; border-radius: 100px; margin-bottom: 14px; }
.lead-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; background: var(--paper-2); color: var(--forest); margin-bottom: 16px; }
.lead-card h3 { font-size: 1.5rem; margin-bottom: 10px; line-height: 1.2; }
.lead-card > p { color: var(--muted); font-size: 1rem; line-height: 1.6; margin-bottom: 18px; }
.lead-list { display: grid; gap: 9px; margin-bottom: 22px; }
.lead-list li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--ink-2); line-height: 1.45; }
.lead-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--forest); font-weight: 800; }
.lead-form .field { margin-bottom: 12px; }
.lead-form input[type="email"] { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; font-family: inherit; font-size: 15px; }
.lead-form input[type="email"]:focus { outline: none; border-color: var(--wood); box-shadow: 0 0 0 3px rgba(181,118,63,.15); }
.lead-form .field.invalid input { border-color: #c0492f; }
.check-sm { font-size: 12.5px; margin: 12px 0 0; }
.check-sm.invalid span { color: #c0492f; }
.btn-outline { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.form-privacy { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }

/* Overflow-Schutz: Grid-Kinder duerfen schrumpfen, lange Buttons umbrechen */
.cfg-grid > *, .cfg-panel, .cfg-controls, .cfg-detail, .cfg-result-head { min-width: 0; }
.btn { white-space: normal; }

/* ============================================================
   CONVERSION / AIDA – Reassurance, Sticky Mobile-CTA, Secondary
   ============================================================ */
.hero-reassure { margin-top: 16px; font-size: 14px; font-weight: 600; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.5); opacity: .95; }
.preise-secondary { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 14.5px; color: #fff; text-decoration: underline; text-underline-offset: 3px; opacity: .9; }
.preise-secondary:hover { opacity: 1; }

.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px -14px rgba(23,33,28,.4); }
.mcta { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 50px; border-radius: 12px; font-weight: 800; font-size: 15.5px; text-decoration: none; }
.mcta-call { flex: 0 0 40%; background: var(--paper-2); color: var(--forest); border: 1.5px solid var(--line); }
.mcta-quote { background: var(--wood); color: #fff; box-shadow: 0 8px 20px -8px rgba(181,118,63,.7); }
.mcta-quote:active { transform: translateY(1px); }
@media (max-width: 760px) {
  .mobile-cta { display: flex; }
  .wa-float { bottom: 82px; }
  body { padding-bottom: 72px; }
}

/* ============================================================
   KOMPLETTE PREISÜBERSICHT (Preisliste)
   ============================================================ */
.pl-wrap { display: grid; gap: 12px; }
.pl-group { font-family: var(--font-display); font-size: 1.35rem; color: var(--forest); margin: 26px 0 4px; }
.pl-group:first-child { margin-top: 0; }
.pl-cat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.pl-cat > summary { cursor: pointer; list-style: none; padding: 16px 20px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px; font-weight: 700; color: var(--ink); transition: background .2s; }
.pl-cat > summary::-webkit-details-marker { display: none; }
.pl-cat > summary::after { content: "+"; margin-left: auto; font-size: 1.3rem; color: var(--wood); font-weight: 700; line-height: 1; }
.pl-cat[open] > summary::after { content: "–"; }
.pl-cat > summary:hover { background: var(--paper-2); }
.pl-cat-t { font-family: var(--font-sans); }
.pl-cat-s { font-weight: 600; font-size: 13px; color: var(--muted); }
.pl-cat-body { padding: 4px 20px 20px; }
.pl-note { font-size: 12.5px; color: var(--muted); margin-top: 10px; }

.ptable { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: 10px; }
.ptable table { border-collapse: collapse; width: 100%; font-size: 13.5px; min-width: max-content; }
.ptable th, .ptable td { padding: 9px 13px; text-align: right; white-space: nowrap; border-bottom: 1px solid var(--line); }
.ptable thead th { background: var(--forest); color: #fff; font-weight: 700; position: sticky; top: 0; text-align: right; }
.ptable thead th.corner { text-align: left; font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.8); }
.ptable tbody th[scope="row"] { text-align: left; background: var(--paper-2); color: var(--ink); font-weight: 700; position: sticky; left: 0; }
.ptable tbody tr:nth-child(even) td { background: #fbf8f2; }
.ptable tbody tr:hover td { background: rgba(181,118,63,.08); }
.ptable td { color: var(--ink); font-weight: 600; }
.ptable tbody tr:last-child th, .ptable tbody tr:last-child td { border-bottom: 0; }

/* klickbare Preiszellen */
.ptable td { cursor: pointer; }
.ptable td:hover { background: rgba(181,118,63,.16); color: var(--wood-dark); }
.pl-wrap::before { content: "💡 Tipp: Preis antippen – für Terrassendächer öffnet sich ein Detail-Kalkulator, andere Positionen landen direkt in Ihrer Anfrage."; display: block; background: #fff7ef; border: 1px solid var(--wood); color: var(--wood-dark); border-radius: 12px; padding: 12px 16px; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }

/* ---------- Detail-Kalkulator (Modal) ---------- */
.pmodal { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; padding: 18px; }
.pmodal[hidden] { display: none; }
.pmodal-backdrop { position: absolute; inset: 0; background: rgba(20,28,23,.6); backdrop-filter: blur(3px); }
.pmodal-card { position: relative; z-index: 1; width: min(520px, 100%); max-height: 92vh; overflow: auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 26px 26px 22px; animation: pmIn .28s var(--ease) both; }
@keyframes pmIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.pmodal-x { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: 0; background: var(--paper-2); border-radius: 50%; font-size: 22px; line-height: 1; color: var(--ink-2); cursor: pointer; }
.pmodal-x:hover { background: var(--line); }
.pmodal-eyebrow { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--wood-dark); }
.pmodal-card h3 { font-size: 1.35rem; margin: 4px 0 4px; line-height: 1.2; padding-right: 30px; }
.pmodal-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.pm-field { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.pm-l { font-weight: 800; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-2); }
.pm-seg { display: inline-flex; gap: 6px; background: var(--paper-2); padding: 4px; border-radius: 12px; }
.pm-seg button { border: 0; background: transparent; padding: 8px 14px; border-radius: 9px; font-weight: 700; font-size: 13.5px; color: var(--ink-2); cursor: pointer; }
.pm-seg button.is-active { background: var(--forest); color: #fff; }
.pm-extras { display: grid; gap: 8px; margin: 8px 0 4px; }
.pm-extras label { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--line); border-radius: 11px; padding: 11px 13px; font-weight: 600; font-size: 14px; color: var(--ink-2); cursor: pointer; }
.pm-extras label:has(input:checked) { border-color: var(--wood); background: #fff7ef; }
.pm-extras input { width: 18px; height: 18px; accent-color: var(--wood); flex-shrink: 0; }
.pm-extras b { margin-left: auto; color: var(--forest); font-weight: 800; white-space: nowrap; }
.pmodal-total { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 16px 0 14px; padding-top: 14px; border-top: 2px solid var(--line); }
.pmodal-total span { font-weight: 700; color: var(--ink-2); }
.pmodal-total strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--forest); }
.pmodal-note { font-size: 11.5px; color: var(--muted); margin-top: 12px; text-align: center; }
body.pm-open { overflow: hidden; }

@media (max-width: 860px) {
  .ratgeber-grid, .preise-info { grid-template-columns: 1fr; }
  .pl-cat-s { flex-basis: 100%; }
}
@media (max-width: 520px) {
  #cfgPrice { font-size: 2.2rem; }
  .lead-card { padding: 26px 22px; }
}

/* ============================================================
   ANFRAGE – Kategorie-Auswahl + Maße + Lead (Lead-Kern)
   ============================================================ */
.anfrage { max-width: 940px; margin: 0 auto; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 30px; }
.af-step { margin-top: 26px; }
.af-step:first-child { margin-top: 0; }
.af-step-h { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.af-n { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; background: var(--forest); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-weight: 800; font-size: 15px; }
.af-hint { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.opt { font-weight: 500; font-size: 12px; color: var(--muted); }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cat { position: relative; display: flex; flex-direction: column; padding: 0; border: 2px solid var(--line); border-radius: var(--radius-sm); background: var(--card); cursor: pointer; overflow: hidden; text-align: left; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease); }
.cat img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.cat span { padding: 11px 13px; font-weight: 700; font-size: 15px; color: var(--ink); }
.cat:hover { border-color: var(--wood); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cat.is-active { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(39,65,53,.14); }
.cat.is-active::after { content: "✓"; position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%; background: var(--forest); color: #fff; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }

.af-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 26px; align-items: start; }
.af-preview { margin: 0; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); }
.af-preview img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.af-preview figcaption { padding: 13px 15px; }
.af-preview figcaption strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); }
.af-preview figcaption span { display: block; margin-top: 3px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.af-measure { margin-top: 0; }

.af-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.af-actions .btn { flex: 1 1 220px; }

@media (max-width: 720px) {
  .anfrage { padding: 22px 18px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .af-cols { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .cat span { font-size: 14px; padding: 9px 11px; }
}

/* ---------- Ablauf: 3 Schritte ---------- */
.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .steps-3 { grid-template-columns: 1fr; } }

/* ---------- Galerie-Beschriftung ---------- */
.gallery figcaption .gt { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.rate { font-weight: 700; }
.gallery figcaption span { display: block; margin-top: 2px; font-size: 13.5px; opacity: .9; }

/* ---------- Vertrauen: Regionen-Zeile ---------- */
.regions-line { max-width: 820px; margin: 30px auto 0; text-align: center; color: var(--muted); font-size: 15px; line-height: 1.6; }
.regions-line strong { color: var(--forest); }

/* ---------- Kontakt zentriert ---------- */
.contact-inner--center { grid-template-columns: 1fr; justify-items: center; text-align: center; max-width: 760px; margin: 0 auto; }
.contact-methods--center { justify-content: center; }
.contact-hours { margin-top: 18px; font-size: 14px; opacity: .8; }

/* ============================================================
   BEISPIELBILDER nach Kategorie-Auswahl
   ============================================================ */
.cat-examples { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 28px; animation: exIn .45s var(--ease); }
@keyframes exIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.ex-head { text-align: center; margin-bottom: 20px; }
.ex-head h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 3.2vw, 1.9rem); font-weight: 600; color: var(--ink); }
.ex-sub { color: var(--muted); font-size: 15px; line-height: 1.55; max-width: 640px; margin: 8px auto 0; }
.ex-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.ex-item { margin: 0; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--paper-2); }
.ex-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.ex-item:hover img { transform: scale(1.05); }
.ex-cta { margin-top: 24px; text-align: center; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; }
.ex-cta p { font-size: 16px; color: var(--ink-2); margin-bottom: 16px; line-height: 1.5; }
.ex-cta .btn { max-width: 420px; }

/* ============================================================
   TERMIN-SEKTION (Lead-Formular Name/PLZ/E-Mail/Telefon)
   ============================================================ */
.termin-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.termin-benefits { list-style: none; margin: 20px 0 0; display: grid; gap: 11px; }
.termin-benefits li { position: relative; padding-left: 30px; color: rgba(255,255,255,.92); font-size: 15.5px; line-height: 1.45; }
.termin-benefits li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 21px; height: 21px; border-radius: 50%; background: var(--wood); color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.termin-trust { margin-top: 22px; color: #fff; font-size: 15px; }
.termin-trust .stars { color: #f4c04e; letter-spacing: 2px; }
.termin-form { background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 30px; }
.termin-form .field { margin-bottom: 14px; }
.termin-form label { display: block; font-weight: 700; font-size: 13.5px; color: var(--ink); margin-bottom: 6px; }
.termin-form input[type="text"], .termin-form input[type="email"], .termin-form input[type="tel"] {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; font-family: inherit; font-size: 15px; color: var(--text); background: #fff;
}
.termin-form input:focus { outline: none; border-color: var(--wood); box-shadow: 0 0 0 3px rgba(181,118,63,.15); }
.termin-selhint { background: var(--paper-2); border: 1px dashed var(--wood); color: var(--wood-dark); font-weight: 700; font-size: 13.5px; padding: 8px 12px; border-radius: 10px; margin-bottom: 14px; }
.termin-form .check { margin: 6px 0 16px; }
.btn-wa { margin-top: 10px; border-color: #25a35a; color: #1c7a43; }
.btn-wa:hover { background: #25a35a; border-color: #25a35a; color: #fff; }
.form-privacy.light { color: rgba(255,255,255,.75); }
.termin-form .form-privacy.light { color: var(--muted); }

/* ============================================================
   CTA-BANNER (AIDA – Action)
   ============================================================ */
.cta-banner { background: linear-gradient(135deg, var(--forest), var(--forest-2)); color: #fff; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 44px 0; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.1rem); line-height: 1.15; }
.cta-banner p { color: rgba(255,255,255,.85); margin-top: 8px; font-size: 16px; }
.cta-banner .btn { flex: 0 0 auto; }

@media (max-width: 860px) {
  .termin-inner { grid-template-columns: 1fr; gap: 30px; }
  .cta-banner-inner { flex-direction: column; text-align: center; align-items: center; }
}

/* Privat / Gewerblich Umschalter */
.kind{display:flex;gap:10px}
.kind-o{flex:1;cursor:pointer}
.kind-o input{position:absolute;opacity:0;width:0;height:0}
.kind-o span{display:flex;align-items:center;justify-content:center;gap:7px;padding:12px;border:1.5px solid var(--line);border-radius:11px;font-weight:600;font-size:14.5px;color:var(--ink);transition:.15s}
.kind-o:hover span{border-color:var(--wood)}
.kind-o input:checked+span{background:var(--paper-2);border-color:var(--forest);color:var(--forest)}
.kind-o input:focus-visible+span{box-shadow:0 0 0 3px rgba(39,65,53,.18)}

/* SEO-Textblock */
.prose{max-width:760px;margin-inline:auto}
.prose h2{font-family:var(--font-display);font-size:clamp(1.6rem,3.4vw,2.2rem);margin-bottom:14px;text-align:center;line-height:1.15}
.prose h3{font-family:var(--font-display);font-size:1.2rem;margin:26px 0 6px;color:var(--forest)}
.prose p{color:var(--ink-2);line-height:1.7;margin-bottom:6px}

/* Social-Sharing im Footer */
.footer-share{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-top:6px}
.footer-share span{font-size:13px;opacity:.8}
.footer-share a{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:9px;background:rgba(255,255,255,.08);color:#c6d7e2;transition:.2s}
.footer-share a:hover{background:rgba(255,255,255,.18);color:#fff}

/* Referenz-Galerie: Karten klickbar + Lightbox */
.shot[data-lb]{cursor:pointer}
.shot[data-lb]:focus-visible{outline:3px solid var(--amber);outline-offset:3px}
.shot-more{position:absolute;top:12px;right:12px;z-index:2;display:inline-flex;align-items:center;gap:6px;padding:5px 10px;border-radius:999px;background:rgba(15,22,18,.62);color:#fff;font-size:12.5px;font-weight:700;letter-spacing:.01em;backdrop-filter:blur(4px)}
.shot-more::before{content:"";width:13px;height:13px;background:currentColor;-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2'%3E%3Crect x='3' y='5' width='14' height='14' rx='2'/%3E%3Cpath d='M7 3h12a2 2 0 0 1 2 2v12'/%3E%3C/svg%3E") center/contain no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2'%3E%3Crect x='3' y='5' width='14' height='14' rx='2'/%3E%3Cpath d='M7 3h12a2 2 0 0 1 2 2v12'/%3E%3C/svg%3E") center/contain no-repeat}
.img-credit{margin:18px 0 0;font-size:12px;color:var(--muted,#6b746f);line-height:1.5}
.img-credit a{color:inherit;text-decoration:underline}
html.lb-open,html.lb-open body{overflow:hidden}
.lb{position:fixed;inset:0;z-index:1000;display:flex;flex-direction:column;background:rgba(12,17,14,.97);color:#fff}
.lb[hidden]{display:none}
.lb-top{display:flex;align-items:center;gap:14px;padding:14px 18px}
.lb-title{margin:0;font-family:var(--font-display);font-size:1.25rem;font-weight:600}
.lb-count{font-size:13px;opacity:.7}
.lb-close{margin-left:auto;width:42px;height:42px;border:0;border-radius:50%;background:rgba(255,255,255,.1);color:#fff;font-size:28px;line-height:1;cursor:pointer}
.lb-close:hover{background:rgba(255,255,255,.2)}
.lb-stage{flex:1;min-height:0;display:flex;align-items:center;justify-content:center;gap:12px;padding:0 12px}
.lb-fig{margin:0;display:flex;flex-direction:column;align-items:center;max-width:min(1200px,100%);max-height:100%;min-height:0}
.lb-fig img{display:block;max-width:100%;max-height:calc(100vh - 230px);width:auto;height:auto;border-radius:12px;box-shadow:0 20px 60px rgba(0,0,0,.45);background:#222}
.lb-fig figcaption{margin-top:12px;font-size:15px;text-align:center;opacity:.92}
.lb-fig figcaption small{display:block;margin-top:4px;font-size:11.5px;opacity:.65}
.lb-nav{flex:none;width:48px;height:48px;border:0;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;font-size:32px;line-height:1;cursor:pointer}
.lb-nav:hover{background:rgba(255,255,255,.24)}
.lb-thumbs{display:flex;gap:8px;padding:14px 18px 18px;overflow-x:auto}
.lb-thumbs button:first-child{margin-left:auto}
.lb-thumbs button:last-child{margin-right:auto}
.lb-thumbs button{flex:none;padding:0;width:74px;height:54px;border:2px solid transparent;border-radius:8px;overflow:hidden;background:none;cursor:pointer;opacity:.55}
.lb-thumbs button[aria-current="true"]{border-color:var(--amber);opacity:1}
.lb-thumbs img{width:100%;height:100%;object-fit:cover;display:block}
@media (max-width:640px){
  .lb-nav{position:absolute;top:50%;width:40px;height:40px;font-size:26px;background:rgba(0,0,0,.45)}
  .lb-prev{left:6px}.lb-next{right:6px}
  .lb-stage{position:relative;padding:0 6px}
  .lb-fig img{max-height:calc(100vh - 250px)}
  .lb-thumbs{gap:6px;padding:12px 10px 16px}
  .lb-thumbs button{width:60px;height:44px}
}
.hero-media img{object-position:66% 50%}
