/* =============================================
   MARKTHAUS 10 – FACHWERK EDITION
   Half-Timbered Architecture · Hildener Charm
   Warm Wood · Burgundy · Animated Beams
   ============================================= */

/* ----- Custom Properties ----- */
:root {
    --gold:          #d4b483;
    --gold-light:    #e8d4b0;
    --gold-pale:     #f5eadb;
    --gold-dark:     #b8975f;
    --burgundy:      #7b1113;
    --burgundy-deep: #5a0c0e;
    --burgundy-glow: #a01518;
    --wood-beam:     #4a3322;
    --wood-dark:     #2a1810;
    --wood-medium:   #3d2518;
    --wood-light:    #6b4d38;
    --wood-surface:  #5c3a28;
    --cream:         #faf3e8;
    --cream-warm:    #f0e4d1;
    --plaster:       #f2e8d5;
    --plaster-warm:  #e8dbc4;
    --text-dark:     #1a1410;
    --text-body:     #3a3028;
    --text-light:    #c8b8a0;
    --lantern-glow:  #ffb84d;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', 'Segoe UI', sans-serif;
    --font-fraktur: 'UnifrakturCook', 'Playfair Display', serif;

    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1200px;

    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--burgundy); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--burgundy-glow); }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--burgundy); color: var(--gold-light); }

/* ----- Preloader ----- */
#preloader {
    position: fixed; inset: 0;
    background: var(--wood-dark);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s var(--ease-smooth), visibility 0.8s;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }

.preloader-fachwerk {
    width: 100px; height: 100px;
    position: relative; margin: 0 auto 1.5rem;
}

.fw-anim-beam {
    position: absolute;
    background: var(--wood-beam);
    border-radius: 2px;
}
.fw-anim-beam.h1 { top: 0; left: 0; width: 0; height: 6px; animation: beamGrowH 0.6s 0s var(--ease-out-expo) forwards; }
.fw-anim-beam.h2 { bottom: 0; left: 0; width: 0; height: 6px; animation: beamGrowH 0.6s 0.3s var(--ease-out-expo) forwards; }
.fw-anim-beam.v1 { top: 0; left: 0; width: 6px; height: 0; animation: beamGrowV 0.6s 0.15s var(--ease-out-expo) forwards; }
.fw-anim-beam.v2 { top: 0; right: 0; width: 6px; height: 0; animation: beamGrowV 0.6s 0.15s var(--ease-out-expo) forwards; }
.fw-anim-beam.d1 {
    top: 0; left: 0; width: 4px; height: 0;
    transform-origin: top left; transform: rotate(45deg);
    animation: beamGrowDiag 0.5s 0.5s var(--ease-out-expo) forwards;
}
.fw-anim-beam.d2 {
    top: 0; right: 0; width: 4px; height: 0;
    transform-origin: top right; transform: rotate(-45deg);
    animation: beamGrowDiag 0.5s 0.5s var(--ease-out-expo) forwards;
}

@keyframes beamGrowH { to { width: 100%; } }
@keyframes beamGrowV { to { height: 100%; } }
@keyframes beamGrowDiag { to { height: 141%; } }

.preloader-text {
    font-family: var(--font-fraktur);
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeIn 0.5s 0.7s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

/* ----- Navigation ----- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 1rem 0;
    transition: all 0.5s var(--ease-smooth);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(42, 24, 16, 0.96);
    backdrop-filter: blur(16px);
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    border-bottom: 3px solid var(--wood-beam);
}

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

.nav-logo {
    display: flex; align-items: center; gap: 0.8rem;
    text-decoration: none; color: var(--gold);
}
.nav-logo-img {
    width: 42px; height: 42px;
    object-fit: contain;
    filter: brightness(0.9) drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    transition: filter 0.3s;
}
.nav-logo:hover .nav-logo-img { filter: brightness(1.1) drop-shadow(0 2px 10px rgba(212,180,131,0.4)); }

/* Fachwerk Logo Frame */
.logo-fachwerk-frame {
    width: 42px; height: 42px;
    border: 3px solid var(--wood-beam);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    background: rgba(42, 24, 16, 0.6);
    transition: all 0.3s var(--ease-smooth);
}
.logo-fachwerk-frame::before {
    content: '';
    position: absolute; inset: 3px;
    border: 1px solid rgba(212, 180, 131, 0.2);
}
/* Diagonal brace in logo */
.logo-fachwerk-frame::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 141%;
    height: 2px;
    background: var(--wood-beam);
    transform-origin: top left;
    transform: rotate(45deg);
    opacity: 0.4;
}
.nav-logo:hover .logo-fachwerk-frame {
    border-color: var(--gold-dark);
    background: rgba(42, 24, 16, 0.9);
}

.logo-fachwerk-frame.large {
    width: 70px; height: 70px;
    border-width: 4px;
}
.logo-fachwerk-frame.large .logo-letter { font-size: 2.5rem; }

.logo-letter {
    font-family: var(--font-fraktur);
    font-size: 1.6rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
}

.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a {
    font-family: var(--font-body);
    font-size: 0.82rem; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    position: relative; padding: 0.3rem 0;
    font-weight: 400; transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 50%; width: 0; height: 3px;
    background: var(--wood-beam);
    transition: width 0.4s var(--ease-out-expo), left 0.4s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 5px; z-index: 1001;
}
.nav-toggle span {
    display: block; width: 28px; height: 3px;
    background: var(--gold); border-radius: 1px;
    transition: all 0.3s var(--ease-smooth); transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(8px) translateX(5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-8px) translateX(5px); }

