/* =========================================================================
   FeWo Lerbachtal — Design-System „Warmer Harz".
   Bewusst eigene Ästhetik: warmes Papier, tiefes Waldgrün, Bernstein-Akzent,
   Display-Serif (Fraunces) + ruhige Grotesk (Inter). Kein cxp-/MUR-Look.
   ========================================================================= */

:root {
    --paper:      #f5efe1;   /* warmes Papier (Seitengrund) */
    --paper-2:    #efe7d5;   /* zweite Papierfläche (alternierende Sektionen) */
    --card:       #fffdf8;   /* Kartenfläche */
    --ink:        #20221c;   /* warmes Fast-Schwarz (Text) */
    --ink-soft:   #565347;   /* gedämpfter Text */
    --forest:     #1f3b34;   /* Waldgrün (Primär, dunkle Panels) */
    --forest-2:   #16302a;   /* tieferes Grün */
    --amber:      #c2772f;   /* Bernstein/Terracotta (Akzent) */
    --amber-2:    #a85f1e;   /* dunkler Akzent (Hover) */
    --gold:       #d9a253;   /* helles Gold (auf Dunkel) */
    --line:       rgba(32,34,28,.13);
    --line-2:     rgba(32,34,28,.08);
    --shadow:     0 18px 40px -24px rgba(31,59,52,.45);
    --shadow-sm:  0 8px 22px -16px rgba(31,59,52,.5);
    --r:          16px;
    --r-sm:       11px;
    --wrap:       1180px;
    --serif: "Fraunces", Georgia, "Times New Roman", serif;
    --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.section { padding: 74px 0; }
.section--paper { background: var(--paper-2); }
.accent { color: var(--amber); }
.muted { color: var(--ink-soft); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; margin: 0; overflow-wrap: break-word; hyphens: auto; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1em; }

/* Eyebrow-Label */
.eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--sans); font-weight: 600; font-size: .74rem;
    letter-spacing: .16em; text-transform: uppercase; color: var(--amber-2);
    margin-bottom: 16px;
}
.eyebrow.light { color: var(--gold); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }
.eyebrow.light .dot { background: var(--gold); }

