﻿/* ===== Ferienwohnungen Konermann – Clean White Rustikal ===== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
    --white:       #ffffff;
    --off-white:   #faf9f7;
    --stone:       #f0ede8;
    --stone-mid:   #e2ddd7;
    --stone-dark:  #c5bdb3;
    --bark:        #8b7355;
    --bark-light:  #a68c6e;
    --bark-dark:   #5c4a35;
    --ink:         #2a2420;
    --ink-soft:    #4a433c;
    --ink-muted:   #7a706a;
    --green:       #4a6741;
    --green-light: #6a8a61;
    --radius-sm:   4px;
    --radius:      8px;
    --radius-lg:   16px;
    --shadow-sm:   0 1px 4px rgba(42,36,32,0.07);
    --shadow:      0 4px 20px rgba(42,36,32,0.10);
    --shadow-lg:   0 12px 40px rgba(42,36,32,0.14);
    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Jost', system-ui, sans-serif;
    --max-width:   1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink-soft);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--bark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--bark-dark); }
img { max-width: 100%; display: block; }

/* ===== DIVIDER ===== */
.divider {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--bark-light);
    margin: 1rem 0 1.5rem;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ===== NAVBAR ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--stone-mid);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 68px;
}

.nav-logo { display: flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.nav-logo-image {
    width: 186px;
    height: 52px;
    object-fit: contain;
    object-position: left center;
}
.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.2;
    letter-spacing: 0.01em;
}
.nav-logo-text strong {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-links a {
    color: var(--ink-muted);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--bark); background: var(--stone); }
.nav-links .nav-cta a {
    background: var(--ink);
    color: var(--white);
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-sm);
}
.nav-links .nav-cta a:hover { background: var(--bark-dark); color: var(--white); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ink);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/hero.png') center center / cover no-repeat;
    background-color: var(--stone);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(250,249,247,0.15) 0%,
        rgba(42,36,32,0.40) 60%,
        rgba(42,36,32,0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 2rem 1.5rem;
    max-width: 820px;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-text {
    font-size: 1.05rem;
    font-weight: 300;
    opacity: 0.88;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--ink);
    padding: 0.85rem 2.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--stone); color: var(--bark-dark); text-decoration: none; transform: translateY(-2px); }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.6);
    padding: 0.85rem 2.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s;
    margin-left: 0.75rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; text-decoration: none; }

.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem; }

/* ===== SECTIONS ===== */
.section { padding: 6rem 1.5rem; }
.section-light  { background: var(--off-white); }
.section-white  { background: var(--white); }
.section-stone  { background: var(--stone); }
.section-dark   { background: var(--ink); color: rgba(255,255,255,0.88); }

.container { max-width: var(--max-width); margin: 0 auto; }

.section-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bark);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    color: inherit;
}

h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.section-intro {
    max-width: 720px;
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 1.25rem;
    line-height: 1.85;
    color: var(--ink-muted);
}

/* ===== STATS ===== */
.stats-section { padding: 4.5rem 1.5rem; background: var(--stone); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--bark);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 400;
}

