/* ══════════════════════════════════════════════
   Fischers Ferienwohnungen – Shared Stylesheet
   Fonts: Playfair Display (headings) · Inter (body)
   ══════════════════════════════════════════════ */

:root {
    --primary:      #1e3d4f;
    --secondary:    #c8a96e;
    --light:        #f5f0e8;
    --text:         #2d3142;
    --text-light:   #6b7280;
    --white:        #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.35s, box-shadow 0.35s;
}

header.scrolled {
    background: var(--white);
    box-shadow: 0 1px 24px rgba(0,0,0,0.08);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.35s;
}
header.scrolled .logo { color: var(--primary); }

/* Auf Blog-Seiten ist der Header immer hell (kein Hero dahinter) */
header.header-light .logo { color: var(--primary); }
header.header-light { background: var(--white); box-shadow: 0 1px 24px rgba(0,0,0,0.08); }

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

nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.88);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}
header.scrolled nav a,
header.header-light nav a { color: var(--text); }
nav a:hover { color: var(--secondary) !important; }

.btn-primary {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 0.65rem 1.6rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
    background: #b8944a !important;
    transform: translateY(-1px);
}

/* ── HERO (Startseite) ── */
.hero {
    height: 100vh;
    min-height: 640px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0f2130;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-scharbeutz-sonnenaufgang.webp');
    background-size: cover;
    background-position: center 45%;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,33,48,0.3) 0%, rgba(15,33,48,0.55) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 820px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--secondary);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4.75rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.75;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--secondary);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.2s;
}
.btn-hero-primary:hover { background: #b8944a; transform: translateY(-2px); }

.btn-hero-ghost {
    border: 1.5px solid rgba(255,255,255,0.65);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s;
}
.btn-hero-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: floatDown 2.2s ease-in-out infinite;
}

@keyframes floatDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(7px); opacity: 0.8; }
}

/* ── SECTIONS ── */
section { padding: 5.5rem 2rem; }
.container { max-width: 1120px; margin: 0 auto; }

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.85rem;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

/* ── WELCOME ── */
.welcome { background: var(--white); }

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.welcome-text .section-title { margin-bottom: 1.5rem; }

.welcome-text p {
    color: var(--text-light);
    line-height: 1.85;
    font-size: 1.0rem;
    margin-bottom: 1.1rem;
}

.welcome-hosts {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--light);
    border-radius: 0.75rem;
}

.host-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.host-info strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}
.host-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.welcome-visual { position: relative; }

.welcome-image-main {
    width: 100%;
    height: 480px;
    border-radius: 1rem;
    overflow: hidden;
}
.welcome-image-main img { width: 100%; height: 100%; object-fit: cover; }

.welcome-stat {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
}

.welcome-stat strong {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
}
.welcome-stat span { font-size: 0.8rem; color: var(--text-light); margin-top: 0.25rem; }

/* ── USPs ── */
.usps { background: var(--light); }

.usps-header { text-align: center; margin-bottom: 3.5rem; }
.usps-header .section-title { margin-top: 0.5rem; }
.usps-header p {
    margin-top: 1rem;
    color: var(--text-light);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.usps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.usp-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}
.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.usp-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
}

.usp-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.6rem;
}
.usp-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ── APARTMENTS ── */
.apartments { background: var(--white); }

.apartments-header { text-align: center; margin-bottom: 3.5rem; }
.apartments-header .section-title { margin-top: 0.5rem; }
.apartments-header p {
    margin-top: 1rem;
    color: var(--text-light);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.apartments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.apt-card {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.09);
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--white);
}
.apt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.14);
}

.apt-image {
    height: 290px;
    overflow: hidden;
    position: relative;
}
.apt-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.apt-card:hover .apt-image img { transform: scale(1.05); }

.apt-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
}

.apt-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    border-radius: 2rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.star { color: #f59e0b; }

.apt-body { padding: 1.75rem 2rem 2rem; }

.apt-location {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.apt-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.85rem;
}

.apt-body > p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.apt-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f0ece4;
}

.meta-pill {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: var(--text-light);
    background: var(--light);
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
}

.apt-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.amenity-tag {
    background: #f0ece4;
    color: var(--text);
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
}

.apt-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-book-main {
    background: var(--primary);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}
