*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg-1: #414843; --bg-2: #3a403b; --bg-card: #4a524c; --bg-card-h: #545d56;
    --bg-green: #353b37; --bg-brown: #353b37;
    --accent: #f4eddd; --accent-h: #fffaf0; --accent-dim: rgba(244,237,221,0.14);
    --text: #f4eddd; --text-2: #d3ccbc; --text-3: #9b9789;
    --border: rgba(244,237,221,0.15);
    --font-h: 'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-b: 'Libre Baskerville', Georgia, serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--bg-1); color: var(--text); line-height: 1.7; font-size: 18px; font-weight: 700; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; } a { color: inherit; text-decoration: none; } ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: var(--font-h); font-weight: 400; line-height: 1.06; letter-spacing: 0.5px; text-wrap: balance; }
h1 { font-size: clamp(2.8rem, 5.2vw, 4.4rem); } h2 { font-size: clamp(2.1rem, 3.8vw, 3.3rem); } h3 { font-size: clamp(1.5rem, 2.3vw, 2.05rem); }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 13px 30px; border-radius: 3px; font-family: var(--font-b); font-size: 16px; font-weight: 700; letter-spacing: 0.4px; cursor: pointer; transition: all 0.3s; border: none; }
.btn-primary { background: var(--accent); color: var(--bg-1); position: relative; overflow: hidden; } .btn-primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%); transform: translateX(-100%); transition: transform 0.5s; } .btn-primary:hover { background: var(--accent-h); transform: translateY(-1px); } .btn-primary:hover::after { transform: translateX(100%); }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); } .btn-outline:hover { background: var(--accent); color: var(--bg-1); }
.btn-link { background: none; color: var(--accent); padding: 0; font-size: 15px; border: none; cursor: pointer; font-family: var(--font-b); } .btn-link:hover { color: var(--accent-h); }
.top-bar { height: 36px; background: rgba(12,11,10,0.92); border-bottom: 1px solid var(--border); display: flex; align-items: center; position: fixed; top: 0; left: 0; right: 0; z-index: 1001; transition: transform 0.35s; }
.top-bar.hidden { transform: translateY(-100%); }
.top-bar .container { display: flex; justify-content: flex-end; gap: 28px; }
.top-bar a { font-size: 13px; color: var(--text-2); transition: color 0.2s; } .top-bar a:hover { color: var(--accent); }
.main-nav { position: fixed; top: 0; left: 0; right: 0; height: 90px; z-index: 1000; transition: all 0.35s; background: transparent; }
.main-nav.scrolled { top: 0; background: rgba(12,11,10,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; position: relative; }
.nav-logo img { height: 45px; width: auto; }
.nav-links { display: flex; gap: 2px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-item { position: relative; }
.nav-item > a { display: block; padding: 8px 16px; font-size: 25px; font-weight: 400; letter-spacing: 1px; color: var(--text); transition: color 0.3s; font-family: var(--font-h); position: relative; }
.nav-item > a::after { content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px; height: 1px; background: var(--accent); transform: scaleX(0); transition: transform 0.3s ease; transform-origin: center; }
.nav-item:hover > a { color: var(--accent); }
.nav-item:hover > a::after { transform: scaleX(1); }
.mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 26px; cursor: pointer; padding: 8px; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1100; opacity: 0; visibility: hidden; transition: all 0.3s; }
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; width: 300px; background: var(--bg-2); z-index: 1101; transform: translateX(100%); transition: transform 0.35s ease; overflow-y: auto; padding: 24px; }
.mobile-menu.open { transform: translateX(0); }
.mobile-close { background: none; border: none; color: var(--text); font-size: 30px; cursor: pointer; position: absolute; top: 16px; right: 20px; }
.mobile-nav-item > a { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; font-size: 16px; color: var(--text); border-bottom: 1px solid var(--border); }
.hero { position: relative; height: 100vh; min-height: 550px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--bg-1); }
.hero video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(12,11,10,0.45) 0%, rgba(12,11,10,0.35) 50%, rgba(12,11,10,0.75) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 780px; padding: 0 24px; }
.hero h1 { color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,0.5); font-style: italic; font-weight: 400; }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; z-index: 1; opacity: 0.5; animation: scrollBounce 2.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .hero video { display: none; } }
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.section { padding: 100px 0; } .section-alt { background: var(--bg-2); }
.section-label { text-transform: uppercase; letter-spacing: 3px; font-size: 16px; color: var(--accent); margin-bottom: 12px; font-family: var(--font-b); font-weight: 500; }
.about-grid { display: grid; grid-template-columns: 1.32fr 1fr; gap: 60px; align-items: start; }
.about-image { border-radius: 6px; overflow: hidden; } .about-image img { border-radius: 6px; }
.about-text p { margin-bottom: 16px; color: var(--text-2); font-size: 18px; line-height: 1.8; }
.about-text h2 { margin-bottom: 24px; }
.about-text .highlight { color: var(--accent); font-family: var(--font-b); font-size: 18px; font-style: normal; font-weight: 400; }
.about-buttons { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.party-section { padding: 100px 0; position: relative; background: var(--bg-green); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.party-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.party-content h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.party-content p { color: var(--text-2); margin: 20px 0 32px; font-size: 15px; line-height: 1.8; }
.party-visual { height: 320px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #2a2118 0%, #1a1510 100%); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.events-scroll { display: flex; gap: 24px; overflow-x: auto; padding: 8px 0 20px; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.events-scroll::-webkit-scrollbar { display: none; }
.event-card { flex: 0 0 270px; scroll-snap-align: start; border-radius: 8px; overflow: hidden; background: var(--bg-card); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; border: 1px solid var(--border); }
.event-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); border-color: rgba(244,237,221,0.25); }
.event-card-img { height: 170px; display: flex; align-items: center; justify-content: center; }
.event-card-body { padding: 20px; }
.event-date { font-size: 12px; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.event-title { font-family: var(--font-h); font-size: 17px; font-weight: 500; margin-bottom: 4px; line-height: 1.3; }
.event-sub { font-size: 13px; color: var(--text-3); margin-bottom: 14px; }
.event-price { font-size: 15px; color: var(--accent); font-weight: 700; }
.event-cta { padding: 0 20px 20px; }
.events-all { text-align: center; margin-top: 40px; }
.exp-intro { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.exp-intro p { color: var(--text-2); font-size: 15px; margin-top: 16px; }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.exp-card { background: var(--bg-card); border-radius: 8px; padding: 40px 24px; text-align: center; border: 1px solid var(--border); transition: all 0.3s; cursor: pointer; }
.exp-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.exp-card h3 { margin-top: 16px; font-size: 19px; } .exp-card p { font-size: 13px; color: var(--text-2); margin-top: 8px; }
.exp-detail { max-width: 700px; margin: 0 auto; text-align: center; }
.exp-detail p { color: var(--text-2); font-size: 18px; margin-bottom: 14px; line-height: 1.8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 36px; margin-bottom: 70px; }
.contact-info h2 { margin-bottom: 24px; }
.contact-detail { color: var(--text-2); font-size: 18px; line-height: 2.2; }
.contact-detail a { color: var(--accent); transition: color 0.2s; } .contact-detail a:hover { color: var(--accent-h); }
.promo-card { background: var(--bg-card); border-radius: 8px; padding: 32px; text-align: center; border: 1px solid var(--border); transition: all 0.3s; }
.promo-card:hover { border-color: rgba(244,237,221,0.25); }
.promo-card img { max-height: 140px; margin: 0 auto 20px; object-fit: contain; }
.promo-card h3 { font-size: 1.3rem; margin-bottom: 10px; } .promo-card p { color: var(--text-2); font-size: 14px; margin-bottom: 20px; }
.klippekort-detail { max-width: 700px; margin: 0 auto; text-align: center; padding-top: 50px; border-top: 1px solid var(--border); }
.klippekort-detail h3 { margin-bottom: 20px; } .klippekort-detail p { color: var(--text-2); font-size: 15px; margin-bottom: 14px; line-height: 1.8; }
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-brand img { height: 55px; margin-bottom: 20px; object-fit: contain; }
.footer-brand p { color: var(--text-2); font-size: 14px; font-weight: 700; line-height: 1.9; }
.footer h3 { font-size: 14px; margin-bottom: 20px; color: var(--accent); font-family: var(--font-h); }
.footer-hours { font-size: 14px; font-weight: 700; color: var(--text-2); border-collapse: collapse; }
.footer-hours tr td { padding: 3px 0; } .footer-hours tr td:first-child { padding-right: 16px; color: var(--text); font-weight: 700; }
.footer-hours .closed { color: var(--text-3); }
.footer-links a { display: block; font-size: 14px; font-weight: 700; color: var(--text-2); padding: 5px 0; transition: color 0.2s; } .footer-links a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-card); display: flex; align-items: center; justify-content: center; color: var(--text-2); transition: all 0.2s; border: 1px solid var(--border); font-size: 14px; font-weight: 700; }
.footer-social a:hover { background: var(--accent); color: var(--bg-1); border-color: var(--accent); transform: translateY(-2px) scale(1.1); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; font-size: 12px; font-weight: 700; color: var(--text-3); }
.footer-bottom a { color: var(--text-2); transition: color 0.2s; } .footer-bottom a:hover { color: var(--accent); }
/* === Entrance animations === */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.fade-in-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger children: add .stagger to parent, children get delayed */
.stagger.visible > * { opacity: 0; animation: staggerIn 0.6s ease forwards; }
.stagger.visible > *:nth-child(1) { animation-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { animation-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { animation-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { animation-delay: 0.35s; }
.stagger.visible > *:nth-child(5) { animation-delay: 0.45s; }
.stagger.visible > *:nth-child(6) { animation-delay: 0.55s; }
@keyframes staggerIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Accent line grow */
.line-grow { width: 0; transition: width 0.8s ease 0.3s; }
.visible .line-grow, .line-grow.visible { width: 60px; }

/* Subtle float for decorative elements */
@keyframes gentleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float { animation: gentleFloat 4s ease-in-out infinite; }

/* Glow pulse for accent elements */
@keyframes glowPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(200,164,92,0); } 50% { box-shadow: 0 0 20px 4px rgba(200,164,92,0.15); } }
.glow-pulse { animation: glowPulse 3s ease-in-out infinite; }

/* Subpage styles */
.page-hero { height: 380px; display: flex; align-items: center; justify-content: center; background: var(--bg-green); position: relative; overflow: hidden; margin-top: 90px; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(244,237,221,0.06) 0%, transparent 70%); pointer-events: none; }
.page-hero h1 { color: #fff; font-style: normal; font-weight: 400; letter-spacing: 0.5px; text-align: center; position: relative; z-index: 1; animation: heroTitleIn 0.9s ease both 0.2s; }
.page-hero .section-label { text-align: center; position: relative; z-index: 1; animation: heroLabelIn 0.7s ease both; }
@keyframes heroTitleIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroLabelIn { from { opacity: 0; letter-spacing: 8px; } to { opacity: 1; letter-spacing: 3px; } }
.content-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 36px; transition: all 0.35s; position: relative; overflow: hidden; }
.content-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); transform: scaleX(0); transition: transform 0.4s ease; }
.content-card:hover { border-color: rgba(244,237,221,0.25); box-shadow: 0 8px 32px rgba(0,0,0,0.2); transform: translateY(-2px); }
.content-card:hover::before { transform: scaleX(1); }
.content-card h3 { margin-bottom: 12px; } .content-card p { color: var(--text-2); font-size: 18px; line-height: 1.8; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.menu-item:hover { background: rgba(244,237,221,0.05); }
.menu-item-name { font-family: var(--font-h); font-size: 24px; font-weight: 400; }
.menu-item-desc { font-size: 16px; color: var(--text-3); margin-top: 2px; }
.menu-item-price { color: var(--accent); font-weight: 700; white-space: nowrap; margin-left: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 18px; font-weight: 700; color: var(--text-2); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; color: var(--text); font-family: var(--font-b); font-size: 18px; font-weight: 700; outline: none; transition: border-color 0.2s; }

.food-collage { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 12px; }
.fc-item { background-size: cover; background-position: center; border-radius: 4px; transition: transform 0.5s ease, filter 0.5s ease; filter: saturate(0.92); }
.fc-item:hover { transform: scale(1.02); filter: saturate(1.05); }
.fc-tall { grid-row: span 2; }
.fc-wide { grid-column: span 2; }
@media (max-width: 860px) { .food-collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; } .fc-wide { grid-column: span 2; } }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(244,237,221,0.15); outline: none; }
.form-group textarea { min-height: 120px; resize: vertical; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.gallery-item { aspect-ratio: 4/3; background: var(--bg-card); border-radius: 6px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-3); font-size: 13px; transition: all 0.3s; }
.gallery-item:hover { border-color: rgba(244,237,221,0.25); transform: scale(1.02); }
.product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); border-color: rgba(244,237,221,0.25); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
.product-card-img { height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-card-img--photo { height: auto; background: var(--bg-card); }
.product-card-body { padding: 20px 24px 24px; margin-top: auto; } .product-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.product-card-body p { color: var(--text-2); font-size: 22px; margin-bottom: 16px; }
.product-card-price { color: var(--accent); font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.map-placeholder { height: 340px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-3); font-size: 14px; background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(244,237,221,0.05) 39px, rgba(244,237,221,0.05) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(244,237,221,0.05) 39px, rgba(244,237,221,0.05) 40px); }
#humle-map { height: 360px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
#humle-map .maplibregl-popup-content { background: var(--bg-2); color: var(--text); border-radius: 6px; font-family: var(--font-b); font-size: 14px; }
#humle-map .maplibregl-popup-tip { border-top-color: var(--bg-2); border-bottom-color: var(--bg-2); }
.nav-item.active > a { color: var(--accent); }
.breadcrumb { font-size: 13px; color: var(--text-3); margin-bottom: 8px; }
.breadcrumb a { color: var(--text-2); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.divider { width: 60px; height: 2px; background: var(--accent); margin: 24px 0; opacity: 0.5; }
.divider-center { margin-left: auto; margin-right: auto; }
.menu-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
/* === Tabs === */
.tab-nav { display: flex; gap: 8px; margin-bottom: 56px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 6px; width: fit-content; }
.tab-btn { -webkit-appearance: none; appearance: none; background: transparent; border: none; outline: none; color: var(--text-3); font-family: var(--font-b); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; padding: 12px 28px; cursor: pointer; border-radius: 7px; transition: color 0.18s, background 0.18s; white-space: nowrap; }
.tab-btn:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.tab-btn.active { color: var(--bg-1); background: var(--accent); }
.event-price-tag { position: absolute; top: 12px; right: 12px; background: var(--accent); color: var(--bg-1); font-family: var(--font-b); font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; pointer-events: none; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
/* === Mad sektioner === */
.mad-section { border-radius: 10px; overflow: hidden; margin-bottom: 20px; }
.mad-section-head { padding: 22px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mad-section-head h3 { font-family: var(--font-h); font-size: 1.45rem; margin: 0; line-height: 1.2; }
.mad-section-price { color: var(--accent); font-weight: 700; font-size: 1.05rem; white-space: nowrap; flex-shrink: 0; }
.mad-section-body { padding: 24px 32px 28px; background: rgba(0,0,0,0.18); }
.mad-section-note { color: var(--text-3); font-size: 13px; margin-bottom: 16px; }
.mad-section-img-wrap { height: 440px; overflow: hidden; }
.mad-section-img-wrap picture { display: block; width: 100%; height: 100%; }
.mad-section-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: center; }
.mad-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.mad-list li { color: var(--text-2); padding-left: 18px; position: relative; line-height: 1.5; }
.mad-list li::before { content: '·'; color: var(--accent); position: absolute; left: 0; font-weight: 700; font-size: 1.1em; }
.mad-list li small { display: block; color: var(--text-3); font-size: 13px; }
.haner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; border-radius: 12px; overflow: hidden; }
.haner-img { position: relative; min-height: 420px; }
.haner-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.haner-text { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; background: var(--bg-card); }
.haner-text h2 { margin-bottom: 0; }
.haner-text p { color: var(--text-2); font-size: 18px; line-height: 1.8; margin-bottom: 14px; }
@media (max-width: 960px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; } .about-grid { gap: 40px; }
    .party-inner { grid-template-columns: 1fr; } .party-visual { display: none; }
    .exp-grid, .two-col, .three-col { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .nav-links { display: none; } .mobile-toggle { display: block; }
    .section { padding: 70px 0; }
    .page-hero { height: 280px; margin-top: 90px; }
    .menu-grid-2col { grid-template-columns: 1fr !important; column-gap: 0 !important; }
    .menu-split-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .haner-grid { grid-template-columns: 1fr !important; }
    .haner-img { min-height: 260px; position: relative; }
    .haner-text { padding: 36px 28px; }
    #humle-map { height: 280px; }
    .modal-box { padding: 28px 20px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .event-card { flex: 0 0 250px; }
    .container { padding: 0 16px; }
    .food-collage { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .fc-wide { grid-column: span 1; }
    .modal-overlay { padding: 60px 12px 24px; }
}

/* === Event-popup === */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 1200; display: flex; align-items: flex-start; justify-content: center; padding: 80px 16px 40px; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; overflow-y: auto; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box { background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; max-width: 640px; width: 100%; padding: 40px; position: relative; }
.modal-close { position: absolute; top: 12px; right: 18px; background: none; border: none; color: var(--text); font-size: 32px; line-height: 1; cursor: pointer; }
.event-month { margin-bottom: 56px; }
.event-month:last-child { margin-bottom: 0; }

/* === Admin === */
.admin-center { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.admin-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; padding: 40px; width: 100%; max-width: 380px; }
.admin-bar { background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 18px 0; position: sticky; top: 0; z-index: 10; }
.admin-bar-inner { display: flex; align-items: center; justify-content: space-between; }
.admin-table-wrap { overflow-x: auto; margin-top: 8px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 15px; font-weight: 700; }
.admin-table th { text-align: left; padding: 12px 14px; color: var(--text-3); font-weight: 700; border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); color: var(--text-2); }
.admin-table tr:hover td { background: rgba(244,237,221,0.04); }
.admin-actions { white-space: nowrap; display: flex; gap: 14px; }
.admin-del { color: #e0a4a4; }
.admin-del:hover { color: #f3bcbc; }
.tag { display: inline-block; font-size: 12px; padding: 3px 10px; border-radius: 99px; border: 1px solid var(--border); color: var(--text-3); }
.tag-ok { color: #a9d3b0; border-color: rgba(169,211,176,0.4); }
.tag-warn { color: #e0c08a; border-color: rgba(224,192,138,0.4); }
