/* ============================================
   KLUBBEN YSTAD — 3 Structural Templates
   Same brand colors, different layouts
   Bold / Poster / Classic
   ============================================ */

/* ========== BRAND PALETTE (shared across all templates) ========== */
:root {
  /* Core brand: #4c1923 (deep wine burgundy from Klubben's actual branding) */
  --brand-core: #4c1923;
  --brand-dark: #0d0608;
  --brand-surface: #170b0e;
  --brand-surface-2: #1f1014;
  --brand-burgundy: #4c1923;
  --brand-magenta: #8a2a3a;
  --brand-pink: #c43a52;
  --brand-purple: #7a2040;
  --brand-light: #f5eeef;
  --brand-text: #ffffff;
  --brand-text-secondary: rgba(255, 255, 255, 0.7);
  --brand-text-muted: rgba(255, 255, 255, 0.4);
  --brand-border: rgba(76, 25, 35, 0.4);
  --brand-border-strong: rgba(76, 25, 35, 0.7);
  --brand-glow: rgba(196, 58, 82, 0.25);
  --brand-glow-strong: rgba(196, 58, 82, 0.5);
  --brand-gradient: linear-gradient(135deg, #c43a52, #4c1923);
  --brand-gradient-subtle: linear-gradient(135deg, rgba(196, 58, 82, 0.12), rgba(76, 25, 35, 0.12));
  --transition: 0.5s ease;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --max-width: 1200px;
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  background: var(--brand-dark);
  color: var(--brand-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-pink); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--brand-purple); }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Prevent scroll when mobile nav is open */
body.nav-open { overflow: hidden; position: fixed; width: 100%; }

/* Use svh for hero on mobile where supported */
@supports (min-height: 100svh) {
  [data-theme="bold"] #hero,
  [data-theme="poster"] #hero,
  [data-theme="classic"] #hero { min-height: 100svh; }
}

/* ========== THEME SWITCHER BAR ========== */
#theme-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, #1a0d10 0%, #0d0608 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 48px; display: flex; align-items: center; padding: 0 24px;
}
.theme-bar-inner {
  max-width: var(--max-width); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.theme-bar-label, .theme-bar-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,255,255,0.4); font-family: 'Space Grotesk', sans-serif; white-space: nowrap;
}
.theme-switches {
  display: flex; gap: 4px; background: rgba(0,0,0,0.3); padding: 4px; border-radius: 30px;
}
.theme-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 18px; border: none; border-radius: 24px;
  background: transparent; color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.theme-btn:hover { color: #fff; background: rgba(255,255,255,0.06); }
.theme-btn.active { color: #fff; background: rgba(255,255,255,0.12); }
.theme-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-gradient); display: inline-block;
}

/* ========== NAVBAR ========== */
#navbar {
  position: fixed; top: 48px; left: 0; right: 0; z-index: 999;
  background: rgba(13, 8, 17, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--brand-border); height: 64px; padding: 0 24px;
  transition: border-color 0.3s;
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--brand-text); text-decoration: none; }
.nav-logo-icon { color: var(--brand-pink); flex-shrink: 0; }
.nav-logo-text { font-size: 18px; font-weight: 700; letter-spacing: 4px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--brand-text-secondary); font-size: 14px; font-weight: 500;
  letter-spacing: 0.5px; transition: color 0.3s; text-decoration: none;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 8px 20px !important; background: var(--brand-gradient) !important;
  color: #fff !important; border-radius: 30px; font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.9; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--brand-text); border-radius: 2px; transition: all 0.3s; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 30px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; text-decoration: none; cursor: pointer; transition: all 0.3s; border: none;
}
.btn-primary {
  background: var(--brand-gradient); color: #fff;
  box-shadow: 0 4px 20px var(--brand-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--brand-glow-strong); color: #fff; }
.btn-outline { background: transparent; color: var(--brand-text); border: 1px solid var(--brand-border-strong); }
.btn-outline:hover { background: rgba(255,255,255,0.05); transform: translateY(-2px); color: #fff; }
.btn-lg { padding: 16px 40px; font-size: 15px; }

/* ========== SECTION BASE ========== */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--brand-surface); }
.section-header { margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 3px;
  color: var(--brand-pink); background: rgba(76, 25, 35, 0.25);
  padding: 6px 16px; border-radius: 20px; margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.section-title { font-size: clamp(28px, 5vw, 48px); font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--brand-text-secondary); }

/* ==========================================================================
   TEMPLATE: BOLD — Full-bleed, massive type, stacked hero, horizontal events
   ========================================================================== */

[data-theme="bold"] { font-family: 'Space Grotesk', sans-serif; }
[data-theme="bold"] .nav-logo-text { font-family: 'Space Grotesk', sans-serif; }
[data-theme="bold"] .section-title,
[data-theme="bold"] .cta-title { font-family: 'Space Grotesk', sans-serif; }

