/* ============================================================
   Illinger Weihnachtsmarkt – Hauptseite
   Open Sans · Weihnachtsrot · responsive · modern
   ============================================================ */

:root {
    --accent:        #c01818;
    --accent-dark:   #9a1111;
    --accent-soft:   rgba(192, 24, 24, .08);
    --accent-glow:   rgba(192, 24, 24, .25);
    --dark:          #2a2a2a;
    --dark-2:        #1e1e1e;
    --body:          #4a4a4a;
    --muted:         #888888;
    --border:        #e2e2e2;
    --light:         #f6f5f3;
    --white:         #ffffff;
    --font:          'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --nav-h:         60px;
    --shadow-sm:     0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md:     0 4px 14px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg:     0 14px 36px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.06);
    --ease:          cubic-bezier(.4, .2, .2, 1);
    --radius:        6px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 8px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--body);
    font-size: 15px;
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, picture, svg { max-width: 100%; height: auto; display: block; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color .2s var(--ease);
}
a:hover { color: var(--accent-dark); text-decoration: underline; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--white); }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: #c4c4c4; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #999; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== NAVIGATION ===== */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(42, 42, 42, .96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 14px rgba(0,0,0,.28);
}
.nav-inner {
    max-width: 1108px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    gap: 24px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    color: var(--white);
    text-decoration: none;
    line-height: 1.2;
    flex-shrink: 0;
    transition: opacity .2s;
}
.nav-brand:hover { opacity: .85; text-decoration: none; }
.nav-brand strong {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.nav-brand span {
    font-size: 10px;
    color: #aaa;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 9px 12px;
    border-radius: 3px;
    transition: color .2s var(--ease), background .2s var(--ease);
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,.07);
    text-decoration: none;
}
.nav-links .nav-accent > a { color: var(--accent); }
.nav-links .nav-accent > a:hover,
.nav-links .nav-accent > a.active {
    color: var(--white);
    background: var(--accent);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transform-origin: center;
    transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark-2);
    z-index: 99;
    padding: 8px 0;
    border-top: 2px solid var(--accent);
    box-shadow: 0 8px 24px rgba(0,0,0,.45);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
}
.nav-mobile.open { display: block; animation: slideDown .25s var(--ease); }
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nav-mobile a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-bottom: 1px solid #333;
    transition: color .15s, background .15s, padding .15s var(--ease);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover {
    color: var(--white);
    background: rgba(255,255,255,.05);
    padding-left: 34px;
    text-decoration: none;
}
.nav-mobile .mob-accent { color: var(--accent) !important; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    background: linear-gradient(150deg, #1a1a1a 0%, #252525 55%, #1e1208 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 22% 55%, rgba(192, 24, 24, .13) 0%, transparent 62%),
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, .04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: calc(var(--nav-h) + 56px) 40px 80px 32px;
    position: relative;
    z-index: 1;
    animation: heroFadeIn .8s var(--ease) both;
}
.hero-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: calc(var(--nav-h) + 48px) 32px 80px 40px;
    position: relative;
    z-index: 1;
    animation: heroFadeIn .8s var(--ease) .15s both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-right a { display: contents; }
.hero-right img {
    max-height: 72vh;
    width: auto;
    max-width: 100%;
    border-radius: 4px;
    box-shadow:
        0 14px 50px rgba(0, 0, 0, .6),
        0 5px 12px rgba(0, 0, 0, .4);
    transform: rotate(1.8deg);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
@media (hover: hover) {
    .hero-right img:hover {
        transform: rotate(0deg) scale(1.02);
        box-shadow:
            0 24px 64px rgba(0, 0, 0, .7),
            0 6px 16px rgba(0, 0, 0, .5);
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 500px;
    width: 100%;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.hero-logo-img {
    height: 110px;
    width: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .55));
}
.hero-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.hero-logo-text strong {
    font-size: clamp(24px, 3.2vw, 40px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}
.hero-logo-text span {
    font-size: clamp(24px, 3.2vw, 40px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.hero-info {
    padding-left: 22px;
    border-left: 2px solid rgba(192, 24, 24, .4);
}
.hero-dates {
    font-size: clamp(15px, 2.2vw, 19px);
    color: #e8e8e8;
    margin-bottom: 10px;
    letter-spacing: .5px;
    font-weight: 600;
}
.hero-location {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 36px;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 4px;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all .25s var(--ease);
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 4px 14px var(--accent-glow);
}
.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(192, 24, 24, .38);
    text-decoration: none;
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .35);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .06);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: #666;
    font-size: 22px;
    z-index: 2;
    pointer-events: none;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS ===== */
.section { padding: 88px 24px; }
.section-light { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }
.container { max-width: 1060px; margin: 0 auto; }

.section-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(24px, 3.8vw, 38px);
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px;
    line-height: 1.2;
}
.section-dark .section-title { color: var(--white); }
.section-lead {
    font-size: 16px;
    color: #666;
    max-width: 680px;
    margin-bottom: 48px;
    line-height: 1.75;
}
.section-dark .section-lead { color: #aaa; }
.accent-line {
    width: 56px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 36px;
    border-radius: 2px;
}

/* ===== PROGRAMM ===== */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 36px;
    border: 2px solid var(--dark);
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.hours-card {
    background: var(--white);
    padding: 32px 22px;
    text-align: center;
    border-right: 2px solid var(--dark);
    transition: background .25s var(--ease);
}
.hours-card:last-child { border-right: none; }
.hours-card:hover { background: #fff7f5; }
.hours-day {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 6px;
}
.hours-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}
.hours-time {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -.3px;
}
.hours-note {
    font-size: 11px;
    color: #999;
    margin-top: 8px;
    letter-spacing: .3px;
}

.programm-text { max-width: 760px; }
.programm-text p {
    margin-bottom: 16px;
    color: #555;
    font-size: 15px;
    line-height: 1.75;
}
.programm-text p:last-child { margin-bottom: 0; }

.info-bar {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding: 26px 30px;
    background: var(--dark);
    border-radius: var(--radius);
    color: var(--white);
    align-items: center;
    box-shadow: var(--shadow-md);
}
.info-bar-item { display: flex; flex-direction: column; }
.info-bar-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}
.info-bar-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-top: 4px;
}
.info-bar-value strong { color: var(--accent); }

/* ===== RÜCKBLICK / GALERIE ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 8px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    background: #1e1e1e;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .55s var(--ease);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 45%);
    opacity: 0;
    transition: opacity .3s var(--ease);
    pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

/* ===== AUSSTELLER ===== */
.aussteller-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: start;
}
.aussteller-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}
.aussteller-info p {
    color: #555;
    margin-bottom: 14px;
    line-height: 1.75;
}
.aussteller-deadline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff5f5;
    border-left: 4px solid var(--accent);
    padding: 14px 18px;
    font-size: 14px;
    color: var(--dark);
    margin: 22px 0 28px;
    border-radius: 0 4px 4px 0;
}
.aussteller-deadline strong { color: var(--accent); }
.aussteller-info .note {
    margin-top: 24px;
    font-size: 13px;
    color: #888;
}
.aussteller-downloads .dl-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 16px;
}