/* ===== APARTMENT CARDS ===== */
.apartment-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.apartment-card {
    background: var(--white);
    border: 1px solid var(--stone-mid);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.apartment-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.apartment-img-placeholder {
    height: 280px;
    background: linear-gradient(135deg, var(--stone) 0%, var(--stone-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone-dark);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

.apartment-card-body { padding: 2rem; }
.apartment-card-body h3 {
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 0.3rem;
}
.apartment-meta {
    font-size: 0.78rem;
    color: var(--bark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 400;
}
.apartment-card-body p { color: var(--ink-muted); font-weight: 300; margin-bottom: 1.25rem; }

.apartment-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.25rem;
    margin-bottom: 1.5rem;
}
.apartment-features li {
    font-size: 0.85rem;
    color: var(--ink-soft);
    font-weight: 300;
    padding-left: 1.1em;
    position: relative;
}
.apartment-features li::before { content: "—"; position: absolute; left: 0; color: var(--bark-light); font-weight: 300; }

.btn-dark {
    display: inline-block;
    background: var(--ink);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s;
}
.btn-dark:hover { background: var(--bark-dark); color: var(--white); text-decoration: none; }

.contact-box {
    background: var(--stone);
    border: 1px solid var(--stone-mid);
    border-radius: var(--radius);
    padding: 1.75rem 2.25rem;
    display: inline-block;
    margin-top: 1rem;
    line-height: 2;
}
.contact-box a { color: var(--bark); }

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.feature-item { text-align: center; }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.feature-item h3 { font-size: 1.05rem; font-weight: 400; margin-bottom: 0.4rem; color: var(--ink); }
.feature-item p { font-size: 0.88rem; color: var(--ink-muted); font-weight: 300; line-height: 1.65; }

/* ===== TECKLENBURG HIGHLIGHTS ===== */
.tecklenburg-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}
.highlight-item {
    background: var(--white);
    border: 1px solid var(--stone-mid);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: border-color 0.2s;
}
.highlight-item:hover { border-color: var(--stone-dark); }
.highlight-item h3 { font-size: 1.1rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
.highlight-item p { font-size: 0.9rem; color: var(--ink-muted); font-weight: 300; line-height: 1.7; }

/* ===== MAP ===== */
.map-container { margin-top: 3rem; }
.map-caption { text-align: right; font-size: 0.78rem; margin-top: 0.5rem; color: var(--ink-muted); }
.map-placeholder {
    background: var(--stone);
    border: 1px dashed var(--stone-dark);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--ink-muted);
    min-height: 200px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
}
.map-placeholder p { font-size: 0.92rem; margin: 0; font-weight: 300; }
.map-hint { font-size: 0.78rem !important; }
.map-hint a { color: var(--bark); }

/* ===== CONTACT ===== */
.contact-section { text-align: center; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    text-align: left;
}
.contact-item h3 { font-size: 1.1rem; font-weight: 400; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; font-family: var(--font-sans); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.78rem; }
.contact-item p { color: rgba(255,255,255,0.88); font-weight: 300; }
.contact-item a { color: rgba(255,255,255,0.75); }
.contact-item a:hover { color: #fff; }

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--off-white);
    border-bottom: 1px solid var(--stone-mid);
    padding: 8rem 1.5rem 4rem;
    text-align: center;
}
.page-header-inner { max-width: 600px; margin: 0 auto; }
.page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.page-header-sub { color: var(--ink-muted); font-weight: 300; font-size: 1.05rem; margin-top: 0.75rem; }

/* ===== BOOKING PAGE ===== */
.booking-page { min-height: 100vh; background: var(--white); }

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    padding: 4rem 1.5rem 6rem;
    align-items: start;
}

/* ===== FORM ===== */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

fieldset {
    border: 1px solid var(--stone-mid);
    border-radius: var(--radius);
    padding: 2rem;
    background: var(--off-white);
}

legend {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink);
    padding: 0 0.75rem;
    letter-spacing: 0.01em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1.25rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.97rem;
    font-weight: 300;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--stone-mid);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a68c6e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bark-light);
    box-shadow: 0 0 0 3px rgba(166,140,110,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--stone-dark); font-weight: 300; }
.form-group textarea { resize: vertical; min-height: 120px; }

.req { color: var(--bark); font-weight: 500; }

/* Privacy notice */
.privacy-notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--stone-mid);
    border-left: 3px solid var(--bark-light);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin-top: 1.25rem;
}
.privacy-icon { color: var(--bark-light); flex-shrink: 0; margin-top: 2px; }
.privacy-notice strong { display: block; font-size: 0.85rem; font-weight: 500; color: var(--ink); margin-bottom: 0.35rem; letter-spacing: 0.03em; }
.privacy-notice p { font-size: 0.83rem; color: var(--ink-muted); line-height: 1.65; font-weight: 300; margin: 0; }
.privacy-notice a { color: var(--bark); }

/* Consent checkbox */
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--ink-muted);
    font-weight: 300;
    line-height: 1.6;
}
.consent-label input[type="checkbox"] {
    width: 17px; height: 17px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--bark);
    cursor: pointer;
}
.consent-label a { color: var(--bark); }

.btn-submit {
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
}
.btn-submit:hover { background: var(--bark-dark); transform: translateY(-1px); }

.form-hint { font-size: 0.78rem; color: var(--ink-muted); font-weight: 300; margin-top: -1.5rem; }

/* ===== BOOKING SIDEBAR ===== */
.booking-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
    background: var(--off-white);
    border: 1px solid var(--stone-mid);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.sidebar-card h3 { font-size: 1.1rem; font-weight: 400; color: var(--ink); margin-bottom: 0.25rem; }