/* ----- Hero ----- */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transform: scale(1.08);
    transition: transform 10s linear;
}
.hero.loaded .hero-img { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(42, 24, 16, 0.65) 0%,
        rgba(42, 24, 16, 0.35) 40%,
        rgba(42, 24, 16, 0.45) 70%,
        rgba(42, 24, 16, 0.85) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    padding: 2rem;
    animation: heroFadeIn 1.5s var(--ease-out-expo) 0.5s both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ----- Fachwerk House Hero Frame ----- */
.fachwerk-house {
    max-width: 700px;
    margin: 0 auto;
}

.fw-roof {
    margin-bottom: -4px;
}
.roof-svg {
    width: 100%;
    height: auto;
    color: var(--wood-beam);
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4));
    animation: roofBuild 1s var(--ease-out-expo) 0.8s both;
}
@keyframes roofBuild {
    from { opacity: 0; transform: translateY(-20px) scaleY(0.5); }
    to { opacity: 1; transform: translateY(0) scaleY(1); }
}

.fw-main-frame {
    position: relative;
    min-height: 320px;
    border: 5px solid var(--wood-beam);
    background: rgba(26, 20, 16, 0.75);
    backdrop-filter: blur(12px);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        inset 0 0 40px rgba(0,0,0,0.3);
    animation: frameBuild 0.8s var(--ease-out-expo) 1s both;
}
@keyframes frameBuild {
    from { opacity: 0; transform: scaleY(0.9); }
    to { opacity: 1; transform: scaleY(1); }
}

/* Fachwerk beams inside hero */
.fw-beam-h, .fw-beam-v, .fw-brace {
    position: absolute;
    background: var(--wood-beam);
    z-index: 1;
}
.fw-beam-h {
    height: 5px; left: 0; right: 0;
}
.fw-top-beam { top: 0; animation: beamSlideH 0.6s 1.2s var(--ease-out-expo) both; }
.fw-bottom-beam { bottom: 0; animation: beamSlideH 0.6s 1.2s var(--ease-out-expo) both; }
.fw-middle-beam { top: 50%; animation: beamSlideH 0.6s 1.4s var(--ease-out-expo) both; }

.fw-beam-v {
    width: 5px; top: 0; bottom: 0;
}
.fw-left-pillar { left: 0; animation: beamSlideV 0.6s 1.3s var(--ease-out-expo) both; }
.fw-right-pillar { right: 0; animation: beamSlideV 0.6s 1.3s var(--ease-out-expo) both; }
.fw-center-pillar { left: 50%; animation: beamSlideV 0.6s 1.5s var(--ease-out-expo) both; }

@keyframes beamSlideH {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
}
@keyframes beamSlideV {
    from { transform: scaleY(0); opacity: 0; }
    to { transform: scaleY(1); opacity: 1; }
}

/* Diagonal braces */
.fw-brace {
    width: 3px;
    height: 70%;
    opacity: 0;
    animation: braceAppear 0.5s 1.7s var(--ease-out-expo) forwards;
}
.fw-brace-tl { top: 0; left: 15%; transform: rotate(30deg); transform-origin: top left; }
.fw-brace-tr { top: 0; right: 15%; transform: rotate(-30deg); transform-origin: top right; }
.fw-brace-bl { bottom: 0; left: 35%; transform: rotate(-30deg); transform-origin: bottom left; }
.fw-brace-br { bottom: 0; right: 35%; transform: rotate(30deg); transform-origin: bottom right; }

@keyframes braceAppear {
    from { opacity: 0; transform: rotate(var(--rotate, 30deg)) scaleY(0); }
    to { opacity: 0.35; }
}

/* Hero Inner Content */
.fw-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2.5rem;
}

.hero-title {
    margin-bottom: 0.3rem;
}
.title-fraktur {
    font-family: var(--font-fraktur);
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 700;
    color: var(--gold);
    text-shadow:
        0 2px 4px rgba(0,0,0,0.5),
        0 0 50px rgba(212, 180, 131, 0.15);
    display: block;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--gold-dark);
    letter-spacing: 0.12em;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.hero-divider {
    display: flex; align-items: center;
    justify-content: center; gap: 1rem;
    margin: 1rem 0;
}
.divider-beam {
    width: 60px; height: 3px;
    background: var(--wood-beam);
    border-radius: 1px;
}
.divider-ornament {
    color: var(--burgundy); font-size: 0.8rem;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.8vw, 0.95rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0.7;
    font-weight: 300;
    margin-bottom: 0.3rem;
}

.hero-address {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.5;
    letter-spacing: 0.1em;
}

/* Lanterns */
.hero-lantern {
    position: absolute;
    top: 15%;
    font-size: 2rem;
    filter: drop-shadow(0 0 15px rgba(255, 184, 77, 0.5));
    animation: lanternSwing 4s ease-in-out infinite;
}
.left-lantern { left: 8%; }
.right-lantern { right: 8%; }