.btn-book-main:hover { background: #152d3b; transform: translateY(-1px); }

.btn-book-outline {
    border: 1.5px solid #d1cbbf;
    color: var(--text);
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}
.btn-book-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ── GALLERY (North East) ── */
.gallery { background: var(--light); }

.gallery-header { text-align: center; margin-bottom: 3.5rem; }
.gallery-header .section-title { margin-top: 0.5rem; }
.gallery-header p {
    margin-top: 1rem;
    color: var(--text-light);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    margin: 0;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── ORT-IMPRESSIONEN (Scharbeutz, großformatig) ── */
.ort-gallery { background: var(--white); }

.ort-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 210px;
    gap: 1.25rem;
}

.ort-gallery-item {
    margin: 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    position: relative;
}
.ort-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.ort-gallery-item:hover img { transform: scale(1.06); }

.ort-gallery-item.large { grid-column: span 2; grid-row: span 2; }
.ort-gallery-item.tall { grid-column: span 1; grid-row: span 2; }
.ort-gallery-item.wide { grid-column: span 2; grid-row: span 1; }

.ort-gallery-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.25rem 1.25rem 0.9rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* ── LOCATION ── */
.location {
    background: var(--primary);
    color: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.location .section-label { color: var(--secondary); }
.location .section-title { color: var(--white); margin-top: 0.5rem; margin-bottom: 1.25rem; }

.location-content > p {
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    margin-bottom: 2rem;
    font-size: 0.975rem;
}

.distances { display: flex; flex-direction: column; gap: 0; }

.dist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dist-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

.dist-emoji {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.dist-text { flex: 1; }
.dist-text strong { display: block; font-size: 0.9rem; font-weight: 500; }
.dist-text span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

.dist-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
}

.location-image {
    border-radius: 1rem;
    overflow: hidden;
    height: 560px;
}
.location-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── REVIEWS ── */
.reviews { background: var(--light); }

.reviews-header { text-align: center; margin-bottom: 3.5rem; }
.reviews-header .section-title { margin-top: 0.5rem; }

.review-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.review-stat { text-align: center; }
.review-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
}
.review-stat span { font-size: 0.8rem; color: var(--text-light); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.review-stars { color: #f59e0b; font-size: 0.875rem; margin-bottom: 0.75rem; letter-spacing: 1px; }

.review-text {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.1rem;
    font-style: italic;
}

.review-footer { display: flex; justify-content: space-between; align-items: flex-end; }

.review-author strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--primary); }
.review-author span { font-size: 0.75rem; color: var(--text-light); }

.review-apt {
    font-size: 0.7rem;
    background: var(--light);
    color: var(--text-light);
    padding: 0.25rem 0.6rem;
    border-radius: 2rem;
    white-space: nowrap;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, #1e3d4f 0%, #2a5568 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
}

.cta-banner .section-label { color: var(--secondary); }

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin: 0.5rem 0 1rem;
}

.cta-banner p {
    font-size: 1.0rem;
    opacity: 0.78;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-cta-main {
    background: var(--secondary);
    color: var(--white);
    padding: 0.9rem 2.25rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.btn-cta-main:hover { background: #b8944a; transform: translateY(-2px); }

.btn-cta-ghost {
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 0.9rem 2.25rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

/* ── BOOKING / VERFÜGBARKEIT ── */
.booking { background: var(--light); }

.booking-header { text-align: center; margin-bottom: 3rem; }
.booking-header .section-title { margin-top: 0.5rem; }
.booking-header > p {
    margin-top: 1rem;
    color: var(--text-light);
    max-width: 540px;
    margin-left: auto; margin-right: auto;
    line-height: 1.7;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.75rem;
    justify-content: center;
    margin-top: 1.75rem;
}
.trust-item {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
}

.calendars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.calendar-col {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.calendar-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}
.calendarWidget, .calendarWidget * { max-width: 100%; }

.booking-tool-wrap {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    max-width: 860px;
    margin: 0 auto;
}
.booking-tool-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    text-align: center;
}

.ota-secondary {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.9;
}
.ota-secondary a { color: var(--primary); text-decoration: none; font-weight: 500; }
.ota-secondary a:hover { color: var(--secondary); }

/* ── FAQ ── */
.faq { background: var(--white); }

.faq-header { text-align: center; margin-bottom: 3.5rem; }
.faq-header .section-title { margin-top: 0.5rem; }
.faq-header p {
    margin-top: 1rem;
    color: var(--text-light);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: 0.85rem;
    margin-bottom: 0.85rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item[open] {
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary);
    transition: transform 0.25s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-answer {
    padding: 0 1.5rem 1.35rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* ── MAP ── */
.location-map {
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.location-map iframe,
#lage-karte {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}
.leaflet-popup-content {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}
.leaflet-popup-content strong {
    display: block;
    margin-bottom: 0.2rem;
}

/* ── FOOTER ── */
footer {
    background: #0d1f2d;
    color: rgba(255,255,255,0.6);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    display: block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.75;
    max-width: 260px;
}

footer h4 {
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

footer ul { list-style: none; }
footer li { margin-bottom: 0.6rem; }
footer a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
footer a:hover { color: var(--secondary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ══════════════════════════════════════════════
   BLOG – Shared
   ══════════════════════════════════════════════ */

/* ── BREADCRUMB ── */
.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid #eee9e0;
    padding: 0.75rem 2rem;
}

.breadcrumb-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--secondary); }

.breadcrumb-sep { opacity: 0.4; margin: 0 0.1rem; }

/* ── BLOG ÜBERSICHT – Karten-Grid ── */
.blog-section { background: var(--white); padding: 5rem 2rem; }

.blog-header { text-align: center; margin-bottom: 3.5rem; }
.blog-header .section-title { margin-top: 0.5rem; }
.blog-header p {
    margin-top: 1rem;
    color: var(--text-light);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

.blog-card-image {
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.55rem;
}

.blog-card-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.35;
    margin-bottom: 0.65rem;
}

.blog-card-body p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

.blog-card-link {
    display: inline-block;
    margin-top: 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1.5px solid var(--secondary);
    transition: color 0.2s;
}
.blog-card-link:hover { color: var(--secondary); }

/* ── ARTIKEL – Hero ── */
.article-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--primary);
    margin-top: 0;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.42;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,33,48,0.88) 0%, rgba(15,33,48,0.18) 65%);
}

.article-hero-content {
    position: relative;
    color: var(--white);
    padding: 2.5rem 2rem;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
}

.article-hero-content .section-label {
    color: var(--secondary);
    margin-bottom: 0.65rem;
    display: block;
}

.article-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.65rem, 3.5vw, 2.65rem);
    font-weight: 700;
    line-height: 1.2;
    max-width: 820px;
}