/* BOLD HERO: full-screen centered, massive title, neon glow */
[data-theme="bold"] #hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 112px 24px 60px; position: relative; overflow: hidden;
}
[data-theme="bold"] .hero-glow {
  position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 25, 35, 0.3) 0%, rgba(76, 25, 35, 0.08) 40%, transparent 70%);
  pointer-events: none;
}
[data-theme="bold"] .hero-logo-wrap { margin-bottom: 24px; }
[data-theme="bold"] .hero-logo-icon { width: 80px; height: 80px; color: var(--brand-pink); }
[data-theme="bold"] .hero-badge {
  font-size: 12px; letter-spacing: 4px; color: var(--brand-text-muted);
  margin-bottom: 20px;
}
[data-theme="bold"] .hero-title {
  font-size: clamp(72px, 14vw, 180px); font-weight: 800; letter-spacing: 8px;
  line-height: 0.9; margin-bottom: 20px;
  background: var(--brand-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 40px var(--brand-glow));
}
[data-theme="bold"] .hero-subtitle {
  font-size: clamp(16px, 2.5vw, 22px); color: var(--brand-text-secondary);
  font-weight: 300; letter-spacing: 1px; margin-bottom: 40px;
}
[data-theme="bold"] .hero-info-bar {
  display: flex; justify-content: center; gap: 32px; margin-bottom: 40px;
  flex-wrap: wrap;
}
[data-theme="bold"] .hero-info-item { text-align: center; }
[data-theme="bold"] .hero-info-label {
  display: block; font-size: 11px; letter-spacing: 3px; color: var(--brand-pink);
  font-weight: 600; margin-bottom: 4px;
}
[data-theme="bold"] .hero-info-value {
  display: block; font-size: 16px; font-weight: 500; color: var(--brand-text);
}
[data-theme="bold"] .hero-info-divider {
  width: 1px; height: 36px; background: var(--brand-border);
}
[data-theme="bold"] .hero-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
[data-theme="bold"] .hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--brand-text-muted); font-size: 11px; letter-spacing: 2px;
  animation: boldFloat 3s ease-in-out infinite;
}
[data-theme="bold"] .hero-scroll-line { width: 1px; height: 40px; background: var(--brand-border-strong); }
@keyframes boldFloat { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* BOLD OM: side-by-side, text heavy, stats in a row */
[data-theme="bold"] .om-layout {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start;
}
[data-theme="bold"] .om-desc {
  color: var(--brand-text-secondary); font-size: 17px; line-height: 1.8; margin-bottom: 16px;
}
[data-theme="bold"] .om-vibes {
  display: flex; flex-direction: column; gap: 0;
  background: var(--brand-surface); border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg); overflow: hidden;
}
[data-theme="bold"] .om-vibe {
  padding: 24px 32px; border-bottom: 1px solid var(--brand-border);
  display: flex; justify-content: space-between; align-items: center;
}
[data-theme="bold"] .om-vibe:last-child { border-bottom: none; }
[data-theme="bold"] .om-vibe-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--brand-text);
}
[data-theme="bold"] .om-vibe-desc { color: var(--brand-text-muted); font-size: 13px; letter-spacing: 1px; }

/* BOLD EVENTS: stacked full-width cards */
[data-theme="bold"] .section-header { text-align: left; }
[data-theme="bold"] .events-grid { display: flex; flex-direction: column; gap: 12px; }
[data-theme="bold"] .event-card {
  display: flex; align-items: center; gap: 24px;
  padding: 24px 28px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--brand-border); border-radius: var(--radius);
  transition: all 0.3s;
}
[data-theme="bold"] .event-card:hover {
  background: rgba(255,255,255,0.06); border-color: var(--brand-border-strong);
  transform: translateX(4px);
}
[data-theme="bold"] .event-card.featured { border-color: var(--brand-pink); border-left: 3px solid var(--brand-pink); }
[data-theme="bold"] .event-date-block {
  display: flex; align-items: baseline; gap: 8px; min-width: 120px;
}
[data-theme="bold"] .event-day-name { font-size: 13px; font-weight: 700; color: var(--brand-pink); letter-spacing: 1px; }
[data-theme="bold"] .event-day-num { font-size: 32px; font-weight: 800; line-height: 1; }
[data-theme="bold"] .event-month { font-size: 13px; color: var(--brand-text-muted); text-transform: uppercase; }
[data-theme="bold"] .event-body { flex: 1; }
[data-theme="bold"] .event-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
[data-theme="bold"] .event-desc { color: var(--brand-text-secondary); font-size: 14px; margin-bottom: 6px; }
[data-theme="bold"] .event-meta { display: flex; gap: 12px; align-items: center; }
[data-theme="bold"] .event-time { font-size: 13px; color: var(--brand-text-muted); }
[data-theme="bold"] .event-badge {
  font-size: 11px; font-weight: 600; padding: 2px 10px;
  background: rgba(76, 25, 35, 0.3); color: var(--brand-pink);
  border-radius: 12px; letter-spacing: 0.5px;
}
[data-theme="bold"] .event-link {
  font-size: 14px; font-weight: 600; color: var(--brand-pink);
  white-space: nowrap; padding: 8px 16px; border: 1px solid var(--brand-border);
  border-radius: 20px; transition: all 0.3s;
}
[data-theme="bold"] .event-link:hover { background: var(--brand-gradient); color: #fff; border-color: transparent; }
[data-theme="bold"] .events-bottom { margin-top: 32px; }

/* BOLD INFO: 4-column grid, minimal cards */
[data-theme="bold"] .info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
[data-theme="bold"] .info-card {
  padding: 28px 20px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--brand-border); border-radius: var(--radius);
  transition: all 0.3s;
}
[data-theme="bold"] .info-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
[data-theme="bold"] .info-icon-wrap { color: var(--brand-pink); margin-bottom: 16px; }
[data-theme="bold"] .info-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
[data-theme="bold"] .info-card p { color: var(--brand-text-secondary); font-size: 14px; line-height: 1.5; margin-bottom: 2px; }
[data-theme="bold"] .info-card strong { color: var(--brand-pink); }
[data-theme="bold"] .info-small { color: var(--brand-text-muted) !important; font-size: 12px !important; font-style: italic; margin-top: 6px !important; }

/* BOLD CTA: centered, big text */
[data-theme="bold"] .cta-layout { text-align: center; }
[data-theme="bold"] .cta-title {
  font-size: clamp(36px, 6vw, 64px); font-weight: 800; margin-bottom: 16px;
  background: var(--brand-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 20px var(--brand-glow));
}
[data-theme="bold"] .cta-text { color: var(--brand-text-secondary); font-size: 18px; margin-bottom: 32px; }
[data-theme="bold"] .cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
[data-theme="bold"] .cta-logo { display: none; }

/* BOLD HITTA: 2-col */
[data-theme="bold"] .hitta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
[data-theme="bold"] .hitta-desc { color: var(--brand-text-secondary); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
[data-theme="bold"] .hitta-links { display: flex; flex-direction: column; gap: 12px; }
[data-theme="bold"] .hitta-link {
  display: flex; align-items: center; gap: 10px;
  color: var(--brand-text-secondary); font-size: 15px; transition: color 0.3s;
}
[data-theme="bold"] .hitta-link:hover { color: var(--brand-pink); }
[data-theme="bold"] .hitta-map-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px; background: var(--brand-surface); border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg); color: var(--brand-text-muted); gap: 8px; min-height: 280px;
}
[data-theme="bold"] .hitta-map-placeholder span { font-size: 16px; font-weight: 500; }
[data-theme="bold"] .hitta-map-sub { font-size: 13px !important; font-weight: 400 !important; }