.sidebar-card p { font-size: 0.88rem; color: var(--ink-muted); font-weight: 300; }
.sidebar-phone { font-family: var(--font-serif); font-size: 1.3rem !important; font-weight: 400 !important; margin: 0.4rem 0 0 !important; }
.sidebar-phone a { color: var(--ink) !important; }
.sidebar-email a { color: var(--bark); font-size: 0.85rem !important; }
.sidebar-list { list-style: none; margin: 0.5rem 0 0.85rem; }
.sidebar-list li { font-size: 0.83rem; color: var(--ink-muted); font-weight: 300; padding-left: 1em; position: relative; }
.sidebar-list li::before { content: "—"; position: absolute; left: 0; color: var(--stone-dark); }
.sidebar-link { font-size: 0.78rem; color: var(--bark); letter-spacing: 0.06em; font-weight: 400; }
.sidebar-link:hover { color: var(--bark-dark); }

/* ===== APARTMENT DETAIL PAGE ===== */
.apartment-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: flex-end;
    background: url('../images/hero.png') center center / cover no-repeat;
    background-color: var(--stone);
}
.apartment-hero .hero-overlay {
    background: linear-gradient(to top, rgba(42,36,32,0.75) 0%, rgba(42,36,32,0.2) 60%, transparent 100%);
}
.apartment-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 3rem 2rem;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}
.apartment-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 0.5rem;
}
.apartment-hero-meta { font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

.apartment-detail { padding: 3.5rem 1.5rem 6rem; }
.apartment-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; margin-top: 2rem; }

.apartment-detail-main h2 { font-size: 2rem; font-weight: 300; color: var(--ink); margin-bottom: 1.25rem; }

.apartment-detail-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}
.apartment-detail-main p { font-weight: 300; color: var(--ink-muted); margin-bottom: 1rem; line-height: 1.85; }
.apartment-detail-main h3 { font-size: 1.2rem; font-weight: 400; color: var(--ink); margin-bottom: 0.75rem; }
.apartment-detail-main strong { color: var(--ink); font-weight: 500; }

.apartment-detail-main ul {
    list-style: none;
    margin: 0.5rem 0 1.25rem;
    padding: 0;
}
.apartment-detail-main ul li {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--ink-soft);
    padding-left: 1.4em;
    position: relative;
    margin-bottom: 0.3rem;
    line-height: 1.7;
}
.apartment-detail-main ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--bark-light);
    font-weight: 300;
}

.apartment-amenities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}
.apartment-amenities li { font-size: 0.9rem; font-weight: 300; color: var(--ink-soft); padding-left: 1.2em; position: relative; }
.apartment-amenities li::before { content: "—"; position: absolute; left: 0; color: var(--bark-light); }

.booking-box {
    background: var(--off-white);
    border: 1px solid var(--stone-mid);
    border-radius: var(--radius);
    padding: 2rem;
    position: sticky;
    top: 90px;
}
.booking-box h3 { font-size: 1.2rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--ink); }
.booking-box p { font-size: 0.9rem; font-weight: 300; margin-bottom: 0.35rem; color: var(--ink-muted); }
.price-note { color: var(--bark) !important; font-weight: 500 !important; font-size: 1.1rem !important; }
.sidebar-info { background: var(--white); border: 1px solid var(--stone-mid); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.25rem; }
.sidebar-info h3 { font-size: 1rem; color: var(--ink); margin-bottom: 0.5rem; }
.sidebar-info p { font-size: 0.88rem; color: var(--ink-muted); font-weight: 300; }

.back-link { display: inline-block; margin-bottom: 2rem; color: var(--bark); font-size: 0.82rem; letter-spacing: 0.05em; }
.back-link:hover { color: var(--bark-dark); }