.article-meta {
    margin-top: 0.85rem;
    font-size: 0.82rem;
    opacity: 0.65;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ── ARTIKEL – Body ── */
.article-body {
    background: var(--white);
    padding: 4.5rem 2rem;
}

.article-prose {
    max-width: 760px;
    margin: 0 auto;
}

.article-prose h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 0.85rem;
    line-height: 1.25;
}

.article-prose h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-prose p {
    color: var(--text);
    line-height: 1.9;
    font-size: 1.025rem;
    margin-bottom: 1.15rem;
}

.article-prose ul,
.article-prose ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.article-prose li {
    color: var(--text);
    line-height: 1.8;
    font-size: 1.0rem;
    margin-bottom: 0.4rem;
}

.article-prose strong { color: var(--primary); }

.article-prose a {
    color: var(--secondary);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: color 0.2s;
}
.article-prose a:hover { color: #b8944a; }

.article-prose .tip-box {
    background: var(--light);
    border-left: 3px solid var(--secondary);
    padding: 1rem 1.25rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin: 1.5rem 0;
}

.article-prose .tip-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text);
}

.article-prose .fact-box {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0 2rem;
}

.article-prose .fact-box h2,
.article-prose .fact-box h3 {
    margin-top: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--secondary);
}

.article-prose .fact-box ul {
    margin-bottom: 0;
    padding-left: 1.1rem;
}

.article-prose .fact-box li {
    font-size: 0.95rem;
}

/* ── ARTIKEL – CTA-Box ── */
.article-cta {
    margin-top: 3rem;
    background: linear-gradient(135deg, #1e3d4f 0%, #2a5568 100%);
    border-radius: 1.25rem;
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
}

.article-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.65rem;
}

.article-cta p {
    font-size: 0.9rem;
    opacity: 0.78;
    margin-bottom: 1.5rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.article-cta .btn-cta-main {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 0.85rem 2.25rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: none;
    transition: background 0.2s, transform 0.2s;
}
.article-cta .btn-cta-main:hover { background: #b8944a; transform: translateY(-2px); }

/* ── MOBILE NAV (Hamburger) ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 210;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}
header:not(.scrolled):not(.header-light) .nav-toggle span { background: var(--white); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 198;
    opacity: 0;
    transition: opacity 0.3s;
}
.nav-overlay.active { display: block; opacity: 1; }

/* ── ENTSCHEIDUNGSHILFE / VERGLEICH ── */
.decision { background: var(--white); }

.decision-header { text-align: center; margin-bottom: 3.5rem; }
.decision-header .section-title { margin-top: 0.5rem; }
.decision-header p {
    margin-top: 1rem;
    color: var(--text-light);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 880px;
    margin: 0 auto;
}

.compare-card {
    background: var(--light);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.compare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.compare-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.compare-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.compare-apt-name {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.75rem;
    text-align: left;
    width: 100%;
}
.compare-list li {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0.65rem;
}

.compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--secondary);
    font-style: italic;
}

/* ── SCARCITY HINT ── */
.scarcity-hint {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #c0392b;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
    .welcome-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .welcome-image-main { height: 320px; }
    .welcome-stat { left: 0; bottom: -1rem; }
    .usps-grid { grid-template-columns: repeat(2, 1fr); }
    .apartments-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .ort-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .location-image { height: 320px; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .calendars-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .blog-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        box-shadow: -4px 0 32px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 205;
    }
    nav.open { right: 0; }

    nav a {
        color: var(--text) !important;
        font-size: 1rem;
    }
    nav a.btn-primary { color: var(--white) !important; }
}

@media (max-width: 640px) {
    section { padding: 4rem 1.25rem; }
    header { padding: 1rem 1.25rem; }
    .usps-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .blog-cards { grid-template-columns: 1fr; }
    .article-hero { height: 340px; }
    .blog-section { padding: 3.5rem 1.25rem; }
    .article-body { padding: 3rem 1.25rem; }
    .compare-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .compare-vs { display: none; }
    .compare-card { padding: 2rem 1.5rem; }
    .ort-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; gap: 1rem; }
    .ort-gallery-item.large,
    .ort-gallery-item.tall,
    .ort-gallery-item.wide { grid-column: span 1; grid-row: span 1; }
}