/* ==========================================================================
   TEMPLATE: POSTER — Nightclub event poster / magazine editorial layout
   ========================================================================== */

[data-theme="poster"] { font-family: 'Inter', sans-serif; }
[data-theme="poster"] .nav-logo-text { font-family: 'Space Grotesk', sans-serif; letter-spacing: 6px; font-weight: 800; }
[data-theme="poster"] .section-title { font-family: 'Space Grotesk', sans-serif; font-weight: 800; }

/* POSTER HERO: full-bleed panel, left-aligned, marquee info strip */
[data-theme="poster"] #hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; text-align: left;
  padding: 112px 0 60px; position: relative; overflow: hidden;
}
[data-theme="poster"] .hero-glow {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, #4c1923 0%, #2a0d12 35%, var(--brand-dark) 70%);
  pointer-events: none;
}
[data-theme="poster"] .hero-content {
  padding: 60px calc((100vw - var(--max-width)) / 2 + 24px);
  text-align: left; position: relative; z-index: 1;
}
[data-theme="poster"] .hero-logo-wrap { margin-bottom: 24px; }
[data-theme="poster"] .hero-logo-icon { width: 56px; height: 56px; color: var(--brand-pink); }
[data-theme="poster"] .hero-badge {
  font-size: 11px; letter-spacing: 4px; color: var(--brand-magenta);
  font-weight: 700; margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
}
[data-theme="poster"] .hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(64px, 12vw, 140px); font-weight: 900; letter-spacing: 6px;
  line-height: 0.9; margin-bottom: 0; color: var(--brand-text);
  text-transform: uppercase;
}
[data-theme="poster"] .hero-subtitle {
  font-size: 18px; color: var(--brand-text-secondary); font-weight: 300;
  letter-spacing: 0.5px; margin-bottom: 0; margin-top: 20px;
}
/* Marquee-style info strip */
[data-theme="poster"] .hero-info-bar {
  display: flex; align-items: center; gap: 0;
  background: rgba(76, 25, 35, 0.25); border-top: 1px solid var(--brand-border-strong);
  border-bottom: 1px solid var(--brand-border-strong);
  margin: 32px calc(-1 * ((100vw - var(--max-width)) / 2 + 24px));
  padding: 0 calc((100vw - var(--max-width)) / 2 + 24px);
  overflow: hidden; position: relative; z-index: 1;
}
[data-theme="poster"] .hero-info-item {
  padding: 16px 32px; text-align: center; white-space: nowrap;
  border-right: 1px solid rgba(76, 25, 35, 0.4);
}
[data-theme="poster"] .hero-info-item:last-child { border-right: none; }
[data-theme="poster"] .hero-info-divider { display: none; }
[data-theme="poster"] .hero-info-label {
  display: block; font-size: 10px; letter-spacing: 3px; color: var(--brand-magenta);
  font-weight: 700; margin-bottom: 2px; font-family: 'Space Grotesk', sans-serif;
}
[data-theme="poster"] .hero-info-value {
  font-size: 15px; font-weight: 600; color: var(--brand-text);
  font-family: 'Space Grotesk', sans-serif;
}
[data-theme="poster"] .hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px;
  position: relative; z-index: 1;
  padding: 0 calc((100vw - var(--max-width)) / 2 + 24px);
}
[data-theme="poster"] .hero-scroll { display: none; }

/* POSTER OM: editorial / manifesto panel with vibes columns */
[data-theme="poster"] #om {
  background: rgba(76, 25, 35, 0.12);
  border-top: 1px solid rgba(76, 25, 35, 0.3);
  border-bottom: 1px solid rgba(76, 25, 35, 0.3);
}
[data-theme="poster"] .om-layout {
  display: flex; flex-direction: column; gap: 48px;
}
[data-theme="poster"] .section-header { text-align: left; }
[data-theme="poster"] .om-text { max-width: 800px; }
[data-theme="poster"] .om-desc {
  color: var(--brand-text-secondary); font-size: 20px; line-height: 1.7;
  margin-bottom: 16px; font-weight: 300;
}
[data-theme="poster"] .om-desc:first-of-type {
  font-size: 26px; font-weight: 400; color: var(--brand-text);
  line-height: 1.5; letter-spacing: -0.3px;
}
/* Vibes: 3 equal columns with top border accent */
[data-theme="poster"] .om-vibes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 8px;
}
[data-theme="poster"] .om-vibe {
  padding: 24px 28px; border-top: 3px solid var(--brand-magenta);
  border-right: 1px solid var(--brand-border);
}
[data-theme="poster"] .om-vibe:last-child { border-right: none; }
[data-theme="poster"] .om-vibe-title {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 800; color: var(--brand-text);
  margin-bottom: 6px; letter-spacing: 0.5px;
}
[data-theme="poster"] .om-vibe-desc {
  display: block; font-size: 14px; color: var(--brand-text-secondary);
}

/* POSTER EVENTS: horizontal scrolling card row */
[data-theme="poster"] .events-grid {
  display: flex; gap: 16px; overflow-x: auto;
  padding-bottom: 16px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--brand-burgundy) transparent;
}
[data-theme="poster"] .events-grid::-webkit-scrollbar { height: 4px; }
[data-theme="poster"] .events-grid::-webkit-scrollbar-track { background: transparent; }
[data-theme="poster"] .events-grid::-webkit-scrollbar-thumb {
  background: var(--brand-burgundy); border-radius: 4px;
}
[data-theme="poster"] .event-card {
  display: flex; flex-direction: column; gap: 16px;
  min-width: 280px; max-width: 320px; flex-shrink: 0;
  padding: 0; background: rgba(255,255,255,0.03);
  border: 1px solid var(--brand-border); border-radius: var(--radius);
  transition: all 0.3s; scroll-snap-align: start; overflow: hidden;
}
[data-theme="poster"] .event-card:hover {
  background: rgba(255,255,255,0.06); border-color: var(--brand-border-strong);
}
[data-theme="poster"] .event-card.featured {
  border-color: var(--brand-magenta);
}
[data-theme="poster"] .event-date-block {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 20px; background: var(--brand-gradient);
  text-align: center;
}
[data-theme="poster"] .event-day-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7);
  letter-spacing: 2px; text-transform: uppercase;
}
[data-theme="poster"] .event-day-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px; font-weight: 900; color: #fff; line-height: 1;
}
[data-theme="poster"] .event-month {
  font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 1px;
  text-transform: uppercase;
}
[data-theme="poster"] .event-body { flex: 1; padding: 0 20px; }
[data-theme="poster"] .event-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 800; margin-bottom: 6px;
}
[data-theme="poster"] .event-desc {
  color: var(--brand-text-secondary); font-size: 13px; margin-bottom: 8px; line-height: 1.5;
}
[data-theme="poster"] .event-meta { display: flex; gap: 10px; align-items: center; }
[data-theme="poster"] .event-time { font-size: 12px; color: var(--brand-text-muted); }
[data-theme="poster"] .event-badge {
  font-size: 10px; font-weight: 700; padding: 2px 10px;
  background: rgba(76, 25, 35, 0.3); color: var(--brand-pink);
  border-radius: 12px; letter-spacing: 0.5px;
  font-family: 'Space Grotesk', sans-serif;
}
[data-theme="poster"] .event-link {
  display: block; text-align: center;
  font-size: 13px; font-weight: 700; color: var(--brand-text);
  padding: 14px 20px; background: rgba(255,255,255,0.04);
  border-top: 1px solid var(--brand-border);
  transition: all 0.3s; margin-top: auto;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 1px; text-transform: uppercase;
}
[data-theme="poster"] .event-link:hover {
  background: var(--brand-gradient); color: #fff;
}
[data-theme="poster"] .events-bottom { margin-top: 32px; }