.lantern-glow {
    position: absolute;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.3) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes lanternSwing {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; gap: 0.3rem;
    animation: heroFadeIn 1s var(--ease-out-expo) 2s both;
    transition: opacity 0.4s ease;
}
.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark); opacity: 0.5;
}
.scroll-arrow {
    font-size: 1.2rem;
    color: var(--gold-dark); opacity: 0.5;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* ============================================
   FACHWERK SECTION DIVIDERS
   ============================================ */
.fachwerk-divider {
    display: flex; flex-direction: column;
    background: var(--cream-warm);
    padding: 0;
    overflow: hidden;
}

.fwd-beam {
    height: 6px;
    background: linear-gradient(90deg,
        var(--wood-beam),
        var(--wood-light),
        var(--wood-beam),
        var(--wood-light),
        var(--wood-beam)
    );
    background-size: 200% 100%;
    animation: woodGrain 8s linear infinite;
}

.fwd-pattern {
    display: flex;
    justify-content: center;
    gap: 0;
    background: var(--plaster);
    height: 40px;
    position: relative;
    border-left: 5px solid var(--wood-beam);
    border-right: 5px solid var(--wood-beam);
}

.fwd-x {
    width: 60px; height: 100%;
    position: relative;
    border-left: 3px solid var(--wood-beam);
    border-right: 3px solid var(--wood-beam);
}
.fwd-x::before, .fwd-x::after {
    content: '';
    position: absolute;
    top: 0; width: 3px; height: 141%;
    background: var(--wood-beam);
}
.fwd-x::before { left: 25%; transform-origin: top left; transform: rotate(33deg); }
.fwd-x::after { right: 25%; transform-origin: top right; transform: rotate(-33deg); }

.fwd-diamond {
    width: 50px; height: 100%;
    position: relative;
    border-left: 3px solid var(--wood-beam);
    border-right: 3px solid var(--wood-beam);
    display: flex; align-items: center; justify-content: center;
}
.fwd-diamond::before {
    content: '◆';
    color: var(--burgundy);
    font-size: 1rem;
    opacity: 0.5;
}

@keyframes woodGrain {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Big Fachwerk Divider (full-width) */
.fachwerk-divider-big {
    width: 100%;
    overflow: hidden;
    color: var(--wood-beam);
}
.fwd-big-svg {
    width: 100%;
    height: 50px;
    display: block;
}

.footer-fw { color: var(--wood-light); }

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto; padding: 0 2rem;
}

/* Section Header with Fachwerk Brackets */
.section-header {
    display: flex; align-items: center;
    justify-content: center; gap: 1.5rem;
    margin-bottom: 3rem;
}

.fw-bracket { color: var(--wood-beam); opacity: 0.6; transition: opacity 0.3s; }
.section-header:hover .fw-bracket { opacity: 1; }
.section-header.light .fw-bracket { color: var(--gold-dark); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.04em;
    text-align: center;
}
.section-header.light .section-title { color: var(--gold); }

/* ============================================
   FACHWERK PANEL COMPONENT
   ============================================ */
.fw-panel {
    position: relative;
    background: var(--plaster);
    border: 4px solid var(--wood-beam);
    border-radius: 2px;
    box-shadow:
        0 8px 40px rgba(0,0,0,0.12),
        inset 0 0 0 1px rgba(212, 180, 131, 0.15);
    transition: box-shadow 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
}

.fw-panel:hover {
    box-shadow:
        0 12px 50px rgba(0,0,0,0.18),
        inset 0 0 0 1px rgba(212, 180, 131, 0.25);
    transform: translateY(-3px);
}

.fw-panel.dark-panel {
    background: rgba(26, 20, 16, 0.88);
    backdrop-filter: blur(12px);
    border-color: var(--wood-light);
}

.fw-panel-frame {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 1;
}

/* Fachwerk corner joints */
.fw-corner {
    position: absolute;
    width: 24px; height: 24px;
}
.fw-corner::before, .fw-corner::after {
    content: '';
    position: absolute;
    background: var(--wood-beam);
}
.fw-corner.tl { top: -2px; left: -2px; }
.fw-corner.tl::before { top: 0; left: 0; width: 24px; height: 4px; }
.fw-corner.tl::after { top: 0; left: 0; width: 4px; height: 24px; }

.fw-corner.tr { top: -2px; right: -2px; }
.fw-corner.tr::before { top: 0; right: 0; width: 24px; height: 4px; }
.fw-corner.tr::after { top: 0; right: 0; width: 4px; height: 24px; }

.fw-corner.bl { bottom: -2px; left: -2px; }
.fw-corner.bl::before { bottom: 0; left: 0; width: 24px; height: 4px; }
.fw-corner.bl::after { bottom: 0; left: 0; width: 4px; height: 24px; }

.fw-corner.br { bottom: -2px; right: -2px; }
.fw-corner.br::before { bottom: 0; right: 0; width: 24px; height: 4px; }
.fw-corner.br::after { bottom: 0; right: 0; width: 4px; height: 24px; }

.light-frame .fw-corner::before,
.light-frame .fw-corner::after { background: var(--gold-dark); opacity: 0.5; }

.fw-panel-content {
    padding: clamp(2rem, 5vw, 3rem);
    position: relative; z-index: 2;
}

.fw-panel-content p {
    font-family: var(--font-elegant);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.9;
    margin-bottom: 1rem;
    text-align: center;
}
.fw-panel-content.centered p { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }

.panel-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.2rem;
    position: relative;
}
.panel-title::after {
    content: '';
    display: block;
    width: 50px; height: 3px;
    background: var(--burgundy);
    margin: 0.6rem auto 0;
}
.panel-title.light-title { color: var(--gold); }
.panel-title.light-title::after { background: var(--gold-dark); }

.light-text { color: var(--text-light) !important; }

.greeting {
    font-family: var(--font-display) !important;
    font-size: 1.8rem !important;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem !important;
}
.signature {
    font-family: var(--font-display) !important;
    font-size: 1.2rem !important;
    font-weight: 500;
    font-style: italic;
    color: var(--burgundy);
    margin-top: 0.5rem !important;
}

/* ============================================
   WILLKOMMEN
   ============================================ */
