/* ============================================================
   FLORISTIK KERN – "Botanical Warmth"
   Palette: Sage #4A6741 · Rose #C4826A · Cream #FAF7F2
   Fonts: Cormorant Garamond (headings) · Lato (body)
   ============================================================ */

/* ── RESET & VARIABLES ─────────────────────────────────────── */
:root {
    --sage:          #4A6741;
    --sage-dark:     #344B2F;
    --sage-mid:      #6A8F61;
    --sage-light:    #A8C5A0;
    --sage-pale:     #E8F0E6;
    --rose:          #C4826A;
    --rose-dark:     #9E5E47;
    --rose-light:    #DEB4A4;
    --rose-pale:     #F5E8E3;
    --cream:         #FAF7F2;
    --cream-mid:     #F2EDE4;
    --cream-dark:    #E0D5C5;
    --forest:        #1E2D1C;
    --text:          #2A2018;
    --text-mid:      #5C4F3A;
    --muted:         #8A7B68;
    --white:         #FFFFFF;
    --border:        #DDD5C5;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.65;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; }

/* ── HEADER ─────────────────────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 300;
    background: rgba(250,247,242,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--sage-dark);
    box-shadow: 0 2px 16px rgba(74,103,65,0.08);
    transition: background 0.3s, box-shadow 0.3s;
    overflow: visible;
}

.header.scrolled {
    background: rgba(250,247,242,0.99);
    box-shadow: 0 2px 24px rgba(74,103,65,0.14);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 80px;
    grid-template-areas: "nav-left nav-right";
    align-items: center;
    position: relative;
}

/* Logo – absolut zentriert, oben abgeschnitten, unten überragend */
.logo {
    position: absolute;
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250,247,242,0.96);
    width: 230px;
    height: 160px;
    border-radius: 50%;
    border: var(--sage-dark) 1px solid;
    box-shadow: 0 6px 22px rgba(74,103,65,0.25);
    z-index: 310;
}

.logo-img {
    height: 105px;
    width: 175px;
    object-fit: contain;
    display: block;
}

/* Desktop-Navigation – links */
.nav-left {
    grid-area: nav-left;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 80px;
    padding-right: 130px;
    z-index: 315;
    position: relative;
}

/* Desktop-Navigation – rechts */
.nav-right {
    grid-area: nav-right;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    padding-left: 130px;
    z-index: 315;
    position: relative;
}

.nav-left a,
.nav-right a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-mid);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.nav-left a:hover, .nav-right a:hover,
.nav-left a.active, .nav-right a.active {
    color: var(--sage);
    background: var(--sage-pale);
}

/* Desktop nav-menu: hidden, only mobile uses it */
.nav-menu { display: none; }

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-mid);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--sage);
    background: var(--sage-pale);
}

.cta-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--sage);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.55rem 1.25rem;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
}

.cta-button:hover {
    background: var(--sage-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--sage-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg picture,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        130deg,
        rgba(30,45,28,0.72) 0%,
        rgba(30,45,28,0.45) 60%,
        rgba(30,45,28,0.15) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 580px;
}

.hero h1 em { color: var(--rose-light); }

.hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    max-width: 460px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover { transform: translateY(-2px); }

.btn-light {
    background: var(--white);
    color: var(--sage-dark);
    border-color: var(--white);
}
.btn-light:hover { background: var(--cream); }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-sage {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}
.btn-sage:hover { background: var(--sage-dark); border-color: var(--sage-dark); }

.btn-rose {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}
.btn-rose:hover { background: var(--rose-dark); border-color: var(--rose-dark); }

.btn-full { width: 100%; justify-content: center; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    animation: bounce 1.8s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── FACTS STRIP ────────────────────────────────────────────── */
.facts-strip {
    background: var(--sage);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.fact {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 2.5rem;
    color: rgba(255,255,255,0.92);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.fact:last-child { border-right: none; }
.fact i { font-size: 1rem; color: var(--sage-light); flex-shrink: 0; }

/* ── EYEBROW ────────────────────────────────────────────────── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.9rem;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--sage);
}

.eyebrow--light { color: rgba(255,255,255,0.7); }
.eyebrow--light::before { background: rgba(255,255,255,0.5); }

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-section {
    padding: 7rem 0;
    background: var(--white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--rose);
    color: var(--white);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(196,130,106,0.35);
}

.badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
}

.badge-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.3;
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--forest);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-values {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage-mid);
}

.value-item i {
    font-size: 1.4rem;
    color: var(--sage);
}

/* ── SECTION HEAD ───────────────────────────────────────────── */
.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto;
}

/* ── ANGEBOT ────────────────────────────────────────────────── */
.angebot-section {
    padding: 7rem 0;
    background: var(--cream);
}

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

.angebot-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(30,45,28,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.angebot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(30,45,28,0.12);
}

.card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}

.angebot-card:hover .card-img img { transform: scale(1.04); }

.card-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--rose);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 2px;
}

.card-tag--green { background: var(--sage); }

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.card-body p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage);
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
}