/* POSTER INFO: 2x2 grid with left border accent */
[data-theme="poster"] .info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
[data-theme="poster"] .info-card {
  padding: 28px 24px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--brand-border); border-radius: 0;
  border-left: 3px solid; border-image: var(--brand-gradient) 1;
  text-align: left; transition: all 0.3s;
}
[data-theme="poster"] .info-card:hover { background: rgba(255,255,255,0.05); }
[data-theme="poster"] .info-icon-wrap { color: var(--brand-pink); margin-bottom: 14px; }
[data-theme="poster"] .info-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 800; margin-bottom: 10px; letter-spacing: 0.3px;
}
[data-theme="poster"] .info-card p {
  color: var(--brand-text-secondary); font-size: 14px; line-height: 1.5; margin-bottom: 2px;
}
[data-theme="poster"] .info-card strong { color: var(--brand-pink); }
[data-theme="poster"] .info-small {
  color: var(--brand-text-muted) !important; font-size: 12px !important;
  font-style: italic; margin-top: 6px !important;
}

/* POSTER CTA: full-width gradient panel with watermark logo */
[data-theme="poster"] #cta {
  background: linear-gradient(160deg, #4c1923 0%, #2a0d12 50%, var(--brand-dark) 100%);
  border-top: 1px solid rgba(76, 25, 35, 0.3);
  border-bottom: 1px solid rgba(76, 25, 35, 0.3);
}
[data-theme="poster"] .cta-layout {
  text-align: center; position: relative; overflow: hidden;
}
[data-theme="poster"] .cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 7vw, 72px); font-weight: 900; margin-bottom: 16px;
  color: var(--brand-text); text-transform: uppercase; letter-spacing: 3px;
  position: relative; z-index: 1;
}
[data-theme="poster"] .cta-text {
  color: var(--brand-text-secondary); font-size: 18px; margin-bottom: 32px;
  position: relative; z-index: 1;
}
[data-theme="poster"] .cta-buttons {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
[data-theme="poster"] .cta-logo {
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: var(--brand-pink); opacity: 0.06; pointer-events: none;
}
[data-theme="poster"] .cta-logo svg { width: 320px; height: 320px; }

/* POSTER HITTA: split layout with left border accent on text */
[data-theme="poster"] .hitta-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start;
}
[data-theme="poster"] .hitta-text {
  border-left: 3px solid; border-image: var(--brand-gradient) 1;
  padding-left: 24px;
}
[data-theme="poster"] .hitta-desc {
  color: var(--brand-text-secondary); font-size: 16px; line-height: 1.7; margin-bottom: 24px;
}
[data-theme="poster"] .hitta-links { display: flex; flex-direction: column; gap: 12px; }
[data-theme="poster"] .hitta-link {
  display: flex; align-items: center; gap: 10px;
  color: var(--brand-text-secondary); font-size: 15px; transition: all 0.3s;
}
[data-theme="poster"] .hitta-link:hover { color: var(--brand-pink); }
[data-theme="poster"] .hitta-map-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 40px; background: var(--brand-surface-2); border: 1px solid var(--brand-border);
  border-radius: 0; color: var(--brand-text-muted); gap: 8px;
}
[data-theme="poster"] .hitta-map-placeholder span {
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700;
}
[data-theme="poster"] .hitta-map-sub { font-size: 13px !important; font-weight: 400 !important; }

/* ==========================================================================
   TEMPLATE: CLASSIC — Centered single-column, serif headings, elegant spacing
   ========================================================================== */

[data-theme="classic"] { font-family: 'Inter', sans-serif; }
[data-theme="classic"] .nav-logo-text { font-family: 'Playfair Display', serif; letter-spacing: 6px; font-weight: 500; }
[data-theme="classic"] .section-title { font-family: 'Playfair Display', serif; font-weight: 500; }
[data-theme="classic"] .section-tag {
  font-family: 'Inter', sans-serif; background: none; padding: 0;
  color: var(--brand-pink); border-bottom: 1px solid var(--brand-pink);
  padding-bottom: 4px; border-radius: 0;
}