.willkommen-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 180, 131, 0.08), transparent 50%),
        var(--cream);
}
.willkommen-layout {
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* ----- Charm Cards ----- */
.charm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.charm-card {
    text-align: center;
    background: var(--plaster);
    border-left: 4px solid var(--wood-beam);
    border-right: 4px solid var(--wood-beam);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}
.charm-beam-top, .charm-beam-bottom {
    height: 5px;
    background: linear-gradient(90deg, var(--wood-dark), var(--wood-beam), var(--wood-dark));
}
.charm-inner { padding: 2rem 1.5rem; }

.charm-icon-wrap {
    width: 56px; height: 56px;
    margin: 0 auto 1rem;
}
.charm-icon {
    width: 100%; height: 100%;
    color: var(--burgundy);
    transition: transform 0.4s var(--ease-out-back);
}
.charm-card:hover .charm-icon { transform: scale(1.15) rotate(-5deg); }
.charm-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

.charm-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}
.charm-card p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-body); opacity: 0.8;
    line-height: 1.6;
}

/* ============================================
   KULINARIK
   ============================================ */
.kulinarik-section { position: relative; overflow: hidden; }
.parallax-bg { position: absolute; inset: 0; z-index: 0; }
.parallax-img {
    width: 100%; height: 120%;
    object-fit: cover; object-position: center;
    will-change: transform;
}
.parallax-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(42, 24, 16, 0.88) 0%,
        rgba(42, 24, 16, 0.72) 50%,
        rgba(42, 24, 16, 0.92) 100%
    );
}
.parallax-overlay.dark {
    background: linear-gradient(180deg,
        rgba(18, 14, 10, 0.92) 0%,
        rgba(18, 14, 10, 0.78) 50%,
        rgba(18, 14, 10, 0.94) 100%
    );
}
.kulinarik-section .section-container { position: relative; z-index: 1; }

.kulinarik-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: start;
}

.cta-button {
    display: inline-flex;
    align-items: center; gap: 0.7rem;
    margin-top: 1.5rem;
    padding: 0.85rem 1.8rem;
    background: var(--burgundy);
    color: var(--gold-light) !important;
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    border: 2px solid var(--wood-beam);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    text-decoration: none;
}
.cta-button:hover {
    background: var(--burgundy-glow);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 17, 19, 0.4);
    color: var(--gold) !important;
}
.cta-button svg { transition: transform 0.3s; }
.cta-button:hover svg { transform: translateX(4px); }

/* Highlight Cards */
.kulinarik-highlights { display: flex; flex-direction: column; gap: 0.8rem; }

.highlight-card {
    display: flex; align-items: flex-start; gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212, 180, 131, 0.1);
    border-left: 4px solid var(--wood-beam);
    border-radius: 2px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}
.hl-beam {
    position: absolute; top: 0; left: 0;
    width: 4px; height: 0;
    background: var(--burgundy);
    transition: height 0.5s var(--ease-out-expo);
}
.highlight-card:hover .hl-beam { height: 100%; }
.highlight-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212, 180, 131, 0.25);
    transform: translateX(6px);
}
.hl-number {
    font-family: var(--font-fraktur);
    font-size: 1.8rem; color: var(--burgundy);
    line-height: 1; opacity: 0.5;
    min-width: 45px;
}
.hl-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 600;
    color: var(--gold); margin-bottom: 0.2rem;
}
.hl-content p {
    font-family: var(--font-body);
    font-size: 0.85rem; color: var(--text-light);
    opacity: 0.65; line-height: 1.5;
}

/* ============================================
   VERANSTALTUNGEN
   ============================================ */
.veranstaltungen-section {
    background:
        radial-gradient(ellipse at 80% 50%, rgba(123, 17, 19, 0.03), transparent 50%),
        var(--cream);
}
.veranstaltungen-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: start;
}

/* Fachwerk Image Frame */
.fw-image-frame {
    position: relative;
    border: 5px solid var(--wood-beam);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    transition: transform 0.5s var(--ease-smooth);
}
.fw-image-frame:hover { transform: scale(1.02); }
.fw-image-frame img, .fw-image-frame iframe {
    width: 100%; display: block;
    transition: transform 0.8s var(--ease-smooth);
}
.fw-image-frame:hover img { transform: scale(1.06); }

/* Fachwerk corner joints on image */
.fw-img-corner {
    position: absolute;
    width: 20px; height: 20px;
    z-index: 2;
}
.fw-img-corner::before, .fw-img-corner::after {
    content: '';
    position: absolute;
    background: var(--wood-dark);
}
.fw-img-corner.tl { top: 0; left: 0; }
.fw-img-corner.tl::before { top: 0; left: 0; width: 20px; height: 5px; }
.fw-img-corner.tl::after { top: 0; left: 0; width: 5px; height: 20px; }

.fw-img-corner.tr { top: 0; right: 0; }
.fw-img-corner.tr::before { top: 0; right: 0; width: 20px; height: 5px; }
.fw-img-corner.tr::after { top: 0; right: 0; width: 5px; height: 20px; }

.fw-img-corner.bl { bottom: 0; left: 0; }
.fw-img-corner.bl::before { bottom: 0; left: 0; width: 20px; height: 5px; }
.fw-img-corner.bl::after { bottom: 0; left: 0; width: 5px; height: 20px; }

.fw-img-corner.br { bottom: 0; right: 0; }
.fw-img-corner.br::before { bottom: 0; right: 0; width: 20px; height: 5px; }
.fw-img-corner.br::after { bottom: 0; right: 0; width: 5px; height: 20px; }