.download-list { list-style: none; }
.download-list li {
    border-bottom: 1px solid var(--border);
    padding: 14px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background .2s var(--ease), padding-left .2s var(--ease);
}
.download-list li:first-child { border-top: 1px solid var(--border); }
.download-list li:hover { background: var(--accent-soft); padding-left: 10px; padding-right: 10px; }
.download-list .dl-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}
.download-list .dl-sub {
    font-size: 11.5px;
    color: #999;
    margin-top: 2px;
}
.download-list a.dl-btn {
    flex-shrink: 0;
    background: var(--dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 8px 14px;
    border-radius: 3px;
    text-decoration: none;
    transition: background .2s var(--ease), transform .15s var(--ease);
}
.download-list a.dl-btn:hover {
    background: var(--accent);
    transform: translateX(2px);
    text-decoration: none;
}

/* ===== ANFAHRT ===== */
.anfahrt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}
.anfahrt-map {
    grid-column: span 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s var(--ease);
}
.anfahrt-map:hover { box-shadow: var(--shadow-lg); }
.anfahrt-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 240px;
}
.anfahrt-block h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}
.anfahrt-item {
    margin-bottom: 22px;
    padding-left: 16px;
    border-left: 2px solid var(--border);
    transition: border-color .25s var(--ease);
}
.anfahrt-item:hover { border-color: var(--accent); }
.anfahrt-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.anfahrt-item p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
}