/* CLASSIC HERO: tall, centered, elegant with decorative lines */
[data-theme="classic"] #hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 112px 24px 60px; position: relative;
}
[data-theme="classic"] .hero-glow {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(76, 25, 35, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
[data-theme="classic"] .hero-logo-wrap { margin-bottom: 40px; }
[data-theme="classic"] .hero-logo-icon { width: 100px; height: 100px; color: var(--brand-pink); opacity: 0.8; }
[data-theme="classic"] .hero-badge {
  font-size: 13px; letter-spacing: 5px; color: var(--brand-text-muted); margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}
[data-theme="classic"] .hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(56px, 10vw, 120px);
  font-weight: 400; letter-spacing: 12px; line-height: 1;
  margin-bottom: 24px; color: var(--brand-text);
}
[data-theme="classic"] .hero-subtitle {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(16px, 2.5vw, 22px); color: var(--brand-text-secondary);
  font-weight: 400; margin-bottom: 48px;
}
[data-theme="classic"] .hero-info-bar {
  display: flex; justify-content: center; gap: 48px; margin-bottom: 48px;
}
[data-theme="classic"] .hero-info-item { text-align: center; }
[data-theme="classic"] .hero-info-label {
  display: block; font-size: 10px; letter-spacing: 3px; color: var(--brand-text-muted);
  margin-bottom: 6px;
}
[data-theme="classic"] .hero-info-value {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500;
}
[data-theme="classic"] .hero-info-divider {
  width: 1px; height: 40px; background: var(--brand-border);
}
[data-theme="classic"] .hero-ctas { display: flex; justify-content: center; gap: 16px; }
[data-theme="classic"] .hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--brand-text-muted); font-size: 10px; letter-spacing: 3px;
  font-family: 'Inter', sans-serif;
}
[data-theme="classic"] .hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--brand-border-strong), transparent);
}

/* CLASSIC: decorative dividers between sections */
[data-theme="classic"] .section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px; background: var(--brand-border-strong);
}
[data-theme="classic"] .section:first-of-type::before { display: none; }

/* CLASSIC OM: centered single column, generous spacing */
[data-theme="classic"] .om-layout {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 48px;
  max-width: 720px; margin: 0 auto;
}
[data-theme="classic"] .om-text { text-align: center; }
[data-theme="classic"] .section-title { text-align: center; }
[data-theme="classic"] .om-desc {
  color: var(--brand-text-secondary); font-size: 17px; line-height: 1.9; margin-bottom: 12px;
}
[data-theme="classic"] .om-vibes {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--brand-border);
  width: 100%;
}
[data-theme="classic"] .om-vibe { text-align: center; }
[data-theme="classic"] .om-vibe-title {
  display: block; font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 500; color: var(--brand-pink); margin-bottom: 4px;
}
[data-theme="classic"] .om-vibe-desc {
  color: var(--brand-text-muted); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
}

/* CLASSIC EVENTS: centered list, elegant cards with top accent */
[data-theme="classic"] .section-header { text-align: center; }
[data-theme="classic"] .events-grid {
  display: flex; flex-direction: column; gap: 16px; max-width: 700px; margin: 0 auto;
}
[data-theme="classic"] .event-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  padding: 28px 32px; background: transparent;
  border: 1px solid var(--brand-border); border-radius: 0;
  transition: all 0.3s; border-left: none; border-right: none;
  border-top: none;
}
[data-theme="classic"] .event-card:first-child { border-top: 1px solid var(--brand-border); }
[data-theme="classic"] .event-card:hover { background: rgba(255,255,255,0.02); }
[data-theme="classic"] .event-card.featured { background: rgba(76, 25, 35, 0.15); }
[data-theme="classic"] .event-date-block {
  display: flex; flex-direction: column; align-items: center; min-width: 60px;
}
[data-theme="classic"] .event-day-name {
  font-size: 11px; letter-spacing: 2px; color: var(--brand-text-muted);
}
[data-theme="classic"] .event-day-num {
  font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 500; line-height: 1.1;
}
[data-theme="classic"] .event-month { font-size: 11px; color: var(--brand-text-muted); letter-spacing: 1px; }
[data-theme="classic"] .event-body {}
[data-theme="classic"] .event-title {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500; margin-bottom: 4px;
}
[data-theme="classic"] .event-desc { color: var(--brand-text-secondary); font-size: 14px; margin-bottom: 6px; }
[data-theme="classic"] .event-meta { display: flex; gap: 12px; align-items: center; }
[data-theme="classic"] .event-time { font-size: 13px; color: var(--brand-text-muted); }
[data-theme="classic"] .event-badge {
  font-size: 11px; font-weight: 500; padding: 2px 10px;
  border: 1px solid var(--brand-border); color: var(--brand-text-muted);
  border-radius: 0; letter-spacing: 1px;
}
[data-theme="classic"] .event-link {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 14px; color: var(--brand-pink); white-space: nowrap; transition: color 0.3s;
}
[data-theme="classic"] .event-link:hover { color: var(--brand-purple); }
[data-theme="classic"] .events-bottom { text-align: center; margin-top: 40px; }

/* CLASSIC INFO: 2-col with elegant layout */
[data-theme="classic"] .info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  max-width: 800px; margin: 0 auto;
  border: 1px solid var(--brand-border);
}
[data-theme="classic"] .info-card {
  padding: 36px 32px; text-align: center;
  border-right: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  transition: background 0.3s;
}
[data-theme="classic"] .info-card:nth-child(2n) { border-right: none; }
[data-theme="classic"] .info-card:nth-child(n+3) { border-bottom: none; }
[data-theme="classic"] .info-card:hover { background: rgba(255,255,255,0.02); }
[data-theme="classic"] .info-icon-wrap { color: var(--brand-pink); margin-bottom: 14px; display: flex; justify-content: center; }
[data-theme="classic"] .info-card h3 {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500; margin-bottom: 10px;
}
[data-theme="classic"] .info-card p { color: var(--brand-text-secondary); font-size: 14px; margin-bottom: 2px; }
[data-theme="classic"] .info-card strong { color: var(--brand-pink); }
[data-theme="classic"] .info-small { color: var(--brand-text-muted) !important; font-size: 12px !important; font-style: italic; margin-top: 6px !important; }

