/* ============================================
   WITTINGHOF – Stylesheet nach CI Erstentwurf
   Primärfarbe: Orange #EC822E
   Hintergründe: Weiß / Hellcreme
   Typografie: Nunito (rund, modern) + Lora Italic
   ============================================ */

:root {
    --orange: #EC822E;
    --orange-dark: #d06820;
    --orange-light: #f5a060;
    --orange-bg: #fff5ed;
    --orange-pale: #fef0e3;

    --white: #ffffff;
    --cream: #fdfaf6;
    --off-white: #f9f6f2;
    --border: #ede8e2;

    --text: #2c2018;
    --text-mid: #5a4535;
    --text-light: #8a7060;

    --font-brand: 'Nunito', 'Segoe UI Rounded', system-ui, sans-serif;
    --font-serif: 'Lora', Georgia, serif;
    --font-sans: 'Nunito', system-ui, sans-serif;

    --radius: 14px;
    --radius-lg: 24px;
    --shadow: 0 4px 20px rgba(0,0,0,0.07);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.11);
    --transition: 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-brand);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* Slogan = Lora Italic */
.slogan {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

p { color: var(--text-light); line-height: 1.85; }

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }
.text-white { color: var(--white) !important; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}
.section-header p { margin-top: 1rem; font-size: 1.05rem; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-brand);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236,130,46,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.8);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--orange);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-orange {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}
.btn-outline-orange:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
    padding: 0.7rem 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo--text {
    font-family: var(--font-brand);
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -0.02em;
    color: white;
    text-decoration: none;
    transition: color var(--transition);
}
.navbar.scrolled .nav-logo--text { color: var(--orange); }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    transition: color var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width var(--transition);
    border-radius: 2px;
}
.nav-link:hover::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link.nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    border: 2px solid var(--orange);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 16px rgba(236,130,46,0.4);
    transition: all 0.25s ease;
}
.nav-link.nav-cta:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    box-shadow: 0 6px 20px rgba(236,130,46,0.5);
    transform: translateY(-1px);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta::after { display: none; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: rgba(255,255,255,0.9);
    transition: all var(--transition);
    border-radius: 2px;
}
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* ============ HERO ============ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-media {
    position: absolute;
    inset: 0;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 40% 80%;
}
/* Leichtes, helles Overlay – unten stärker für Text-Lesbarkeit */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.15) 20%,
        rgba(0,0,0,0.05) 45%,
        rgba(0,0,0,0.42) 85%,
        rgba(0,0,0,0.55) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    max-width: 820px;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem;
    background: rgba(236,130,46,0.85);
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
}
.hero-wordmark {
    font-family: var(--font-brand);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-slogan {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: rgba(255,255,255,1);
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6), 0 2px 24px rgba(0,0,0,0.5);
    font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.8);
    animation: bounce 2s infinite;
}
.hero-scroll svg { width: 28px; height: 28px; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ WELCOME ============ */
.welcome { background: var(--white); }
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.welcome-text h2 { margin-bottom: 1.2rem; }
.welcome-text p { margin-bottom: 1rem; }
.welcome-text .btn { margin-top: 1.2rem; }
.welcome-images {
    position: relative;
    height: 520px;
}
.welcome-images .img-main {
    position: absolute;
    top: 0; left: 0;
    width: 80%; height: 85%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.welcome-images .img-small {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%; height: 50%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

/* ============ FULLWIDTH IMAGE ============ */
.fullwidth-image {
    position: relative;
    height: clamp(280px, 45vw, 560px);
    overflow: hidden;
}
.fullwidth-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 60%;
}
.fullwidth-caption {
    position: absolute;
    bottom: 1.5rem; right: 2rem;
    background: rgba(236,130,46,0.88);
    color: var(--white);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* ============ ERLEBNIS ============ */
.erlebnis { background: var(--off-white); }
.erlebnis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.erlebnis-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.erlebnis-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-light);
}
.erlebnis-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.erlebnis-card:hover img { transform: scale(1.04); }
.erlebnis-card-body { padding: 1.5rem; }
.erlebnis-card-body h3 { margin-bottom: 0.5rem; font-size: 1.1rem; color: var(--text); }
.erlebnis-card-body p { font-size: 0.9rem; }

/* ============ GALLERY STRIP ============ */
.gallery-strip {
    overflow: hidden;
    padding: 2.5rem 0;
    background: var(--orange-pale);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.gallery-track {
    display: flex;
    gap: 1.25rem;
    animation: galleryScroll 35s linear infinite;
    width: max-content;
}
.gallery-track img {
    width: 300px;
    height: 210px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}
@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.gallery-strip:hover .gallery-track { animation-play-state: paused; }

/* ============ FERIENWOHNUNGEN ============ */
.ferienwohnungen { background: var(--white); }
.wohnung-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.wohnung-card:last-child { margin-bottom: 0; }
.wohnung-card--reverse { direction: rtl; }
.wohnung-card--reverse > * { direction: ltr; }
.wohnung-images { position: relative; }
.wohnung-slider { position: relative; height: 440px; overflow: hidden; }
.wohnung-slider img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.wohnung-slider img.active { opacity: 1; }
.slider-dots {
    position: absolute;
    bottom: 1rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}
.dot.active { background: var(--white); transform: scale(1.3); }
.wohnung-info { padding: 3rem 3.5rem; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.wohnung-info .btn { align-self: stretch; text-align: center; justify-content: center; }
.wohnung-info h3 { margin: 0.5rem 0 1rem; font-size: 1.7rem; }
.wohnung-info > p { margin-bottom: 1.5rem; font-size: 0.97rem; }
.wohnung-features { margin-bottom: 2rem; }
.wohnung-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.9rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}
.wohnung-features li:last-child { border-bottom: none; }
.wohnung-features svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }

/* ============ TIERE ============ */
.tiere {
    background: var(--orange-bg);
    padding: clamp(4rem, 8vw, 8rem) 0;
    position: relative;
}
.tiere-content { max-width: 600px; margin-bottom: 3rem; }
.tiere-content h2 { color: var(--text); margin: 0.5rem 0 1rem; }
.tiere-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.tier-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}
.tier-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tier-item:hover img { transform: scale(1.06); }
.tier-item span {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
    color: var(--white);
    padding: 2rem 1rem 0.75rem;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

/* ============ ORANGE STATEMENT ============ */
.orange-statement {
    background: var(--orange);
    padding: 5rem 0;
}
.statement-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.statement-text h2 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1rem;
}
.statement-text p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.statement-wordmark {
    font-family: var(--font-brand);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: rgba(255,255,255,0.3);
    letter-spacing: -0.02em;
    text-align: right;
}