/* Capacity Cards */
.capacity-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.capacity-card {
    text-align: center;
    padding: 1.8rem 1rem;
    background: var(--plaster);
    border: 3px solid var(--wood-beam);
    position: relative;
    transition: all 0.4s var(--ease-smooth);
}
.cap-beam {
    position: absolute; top: -3px; left: 30%; right: 30%;
    height: 3px; background: var(--burgundy);
}
.capacity-card:hover { transform: translateY(-4px); box-shadow: 0 10px 35px rgba(0,0,0,0.1); }
.capacity-number {
    font-family: var(--font-fraktur);
    font-size: 3rem; color: var(--burgundy);
    line-height: 1; margin-bottom: 0.2rem;
}
.capacity-label {
    font-family: var(--font-body);
    font-size: 0.82rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-dark);
    font-weight: 500; margin-bottom: 0.4rem;
}
.capacity-desc {
    font-family: var(--font-body);
    font-size: 0.78rem; color: var(--text-body); opacity: 0.6;
}

/* Event Tags */
.event-types { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.event-tag {
    padding: 0.45rem 1rem;
    background: transparent;
    border: 2px solid var(--wood-beam);
    font-family: var(--font-body);
    font-size: 0.8rem; color: var(--wood-dark);
    letter-spacing: 0.04em;
    transition: all 0.3s var(--ease-smooth);
    cursor: default;
}
.event-tag:hover {
    background: var(--wood-beam); color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 51, 34, 0.3);
}

/* ============================================
   HILDEN SECTION
   ============================================ */
.hilden-section { position: relative; overflow: hidden; }
.hilden-section .section-container { position: relative; z-index: 1; }
.hilden-showcase { max-width: 850px; margin: 0 auto 3rem; }

.hilden-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.fact-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 180, 131, 0.15);
    border-top: 4px solid var(--wood-beam);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}
.fact-beam {
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: var(--burgundy);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out-expo);
}
.fact-card:hover .fact-beam { transform: scaleX(1); }
.fact-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); }
.fact-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.fact-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 600;
    color: var(--gold); margin-bottom: 0.4rem;
}
.fact-card p {
    font-family: var(--font-body);
    font-size: 0.82rem; color: var(--text-light); opacity: 0.6;
}

/* ============================================
   KONTAKT
   ============================================ */
.kontakt-section {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(123, 17, 19, 0.03), transparent 50%),
        var(--cream);
}
.kontakt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
}
.kontakt-detail {
    display: flex; align-items: flex-start;
    gap: 1rem; margin-bottom: 1.3rem;
}
.k-icon { font-size: 1.3rem; margin-top: 0.1rem; }
.kontakt-detail strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem; margin-bottom: 0.15rem;
    color: var(--text-dark);
}
.kontakt-detail p {
    font-family: var(--font-body) !important;
    font-size: 0.92rem !important;
    text-align: left !important;
    line-height: 1.5 !important;
}
.kontakt-detail a { color: inherit; }
.kontakt-detail a:hover { color: var(--burgundy); }

/* Form */
.kontakt-form { display: flex; flex-direction: column; gap: 1.1rem; }

/* Honeypot: completely hidden from real users */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px; height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-dark);
    margin-bottom: 0.3rem; font-weight: 600;
}
.form-input {
    width: 100%; padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.65);
    border: 2px solid var(--wood-beam);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.92rem; color: var(--text-dark);
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-input::placeholder { color: rgba(58, 48, 40, 0.32); }
.form-input:focus {
    border-color: var(--burgundy);
    background: rgba(255,255,255,0.95);
    box-shadow: 0 0 0 3px rgba(123, 17, 19, 0.1);
}
.form-input.invalid {
    border-color: #c0392b;
    background: rgba(255, 235, 235, 0.7);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}
.form-input.valid {
    border-color: #27ae60;
    background: rgba(240, 255, 244, 0.7);
}

.form-select { cursor: pointer; 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='%234a3322' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-textarea { min-height: 130px; resize: vertical; }

.form-error {
    display: block;
    font-size: 0.75rem;
    color: #c0392b;
    margin-top: 0.25rem;
    min-height: 1em;
    font-family: var(--font-body);
}

.char-counter {
    text-align: right;
    font-size: 0.72rem;
    color: var(--text-body);
    opacity: 0.45;
    margin-top: 0.25rem;
    font-family: var(--font-body);
}
.char-counter.warn { color: #c0392b; opacity: 0.8; }

.form-submit-btn { width: 100%; justify-content: center; margin-top: 0.4rem; }

.form-notice {
    font-size: 0.72rem;
    color: var(--text-body);
    opacity: 0.45;
    text-align: center;
    font-family: var(--font-body);
}

/* Map */
.map-container {
    border-radius: 2px;
    overflow: hidden;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--wood-dark);
    color: var(--text-light);
}
.footer-container {
    max-width: var(--container-max);
    margin: 0 auto; padding: 3rem 2rem 2rem;
    text-align: center;
}
.footer-logo { margin-bottom: 2rem; }
.footer-brand {
    display: block;
    font-family: var(--font-body);
    font-size: 0.82rem; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold-dark);
    margin-top: 0.8rem; margin-bottom: 0.3rem;
}
.footer-location {
    display: block;
    font-family: var(--font-elegant);
    font-size: 0.88rem; color: var(--text-light);
    opacity: 0.4; font-style: italic;
}
.footer-links {
    display: flex; justify-content: center;
    gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.footer-links a {
    font-size: 0.78rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-light);
    opacity: 0.4; transition: all 0.3s;
}
.footer-links a:hover { opacity: 1; color: var(--gold); }

.footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; padding-top: 1.5rem;
    border-top: 2px solid var(--wood-beam);
    margin-bottom: 1rem;
}
.footer-bottom p { font-size: 0.78rem; opacity: 0.35; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--text-light); opacity: 0.35; transition: opacity 0.3s; }
.footer-legal a:hover { opacity: 0.7; }