/* CLASSIC CTA: centered, with logo above */
[data-theme="classic"] .cta-layout {
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
[data-theme="classic"] .cta-logo {
  color: var(--brand-pink); opacity: 0.2; margin-bottom: 32px; order: -1;
}
[data-theme="classic"] .cta-logo svg { width: 120px; height: 120px; }
[data-theme="classic"] .cta-title {
  font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 56px);
  font-weight: 400; margin-bottom: 16px; color: var(--brand-text);
}
[data-theme="classic"] .cta-text { color: var(--brand-text-secondary); font-size: 17px; margin-bottom: 32px; max-width: 500px; }
[data-theme="classic"] .cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* CLASSIC HITTA */
[data-theme="classic"] .hitta-layout {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 600px; margin: 0 auto; gap: 32px;
}
[data-theme="classic"] .hitta-desc { color: var(--brand-text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
[data-theme="classic"] .hitta-links {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}
[data-theme="classic"] .hitta-link {
  display: flex; align-items: center; gap: 8px;
  color: var(--brand-text-secondary); font-size: 14px; transition: color 0.3s;
}
[data-theme="classic"] .hitta-link:hover { color: var(--brand-pink); }
[data-theme="classic"] .hitta-map-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px; border: 1px solid var(--brand-border);
  color: var(--brand-text-muted); gap: 8px; width: 100%;
}
[data-theme="classic"] .hitta-map-placeholder span { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500; }
[data-theme="classic"] .hitta-map-sub { font-family: 'Inter', sans-serif !important; font-size: 13px !important; font-weight: 400 !important; }

/* ========== MAP (shared) ========== */
.hitta-map {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--brand-border); min-height: 340px;
  position: relative; background: var(--brand-surface);
}
#map { width: 100%; height: 340px; z-index: 0; }
.hitta-address {
  font-size: 15px; color: var(--brand-text-secondary); margin-bottom: 12px;
  letter-spacing: 0.5px;
}
[data-theme="classic"] .hitta-address {
  font-family: 'Playfair Display', serif; font-size: 16px;
}
[data-theme="poster"] .hitta-map { border-radius: 0; }