.sec-head { max-width: 720px; margin-bottom: 42px; }
.sec-sub { color: var(--ink-soft); font-size: 1.08rem; margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans); font-weight: 600; font-size: .98rem;
    padding: 13px 22px; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent;
    transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-solid { background: var(--amber); color: #fff; }
.btn-solid:hover { background: var(--amber-2); transform: translateY(-2px); }
.btn-line { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-line:hover { border-color: var(--forest); background: rgba(31,59,52,.05); }
.btn-lg { padding: 16px 28px; font-size: 1.04rem; }
.btn:disabled { opacity: .4; cursor: default; pointer-events: none; }

/* ---------- Nav ---------- */
.nav {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 26px; background: rgba(245,239,225,.86);
    backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-2);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { display: inline-flex; line-height: 0; }
.brand-mark svg { display: block; }
.brand-text { display: flex; flex-direction: column; font-family: var(--serif); font-size: 1.12rem; color: var(--ink); line-height: 1.05; }
.brand-text small { font-family: var(--sans); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 13px; border-radius: 9px; font-size: .94rem; font-weight: 500; color: var(--ink-soft); transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--ink); background: rgba(32,34,28,.05); }
.nav-links a.active { color: var(--forest); font-weight: 600; }
.nav-cta { background: var(--forest) !important; color: #fff !important; padding: 9px 18px !important; border-radius: 999px !important; }
.nav-cta:hover { background: var(--forest-2) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(70px, 11vw, 130px) 0 clamp(56px, 8vw, 96px); }
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(120% 90% at 88% -10%, rgba(31,59,52,.14), transparent 60%),
        radial-gradient(90% 70% at -10% 110%, rgba(194,119,47,.14), transparent 55%),
        linear-gradient(180deg, var(--paper), var(--paper-2));
}
.hero .wrap { position: relative; z-index: 1; }
/* Home-Bild-Hero (Foto + Scrim + helle Schrift) */
.hero--img { background-image: var(--hero-img); background-size: cover; background-position: center 38%; }
.hero-scrim { position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: linear-gradient(100deg, rgba(16,26,22,.88) 0%, rgba(16,26,22,.55) 50%, rgba(16,26,22,.2) 100%); }
.hero--img h1 { color: #fff; }
.hero--img .hero-lead { color: rgba(255,255,255,.9); }
.hero--img .hero-facts { border-top-color: rgba(255,255,255,.28); }
.hero--img .hero-facts li { color: rgba(255,255,255,.82); }
.hero--img .hero-facts strong { color: var(--gold); }
.hero--img .btn-line { color: #fff; border-color: rgba(255,255,255,.55); }
.hero--img .btn-line:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.hero-inner { max-width: 760px; }
.hero h1 { margin-bottom: 22px; }
.hero-lead { font-size: clamp(1.1rem, 2vw, 1.32rem); color: var(--ink-soft); max-width: 620px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 30px; list-style: none; margin: 0; padding: 26px 0 0; border-top: 1px solid var(--line); }
.hero-facts li { font-size: 1.02rem; color: var(--ink-soft); display: flex; align-items: center; }
.hero-facts li::before { content: "\2713"; color: var(--gold); font-weight: 700; margin-right: 9px; }

/* ---------- Intro split ---------- */
.intro-grid, .lp-text-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; align-items: start; }
.intro-body p, .lp-text-grid p { font-size: 1.1rem; color: var(--ink-soft); }
.lp-text-grid { grid-template-columns: .8fr 1.2fr; }
.lp-text-grid h2 { position: sticky; top: 90px; }

/* ---------- Unit cards ---------- */
.u-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 26px; }
.u-card { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.u-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.u-figure { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.u-figure img { width: 100%; height: 100%; object-fit: cover; }
.u-figure--ph { display: grid; place-items: center; background: linear-gradient(150deg, hsl(var(--ph-h, 30) 38% 32%), hsl(calc(var(--ph-h, 30) + 8) 45% 22%)); color: rgba(255,255,255,.92); }
.u-figure--ph .ph-mark { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; letter-spacing: .04em; }
.u-figure--ph .ph-note { position: absolute; bottom: 10px; right: 12px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
.u-figure--hero { aspect-ratio: 16 / 11; border-radius: var(--r); }
.u-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.u-tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber-2); font-weight: 600; }
.u-card-body h3 { margin: 7px 0 8px; }
.u-card-body p { color: var(--ink-soft); font-size: .97rem; margin-bottom: 16px; }
.u-card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line-2); padding-top: 14px; }
.u-persons { font-weight: 600; color: var(--forest); font-size: .92rem; }
.u-go { font-weight: 600; font-size: .92rem; color: var(--amber-2); display: inline-flex; gap: 7px; }
.u-go .arr { transition: transform .2s; }
.u-card:hover .u-go .arr, .fw-card:hover .u-go .arr { transform: translateX(4px); }

/* ---------- Unit detail ---------- */
.u-detail { padding: 40px 0 8px; }
.u-detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.u-detail-info h1 { margin: 8px 0 14px; }
.u-lead { font-size: 1.15rem; color: var(--ink-soft); }
.u-meta { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.u-meta li { background: var(--card); padding: 13px 16px; display: flex; flex-direction: column; gap: 2px; }
.u-meta-k { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.u-meta-v { font-weight: 600; color: var(--ink); }
.u-detail-cols { display: grid; grid-template-columns: 1.3fr .7fr; gap: 44px; align-items: start; }
.u-desc h2 { margin-bottom: 14px; }
.u-desc p { color: var(--ink-soft); font-size: 1.08rem; }
.u-side { display: flex; flex-direction: column; gap: 22px; }
.u-features, .avail { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); }
.u-features h3, .avail h3 { margin-bottom: 14px; }
.feat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.feat-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); font-size: .98rem; }
.feat-check { color: var(--amber); font-weight: 700; }
.avail .avail-head { margin-bottom: 6px; }
.avail p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- For-whom cluster ---------- */
.fw-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.fw-card { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.fw-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fw-tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber-2); font-weight: 600; }
.fw-card h3 { margin: 9px 0 10px; }
.fw-card p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 18px; }
.fw-card .u-go { margin-top: auto; }