/* ══════════════════════════════════════════════
   CHAT WIDGET — KI-Concierge
   ══════════════════════════════════════════════ */

/* ── Bubble (Floating Button) ── */
.chat-bubble {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 28px rgba(30, 61, 79, 0.35);
    z-index: 999;
    transition: transform 0.25s, box-shadow 0.25s, background 0.2s;
}
.chat-bubble:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 36px rgba(30, 61, 79, 0.45);
}
.chat-bubble:active { transform: scale(1.02); }
.chat-bubble svg { color: var(--white); }

.chat-bubble-icon { display: block; }
.chat-bubble-close { display: none; }

.chat-bubble.active {
    background: var(--text);
}
.chat-bubble.active .chat-bubble-icon { display: none; }
.chat-bubble.active .chat-bubble-close { display: block; }

/* ── Chat Window ── */
.chat-window {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 380px;
    max-width: calc(100vw - 2rem);
    height: 560px;
    max-height: calc(100vh - 5rem);
    background: var(--white);
    border-radius: 1.25rem;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.18);
    z-index: 998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}
.chat-window.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ── Chat Header ── */
.chat-header {
    background: linear-gradient(135deg, #1e3d4f 0%, #2a5568 100%);
    color: var(--white);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.chat-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.chat-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
}
.chat-header-status {
    font-size: 0.72rem;
    opacity: 0.7;
    margin-top: 0.1rem;
}
.chat-header-status::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    margin-right: 0.35rem;
    vertical-align: middle;
}
.chat-close-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.4rem;
    transition: background 0.2s;
    opacity: 0.7;
}
.chat-close-btn:hover { background: rgba(255,255,255,0.12); opacity: 1; }

/* ── Chat Messages ── */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    background: var(--light);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.chat-messages::-webkit-scrollbar { width: 5px; }
.chat-messages::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

.chat-message {
    display: flex;
    max-width: 85%;
}
.chat-message-user {
    align-self: flex-end;
}
.chat-message-assistant {
    align-self: flex-start;
}

.chat-message-bubble {
    padding: 0.65rem 0.95rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    line-height: 1.55;
    word-wrap: break-word;
}
.chat-message-user .chat-message-bubble {
    background: var(--primary);
    color: var(--white);
    border-bottom-right-radius: 0.3rem;
}
.chat-message-assistant .chat-message-bubble {
    background: var(--white);
    color: var(--text);
    border-bottom-left-radius: 0.3rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

/* ── Typing Indicator ── */
.chat-typing .chat-message-bubble {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    padding: 0.8rem 1rem;
}
.chat-typing-dot {
    width: 7px;
    height: 7px;
    background: var(--text-light);
    border-radius: 50%;
    animation: chatTypingBounce 1.3s infinite ease-in-out;
}
.chat-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.chat-typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatTypingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

/* ── Suggested Questions ── */
.chat-suggested {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0 1.25rem 0.5rem;
    background: var(--light);
}
.chat-suggested:empty { display: none; }
.chat-suggestion-chip {
    background: var(--white);
    border: 1px solid #e0d8c8;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.chat-suggestion-chip:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* ── Chat Input ── */
.chat-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-top: 1px solid #f0ece4;
    flex-shrink: 0;
}
.chat-input {
    flex: 1;
    border: 1.5px solid #e8e2d5;
    border-radius: 2rem;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--secondary); }
.chat-input:disabled { opacity: 0.5; }

.chat-send-btn {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}
.chat-send-btn:hover { background: #152d3b; transform: scale(1.05); }
.chat-send-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ── Responsive ── */
@media (max-width: 480px) {
    .chat-bubble {
        bottom: 1rem;
        right: 1rem;
        width: 54px;
        height: 54px;
    }
    .chat-window {
        bottom: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    .chat-window.open {
        border-radius: 0;
    }
}