.parking-box {
    grid-column: span 3;
    background: var(--dark);
    color: var(--white);
    padding: 26px 30px;
    border-radius: var(--radius);
    display: flex;
    gap: 22px;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
}
.parking-box .parking-icon {
    font-size: 30px;
    flex-shrink: 0;
    margin-top: 2px;
}
.parking-box h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 8px;
}
.parking-box p {
    font-size: 13.5px;
    color: #bbb;
    line-height: 1.65;
}

/* ===== KONTAKT ===== */
.kontakt-intro {
    max-width: 820px;
    margin: -8px 0 44px;
}
.kontakt-intro p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}
.kontakt-intro p:last-child { margin-bottom: 0; }

.contact-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}
.contact-heading-sub {
    margin-top: 22px;
    color: var(--muted);
    border-bottom-color: var(--border);
    font-size: 12px;
}
.contact-form-wrap .contact-heading { margin-bottom: 18px; }

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 52px;
    align-items: start;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px 22px;
    border-left: 4px solid var(--accent);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-card:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow-md);
}
.contact-card .cc-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.contact-card .cc-role {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 10px;
}
.contact-card .cc-role:last-child { margin-bottom: 0; }
.contact-card .cc-line {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.contact-card .cc-line a { color: #555; }
.contact-card .cc-line a:hover { color: var(--accent); }

.contact-card.cc-small {
    border-left-color: #bbb;
    padding: 14px 18px;
}
.contact-card.cc-small .cc-name { font-size: 13px; }
.contact-card.cc-small:hover { border-left-color: var(--accent); }

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.form-group-single { margin-bottom: 14px; }
.form-group-row label,
.form-group-single label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-group-row input,
.form-group-single input,
.form-group-single textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px 14px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--dark);
    background: var(--white);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-group-single textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}