.footer-credit { padding-top: 0.8rem; }
.footer-credit p { font-size: 0.72rem; opacity: 0.25; }
.footer-credit a { color: var(--gold-dark); }

/* Footer Logo */
.footer-logo-img {
    width: 64px; height: 64px;
    object-fit: contain;
    margin: 0 auto 0.5rem;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* Footer Opening Status */
.footer-open-status {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin: 0.6rem auto 0;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(212,180,131,0.15);
    font-family: var(--font-body);
    font-size: 0.75rem; letter-spacing: 0.05em;
    color: var(--text-light);
    position: relative; cursor: default;
    transition: border-color 0.3s;
}
.footer-open-status:hover { border-color: rgba(212,180,131,0.4); }
.footer-open-status.open  { border-color: rgba(46,160,67,0.35); }
.footer-open-status.closed { border-color: rgba(192,57,43,0.35); }

.footer-open-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.footer-open-status.open  .footer-open-dot {
    background: #4caf50;
    box-shadow: 0 0 0 3px rgba(76,175,80,0.25);
    animation: openPulse 2s ease-in-out infinite;
}
.footer-open-status.closed .footer-open-dot {
    background: #e53935;
    box-shadow: 0 0 0 3px rgba(229,57,53,0.2);
}
@keyframes openPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(76,175,80,0.25); }
    50%       { box-shadow: 0 0 0 6px rgba(76,175,80,0.1); }
}

/* ── Opening Hours Tooltip ── */
.hours-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%; transform: translateX(-50%) translateY(6px);
    background: var(--wood-dark);
    border: 2px solid var(--wood-beam);
    border-radius: 6px;
    padding: 1rem 1.4rem;
    min-width: 220px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 200;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
/* Arrow */
.hours-tooltip::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%; transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: var(--wood-beam);
}
.footer-open-status:hover .hours-tooltip {
    opacity: 1; transform: translateX(-50%) translateY(0);
}

.hours-tooltip-title {
    font-family: var(--font-display);
    font-size: 0.78rem; font-weight: 700;
    color: var(--gold); letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--wood-beam);
    text-align: center;
}
.hours-row {
    display: flex; justify-content: space-between; gap: 1rem;
    font-family: var(--font-body); font-size: 0.8rem;
    padding: 0.22rem 0;
    color: var(--text-light);
}
.hours-row .day  { opacity: 0.6; }
.hours-row .time { color: var(--gold-dark); font-weight: 500; }
.hours-row.today .day  { opacity: 1; color: var(--gold-light); font-weight: 600; }
.hours-row.today .time { color: var(--gold); }
.hours-note {
    margin-top: 0.6rem; padding-top: 0.5rem;
    border-top: 1px solid var(--wood-beam);
    font-size: 0.72rem; color: var(--text-light);
    opacity: 0.45; text-align: center; font-style: italic;
    font-family: var(--font-body);
}

/* Same tooltip for hero badge */
.hero-open-badge {
    position: relative; cursor: default;
}
.hero-open-badge .hours-tooltip {
    bottom: calc(100% + 12px);
    border-color: rgba(212,180,131,0.3);
    background: rgba(26,20,16,0.97);
    backdrop-filter: blur(16px);
}
.hero-open-badge .hours-tooltip::after {
    border-top-color: rgba(212,180,131,0.3);
}
.hero-open-badge:hover .hours-tooltip {
    opacity: 1; transform: translateX(-50%) translateY(0);
}