/* ============ SCHLEMMEN ============ */
.schlemmen { background: var(--white); }
.schlemmen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.schlemmen-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.schlemmen-text h2 { margin: 0.5rem 0 1.2rem; }
.schlemmen-text p { margin-bottom: 1rem; }
.schlemmen-features {
    display: grid;
    gap: 0.75rem;
    margin-top: 2rem;
}
.schlemmen-feat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--orange-pale);
    border-radius: var(--radius);
    border-left: 3px solid var(--orange);
}
.schlemmen-feat svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.schlemmen-feat span { font-weight: 700; font-size: 0.9rem; color: var(--text-mid); }

/* ============ BUCHEN ============ */
.buchen { background: var(--off-white); }
.booking-widget-container {
    max-width: 760px;
    margin: 0 auto;
}
.booking-placeholder {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.booking-placeholder-inner {
    padding: 3rem;
    text-align: center;
}
.uab-logo {
    height: 56px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
}
.booking-placeholder-inner h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.booking-placeholder-inner p {
    max-width: 460px;
    margin: 0 auto 0.75rem;
}
.booking-note { font-weight: 700; color: var(--text); margin-top: 1.5rem !important; }
.booking-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.booking-contact .btn-outline { color: var(--orange); border-color: var(--orange); }
.booking-contact .btn-outline:hover { background: var(--orange); color: var(--white); }

/* ============ ANFAHRT ============ */
.anfahrt { background: var(--white); }
.anfahrt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.anfahrt-text h2 { margin: 0.5rem 0 2rem; }
.kontakt-info { display: grid; gap: 1.5rem; }
.kontakt-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.kontakt-item svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.kontakt-item a { color: var(--orange); font-weight: 700; }
.kontakt-item a:hover { text-decoration: underline; }
.map-placeholder {
    background: var(--orange-pale);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    gap: 1rem;
    border: 1px solid var(--border);
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--orange); opacity: 0.5; }
.map-placeholder p { text-align: center; font-size: 0.9rem; }

/* ============ FOOTER ============ */
.footer { background: var(--text); color: rgba(255,255,255,0.65); padding: 4rem 0 1.5rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
}
.footer-logo { height: 46px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; margin-bottom: 1.5rem; font-style: italic; color: rgba(255,255,255,0.5); }
.uab-logo-footer { height: 38px; opacity: 0.65; }
.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { text-align: center; font-size: 0.78rem; }