/* ---------- Region ---------- */
.region-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.region-media { aspect-ratio: 5 / 4; border-radius: var(--r); box-shadow: var(--shadow); position: relative;
    background-image: var(--region-img); background-size: cover; background-position: center;
    background-color: #1f3b34; }
.region-body h2 { margin-bottom: 14px; }
.region-body p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 22px; }

/* ---------- Partners (Logo-Streifen) ---------- */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.partner { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 22px 20px 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; transition: border-color .2s, transform .2s, box-shadow .2s; }
.partner:hover { border-color: var(--amber); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.partner-logo { height: 48px; width: auto; max-width: 100%; object-fit: contain; }
.partner-name { font-weight: 600; color: var(--ink); }
.partner-note { font-size: .8rem; color: var(--ink-soft); }

/* ---------- Wohnungs-Galerie + Lightbox ---------- */
.u-figure--hero { width: 100%; border: 0; padding: 0; cursor: zoom-in; background: none; }
.lb-trigger { cursor: zoom-in; border: 0; padding: 0; background: none; display: block; }
.u-figure-count { position: absolute; bottom: 12px; right: 12px; background: rgba(16,26,22,.82); color: #fff; font-size: .8rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.u-detail-hint { font-size: .85rem; color: var(--ink-soft); margin-top: 12px; }
.u-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.u-thumb { aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--r-sm); box-shadow: var(--shadow-sm); }
.u-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.u-thumb:hover img { transform: scale(1.06); }
.gallery-cta { margin-top: 32px; text-align: center; }

/* iCal-Verfügbarkeitskalender (Monteurwohnungen, eigener 2-Monats-Kalender) */
.ical-nav { display: flex; justify-content: space-between; align-items: center; max-width: 760px; margin-bottom: 14px; }
.ical-nav .btn { padding: 8px 16px; }
.ical-cal { display: flex; flex-wrap: wrap; gap: 30px; max-width: 760px; }
.cal-month { flex: 1 1 300px; }
.cal-title { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); margin-bottom: 12px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-wd { text-align: center; font-size: .7rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); padding-bottom: 4px; }
.cal-pad { aspect-ratio: 1; }
.cal-day { aspect-ratio: 1; display: grid; place-items: center; font-size: .9rem; border-radius: 8px; background: #fff; border: 1px solid var(--line-2); color: var(--ink); }
.cal-past { background: transparent; border-color: transparent; color: var(--line); }
.cal-bk { background: #d8806a; border-color: #d8806a; color: #fff; text-decoration: line-through; }
.ical-legend { display: flex; align-items: center; gap: 8px; margin: 18px 0 0; font-size: .88rem; color: var(--ink-soft); }
.ical-legend .leg { width: 15px; height: 15px; border-radius: 4px; display: inline-block; margin-left: 14px; vertical-align: middle; }
.ical-legend .leg-free { background: #fff; border: 1px solid var(--line); margin-left: 0; }
.ical-legend .leg-bk { background: #d8806a; }

/* Verfügbarkeit (Smoobu-Kalender-Widget, bringt eigenes CSS mit) */
.avail-sec .smoobu-cals { display: grid; gap: 26px; max-width: 920px; }
.smoobu-cal { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r); padding: 16px; box-shadow: var(--shadow-sm); overflow-x: auto; }
.smoobu-cal .calendarContent { min-height: 80px; }

.lb-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(12,16,14,.94); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .25s; }
.lb-overlay.open { opacity: 1; visibility: visible; }
.lb-overlay img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.7); }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; transition: background .15s; }
.lb-btn:hover { background: rgba(255,255,255,.24); }
.lb-prev { left: 3vw; } .lb-next { right: 3vw; }
.lb-close { top: 3vh; right: 3vw; width: 46px; height: 46px; font-size: 1.3rem; }
.lb-counter { position: absolute; bottom: 3vh; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-size: .9rem; letter-spacing: .04em; }
@media (max-width: 620px) { .lb-prev { left: 8px; } .lb-next { right: 8px; } .lb-btn { width: 44px; height: 44px; } }