/* Social Buttons */
.footer-social {
    display: flex; gap: 0.8rem; justify-content: center;
    margin-top: 1rem;
}
.social-btn {
    width: 40px; height: 40px;
    border: 2px solid rgba(212,180,131,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-dark);
    transition: all 0.3s var(--ease-smooth);
    text-decoration: none;
}
.social-btn:hover {
    border-color: var(--gold-dark);
    color: var(--gold);
    background: rgba(212,180,131,0.08);
    transform: translateY(-3px);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed; right: 2rem; bottom: 2rem;
    width: 46px; height: 46px;
    background: var(--wood-beam);
    border: 2px solid var(--gold-dark);
    color: var(--gold-light);
    font-size: 1.2rem;
    cursor: pointer; z-index: 100;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover {
    background: var(--burgundy);
    transform: translateY(-4px);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-up {
    opacity: 0; transform: translateY(50px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}
.reveal-left {
    opacity: 0; transform: translateX(-60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}
.reveal-right {
    opacity: 0; transform: translateX(60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}
.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1; transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .kulinarik-grid, .veranstaltungen-layout, .kontakt-layout {
        grid-template-columns: 1fr; gap: 2rem;
    }
}
/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 999;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}
.nav-overlay.open { opacity: 1; }

@media (max-width: 768px) {
    .nav-overlay { display: block; pointer-events: none; }
    .nav-overlay.open { pointer-events: auto; }

    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: min(320px, 85vw); height: 100vh;
        background: rgba(36, 22, 14, 0.99);
        backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center;
        gap: 0; padding: 2rem 0;
        transition: right 0.45s var(--ease-out-expo);
        border-left: 4px solid var(--wood-beam);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    .nav-links li { border-bottom: 1px solid rgba(74,51,34,0.25); }
    .nav-links li:first-child { border-top: 1px solid rgba(74,51,34,0.25); }
    .nav-links a {
        font-size: 0.95rem; padding: 1rem 2rem;
        display: flex; align-items: center; justify-content: space-between;
        letter-spacing: 0.15em;
    }
    .nav-links a::after { content: '›'; font-size: 1.2rem; opacity: 0.3; width: auto; height: auto; background: none; position: static; }

    .charm-grid, .hilden-facts { grid-template-columns: 1fr; gap: 1.5rem; }
    .capacity-cards { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .hero-lantern { display: none; }
    .fw-brace { display: none; }

    .fwd-pattern { height: 30px; }
    .fwd-x, .fwd-diamond { width: 40px; }
}

@media (max-width: 480px) {
    .section-container { padding: 0 1rem; }
    .fw-panel-content { padding: 1.5rem 1rem; }
    .fw-main-frame { border-width: 4px; }
    .title-fraktur { font-size: 2.5rem !important; }
    .fw-inner-content { padding: 2rem 1.2rem; }
}

/* ============================================
   DEMO BADGE
   ============================================ */
.demo-badge {
    position: fixed;
    top: 14px; right: 14px;
    z-index: 9999;
    background: rgba(42, 24, 16, 0.92);
    border: 1px solid var(--gold-dark);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    display: flex; align-items: center; gap: 0.4rem;
    pointer-events: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.demo-badge-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: demoPulse 2s ease-in-out infinite;
}
@keyframes demoPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================
   MOBILE CALL BUTTON
   ============================================ */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 5rem; right: 1.2rem;
    z-index: 200;
    background: var(--burgundy);
    color: var(--gold-light);
    border: 2px solid var(--wood-beam);
    border-radius: 50px;
    padding: 0.65rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    align-items: center; gap: 0.5rem;
    box-shadow: 0 6px 24px rgba(123, 17, 19, 0.45);
    transition: all 0.3s var(--ease-smooth);
}
.mobile-call-btn:hover {
    background: var(--burgundy-glow);
    transform: translateY(-2px);
    color: var(--gold);
}
@media (max-width: 768px) {
    .mobile-call-btn { display: flex; }
}

/* ============================================
   HERO CTA BUTTONS
   ============================================ */
.hero-open-badge {
    display: inline-flex;
    align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212, 180, 131, 0.2);
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    margin: 0.8rem auto 1.2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
}
.hero-open-badge.is-open { border-color: rgba(46, 160, 67, 0.4); }
.hero-open-badge.is-closed { border-color: rgba(192, 57, 43, 0.35); }
.open-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #6ec96f;
    flex-shrink: 0;
    animation: demoPulse 2s ease-in-out infinite;
}
.hero-open-badge.is-closed .open-dot { background: #e74c3c; animation: none; }

.hero-ctas {
    display: flex;
    gap: 1rem; justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.4rem;
}
.hero-cta-btn {
    display: inline-flex;
    align-items: center; gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.35s var(--ease-smooth);
}
.hero-cta-primary {
    background: var(--burgundy);
    color: var(--gold-light);
    border: 2px solid var(--wood-beam);
    box-shadow: 0 6px 20px rgba(123, 17, 19, 0.4);
}
.hero-cta-primary:hover {
    background: var(--burgundy-glow);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(123, 17, 19, 0.55);
    color: var(--gold);
}
.hero-cta-secondary {
    background: transparent;
    color: var(--gold-light);
    border: 2px solid rgba(212, 180, 131, 0.4);
}
.hero-cta-secondary:hover {
    background: rgba(212, 180, 131, 0.12);
    border-color: var(--gold-dark);
    color: var(--gold);
    transform: translateY(-3px);
}
@media (max-width: 480px) {
    .hero-cta-btn { width: 100%; justify-content: center; }
    .hero-ctas { flex-direction: column; }
}

/* ============================================
   SPEISEKARTE
   ============================================ */
.speisekarte-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 180, 131, 0.06), transparent 50%),
        var(--cream);
}

/* --- Menu Tabs --- */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.menu-tab {
    padding: 0.55rem 1.2rem;
    background: transparent;
    border: 2px solid var(--wood-beam);
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-body);
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.menu-tab:hover {
    background: var(--wood-medium);
    color: var(--gold-light);
    border-color: var(--wood-medium);
}

.menu-tab.active {
    background: var(--wood-beam);
    color: var(--gold);
    border-color: var(--wood-beam);
    box-shadow: 0 4px 12px rgba(74, 51, 34, 0.3);
}

/* --- Menu Panels --- */
.menu-panel { display: none; }
.menu-panel.active { display: block; }

/* --- Menu Grid --- */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--plaster);
    border: 4px solid var(--wood-beam);
    border-radius: 2px;
    overflow: hidden;
}

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid rgba(74, 51, 34, 0.12);
    border-right: 1px solid rgba(74, 51, 34, 0.08);
    transition: background 0.25s;
}

.menu-item:hover { background: rgba(212, 180, 131, 0.08); }

.menu-item:nth-child(even) { border-right: none; }

/* Last row: remove bottom border */
.menu-item:last-child,
.menu-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
}

.mi-name {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
}

.mi-name em {
    font-size: 0.82rem;
    color: var(--text-body);
    opacity: 0.6;
}

.mi-dots {
    flex: 1;
    min-width: 12px;
    border-bottom: 2px dotted rgba(74, 51, 34, 0.2);
    margin-bottom: 4px;
}

.mi-price {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--burgundy);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item--note .mi-name { font-style: italic; }

/* Menu panel label (e.g. "Markthaus Team Empfehlungen") */
.menu-panel-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--burgundy);
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding: 0.5rem 1rem;
    border-top: 2px solid var(--wood-beam);
    border-bottom: 2px solid var(--wood-beam);
    background: rgba(212, 180, 131, 0.08);
}