/* ===== LEGAL PAGES ===== */
.legal-page { padding-top: 7rem; padding-bottom: 5rem; min-height: 100vh; background: var(--off-white); }
.legal-content {
    background: var(--white);
    border: 1px solid var(--stone-mid);
    border-radius: var(--radius);
    padding: 3rem 3.5rem;
    max-width: 800px;
}
.legal-content h1 { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 300; margin-bottom: 1.5rem; color: var(--ink); }
.legal-content h2 { font-size: 1.1rem; font-weight: 500; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--ink); font-family: var(--font-sans); letter-spacing: 0.05em; }
.legal-content p, .legal-content li { font-size: 0.92rem; line-height: 1.85; margin-bottom: 0.75rem; color: var(--ink-muted); font-weight: 300; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content hr { border: none; border-top: 1px solid var(--stone-mid); margin: 2rem 0; }
.legal-content a { color: var(--bark); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: rgba(42,36,32,0.98);
    border-top: 1px solid rgba(166,140,110,0.3);
    display: flex; justify-content: center;
    padding: 1.5rem;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.25);
}
.cookie-inner { max-width: var(--max-width); width: 100%; display: flex; gap: 2rem; align-items: flex-start; justify-content: space-between; }
.cookie-body { flex: 1; }
.cookie-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; color: rgba(255,255,255,0.9); margin-bottom: 0.4rem; }
.cookie-text { color: rgba(255,255,255,0.55); font-size: 0.83rem; line-height: 1.65; margin-bottom: 0.85rem; font-weight: 300; }
.cookie-text a { color: var(--bark-light); }
.cookie-categories { display: flex; flex-direction: column; gap: 0.5rem; }
.cookie-category { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.4; font-weight: 300; }
.cookie-category-disabled { opacity: 0.45; cursor: default; }
.cookie-category input[type="checkbox"] { margin-top: 2px; accent-color: var(--bark-light); flex-shrink: 0; width: 14px; height: 14px; }
.cookie-category strong { color: rgba(255,255,255,0.8); display: block; font-weight: 400; }
.cookie-category small { color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.cookie-actions { display: flex; flex-direction: column; gap: 0.5rem; flex-shrink: 0; min-width: 175px; }
.cookie-btn { padding: 0.55rem 1rem; border: none; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 500; cursor: pointer; width: 100%; letter-spacing: 0.06em; transition: opacity 0.2s; }
.cookie-btn-accept { background: var(--bark-light); color: var(--white); }
.cookie-btn-selection { background: transparent; color: var(--bark-light); border: 1px solid var(--bark-light); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.15); }
.footer-cookie-btn { background: none; border: none; color: var(--ink-muted); font-size: 0.8rem; cursor: pointer; text-decoration: underline; padding: 0; font-family: var(--font-sans); }
.footer-cookie-btn:hover { color: var(--bark); }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 3rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 2.2;
}
.footer-brand { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 300; color: rgba(255,255,255,0.75); margin-bottom: 0.25rem; }
.footer-brand strong { font-weight: 600; color: rgba(255,255,255,0.9); }
.site-footer a { color: rgba(255,255,255,0.45); }
.site-footer a:hover { color: var(--bark-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .tecklenburg-highlights { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .apartment-detail-grid { grid-template-columns: 1fr; }
    .booking-box { position: static; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-sidebar { flex-direction: row; flex-wrap: wrap; }
    .sidebar-card { flex: 1; min-width: 220px; }
}

@media (max-width: 768px) {
    /* ── Globales Zentrieren auf Mobile ── */
    .section { padding: 3.5rem 1.25rem; text-align: center; }
    .section-dark { text-align: center; }
    .section-label { text-align: center; }
    .divider { margin-left: auto; margin-right: auto; }
    h2 { text-align: center; }
    .section-intro { text-align: center; margin-left: auto; margin-right: auto; }

    /* Über uns */
    .section-white .container,
    .section-light .container,
    .section-stone .container { text-align: center; }

    /* Stats */
    .stats-section { text-align: center; }
    .stats-grid { grid-template-columns: 1fr; gap: 2rem; }

    /* Apartment Cards */
    .apartment-cards { grid-template-columns: 1fr; }
    .apartment-card-body { text-align: center; }
    .apartment-features { justify-content: center; }
    .apartment-features li { text-align: left; }
    .btn-dark { display: block; width: 100%; text-align: center; }

    /* contact-box */
    .contact-box { display: block; text-align: center; width: 100%; }

    /* Features */
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    /* Tecklenburg Highlights */
    .tecklenburg-highlights { grid-template-columns: 1fr; }
    .highlight-item { text-align: center; }

    /* Kontakt */
    .contact-grid { grid-template-columns: 1fr; text-align: center; }
    .contact-item { text-align: center; }

    /* Apartment Detail */
    .apartment-hero-content { text-align: center; }
    .apartment-detail-main { text-align: center; }
    .apartment-amenities { grid-template-columns: 1fr; }
    .apartment-amenities li { text-align: left; }
    .back-link { display: block; text-align: center; }
    .booking-box { text-align: center; }

    /* Buchungsseite */
    .booking-layout { grid-template-columns: 1fr; padding: 2rem 1.25rem 4rem; }
    .booking-sidebar { flex-direction: column; }
    .sidebar-card { text-align: center; }
    .sidebar-list li { text-align: left; }
    .btn-submit { width: 100%; text-align: center; }
    fieldset { padding: 1.25rem; }
    .privacy-notice { flex-direction: column; text-align: left; }

    /* Legal */
    .legal-page { padding: 5.5rem 1rem 3rem; }
    .legal-content { padding: 1.5rem; }

    /* Cookie Banner */
    .cookie-inner { flex-direction: column; gap: 1rem; }
    .cookie-actions { min-width: 0; width: 100%; flex-direction: row; flex-wrap: wrap; }
    .cookie-btn { flex: 1; min-width: 130px; }

    /* Nav */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(255,255,255,0.99);
        border-bottom: 1px solid var(--stone-mid);
        padding: 1rem 1.5rem 1.5rem;
        gap: 0.25rem;
    }
    .nav-links.open { display: flex; }
    .nav-links a { color: var(--ink-soft); }
    .nav-links .nav-cta a { background: var(--ink); color: #fff; }
    .nav-toggle { display: block; }
    .nav-logo-image { width: 150px; height: 46px; }
    .apartment-cards { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; text-align: center; }
    .tecklenburg-highlights { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .cookie-inner { flex-direction: column; gap: 1rem; }
    .cookie-actions { min-width: 0; width: 100%; flex-direction: row; flex-wrap: wrap; }
    .cookie-btn { flex: 1; min-width: 130px; }
    .legal-content { padding: 1.75rem; }
    .section { padding: 4rem 1.25rem; }
    .apartment-amenities { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    fieldset { padding: 1.5rem; }
    .booking-sidebar { flex-direction: column; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; width: 100%; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; margin-left: 0; }
    .form-row { grid-template-columns: 1fr; }
    .apartment-img-placeholder { height: 200px; }
    .navbar { padding: 0 1rem; }
    .nav-logo-image { width: 126px; height: 42px; }
}

/* ===== IMPRESSIONEN GALERIE ===== */
.impressions-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
    margin-top: 2.5rem;
}
.impression-item {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--stone);
    line-height: 0;
}
.impression-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.impression-item:hover img { transform: scale(1.03); }
.impression-main {
    grid-row: 1 / 3;
    min-height: 420px;
}
.impressions-grid .impression-item:not(.impression-main) {
    min-height: 195px;
}

/* ===== ZIMMER ÜBERSICHT ===== */
.zimmer-gruppe {
    margin-top: 3rem;
}
.zimmer-gruppe-titel {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--stone-mid);
}
.zimmer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.zimmer-card {
    background: var(--white);
    border: 1px solid var(--stone-mid);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}
.zimmer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.zimmer-card-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    background: var(--bark);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 3px;
    z-index: 1;
}
.zimmer-card-badge-dz { background: var(--green, #4a6741); }
.zimmer-card-badge-ez { background: var(--ink-muted); }

.zimmer-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--stone) 0%, var(--stone-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone-dark);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.zimmer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.zimmer-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}
.zimmer-nummer {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bark);
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.zimmer-card-body h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.25rem;
}
.zimmer-meta {
    font-size: 0.75rem;
    color: var(--ink-muted);
    margin-bottom: 0.6rem;
    font-weight: 300;
}
.zimmer-card-body p {
    font-size: 0.88rem;
    color: var(--ink-muted);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.btn-zimmer {
    display: inline-block;
    background: none;
    color: var(--bark);
    border: 1px solid var(--bark-light);
    padding: 0.45rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}
.btn-zimmer:hover { background: var(--bark); color: #fff; text-decoration: none; }

/* ===== ZIMMER TYP-BADGE (Detail-Seite) ===== */
.zimmer-typ-badge {
    display: inline-block;
    background: var(--bark);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}
.badge-dz { background: #4a6741; }
.badge-ez { background: var(--ink-muted); }
.badge-fw { background: var(--bark); }

/* ===== RESPONSIVE GALERIE + ZIMMER ===== */
@media (max-width: 900px) {
    .zimmer-cards { grid-template-columns: repeat(2, 1fr); }
    .impressions-grid { grid-template-columns: 1fr 1fr; }
    .impression-main { grid-row: auto; min-height: 240px; grid-column: 1 / 3; }
    .impressions-grid .impression-item:not(.impression-main) { min-height: 160px; }
}
@media (max-width: 600px) {
    .zimmer-cards { grid-template-columns: 1fr; }
    .impressions-grid { grid-template-columns: 1fr; }
    .impression-main { grid-column: auto; }
}