/* ============ REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .welcome-grid, .schlemmen-grid, .anfahrt-grid { gap: 3rem; }
    .erlebnis-grid { grid-template-columns: repeat(2, 1fr); }
    .tiere-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .wohnung-info { padding: 2.5rem; }
    .statement-inner { grid-template-columns: 1fr; gap: 2rem; }
    .statement-wordmark { text-align: left; }
    .akt-layout { gap: 2.5rem; }
}

/* ===== TABLET (768px) ===== */
@media (max-width: 768px) {
    /* Navbar – Slide-in Menu */
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        height: 100dvh;
        width: min(300px, 85vw);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        gap: 0.5rem;
        transition: right 0.35s ease;
        box-shadow: -4px 0 40px rgba(0,0,0,0.14);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-menu li { width: 100%; }
    .nav-link {
        color: var(--text);
        font-size: 1.05rem;
        padding: 0.75rem 0;
        display: block;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }
    .nav-link.nav-cta {
        margin-top: 1rem;
        text-align: center;
        border-bottom: none;
        padding: 0.85rem 1.5rem;
        width: auto;
        align-self: flex-start;
    }
    .nav-toggle { display: flex; }
    .nav-logo--text { font-size: 1.3rem; }

    /* Sections */
    .section { padding: clamp(2.5rem, 8vw, 4rem) 0; }
    .section-header { margin-bottom: 2.5rem; }

    /* Überschriften überall zentrieren */
    .welcome-text, .schlemmen-text, .anfahrt-text,
    .wohnung-info, .tiere-content {
        text-align: center;
        align-items: center;
    }
    .welcome-text .btn, .schlemmen-text .btn { align-self: center; }
    .wohnung-info .btn { align-self: stretch; }
    .wohnung-features li { justify-content: flex-start; }
    .kontakt-info { text-align: left; }
    .schlemmen-features { justify-content: center; }
    .eyebrow { display: block; }
    .tiere-content { margin-bottom: 2rem; }

    /* Hero */
    .hero-content { padding-bottom: 3rem; }
    .hero-wordmark { font-size: clamp(2.8rem, 12vw, 4rem) !important; }
    .hero-slogan { font-size: clamp(1.1rem, 4vw, 1.5rem) !important; }
    .hero-actions { flex-direction: column; align-items: center; gap: 0.75rem; }
    .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

    /* Grids */
    .welcome-grid, .schlemmen-grid, .anfahrt-grid { grid-template-columns: 1fr; }
    .welcome-images { height: 260px; }
    .wohnung-card, .wohnung-card--reverse { grid-template-columns: 1fr; direction: ltr; }
    .wohnung-slider { height: 240px; }
    .erlebnis-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .tiere-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .wohnung-info { padding: 1.75rem; }
    .wohnung-features { grid-template-columns: 1fr; }

    /* Aktivitäten */
    .akt-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .akt-photos { display: none; }
    .akt-list { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

    /* Instagram */
    .insta-header { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }

    /* Schlemmen features */
    .schlemmen-features { gap: 0.75rem; }

    /* Orange Statement */
    .orange-statement { padding: 3rem 0; }
    .statement-text h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .statement-wordmark { display: none; }
}

/* ===== MOBILE (480px) ===== */
@media (max-width: 480px) {
    /* Navbar */
    .nav-container { padding: 0 1.25rem; }

    /* Hero */
    .hero-eyebrow { font-size: 0.68rem; }

    /* Sections */
    .container { padding: 0 1.25rem; }
    .section { padding: 2.5rem 0; }
    .section-header { margin-bottom: 2rem; }

    /* Erlebnis */
    .erlebnis-grid { grid-template-columns: 1fr; }
    .erlebnis-card img { height: 200px; }

    /* Aktivitäten */
    .akt-list { grid-template-columns: 1fr; }
    .akt-item { padding: 0.85rem; }

    /* Tiere */
    .tiere-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .tier-item img { height: 120px; }

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

    /* Wohnungen */
    .wohnung-slider { height: 200px; }
    .wohnung-info { padding: 1.25rem; }

    /* Anfahrt */
    .anfahrt-map { height: 200px; }

    /* Footer */
    .footer { padding: 2.5rem 0 1.5rem; }
    .footer-links { display: none; }

    /* Buttons */
    .btn { padding: 0.8rem 1.5rem; font-size: 0.8rem; }

    /* Gallery */
    .gallery-strip { height: 160px; }
    .gallery-track img { height: 160px; width: 200px; }
}

/* ============ AKTIVITÄTEN ============ */
.aktivitaeten { background: var(--cream); }

.akt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.akt-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
}

.akt-main {
    grid-column: 1 / -1;
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 1rem;
}

.akt-side {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.akt-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.akt-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition);
}

.akt-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.akt-icon {
    flex-shrink: 0;
    width: 2.2rem;
    height: 2.2rem;
    background: var(--orange-pale);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.akt-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: var(--orange);
}

.akt-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.akt-text p {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ============ INSTAGRAM / WAS IST LOS ============ */
.instagram { background: var(--off-white); }

.insta-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.insta-follow-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insta-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 1rem;
    border: 2px dashed var(--border);
    text-align: center;
    color: var(--text-light);
}
.insta-placeholder svg { stroke: var(--orange); opacity: 0.6; }
.insta-placeholder p { font-size: 1rem; max-width: 340px; }

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

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.75rem;
    display: block;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-item:hover img { transform: scale(1.06); }

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(236,130,46,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay { opacity: 1; }

/* Mobile overrides für Aktivitäten + Instagram (müssen NACH den Basis-Stilen stehen) */
@media (max-width: 768px) {
    .akt-layout {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    .akt-photos { display: none !important; }
    .akt-list {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        width: 100%;
    }
    .insta-header { flex-direction: column; align-items: flex-start; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
}

@media (max-width: 480px) {
    .akt-list { grid-template-columns: 1fr !important; }
    .akt-item { padding: 0.85rem; }
    .insta-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