.form-group-row input:focus,
.form-group-single input:focus,
.form-group-single textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(192, 24, 24, .12);
}
.form-submit {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
    transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
    box-shadow: 0 4px 14px var(--accent-glow);
}
.form-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(192, 24, 24, .38);
}
.form-submit:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.form-alert {
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 13.5px;
    margin-bottom: 16px;
}
.form-alert.success {
    background: #f0faf0;
    border-left: 4px solid #4a7c4e;
    color: #2d5530;
}
.form-alert.error {
    background: #fff0f0;
    border-left: 4px solid #cc0000;
    color: #990000;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark-2);
    color: #888;
    padding: 56px 24px 32px;
}
.footer-inner { max-width: 1060px; margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 36px;
    border-bottom: 1px solid #333;
    margin-bottom: 24px;
}
.footer-brand strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 8px;
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.75;
    color: #777;
    max-width: 320px;
}
.footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 16px;
}
.footer-col a,
.footer-col p {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color .2s var(--ease), padding .2s var(--ease);
}
.footer-col a:hover {
    color: var(--accent);
    text-decoration: none;
    padding-left: 4px;
}
.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 8px;
    line-height: 1.7;
}
.footer-copyright { flex: 1 1 460px; max-width: 720px; }
.footer-bottom a {
    color: #888;
    text-decoration: none;
    transition: color .2s;
}
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; flex-shrink: 0; }
.footer-legal a { color: #888; }

/* =============================================================
   RESPONSIVE
   ============================================================= */

/* Tablet landscape ≤ 1024px */
@media (max-width: 1024px) {
    .section { padding: 76px 26px; }
    .nav-inner { padding: 0 28px; gap: 16px; }
    .nav-links { gap: 0; }
    .nav-links a { padding: 9px 9px; letter-spacing: .8px; }
    .aussteller-grid { gap: 40px; }
    .kontakt-grid { gap: 40px; }
    .footer-top { gap: 40px; }
    .anfahrt-grid { gap: 28px; }
}

/* Tablet portrait ≤ 900px */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-inner { padding: 0 24px; }

    .hero { grid-template-columns: 1fr; }
    .hero-left {
        padding: calc(var(--nav-h) + 44px) 32px 40px 32px;
        align-items: flex-start;
    }
    .hero-inner { max-width: none; }
    .hero-logo { gap: 16px; margin-bottom: 28px; }
    .hero-logo-img { height: 92px; }
    .hero-right {
        padding: 0 32px 64px 32px;
        justify-content: center;
    }
    .hero-right img {
        max-height: 56vh;
        transform: rotate(1deg);
    }
    .hero-scroll { display: none; }

    .hours-grid { grid-template-columns: repeat(3, 1fr); }
    .aussteller-grid { grid-template-columns: 1fr; gap: 44px; }
    .anfahrt-grid { grid-template-columns: 1fr 1fr; }
    .anfahrt-map { grid-column: span 2; min-height: 260px; }
    .parking-box { grid-column: span 2; }
    .kontakt-grid { grid-template-columns: 1fr; gap: 44px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: span 2; }
    .footer-brand p { max-width: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Phone landscape ≤ 768px */
@media (max-width: 768px) {
    .section { padding: 64px 22px; }
    .hours-grid { grid-template-columns: 1fr; }
    .hours-card {
        border-right: none;
        border-bottom: 2px solid var(--dark);
        padding: 22px 18px;
    }
    .hours-card:last-child { border-bottom: none; }
    .anfahrt-grid { grid-template-columns: 1fr; gap: 28px; }
    .anfahrt-map { grid-column: span 1; }
    .parking-box { grid-column: span 1; }
    .info-bar { padding: 22px 24px; gap: 24px; }
}

/* Phone ≤ 600px */
@media (max-width: 600px) {
    .section { padding: 52px 18px; }

    .hero-left {
        padding: calc(var(--nav-h) + 24px) 20px 32px 22px;
    }
    .hero-logo {
        gap: 14px;
        margin-bottom: 22px;
        flex-wrap: wrap;
    }
    .hero-logo-img { height: 68px; }
    .hero-logo-text strong,
    .hero-logo-text span { font-size: 22px; }
    .hero-info { padding-left: 18px; }
    .hero-location { margin-bottom: 28px; }
    .hero-right { padding: 0 20px 44px 20px; }
    .hero-right img { max-height: 70vw; transform: rotate(.5deg); }
    .hero-ctas { width: 100%; gap: 10px; }
    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline { width: 100%; }

    .form-group-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; gap: 8px; grid-auto-rows: 220px; }
    .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-copyright { font-size: 11.5px; line-height: 1.7; flex: none; }
    .info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
    }
    .info-bar-item { width: 100%; }
    .download-list li { flex-wrap: wrap; }
    .anfahrt-map img { min-height: 200px; }
    .contact-card { padding: 16px 18px; }
    .parking-box {
        flex-direction: column;
        padding: 22px;
        gap: 12px;
    }
    .section-title { font-size: clamp(20px, 6vw, 26px); }
    .accent-line { margin-bottom: 28px; }
}

/* Very small phones ≤ 380px */
@media (max-width: 380px) {
    .hero-logo-text strong,
    .hero-logo-text span { font-size: 19px; }
    .hero-logo-img { height: 56px; }
    .nav-brand strong { font-size: 12px; letter-spacing: 1px; }
    .nav-brand span { font-size: 9px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== PRINT ===== */
@media print {
    .site-nav, .nav-mobile, .hero-scroll, .nav-hamburger,
    .hero-ctas, #kontakt-form, .form-submit { display: none !important; }
    body { color: #000; font-size: 11pt; background: #fff; }
    .hero {
        min-height: auto;
        background: #fff;
        color: #000;
        padding: 20px;
        display: block;
    }
    .hero-left, .hero-right { padding: 0; }
    .hero-logo-text strong,
    .hero-logo-text span { color: #000; }
    .hero-dates, .hero-location { color: #333; }
    .section { padding: 20px 0; page-break-inside: avoid; }
    a { color: #000; text-decoration: underline; }
    .section-light, .section-dark, .parking-box, .info-bar {
        background: #fff; color: #000; box-shadow: none;
    }
}
