/* Shared layout — colors via /css/themes/*.css */
:root {
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1100px;
  --r: 8px;
  --r-card: 12px;
  --white: #FFFFFF;
  --anthrazit: #1C1C1A;
  --stein: #6B6860;
  --shadow: 0 2px 12px rgba(28,28,26,.08);
  --shadow-md: 0 4px 24px rgba(28,28,26,.12);
}
/* ─── CSS Custom Properties ─────────────────────────────── */
    

    /* ─── Reset & Base ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      color: var(--anthrazit);
      background: var(--bg);
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    section { padding: 80px 0; }

    .eyebrow {
      font-size: 11px; font-weight: 600; letter-spacing: .16em;
      text-transform: uppercase; color: var(--accent, var(--bernstein));
      display: block; margin-bottom: 10px;
    }
    h1, h2, h3 {
      font-family: var(--font-head); line-height: 1.1;
      color: var(--heading, var(--anthrazit));
    }
    h1 { font-size: clamp(34px, 6vw, 60px); font-weight: 700; }
    h2 { font-size: clamp(24px, 4vw, 34px); font-weight: 700; }
    h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 700; }

    /* ─── Scroll reveal ─────────────────────────────────────── */
    @media (prefers-reduced-motion: no-preference) {
      .reveal {
        opacity: 0; transform: translateY(14px);
        transition: opacity .5s ease-out, transform .5s ease-out;
      }
      .reveal.visible { opacity: 1; transform: translateY(0); }
    }

    /* ─── Buttons ───────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-body); font-size: 15px; font-weight: 600;
      border: none; border-radius: 28px; cursor: pointer;
      padding: 13px 26px; transition: background .18s, transform .12s;
      white-space: nowrap;
    }
    .btn--primary   { background: var(--accent, var(--bernstein));   color: var(--white); }
    .btn--primary:hover   { background: var(--accent-hover, var(--bernstein-h)); transform: translateY(-1px); }
    .btn--outline   { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
    .btn--outline:hover   { border-color: var(--white); }
    .btn--green     { background: var(--waldgruen);  color: var(--white); }
    .btn--green:hover     { background: var(--salbeigruen); transform: translateY(-1px); }
    .btn--light     { background: var(--bg); color: var(--anthrazit); border: 1.5px solid var(--leinen); }
    .btn--light:hover     { background: var(--warmer-sand); }

    /* ═══════════════════════════════════════════════════════
       NAV
    ═══════════════════════════════════════════════════════ */
    #nav {
      position: sticky; top: 0; z-index: 200;
      background: var(--waldgruen);
      box-shadow: 0 2px 8px rgba(0,0,0,.15);
    }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 62px;
    }
    .nav__logo { display: flex; align-items: center; gap: 12px; }
    .nav__logo-img {
      height: 48px; width: auto; display: block; flex-shrink: 0;
      border-radius: 6px;
      background: var(--white);
      padding: 4px 8px;
    }
    .nav__logo-text {
      display: flex;
      align-items: stretch;
      gap: 7px;
      min-height: 38px;
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
    }
    .nav__logo-word {
      line-height: 1;
      white-space: nowrap;
    }
    .nav__logo-word--top { align-self: flex-start; padding-top: 1px; }
    .nav__logo-word--bottom { align-self: flex-end; padding-bottom: 1px; }
    .nav__logo-sep {
      flex-shrink: 0;
      width: 1px;
      background: rgba(255, 255, 255, 0.5);
      align-self: stretch;
      margin: 1px 0;
    }
    .nav__links { display: flex; gap: 28px; list-style: none; }
    .nav__links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); transition: color .15s; }
    .nav__links a:hover { color: var(--white); }
    .nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
    .nav__hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .25s; }
    .nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav__hamburger.open span:nth-child(2) { opacity: 0; }
    .nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    .nav__mobile { display: none; flex-direction: column; background: var(--tiefwald); padding: 16px 24px 24px; }
    .nav__mobile.open { display: flex; }
    .nav__mobile a { color: rgba(255,255,255,.85); font-size: 16px; font-weight: 500; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }

    /* ═══════════════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════════════ */
    #hero {
      background: linear-gradient(155deg, var(--tiefwald) 0%, var(--waldgruen) 55%, var(--hero-gradient-end) 100%);
      padding: 96px 0 72px; overflow: hidden; position: relative;
    }
    #hero::before {
      content: ''; position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 28px 28px; pointer-events: none;
    }
    .hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
    .hero__eyebrow { color: var(--heading-accent, var(--accent-hover, var(--bernstein-h))); }
    .hero__title { color: var(--white); margin-bottom: 20px; }
    .hero__title em { font-style: normal; color: var(--heading-accent, var(--accent-hover, var(--bernstein-h))); }
    .hero__sub { color: rgba(255,255,255,.82); font-size: 17px; margin-bottom: 32px; max-width: 440px; }
    .hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .hero__trust { margin-top: 44px; display: flex; gap: 28px; flex-wrap: wrap; }
    .hero__trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; }
    .hero__visual { display: flex; flex-direction: column; gap: 12px; }
    .hero__img-main {
      height: 272px; border-radius: 12px; overflow: hidden;
    }
    .hero__img-main img { width: 100%; height: 100%; object-fit: cover; }
    .hero__img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero__img-sm {
      height: 126px; border-radius: 10px; overflow: hidden;
    }
    .hero__img-sm img { width: 100%; height: 100%; object-fit: cover; }

    /* ═══════════════════════════════════════════════════════
       TRUST BAR
    ═══════════════════════════════════════════════════════ */
    #trust {
      background: var(--warmer-sand);
      border-top: 1px solid var(--leinen); border-bottom: 1px solid var(--leinen);
      padding: 20px 0;
    }
    .trust__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
    .trust__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
    .trust__icon {
      width: 36px; height: 36px; border-radius: 50%; background: var(--waldgruen);
      display: flex; align-items: center; justify-content: center;
    }
    .trust__icon svg { width: 16px; height: 16px; color: var(--white); }
    .trust__icon--euro span {
      font-size: 15px; font-weight: 700; color: var(--white); line-height: 1;
      font-family: var(--font-body);
    }
    .trust__stat { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--waldgruen); line-height: 1.1; }
    .trust__label { font-size: 11px; color: var(--stein); line-height: 1.4; }

    /* ═══════════════════════════════════════════════════════
       SERVICE — "Wählen Sie Ihren Service" (dark green, 3 cards)
    ═══════════════════════════════════════════════════════ */
    #service { background: var(--waldgruen); }
    .service__header { text-align: center; margin-bottom: 48px; }
    .service__header .eyebrow { color: rgba(255,255,255,.55); }
    .service__header h2 { color: var(--white); margin-bottom: 14px; }
    .service__header p { color: rgba(255,255,255,.72); max-width: 520px; margin: 0 auto; }
    .service__grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      max-width: 960px;
      margin: 0 auto;
    }
    .svc-card {
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
      border-radius: var(--r-card); padding: 30px 22px;
      transition: background .2s, transform .2s;
    }
    .svc-card:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
    .svc-card__badge {
      display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: .1em;
      text-transform: uppercase; background: rgba(255,255,255,.22); border-radius: 4px;
      padding: 3px 8px; margin-bottom: 14px; color: var(--white);
    }
    .svc-card__badge--beliebt {
      background: var(--accent, var(--bernstein));
      color: var(--white);
    }
    .svc-card__top {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 6px;
    }
    .svc-card__top .svc-card__num {
      margin-bottom: 0;
      display: flex;
      align-items: center;
    }
    .svc-card__top .svc-card__badge {
      margin-bottom: 0;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: stretch;
      padding: 0 10px;
      border-radius: 6px;
      line-height: 1;
    }
    .svc-card__num { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: rgba(255,255,255,.18); line-height: 1; margin-bottom: 6px; }
    .svc-card h3 { color: var(--white); font-size: 17px; margin-bottom: 10px; }
    .svc-card p { color: rgba(255,255,255,.72); font-size: 13.5px; max-width: none; }

    /* ═══════════════════════════════════════════════════════
       TENT SELECTOR — "Das richtige Zelt für Ihre Feier"
    ═══════════════════════════════════════════════════════ */
    #tents { background: var(--warmer-sand); }
    .tents__header { text-align: center; margin-bottom: 40px; }
    .tents__header h2 { margin-bottom: 10px; }
    .tents__header p { color: var(--stein); max-width: 540px; margin: 0 auto; }

    .tent-row {
      display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px;
      margin-bottom: 20px; scrollbar-width: thin; scrollbar-color: var(--leinen) transparent;
    }
    .tent-row::-webkit-scrollbar { height: 4px; }
    .tent-row::-webkit-scrollbar-thumb { background: var(--leinen); border-radius: 4px; }

    .tent-card {
      flex: 0 0 calc((100% - 80px)/9); min-width: 98px;
      background: var(--white); border: 1.5px solid var(--leinen);
      border-radius: 10px; padding: 13px 10px 11px;
      text-align: center; cursor: pointer;
      transition: border-color .2s, background .2s;
    }
    .tent-card:hover { border-color: var(--salbeigruen); }
    .tent-card.active { border-color: var(--waldgruen); background: var(--card-active-bg); }
    .tent-code { font-size: 10px; font-weight: 600; color: var(--stein); text-transform: uppercase; letter-spacing: .10em; margin-bottom: 4px; }
    .tent-dims { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--waldgruen); margin-bottom: 3px; }
    .tent-persons { font-size: 11px; color: var(--stein); margin-bottom: 5px; }
    .tent-price-we { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--waldgruen); margin-bottom: 2px; }
    .tent-price-day { font-size: 10px; color: var(--stein); }

    .tent-detail {
      background: var(--white); border: 1px solid var(--leinen);
      border-radius: var(--r-card); padding: 24px 28px;
      display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start;
      transition: opacity .25s, transform .25s;
    }
    .tent-detail.fading { opacity: 0; transform: translateY(8px); }
    .tent-detail-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--heading, var(--anthrazit)); margin-bottom: 14px; }
    .tent-specs { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
    .tent-spec { display: flex; gap: 10px; font-size: 13px; }
    .tent-spec-lbl { color: var(--stein); min-width: 90px; }
    .tent-spec-val { color: var(--anthrazit); font-weight: 500; }
    .tent-detail-price { text-align: right; }
    .tent-price-label { font-size: 11px; font-weight: 600; color: var(--stein); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
    .tent-price-big { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: var(--waldgruen); line-height: 1; }
    .tent-price-we-big { font-size: 13px; color: var(--stein); margin-top: 6px; }
    .tent-price-note { font-size: 11px; color: var(--stein); margin-top: 4px; }

    /* ═══════════════════════════════════════════════════════
       ACCESSORIES — 4 cards
    ═══════════════════════════════════════════════════════ */
    #accessories { background: var(--bg); }
    .acc__header { text-align: center; margin-bottom: 48px; }
    .acc__header h2 { margin-bottom: 12px; }
    .acc__header p { color: var(--stein); max-width: 500px; margin: 0 auto; }
    .acc__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
    .acc-card {
      background: var(--white); border: 1px solid var(--leinen);
      border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow);
      transition: box-shadow .2s, transform .2s;
    }
    .acc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .acc-card__img {
      position: relative; overflow: hidden;
      aspect-ratio: 4 / 3; background: var(--leinen);
      cursor: zoom-in;
    }
    .acc-card__img:focus-visible { outline: 2px solid var(--salbeigruen); outline-offset: -2px; }
    .acc-slideshow { position: relative; width: 100%; height: 100%; }
    .acc-slide {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; opacity: 0;
      transition: opacity .7s ease;
    }
    .acc-slide.active { opacity: 1; z-index: 1; }
    .acc-dots {
      position: absolute; bottom: 8px; left: 0; right: 0; z-index: 2;
      display: flex; justify-content: center; gap: 5px;
    }
    .acc-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255,255,255,.45); border: none; padding: 0; cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .acc-dot.active { background: var(--white); transform: scale(1.15); }
    .acc-card__body { padding: 20px 22px; }
    .acc-card__body--link {
      cursor: pointer;
      transition: background .15s;
    }
    .acc-card__body--link:hover { background: var(--bg); }
    .acc-card__body--link:focus-visible {
      outline: 2px solid var(--salbeigruen);
      outline-offset: -2px;
    }
    .acc-card__body h3 { margin-bottom: 7px; font-size: 18px; color: var(--heading, var(--anthrazit)); }
    .acc-card__body p { color: var(--stein); font-size: 13.5px; }

    /* Ausstattung lightbox */
    .acc-lightbox {
      position: fixed; inset: 0; z-index: 500;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 56px 20px 24px;
    }
    .acc-lightbox[hidden] { display: none !important; }
    .acc-lightbox__backdrop {
      position: absolute; inset: 0; border: none; padding: 0; margin: 0;
      background: rgba(15, 20, 18, .92); cursor: zoom-out;
    }
    .acc-lightbox__close {
      position: absolute; top: 14px; right: 16px; z-index: 2;
      width: 44px; height: 44px; border: none; border-radius: 50%;
      background: rgba(255,255,255,.12); color: var(--white);
      font-size: 28px; line-height: 1; cursor: pointer;
      transition: background .15s;
    }
    .acc-lightbox__close:hover { background: rgba(255,255,255,.22); }
    .acc-lightbox__nav {
      position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
      width: 48px; height: 48px; border: none; border-radius: 50%;
      background: rgba(255,255,255,.12); color: var(--white);
      font-size: 32px; line-height: 1; cursor: pointer;
      transition: background .15s;
    }
    .acc-lightbox__nav:hover { background: rgba(255,255,255,.22); }
    .acc-lightbox__nav--prev { left: 12px; }
    .acc-lightbox__nav--next { right: 12px; }
    .acc-lightbox__nav[hidden] { display: none; }
    .acc-lightbox__stage {
      position: relative; z-index: 1;
      max-width: min(960px, 100%); max-height: calc(100vh - 140px);
      display: flex; align-items: center; justify-content: center;
    }
    .acc-lightbox__img {
      max-width: 100%; max-height: calc(100vh - 140px);
      width: auto; height: auto; object-fit: contain;
      border-radius: var(--r);
      box-shadow: 0 8px 40px rgba(0,0,0,.45);
    }
    .acc-lightbox__dots {
      position: relative; z-index: 1;
      display: flex; justify-content: center; gap: 8px;
      margin-top: 16px;
    }
    .acc-lightbox__dots[hidden] { display: none; }
    .acc-lightbox__dot {
      width: 9px; height: 9px; border-radius: 50%; padding: 0; border: none;
      background: rgba(255,255,255,.35); cursor: pointer;
      transition: background .15s, transform .15s;
    }
    .acc-lightbox__dot.active {
      background: var(--white);
      transform: scale(1.15);
    }
    .acc-lightbox__caption {
      position: relative; z-index: 1;
      margin-top: 12px; color: rgba(255,255,255,.82);
      font-size: 14px; text-align: center; max-width: 640px;
    }

    /* ═══════════════════════════════════════════════════════
       VIDEO
    ═══════════════════════════════════════════════════════ */
    #video { background: var(--tiefwald); padding: 56px 0; }
    .video__grid { display: grid; grid-template-columns: 2fr 3fr; gap: 44px; align-items: center; }
    .video__thumb {
      aspect-ratio: 16/9; border-radius: var(--r-card);
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; position: relative; overflow: hidden; text-decoration: none;
    }
    .video__thumb-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .video__thumb::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(0, 0, 0, .12);
      transition: background .2s;
    }
    .video__thumb:hover::after { background: rgba(0, 0, 0, .28); }
    .play-btn {
      width: 56px; height: 56px; border-radius: 50%; background: var(--accent, var(--bernstein));
      display: flex; align-items: center; justify-content: center; position: relative; z-index: 2;
      transition: background .18s, transform .18s;
      box-shadow: 0 4px 20px rgba(0,0,0,.35);
    }
    .video__thumb:hover .play-btn { background: var(--accent-hover, var(--bernstein-h)); transform: scale(1.08); }
    .play-btn svg { width: 22px; height: 22px; color: var(--white); margin-left: 3px; }
    .video__text .eyebrow { color: rgba(255,255,255,.55); }
    .video__title { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
    .video__desc { font-size: 14px; color: rgba(255,255,255,.68); line-height: 1.65; }

    /* ═══════════════════════════════════════════════════════
       BEWERTUNGEN
    ═══════════════════════════════════════════════════════ */
    #bewertungen { background: var(--warmer-sand); }
    .bew__header { text-align: center; margin-bottom: 48px; }
    .bew__header h2 { margin-bottom: 12px; }
    .bew__header p { color: var(--stein); max-width: 500px; margin: 0 auto; }
    .bew__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 36px; }
    .bew-card { background: var(--white); border: 1px solid var(--leinen); border-radius: var(--r-card); padding: 28px; box-shadow: var(--shadow); }
    .bew-card__stars { color: var(--accent, var(--bernstein)); font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; }
    .bew-card__text { font-size: 14px; line-height: 1.65; font-style: italic; margin-bottom: 18px; color: var(--anthrazit); }
    .bew-card__name { font-weight: 600; font-size: 13px; }
    .bew-card__meta { font-size: 12px; color: var(--stein); margin-top: 2px; }
    .bew__cta { text-align: center; }

    /* ═══════════════════════════════════════════════════════
       FAQ
    ═══════════════════════════════════════════════════════ */
    #faq { background: var(--white); }
    .faq__header { text-align: center; margin-bottom: 40px; }
    .faq__header h2 { margin-bottom: 10px; }
    .faq__header p { color: var(--stein); max-width: 480px; margin: 0 auto; }
    .faq__inner { max-width: 640px; margin: 0 auto; }
    .faq-item { border: 1px solid var(--leinen); border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
    .faq-q {
      display: flex; justify-content: space-between; align-items: center;
      padding: 14px 18px; cursor: pointer; font-size: 14px; font-weight: 500;
      color: var(--anthrazit); gap: 12px; background: var(--white);
      transition: background .15s; width: 100%; text-align: left; border: none; font-family: var(--font-body);
    }
    .faq-q:hover { background: var(--bg); }
    .faq-chevron { flex-shrink: 0; width: 16px; height: 16px; color: var(--waldgruen); transition: transform .3s; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease-in-out; }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer-inner { padding: 0 18px 16px; font-size: 13.5px; color: var(--stein); line-height: 1.7; }

    /* ═══════════════════════════════════════════════════════
       KONTAKT
    ═══════════════════════════════════════════════════════ */
    #kontakt { background: var(--bg); }
    .kontakt__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }

    /* Info column */
    .kontakt__info .eyebrow { margin-bottom: 10px; }
    .kontakt__info h2 { margin-bottom: 14px; }
    .kontakt__info > p { color: var(--stein); margin-bottom: 28px; }
    .kontakt__details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
    .kontakt__detail { display: flex; align-items: flex-start; gap: 11px; }
    .kontakt__detail-icon {
      width: 38px; height: 38px; border-radius: 9px; background: var(--warmer-sand);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .kontakt__detail-icon svg { color: var(--waldgruen); }
    .kontakt__detail-text strong { display: block; font-size: 11px; font-weight: 600; color: var(--stein); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
    .kontakt__detail-text a { color: var(--waldgruen); font-weight: 500; font-size: 14px; }
    .kontakt__detail-text a:hover { text-decoration: underline; }
    .kontakt__detail-text span { font-size: 14px; color: var(--anthrazit); }
    .map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--leinen); height: 160px; }
    .map-wrap iframe { width: 100%; height: 100%; border: none; }

    /* Form card */
    .form-card {
      background: var(--white); border: 1px solid var(--leinen);
      border-radius: 16px; padding: 36px; box-shadow: var(--shadow-md);
    }
    .form-steps {
      display: flex; margin-bottom: 28px; border-radius: 8px; overflow: hidden;
      border: 1px solid var(--leinen);
    }
    .step-tab {
      flex: 1; text-align: center; padding: 10px 4px;
      font-size: 12px; font-weight: 600; color: var(--stein);
      background: var(--bg); border-right: 1px solid var(--leinen);
      letter-spacing: .04em; cursor: default;
    }
    .step-tab:last-child { border-right: none; }
    .step-tab.active { background: var(--waldgruen); color: var(--white); }
    .step-tab.done   { background: var(--salbeigruen); color: var(--white); }

    .form-page { display: none; }
    .form-page.active { display: block; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .form-group > label { font-size: 11px; font-weight: 600; color: var(--anthrazit); text-transform: uppercase; letter-spacing: .06em; }
    .form-group > label .req { color: var(--accent, var(--bernstein)); }
    .form-label {
      font-size: 11px; font-weight: 600; color: var(--anthrazit);
      text-transform: uppercase; letter-spacing: .06em;
    }
    .form-group--service { margin-bottom: 14px; }
    .service-chips {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 8px;
    }
    .service-chip {
      display: block; position: relative; cursor: pointer; min-width: 0;
    }
    .service-chip input[type="checkbox"] {
      position: absolute; inset: 0; width: 100%; height: 100%;
      margin: 0; padding: 0; opacity: 0; cursor: pointer; z-index: 2;
    }
    .service-chip__label {
      display: flex; align-items: center; justify-content: center;
      min-height: 52px; padding: 14px 12px;
      background: var(--white); border: 2px solid var(--leinen); border-radius: var(--r-card);
      font-size: 13px; font-weight: 600; color: var(--anthrazit); line-height: 1.35;
      text-align: center; transition: border-color .15s, background .15s, box-shadow .15s;
      pointer-events: none;
    }
    .service-chip:hover .service-chip__label { border-color: var(--salbeigruen); }
    .service-chip input[type="checkbox"]:checked + .service-chip__label {
      border-color: var(--waldgruen); background: var(--card-active-bg);
      box-shadow: 0 0 0 3px var(--focus-ring);
    }
    .service-chip input[type="checkbox"]:focus-visible + .service-chip__label {
      box-shadow: 0 0 0 3px var(--focus-ring);
    }
    .form-group input:not([type="checkbox"]):not([type="radio"]),
    .form-group select,
    .form-group textarea {
      font-family: var(--font-body); font-size: 14px; color: var(--anthrazit);
      background: var(--bg); border: 1.5px solid var(--leinen);
      border-radius: var(--r); padding: 10px 13px;
      transition: border-color .15s, box-shadow .15s; outline: none; width: 100%;
    }
    .form-group input:not([type="checkbox"]):not([type="radio"]):focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--waldgruen); box-shadow: 0 0 0 3px var(--focus-ring);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232D5E3A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px;
    }
    .form-group .service-chip input[type="checkbox"] {
      position: absolute; inset: 0; width: 100%; height: 100%;
      margin: 0; padding: 0; border: 0; background: transparent;
      box-shadow: none; outline: none; opacity: 0; cursor: pointer; z-index: 2;
    }
    .form-group .service-chip__label {
      display: flex; width: 100%; box-sizing: border-box;
    }
    .form-group--consent { margin-top: 4px; }
    .form-consent {
      display: flex; align-items: flex-start; gap: 10px;
      cursor: pointer; font-weight: 400; text-transform: none; letter-spacing: 0;
    }
    .form-consent input[type="checkbox"] {
      width: 18px; height: 18px; min-width: 18px; margin-top: 2px;
      accent-color: var(--waldgruen);
      cursor: pointer;
    }
    .form-consent__text {
      font-size: 12.5px; line-height: 1.55; color: var(--stein);
    }
    .form-nav { display: flex; gap: 12px; justify-content: flex-end; margin-top: 4px; }

    .form__success { display: none; text-align: center; padding: 16px 0; }
    .form__success-icon {
      width: 60px; height: 60px; background: #d7f0e0; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
    }
    .form__success h3 { margin-bottom: 8px; }
    .form__success p { color: var(--stein); font-size: 14px; }
    .form__err { display: none; background: #fdf0f0; border: 1px solid #f0c0c0; border-radius: var(--r); padding: 11px 14px; font-size: 13px; color: #b00; margin-bottom: 14px; }

    /* ═══════════════════════════════════════════════════════
       PREISLISTE
    ═══════════════════════════════════════════════════════ */
    #preisliste { background: var(--bg); }
    .price-list__header { text-align: center; max-width: 640px; margin: 0 auto 36px; }
    .price-list__header p { color: var(--stein); margin-top: 10px; }
    .price-tabs {
      display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
      margin-bottom: 24px;
    }
    .price-tab {
      font-family: var(--font-body); font-size: 13px; font-weight: 600;
      padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--leinen);
      background: var(--white); color: var(--anthrazit); cursor: pointer;
      transition: background .15s, border-color .15s, color .15s;
    }
    .price-tab.active, .price-tab:hover {
      background: var(--waldgruen); border-color: var(--waldgruen); color: var(--white);
    }
    .price-panel { display: none; }
    .price-panel.active { display: block; }
    .price-table-wrap { overflow-x: auto; border-radius: var(--r-card); box-shadow: var(--shadow); background: var(--white); }
    .price-table { width: 100%; border-collapse: collapse; font-size: 14px; }
    .price-table th, .price-table td {
      padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--leinen);
      vertical-align: middle;
    }
    .price-table th { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--stein); background: var(--bg); }
    .price-table td:nth-child(2), .price-table td:nth-child(3),
    .price-table th:nth-child(2), .price-table th:nth-child(3) { white-space: nowrap; width: 1%; }
    .price-table td:last-child { width: 1%; white-space: nowrap; }
    .price-note-inline { display: block; font-size: 12px; color: var(--stein); margin-top: 2px; }
    .price-row__name { display: block; }
    .price-row__title { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
    .price-row__name { flex: 1; min-width: 0; }
    .price-row__name--alt { font-size: 13px; color: var(--stein); padding-left: 12px; border-left: 2px solid var(--leinen); }
    .price-expand-toggle {
      flex-shrink: 0; margin-top: 1px; width: 30px; height: 30px; padding: 0;
      border: 1.5px solid var(--leinen); border-radius: 50%;
      background: var(--white); color: var(--waldgruen); cursor: pointer;
      display: inline-flex; align-items: center; justify-content: center;
      box-shadow: 0 1px 4px rgba(28,28,26,.07);
      transition: background .18s, border-color .18s, color .18s, box-shadow .18s, transform .18s;
    }
    .price-expand-toggle:hover {
      border-color: var(--salbeigruen);
      background: var(--card-active-bg);
      box-shadow: 0 2px 8px rgba(28,28,26,.1);
    }
    .price-expand-toggle.is-open {
      background: var(--waldgruen); color: var(--white);
      border-color: var(--waldgruen);
      box-shadow: 0 2px 8px rgba(28,28,26,.14);
    }
    .price-expand-toggle.is-open .price-expand-arrow { transform: rotate(180deg); }
    .price-expand-arrow { transition: transform .22s ease; display: block; }
    .price-row-expand td { background: var(--bg); }
    .price-footnote { font-size: 12px; color: var(--stein); text-align: center; margin-top: 20px; line-height: 1.6; }
    .btn--sm { padding: 8px 14px; font-size: 13px; }

    .tent-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }

    /* ═══════════════════════════════════════════════════════
       WARENKORB
    ═══════════════════════════════════════════════════════ */
    .cart-fab {
      position: fixed; bottom: 24px; right: 24px; z-index: 300;
      width: 56px; height: 56px; border-radius: 50%; border: none;
      background: var(--waldgruen); color: var(--white);
      box-shadow: var(--shadow-md); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: transform .15s, background .15s;
    }
    .cart-fab:hover { transform: translateY(-2px); background: var(--salbeigruen); }
    .cart-fab__badge {
      position: absolute; top: -2px; right: -2px;
      min-width: 20px; height: 20px; padding: 0 5px;
      background: var(--accent, var(--bernstein)); color: var(--white);
      font-size: 11px; font-weight: 700; border-radius: 999px;
      display: flex; align-items: center; justify-content: center;
    }
    .cart-overlay {
      position: fixed; inset: 0; z-index: 400;
      background: rgba(28,28,26,.45); backdrop-filter: blur(2px);
    }
    .cart-panel {
      position: fixed; top: 0; right: 0; z-index: 401;
      width: min(420px, 100vw); height: 100vh;
      background: var(--white); box-shadow: -4px 0 32px rgba(0,0,0,.12);
      display: flex; flex-direction: column;
      transform: translateX(100%); transition: transform .28s ease;
    }
    .cart-panel.open { transform: translateX(0); }
    body.cart-open { overflow: hidden; }
    .cart-panel__head {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 20px 16px; border-bottom: 1px solid var(--leinen);
    }
    .cart-panel__head h3 { font-size: 20px; }
    .cart-panel__close {
      width: 36px; height: 36px; border: none; background: var(--bg);
      border-radius: 50%; font-size: 22px; line-height: 1; cursor: pointer; color: var(--anthrazit);
    }
    .cart-panel__body { flex: 1; overflow-y: auto; padding: 12px 16px; }
    .cart-panel__foot {
      padding: 16px 20px; border-top: 1px solid var(--leinen);
      display: flex; flex-direction: column; gap: 10px;
    }
    .cart-empty, .cart-preview-empty { font-size: 14px; color: var(--stein); padding: 12px 4px; }
    .cart-line {
      display: grid; grid-template-columns: 1fr auto auto; gap: 8px; align-items: center;
      padding: 12px 0; border-bottom: 1px solid var(--leinen);
    }
    .cart-line__name { font-size: 14px; line-height: 1.4; }
    .cart-line__qty { display: flex; align-items: center; gap: 6px; }
    .cart-qty-btn {
      width: 28px; height: 28px; border: 1.5px solid var(--leinen);
      background: var(--bg); border-radius: 6px; cursor: pointer; font-size: 16px; line-height: 1;
    }
    .cart-qty-val { min-width: 20px; text-align: center; font-weight: 600; font-size: 14px; }
    .cart-line__remove {
      border: none; background: none; font-size: 20px; color: var(--stein); cursor: pointer; padding: 4px;
    }
    .cart-preview {
      background: var(--bg); border: 1.5px solid var(--leinen); border-radius: var(--r);
      padding: 12px 14px; min-height: 48px;
    }
    .cart-preview-line {
      display: flex; justify-content: space-between; gap: 12px;
      font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--leinen);
    }
    .cart-preview-line:last-child { border-bottom: none; }

    /* ═══════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════ */
    footer { background: var(--tiefwald); color: rgba(255,255,255,.72); padding: 52px 0 28px; }
    .footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 28px; }
    .footer__brand h3 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
    .footer__brand p { font-size: 13px; color: rgba(255,255,255,.58); max-width: 280px; }
    .footer__col h4 { color: var(--white); font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
    .footer__col ul { display: flex; flex-direction: column; gap: 8px; }
    .footer__col ul li a { font-size: 13px; color: rgba(255,255,255,.62); transition: color .15s; }
    .footer__col ul li a:hover { color: var(--white); }
    .footer__bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 8px; }
    .footer__bottom a { color: rgba(255,255,255,.5); }
    .footer__bottom a:hover { color: rgba(255,255,255,.8); }
    .footer__legal-links { display: flex; gap: 18px; }

    /* ═══════════════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════════════ */
    @media (max-width: 900px) {
      .hero__inner, .kontakt__grid { grid-template-columns: 1fr; }
      .hero__visual { display: none; }
      .service__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 640px;
      }
      .service__grid .svc-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
        justify-self: center;
      }
      .trust__grid { grid-template-columns: repeat(2,1fr); }
      .acc__grid { grid-template-columns: 1fr 1fr; }
      .bew__grid { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr; gap: 28px; }
      .nav__links, .nav__cta-wrap { display: none; }
      .nav__hamburger { display: flex; }
      .video__grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      section { padding: 56px 0; }
      .service__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
      }
      .service__grid .svc-card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
      }
      .acc__grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .service-chips { grid-template-columns: 1fr; }
      .form-card { padding: 22px 18px; }
      .hero__actions { flex-direction: column; }
      .tent-row { display: grid; grid-template-columns: repeat(3,1fr); overflow-x: unset; }
      .tent-card { min-width: unset; flex: unset; }
      .tent-detail { grid-template-columns: 1fr; }
      .cart-fab { bottom: 16px; right: 16px; }
      .price-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    }