/* Leaflet overrides — dark theme */
.leaflet-container { background: var(--brand-dark) !important; }
.leaflet-control-attribution { display: none !important; }
.leaflet-control-zoom { border: none !important; }
.leaflet-control-zoom a {
  background: var(--brand-surface) !important; color: var(--brand-text-secondary) !important;
  border: 1px solid var(--brand-border) !important; width: 32px !important; height: 32px !important;
  line-height: 32px !important; font-size: 16px !important;
}
.leaflet-control-zoom a:hover { background: var(--brand-surface-2) !important; color: #fff !important; }

/* Custom popup */
.klubben-popup .leaflet-popup-content-wrapper {
  background: var(--brand-surface); color: var(--brand-text); border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm); box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.klubben-popup .leaflet-popup-content { margin: 14px 16px; font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.5; }
.klubben-popup .leaflet-popup-tip { background: var(--brand-surface); border: 1px solid var(--brand-border); }
.popup-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.popup-addr { color: var(--brand-text-secondary); }
.popup-hours { color: var(--brand-pink); font-weight: 600; margin-top: 6px; font-size: 12px; letter-spacing: 0.5px; }

/* Custom marker */
.klubben-marker { background: none !important; border: none !important; }
.klubben-marker svg { filter: drop-shadow(0 4px 12px rgba(76, 25, 35, 0.6)); }

/* ========== FOOTER (shared, minimal) ========== */
#footer {
  background: rgba(0,0,0,0.3); border-top: 1px solid var(--brand-border);
  padding: 40px 0 24px;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon { color: var(--brand-pink); }
.footer-name { font-size: 14px; font-weight: 600; letter-spacing: 4px; }
.footer-info { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: center; color: var(--brand-text-muted); font-size: 13px; }
.footer-info a { color: var(--brand-text-muted); }
.footer-info a:hover { color: var(--brand-pink); }
.footer-dot { opacity: 0.3; }
.footer-bottom-row { display: flex; gap: 16px; color: var(--brand-text-muted); font-size: 12px; }
.footer-bottom-row a { color: var(--brand-text-muted); text-decoration: underline; }
.footer-bottom-row a:hover { color: var(--brand-pink); }

/* ==========================================================================
   MOBILE — Comprehensive responsive overhaul for all 3 templates
   ========================================================================== */

/* ---------- Safe areas for notched phones ---------- */
@supports (padding: env(safe-area-inset-bottom)) {
  #footer { padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
  .nav-links.open { padding-bottom: env(safe-area-inset-bottom); }
}

/* ---------- Touch target minimums ---------- */
@media (pointer: coarse) {
  .btn { min-height: 48px; }
  .nav-cta { min-height: 44px; }
  .theme-btn { min-height: 40px; }
  .event-link { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .hitta-link { min-height: 48px; }
}

/* ---------- Tablet: 769–1024px ---------- */
@media (max-width: 1024px) {
  [data-theme="bold"] .info-grid { grid-template-columns: repeat(2, 1fr); }
  [data-theme="bold"] .om-layout { grid-template-columns: 1fr; gap: 48px; }
  [data-theme="poster"] .cta-layout { text-align: center; }
  [data-theme="poster"] .cta-logo { opacity: 0.04; }
  [data-theme="poster"] .cta-buttons { justify-content: center; }
}

/* ---------- Mobile: <= 768px ---------- */
@media (max-width: 768px) {

  /* -- Global mobile -- */
  html { scroll-padding-top: 100px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(26px, 6vw, 36px); }
  .section-sub { font-size: 15px; }

  /* -- Theme switcher bar -- */
  #theme-bar { height: 44px; padding: 0 12px; }
  .theme-bar-label, .theme-bar-tag { display: none; }
  .theme-bar-inner { justify-content: center; }
  .theme-switches {
    gap: 2px; padding: 3px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; -ms-overflow-style: none;
    flex-shrink: 0;
  }
  .theme-switches::-webkit-scrollbar { display: none; }
  .theme-btn { padding: 7px 16px; font-size: 13px; flex-shrink: 0; }
  .theme-dot { width: 7px; height: 7px; }

  /* -- Navbar -- */
  #navbar { top: 44px; height: 56px; padding: 0 16px; }
  .nav-logo-text { font-size: 16px; letter-spacing: 3px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 100px; left: 0; right: 0; bottom: 0;
    background: var(--brand-dark); flex-direction: column;
    align-items: center; justify-content: center; gap: 28px; padding: 32px;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 998;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { font-size: 22px; display: block; padding: 8px 0; }
  .nav-cta {
    display: block !important; text-align: center;
    padding: 14px 32px !important; font-size: 16px !important;
    margin-top: 8px; border-radius: 30px;
  }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* -- Buttons: full-width on mobile -- */
  .btn { width: 100%; text-align: center; }
  .btn-lg { padding: 16px 24px; font-size: 15px; }

  /* -- Footer -- */
  .footer-info { flex-direction: column; gap: 4px; }
  .footer-dot { display: none; }
  .footer-bottom-row { flex-direction: column; gap: 6px; text-align: center; }

  /* ========================================
     BOLD — Mobile
     ======================================== */

  /* Bold hero */
  [data-theme="bold"] #hero { padding: 100px 20px 48px; min-height: 100svh; }
  [data-theme="bold"] .hero-logo-icon { width: 56px; height: 56px; }
  [data-theme="bold"] .hero-badge { font-size: 11px; letter-spacing: 3px; margin-bottom: 16px; }
  [data-theme="bold"] .hero-title {
    font-size: clamp(44px, 15vw, 80px); letter-spacing: 4px; margin-bottom: 12px;
  }
  [data-theme="bold"] .hero-subtitle { font-size: 16px; margin-bottom: 28px; }
  [data-theme="bold"] .hero-glow { width: 350px; height: 350px; }
  [data-theme="bold"] .hero-info-bar {
    flex-direction: column; gap: 0;
    background: var(--brand-surface); border: 1px solid var(--brand-border);
    border-radius: var(--radius); overflow: hidden; width: 100%; margin-bottom: 28px;
  }
  [data-theme="bold"] .hero-info-item {
    padding: 14px 16px; display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--brand-border); text-align: left;
  }
  [data-theme="bold"] .hero-info-item:last-child { border-bottom: none; }
  [data-theme="bold"] .hero-info-divider { display: none; }
  [data-theme="bold"] .hero-info-label { margin-bottom: 0; font-size: 11px; }
  [data-theme="bold"] .hero-info-value { font-size: 15px; }
  [data-theme="bold"] .hero-ctas { flex-direction: column; width: 100%; }
  [data-theme="bold"] .hero-scroll { bottom: 16px; }

  /* Bold om */
  [data-theme="bold"] .om-layout { grid-template-columns: 1fr; gap: 32px; }
  [data-theme="bold"] .om-desc { font-size: 15px; }
  [data-theme="bold"] .om-vibe { padding: 20px 24px; }
  [data-theme="bold"] .om-vibe-title { font-size: 16px; }

  /* Bold events */
  [data-theme="bold"] .event-card {
    flex-direction: column; align-items: stretch; gap: 16px; padding: 20px;
  }
  [data-theme="bold"] .event-date-block {
    flex-direction: row; gap: 8px; align-items: center;
    padding: 8px 14px; background: var(--brand-gradient);
    border-radius: var(--radius-sm); align-self: flex-start;
  }
  [data-theme="bold"] .event-day-num { font-size: 22px; }
  [data-theme="bold"] .event-title { font-size: 17px; }
  [data-theme="bold"] .event-link {
    width: 100%; text-align: center; padding: 12px 16px;
    background: rgba(255,255,255,0.04);
  }
  [data-theme="bold"] .event-card:hover { transform: none; }

  /* Bold info */
  [data-theme="bold"] .info-grid { grid-template-columns: 1fr; gap: 12px; }
  [data-theme="bold"] .info-card { padding: 24px 20px; text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  [data-theme="bold"] .info-icon-wrap { flex-shrink: 0; }

  /* Bold CTA */
  [data-theme="bold"] .cta-title { font-size: clamp(28px, 8vw, 44px); }
  [data-theme="bold"] .cta-text { font-size: 16px; }
  [data-theme="bold"] .cta-buttons { flex-direction: column; width: 100%; }

  /* Bold hitta */
  [data-theme="bold"] .hitta-layout { grid-template-columns: 1fr; gap: 32px; }
  [data-theme="bold"] .hitta-map-placeholder { padding: 40px 20px; min-height: 200px; }

  /* ========================================
     POSTER — Mobile
     ======================================== */

  /* Poster hero: keep left-aligned, adjust sizing */
  [data-theme="poster"] #hero { padding: 100px 0 48px; min-height: 100svh; }
  [data-theme="poster"] .hero-content { padding: 40px 20px 0; }
  [data-theme="poster"] .hero-logo-icon { width: 44px; height: 44px; }
  [data-theme="poster"] .hero-badge { font-size: 10px; letter-spacing: 3px; margin-bottom: 12px; }
  [data-theme="poster"] .hero-title {
    font-size: clamp(42px, 14vw, 80px); letter-spacing: 3px; margin-bottom: 0;
  }
  [data-theme="poster"] .hero-subtitle { font-size: 15px; margin-top: 14px; }
  [data-theme="poster"] .hero-info-bar {
    flex-direction: column; gap: 0;
    margin: 24px -20px; padding: 0;
  }
  [data-theme="poster"] .hero-info-item {
    padding: 12px 20px; display: flex; justify-content: space-between;
    align-items: center; border-right: none !important;
    border-bottom: 1px solid rgba(76, 25, 35, 0.3);
  }
  [data-theme="poster"] .hero-info-item:last-child { border-bottom: none; }
  [data-theme="poster"] .hero-info-label { margin-bottom: 0; }
  [data-theme="poster"] .hero-ctas {
    flex-direction: column; width: 100%; padding: 0 20px; margin-top: 28px;
  }

  /* Poster om */
  [data-theme="poster"] .om-text { max-width: none; }
  [data-theme="poster"] .om-desc { font-size: 16px; }
  [data-theme="poster"] .om-desc:first-of-type { font-size: 20px; }
  [data-theme="poster"] .om-vibes { grid-template-columns: 1fr; gap: 0; }
  [data-theme="poster"] .om-vibe {
    border-right: none; border-top: 2px solid var(--brand-magenta);
    padding: 18px 20px;
  }

  /* Poster events: keep horizontal scroll, adjust card sizing */
  [data-theme="poster"] .events-grid { gap: 12px; scroll-padding-left: 20px; }
  [data-theme="poster"] .event-card { min-width: 260px; max-width: 280px; }
  [data-theme="poster"] .event-day-num { font-size: 36px; }
  [data-theme="poster"] .event-title { font-size: 16px; }
  [data-theme="poster"] .event-card:hover { transform: none; }

  /* Poster info */
  [data-theme="poster"] .info-grid { grid-template-columns: 1fr; gap: 12px; }
  [data-theme="poster"] .info-card { padding: 24px 20px; }

  /* Poster CTA */
  [data-theme="poster"] .cta-title { font-size: clamp(28px, 8vw, 44px); letter-spacing: 2px; }
  [data-theme="poster"] .cta-text { font-size: 16px; }
  [data-theme="poster"] .cta-buttons { flex-direction: column; width: 100%; }
  [data-theme="poster"] .cta-logo svg { width: 200px; height: 200px; }

  /* Poster hitta */
  [data-theme="poster"] .hitta-layout { grid-template-columns: 1fr; gap: 32px; }
  [data-theme="poster"] .hitta-text { padding-left: 20px; }
  [data-theme="poster"] .hitta-map-placeholder { padding: 48px 20px; }

  /* ========================================
     CLASSIC — Mobile
     ======================================== */

  /* Classic hero */
  [data-theme="classic"] #hero { padding: 100px 20px 48px; min-height: 100svh; }
  [data-theme="classic"] .hero-logo-icon { width: 72px; height: 72px; }
  [data-theme="classic"] .hero-logo-wrap { margin-bottom: 28px; }
  [data-theme="classic"] .hero-badge { font-size: 11px; letter-spacing: 3px; margin-bottom: 16px; }
  [data-theme="classic"] .hero-title {
    font-size: clamp(40px, 12vw, 80px); letter-spacing: 6px; margin-bottom: 16px;
  }
  [data-theme="classic"] .hero-subtitle { font-size: 16px; margin-bottom: 32px; }
  [data-theme="classic"] .hero-info-bar {
    flex-direction: column; gap: 0; width: 100%;
    border: 1px solid var(--brand-border); border-radius: 0; overflow: hidden;
    margin-bottom: 32px;
  }
  [data-theme="classic"] .hero-info-item {
    padding: 14px 20px; display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--brand-border);
  }
  [data-theme="classic"] .hero-info-item:last-child { border-bottom: none; }
  [data-theme="classic"] .hero-info-divider { display: none; }
  [data-theme="classic"] .hero-info-label { margin-bottom: 0; }
  [data-theme="classic"] .hero-info-value { font-size: 16px; }
  [data-theme="classic"] .hero-ctas { flex-direction: column; width: 100%; }
  [data-theme="classic"] .hero-scroll { bottom: 20px; }

  /* Classic om */
  [data-theme="classic"] .om-layout { gap: 32px; }
  [data-theme="classic"] .om-desc { font-size: 15px; }
  [data-theme="classic"] .om-vibes {
    flex-direction: column; gap: 0; padding-top: 0;
    border-top: none; border: 1px solid var(--brand-border);
  }
  [data-theme="classic"] .om-vibe {
    padding: 20px; display: flex; align-items: center; gap: 16px;
    border-bottom: 1px solid var(--brand-border); text-align: left;
  }
  [data-theme="classic"] .om-vibe:last-child { border-bottom: none; }
  [data-theme="classic"] .om-vibe-title { font-size: 18px; }

  /* Classic events */
  [data-theme="classic"] .event-card {
    grid-template-columns: 1fr; gap: 12px; padding: 20px 16px;
  }
  [data-theme="classic"] .event-date-block {
    flex-direction: row; align-items: center; gap: 8px;
    justify-content: flex-start;
  }
  [data-theme="classic"] .event-day-num { font-size: 24px; }
  [data-theme="classic"] .event-link {
    display: inline-flex; padding: 10px 20px;
    border: 1px solid var(--brand-border); border-radius: 0; width: 100%; text-align: center;
    justify-content: center; background: rgba(255,255,255,0.02);
  }
  [data-theme="classic"] .event-card:first-child { border-top: 1px solid var(--brand-border); }

  /* Classic info */
  [data-theme="classic"] .info-grid {
    grid-template-columns: 1fr; border: none;
  }
  [data-theme="classic"] .info-card {
    border: 1px solid var(--brand-border) !important;
    border-radius: 0 !important; padding: 28px 20px;
    border-bottom: none !important;
  }
  [data-theme="classic"] .info-card:last-child { border-bottom: 1px solid var(--brand-border) !important; }

  /* Classic CTA */
  [data-theme="classic"] .cta-title { font-size: clamp(28px, 7vw, 44px); }
  [data-theme="classic"] .cta-text { font-size: 15px; }
  [data-theme="classic"] .cta-buttons { flex-direction: column; width: 100%; }
  [data-theme="classic"] .cta-logo svg { width: 80px; height: 80px; }

  /* Classic hitta */
  [data-theme="classic"] .hitta-layout { gap: 24px; }
  [data-theme="classic"] .hitta-links { flex-direction: column; gap: 16px; }
  [data-theme="classic"] .hitta-link { font-size: 15px; }
  [data-theme="classic"] .hitta-map-placeholder { padding: 36px 20px; }
}

/* ---------- Small phones: <= 380px ---------- */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .theme-btn { padding: 6px 12px; font-size: 12px; gap: 4px; }
  .theme-dot { width: 6px; height: 6px; }
  .nav-logo-text { font-size: 14px; letter-spacing: 2px; }

  [data-theme="bold"] .hero-title { font-size: clamp(36px, 14vw, 60px); letter-spacing: 2px; }
  [data-theme="poster"] .hero-title { font-size: clamp(32px, 12vw, 56px); letter-spacing: 2px; }
  [data-theme="classic"] .hero-title { font-size: clamp(32px, 12vw, 56px); letter-spacing: 4px; }

  .btn { padding: 14px 20px; font-size: 14px; }
  .btn-lg { padding: 16px 20px; }

  [data-theme="bold"] .om-vibe-title { font-size: 15px; }
  [data-theme="poster"] .om-vibe-title { font-size: 14px; }
  [data-theme="classic"] .om-vibe-title { font-size: 16px; }
}

/* ---------- Landscape phones ---------- */
@media (max-height: 500px) and (orientation: landscape) {
  [data-theme="bold"] #hero,
  [data-theme="poster"] #hero,
  [data-theme="classic"] #hero {
    min-height: auto; padding-top: 110px; padding-bottom: 40px;
  }
  [data-theme="bold"] .hero-logo-wrap,
  [data-theme="classic"] .hero-logo-wrap { margin-bottom: 12px; }
  [data-theme="bold"] .hero-logo-icon,
  [data-theme="classic"] .hero-logo-icon { width: 40px; height: 40px; }
  .hero-scroll { display: none !important; }
}

/* ========== SCROLL ANIMATIONS ========== */
.animate-in { opacity: 1 !important; transform: translateY(0) !important; }