.card-link:hover { gap: 0.65rem; color: var(--sage-dark); }

/* ── SAISONAL BANNER ────────────────────────────────────────── */
.saisonal-section {
    background: var(--forest);
    overflow: hidden;
    position: relative;
}

.saisonal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
    align-items: center;
    gap: 4rem;
    padding: 5rem 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.saisonal-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.saisonal-text p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.saisonal-list {
    list-style: none;
    margin-bottom: 2rem;
}

.saisonal-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.82);
    padding: 0.4rem 0;
}

.saisonal-list i { font-size: 0.45rem; color: var(--rose-light); }

.saisonal-image {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 4/5;
}

.saisonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── EVENTS ─────────────────────────────────────────────────── */
.events-section {
    padding: 7rem 0;
    background: var(--cream-mid);
}

.events-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.75rem;
}

.event-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(30,45,28,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(30,45,28,0.12);
}

.event-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.event-card--featured .event-img { aspect-ratio: 16/9; }

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.event-card:hover .event-img img { transform: scale(1.04); }

.event-body { padding: 1.75rem; }

.event-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose);
    display: block;
    margin-bottom: 0.5rem;
}

.event-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.6rem;
}

.event-card--featured .event-body h3 { font-size: 1.75rem; }

.event-body p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage);
    text-decoration: none;
    transition: gap 0.2s;
}

.event-link:hover { gap: 0.65rem; }

/* ── BESTELLEN SECTION ──────────────────────────────────────── */
.bestellen-section {
    background: var(--sage-dark);
    padding: 7rem 0;
}

.bestellen-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.bestellen-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.bestellen-info > p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.bestellen-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-item i {
    color: var(--sage-light);
    font-size: 0.95rem;
    width: 18px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.detail-item strong {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.2rem;
}

.detail-item p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
}

/* ── FORM ───────────────────────────────────────────────────── */
.bestellen-form {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem;
}

.bestellen-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(74,103,65,0.12);
    background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-hint {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.75rem;
    text-align: center;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--sage-pale);
    border: 1px solid var(--sage-light);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--sage-dark);
}

.form-success i { color: var(--sage); font-size: 1.2rem; flex-shrink: 0; }
.form-success[hidden] { display: none !important; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
    background: var(--forest);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.footer-logo i { color: var(--sage-light); font-size: 1.3rem; }

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
    color: var(--white);
    border-color: var(--sage-light);
    background: rgba(168,197,160,0.12);
}

.footer-col h4 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }

.footer-col a,
.footer-col ul li a {
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col a:hover,
.footer-col ul li a:hover { color: var(--white); }

.footer-col p {
    color: rgba(255,255,255,0.62);
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 0.4rem;
}

.footer-bottom {
    padding: 1.25rem 0;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
    text-align: center;
}

.footer-bottom a {
    color: rgba(255,255,255,0.42);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ── BESCAPE GAMES DISCLAIMER ───────────────────────────────── */
.escape-disclaimer {
    background: #030303;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.escape-disclaimer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
}
.escape-disclaimer__inner i { color: rgba(255,255,255,0.3); flex-shrink: 0; margin-top: 0.14rem; }
.escape-disclaimer__inner strong { font-weight: 600; color: rgba(255,255,255,0.6); }
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.3); }
.escape-disclaimer__inner a:hover { color: #f59034; }

/* ── FADE-IN ANIMATIONS ─────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .angebot-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: 1fr 1fr; }
    .event-card--featured { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image { max-width: 420px; }
    .about-badge { bottom: -1rem; right: -0.75rem; width: 80px; height: 80px; }
    .badge-number { font-size: 1.8rem; }
    .saisonal-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .saisonal-image { max-width: 480px; aspect-ratio: 16/9; }
    .bestellen-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-left, .nav-right { display: none; }

    .header-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        min-height: 64px;
        grid-template-columns: unset;
        grid-template-rows: unset;
        grid-template-areas: unset;
    }

    .logo {
        position: static;
        width: 52px;
        height: 52px;
        align-self: center;
        box-shadow: 0 3px 10px rgba(74,103,65,0.2);
    }
    .logo-img { height: 38px; width: 38px; }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        background: rgba(250,247,242,0.98);
        backdrop-filter: blur(8px);
        padding: 1rem;
        border-bottom: 2px solid var(--border);
        box-shadow: 0 8px 24px rgba(30,45,28,0.1);
        gap: 0.25rem;
        z-index: 299;
    }

    .nav-menu.open { display: flex; }

    .nav-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-radius: 4px;
    }

    .header { position: sticky; }

    .hero { min-height: 80vh; }
    .hero h1 { font-size: 2.5rem; }

    .facts-strip { flex-direction: column; }
    .fact { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); justify-content: center; }
    .fact:last-child { border-bottom: none; }

    .angebot-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    .about-section, .angebot-section, .events-section,
    .bestellen-section { padding: 4rem 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-cta { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .bestellen-form { padding: 1.5rem; }
}