/* Tagesgericht banner (admin-injected) */
.tagesgericht-banner {
    background: linear-gradient(135deg, rgba(123,17,19,0.12), rgba(212,180,131,0.08));
    border: 2px solid rgba(123,17,19,0.3);
    border-left: 5px solid var(--burgundy);
    padding: 0.9rem 1.2rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-elegant);
    font-size: 1.05rem;
    color: var(--text-dark);
    display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.tg-star { color: var(--burgundy); font-size: 1.1rem; }
.tg-price { font-weight: 600; color: var(--burgundy); margin-left: auto; }

/* Admin: sold-out items */
.menu-item.sold-out-item { opacity: 0.45; }
.menu-item.sold-out-item .mi-price { color: #999; font-weight: 400; font-style: italic; }

/* Admin: special/recommended items */
.menu-item.special-item { background: rgba(212,180,131,0.07); }
.menu-item.special-item .mi-name::before {
    content: '⭐ ';
    font-size: 0.75rem;
}

/* Menu tagline and hint */
.menu-tagline {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--text-body);
    opacity: 0.65;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.menu-hint {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-body);
    opacity: 0.45;
    margin-top: 1.5rem;
    letter-spacing: 0.05em;
}

/* --- Mobile: 1 column --- */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .menu-item {
        border-right: none;
    }
    .menu-item:nth-last-child(2):nth-child(odd) {
        border-bottom: 1px solid rgba(74, 51, 34, 0.12);
    }
    .menu-item:last-child {
        border-bottom: none;
    }
    .mi-name {
        white-space: normal;
        font-size: 0.95rem;
    }
    .menu-tabs {
        gap: 0.4rem;
    }
    .menu-tab {
        font-size: 0.72rem;
        padding: 0.5rem 0.9rem;
    }
}

@media (max-width: 480px) {
    .menu-item {
        padding: 0.7rem 0.9rem;
    }
    .mi-name { font-size: 0.9rem; }
    .mi-price { font-size: 0.82rem; }
}

/* ============================================
   MOBILE IMPROVEMENTS (global)
   ============================================ */
@media (max-width: 768px) {
    /* Charm grid: 2-col on tablet */
    .charm-grid { grid-template-columns: repeat(2, 1fr); }

    /* Section headers: smaller gap */
    .section-header { gap: 0.8rem; }
    .section-header svg { width: 20px; height: 40px; }

    /* Nav links bigger touch targets */
    .nav-links a { padding: 0.5rem 0; }

    /* Kulinarik grid: single column already handled at 1024 */
    .hl-content h3 { font-size: 1rem; }

    /* Capacity cards: 2-col on tablet, 1-col on phone (already handled) */

    /* Footer bottom readable */
    .footer-bottom { text-align: center; }

    /* CTA button: full-width on small screens */
    .cta-button { width: 100%; justify-content: center; }

    /* Capacity numbers: slightly smaller */
    .capacity-number { font-size: 2.4rem; }
}

@media (max-width: 480px) {
    /* Charm grid: 1-col on phone */
    .charm-grid { grid-template-columns: 1fr; }

    /* Hero content tighter */
    .hero-subtitle { font-size: 0.92rem; letter-spacing: 0.06em; }
    .hero-tagline { font-size: 0.72rem; }
    .hero-address { font-size: 0.78rem; }

    /* Section title smaller */
    .section-title { font-size: 1.4rem; }

    /* Event tags: smaller */
    .event-tag { font-size: 0.74rem; padding: 0.35rem 0.8rem; }

    /* Form inputs: larger for touch */
    .form-input { padding: 1rem; font-size: 1rem; }

    /* Footer links: stacked */
    .footer-links { flex-direction: column; gap: 1rem; align-items: center; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; }
    .footer-legal { justify-content: center; }
}

/* ============================================
   PREMIUM ENHANCEMENTS
   ============================================ */

/* Gold accent line under section titles */
.section-title {
    position: relative;
    padding-bottom: 0.9rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold-dark));
    border-radius: 2px;
    transition: width 0.4s var(--ease-out-expo);
}
.section-header:hover .section-title::after { width: 90px; }
.section-header.light .section-title::after { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }

/* Gold shimmer on section titles */
.section-header:hover .section-title {
    background: linear-gradient(135deg, var(--text-dark) 40%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header.light:hover .section-title {
    background: linear-gradient(135deg, var(--gold) 40%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtle grain texture overlay on light sections */
.willkommen-section::before,
.veranstaltungen-section::before,
.kontakt-section::before,
.speisekarte-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234a3322' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.willkommen-section .section-container,
.veranstaltungen-section .section-container,
.kontakt-section .section-container,
.speisekarte-section .section-container { position: relative; z-index: 1; }

/* Refined fw-panel shadow */
.fw-panel {
    box-shadow:
        0 8px 40px rgba(0,0,0,0.1),
        0 2px 0 rgba(212, 180, 131, 0.12),
        inset 0 0 0 1px rgba(212, 180, 131, 0.1);
}

/* Better highlight card readability */
.hl-content p { opacity: 0.9; color: var(--gold-pale); }

/* Dark panel: ensure paragraph text is readable on dark backgrounds */
.dark-panel .fw-panel-content p {
    color: var(--gold-pale);
    opacity: 0.92;
}

/* Kulinarik specifically: boost paragraph contrast */
.kulinarik-section .fw-panel-content p {
    color: var(--cream);
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Smoother charm card shadow on hover */
.charm-card:hover {
    box-shadow: 0 20px 50px rgba(74, 51, 34, 0.18), 0 8px 20px rgba(0,0,0,0.08);
}

/* ----- Page Load ----- */
body {
    opacity: 0;
    animation: pageReveal 0.5s var(--ease-smooth) 0.1s forwards;
}
@keyframes pageReveal { to { opacity: 1; } }