/* ---------- Landingpage ---------- */
.lp-hero { padding: clamp(46px, 7vw, 84px) 0 clamp(30px, 5vw, 56px); background:
    radial-gradient(100% 80% at 90% -20%, rgba(31,59,52,.1), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--paper)); }
.lp-hero-inner { max-width: 760px; }
.lp-hero h1 span { display: inline; }
.lp-intro { font-size: clamp(1.1rem, 2vw, 1.28rem); color: var(--ink-soft); max-width: 640px; margin: 18px 0 28px; }

/* Landingpage-Bild-Hero (Foto + Scrim + helle Schrift) */
.lp-hero--img {
    position: relative; overflow: hidden;
    background-image: var(--lp-img); background-size: cover; background-position: center;
    padding: clamp(70px, 12vw, 150px) 0 clamp(48px, 8vw, 96px);
}
.lp-hero-scrim { position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(105deg, rgba(18,28,24,.82) 0%, rgba(18,28,24,.55) 42%, rgba(18,28,24,.18) 100%); }
.lp-hero--img .wrap { position: relative; z-index: 1; }
.lp-hero--img h1 { color: #fff; }
.lp-hero--img .lp-intro { color: rgba(255,255,255,.9); }
.lp-hero--img .accent { color: var(--gold); }
.benefits-sec { padding: 40px 0; }
.benefits { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.benefits li { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-sm); box-shadow: var(--shadow-sm); }
.b-idx { font-family: var(--serif); font-size: 1.1rem; color: var(--amber); font-weight: 600; }
.benefits li span:last-child { color: var(--ink); font-weight: 500; }

/* ---------- Touren-Tipps (Motorrad-LP) ---------- */
.tours-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 20px; }
.tour { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); }
.tour-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.tour-head h3 { font-size: 1.2rem; }
.tour-km { flex-shrink: 0; font-weight: 600; font-size: .8rem; color: var(--amber-2); background: rgba(194,119,47,.1); padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.tour-char { color: var(--ink); font-size: .95rem; margin: 0 0 12px; }
.tour-route { color: var(--ink-soft); font-size: .86rem; margin: 0; line-height: 1.55; }
.tour-route-label { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-2); margin-right: 6px; }
@media (max-width: 760px) { .tours-list { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 0; font-family: var(--serif); font-size: 1.18rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--amber); border-radius: 2px; transition: transform .2s; }
.faq-plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 0 22px; color: var(--ink-soft); max-width: 720px; }

/* ---------- Page hero (innere Seiten) ---------- */
.page-hero { padding: clamp(46px, 7vw, 80px) 0 20px; }
.page-hero h1 { margin: 6px 0 14px; }
.page-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 640px; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.contact-card { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-sm); transition: transform .2s, border-color .2s; }
.contact-card:hover { transform: translateY(-3px); border-color: var(--amber); }
.cc-k { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.cc-v { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.contact-card--cta { background: var(--forest); border-color: var(--forest); }
.contact-card--cta .cc-k { color: var(--gold); }
.contact-card--cta .cc-v { color: #fff; }

/* ---------- Breadcrumbs ---------- */
.crumbs { padding: 16px 0 0; font-size: .85rem; color: var(--ink-soft); }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--amber-2); }
.crumb-sep { margin: 0 8px; opacity: .5; }
.crumb-cur { color: var(--ink); font-weight: 500; }

/* ---------- Legal ---------- */
.legal-wrap { max-width: 760px; }
.legal-wrap h2 { font-size: 1.4rem; margin: 30px 0 10px; }
.legal-wrap p { color: var(--ink-soft); }
.legal-note { font-size: .9rem; margin-top: 24px; }

/* ---------- Anfrage-Funnel (dunkles Panel) ---------- */
.funnel-sec { background: var(--forest); color: #f3ecdd; padding: 76px 0; }
.funnel-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: start; }
.funnel-head h2 { color: #fff; margin-bottom: 16px; }
.funnel-head p { color: rgba(243,236,221,.8); font-size: 1.05rem; }
.funnel-mail { display: inline-block; margin-top: 10px; margin-right: 18px; color: var(--gold); font-weight: 600; border-bottom: 1px solid rgba(217,162,83,.4); }
.funnel { background: var(--card); border-radius: var(--r); padding: 30px; box-shadow: var(--shadow); color: var(--ink); }
.f-row { display: flex; gap: 16px; flex-wrap: wrap; }
.field { flex: 1; min-width: 160px; margin-bottom: 16px; display: flex; flex-direction: column; }
.field--sm { flex: 0 0 110px; min-width: 90px; }
.field label { font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field .req { color: var(--amber); }
.field input, .field select, .field textarea {
    font-family: var(--sans); font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--line);
    border-radius: var(--r-sm); background: #fff; color: var(--ink); width: 100%; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); }
.field textarea { resize: vertical; min-height: 96px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-error { color: #b0301f; font-size: .92rem; margin-top: 12px; min-height: 1em; }
.funnel-note { font-size: .82rem; color: var(--ink-soft); margin: 14px 0 0; }
.funnel-done { text-align: center; padding: 20px 0; }
.funnel-done .seal { width: 56px; height: 56px; border-radius: 50%; background: var(--forest); color: #fff; display: grid; place-items: center; font-size: 1.6rem; margin: 0 auto 14px; }
.funnel-done h3 { color: var(--forest); }

/* ---------- Footer ---------- */
.foot { background: var(--forest-2); color: rgba(243,236,221,.78); padding: 60px 0 28px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 2.6fr; gap: 44px; padding-bottom: 36px; border-bottom: 1px solid rgba(243,236,221,.14); }
.foot-brand .brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.3rem; color: #fff; margin-bottom: 14px; }
.foot-brand p { color: rgba(243,236,221,.68); font-size: .96rem; max-width: 340px; }
.foot-region { color: var(--gold) !important; font-weight: 600; }
.foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.foot-h { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.foot-col a { display: block; color: rgba(243,236,221,.74); font-size: .92rem; padding: 4px 0; transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; font-size: .84rem; color: rgba(243,236,221,.55); }
.foot-cxp { color: var(--gold); font-weight: 600; }
.foot-cxp:hover { color: #fff; }

/* ---------- Reveal (abgeschaltet: Inhalte immer sichtbar — keine Leerflächen/Umbrüche) ---------- */
.reveal, .reveal.d1, .reveal.d2, .reveal.d3 { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---------- Mobile ---------- */
@media (max-width: 920px) {
    .intro-grid, .lp-text-grid, .u-detail-grid, .u-detail-cols, .region-grid, .funnel-grid, .foot-top { grid-template-columns: 1fr; gap: 30px; }
    .lp-text-grid h2 { position: static; }
    .region-media { order: -1; }
    .foot-cols { grid-template-columns: 1fr 1fr; }
}
/* Nav klappt früh zum Burger (volle Nav ist breiter als ~860px) */
@media (max-width: 980px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
        background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px 18px 22px;
        transform: translateY(-130%); transition: transform .28s ease; box-shadow: var(--shadow);
    }
    body.nav-open .nav-links { transform: translateY(0); }
    .nav-links a { padding: 13px 8px; font-size: 1.02rem; border-bottom: 1px solid var(--line-2); }
    .nav-cta { text-align: center; margin-top: 10px; }
}
@media (max-width: 760px) {
    .section { padding: 52px 0; }
    .hero-facts { gap: 22px; }
    .foot-cols { grid-template-columns: 1fr; }
    .f-row { flex-direction: column; gap: 0; }
    .field--sm { flex: 1; }
}
