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

:root {
  --dark:        #271409;
  --mid:         #4a2412;
  --accent:      #8c4a2a;
  --gold:        #c4703a;
  --gold-lt:     #dc9460;
  --gold-xlt:    #f0b888;
  --sand:        #faf3ea;
  --sand-dk:     #f2e4ce;
  --white:       #ffffff;
  --text:        #1c1208;
  --muted:       #6b5642;
  --r:           14px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

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

section[id] { scroll-margin-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--sand);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; }

/* ── UTILITIES ───────────────────────────────────────────── */
.serif    { font-family: 'Playfair Display', serif; }
.container { max-width: 1140px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--gold-lt);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow--light { color: var(--gold-lt); }
.eyebrow--light::before { background: var(--gold-lt); }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.18;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  font-family: 'Inter', sans-serif;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-lt);
  box-shadow: 0 8px 28px rgba(184,146,74,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--mid);
  box-shadow: 0 8px 24px rgba(22,39,28,0.3);
}

/* Divider */
.rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,74,0.25), transparent);
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 70px;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(22, 39, 28, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(184,146,74,0.2);
}

.nav-inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { background: rgba(255,255,255,0.12); }
.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--dark);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
}
.nav-links .nav-cta a:hover { background: var(--gold-lt); }

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, background 0.2s;
}
.nav-social a:hover {
  color: var(--gold-lt);
  background: rgba(255,255,255,0.07);
}
.nav-social svg { width: 16px; height: 16px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-lt);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 70px 0 0;
  background: rgba(23, 10, 4, 0.98);
  backdrop-filter: blur(20px);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  padding: 0.75rem 2rem;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold-lt); }
.nav-mobile a.cta-link {
  background: var(--gold);
  color: var(--dark);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 110%, rgba(140,74,42,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 35% at 15% 15%, rgba(196,112,58,0.1) 0%, transparent 55%),
    linear-gradient(155deg, #150a04 0%, #271409 45%, #130904 100%);
}

/* Decorative grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Subtle dot grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(184,146,74,0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(7rem, 14vw, 10rem) 5rem;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  max-width: 820px;
}

.hero-logo {
  height: 100px;
  width: auto;
  margin-inline: auto;
  margin-bottom: 2rem;
  mix-blend-mode: screen;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s 0.1s var(--ease) both;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.8s 0.2s var(--ease) both;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.58);
  font-weight: 300;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s var(--ease) both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.28);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 16px; height: 16px; }

/* ── ANNOUNCE BAR ─────────────────────────────────────────── */
.announce {
  background: var(--mid);
  padding: 1rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.announce-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.announce-item strong { color: var(--gold-lt); }
.announce-sep { color: rgba(255,255,255,0.2); font-size: 1.2rem; }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.stats-inner {
  max-width: 1140px;
  margin-inline: auto;
  padding: 2rem clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 1rem;
  border-right: 1px solid rgba(0,0,0,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about {
  background: var(--white);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 3rem);
}
.about-inner {
  max-width: 1140px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text .lead { margin-bottom: 1rem; }
.about-text .body-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Replace placeholder image with a visual feature grid */
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.feat-card {
  background: var(--sand);
  border-radius: var(--r);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.09);
}
.feat-card:first-child {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--dark);
}
.feat-card:first-child .feat-icon { font-size: 2.5rem; flex-shrink: 0; }
.feat-card:first-child .feat-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 0.25rem; }
.feat-card:first-child .feat-desc  { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

.feat-icon { font-size: 1.8rem; margin-bottom: 0.65rem; display: block; }
.feat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.feat-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ── HOURS ────────────────────────────────────────────────── */
.hours {
  background: var(--sand-dk);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 3rem);
}
.hours-inner { max-width: 1140px; margin-inline: auto; }
.hours-header { margin-bottom: 3rem; }

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

.hours-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hours-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.09);
}

.hours-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--dark);
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.hours-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.65rem;
}
.hours-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.hours-card .hl {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
}
.hours-card .hl a { text-decoration: none; color: inherit; }
.hours-card .hl a:hover { text-decoration: underline; }

/* ── MENU ────────────────────────────────────────────────── */
.menu-section {
  background: var(--white);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 3rem);
}
.menu-inner { max-width: 900px; margin-inline: auto; }

.menu-header { margin-bottom: 2.5rem; }

/* Filter tabs */
.menu-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.filter-btn {
  padding: 0.5rem 1.15rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--sand-dk);
  background: transparent;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  transition: all 0.22s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

/* Classic restaurant menu layout */
.menu-category { margin-top: 3rem; }
.menu-category:first-child { margin-top: 0; }

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 0.25rem;
}

.menu-list { list-style: none; }

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.5rem 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.menu-item:last-child { border-bottom: none; }

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 600;
}
.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item-price small {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
}
.menu-item-desc {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: -0.3rem;
}
.menu-item-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sand-dk);
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Filter animation */
.menu-category {
  transition: opacity 0.3s, transform 0.3s;
}
.menu-category.hidden {
  display: none;
}

/* ── CTA STRIP ────────────────────────────────────────────── */
.cta-strip {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184,146,74,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-strip-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
}
.cta-strip h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-strip p  { color: rgba(255,255,255,0.55); font-size: 1.05rem; font-weight: 300; margin-bottom: 2.5rem; }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold-lt);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.cta-phone:hover { color: var(--gold-xlt); }
.cta-phone svg { width: 1.25em; height: 1.25em; opacity: 0.7; }

.cta-chips {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  transition: background 0.2s;
}
.chip:hover { background: rgba(255,255,255,0.1); }

/* ── LOCATION ─────────────────────────────────────────────── */
.location {
  background: var(--sand);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 3rem);
}
.location-inner {
  max-width: 1140px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.location-info { display: flex; flex-direction: column; gap: 2rem; }
.location-info h2 { margin-bottom: 0.5rem; }
.location-info .lead { margin-bottom: 1.5rem; }

.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--dark);
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.info-body h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.info-body p { font-size: 0.95rem; color: var(--text); line-height: 1.55; }
.info-body a { color: var(--accent); font-weight: 500; text-decoration: none; }
.info-body a:hover { text-decoration: underline; }

.nearby-box {
  background: var(--white);
  border-radius: var(--r);
  padding: 1.4rem;
  border: 1px solid rgba(0,0,0,0.06);
}
.nearby-box h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.nearby-list { display: flex; flex-direction: column; gap: 0.5rem; }
.nearby-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text);
}
.nearby-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 10px 48px rgba(0,0,0,0.14);
  position: sticky;
  top: 90px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── EVENEMANG ───────────────────────────────────────────── */
.evenemang {
  background: var(--sand-dk);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 3rem);
}
.evenemang-inner--full {
  max-width: 1140px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ev-block {
  background: var(--white);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ev-block--dark {
  background: var(--dark);
  border-color: transparent;
}

.ev-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ev-block-icon { font-size: 2.2rem; flex-shrink: 0; }
.ev-block-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.ev-block--dark .ev-block-title { color: var(--white); }
.ev-block-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.ev-block--dark .ev-block-sub { color: var(--gold-lt); }

.ev-block-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.ev-block--dark .ev-block-desc { color: rgba(255,255,255,0.55); }

.ev-details { display: flex; flex-direction: column; gap: 0.75rem; }
.ev-detail-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text);
}
.ev-block--dark .ev-detail-row { color: rgba(255,255,255,0.8); }
.ev-detail-icon { font-size: 1.1rem; flex-shrink: 0; width: 1.5rem; text-align: center; }

.ev-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ev-date {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: 0.02em;
}

.ev-lineup { background: var(--white); }

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.lineup-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: var(--sand);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0,0,0,0.05);
}
.lineup-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.lineup-artist {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

@media (max-width: 900px) {
  .evenemang-inner--full { grid-template-columns: 1fr; }
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .lineup-grid { grid-template-columns: 1fr 1fr; }
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #160b04;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 5vw, 3rem);
}
.footer-inner {
  max-width: 1140px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo img {
  height: 42px;
  width: auto;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-lt); }
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.25); }

/* ── INLINE STYLE REPLACEMENTS ──────────────────────────── */
.ev-full-width        { grid-column: 1 / -1; }
.ev-h2                { margin-bottom: 2.5rem; }
.hours-sub            { margin-top: 0.75rem; }
.ev-book-row          { margin-top: 1.25rem; }
.tel-highlight        { color: var(--gold-lt); text-decoration: none; }
.footer-copy a        { color: inherit; }
.burger-note          { font-size: 0.82rem; color: var(--muted); margin: 0.5rem 0 0.25rem; font-style: italic; }
.accent-em            { font-style: italic; color: var(--accent); }
.ev-block--full       { grid-column: 1 / -1; }

/* ── LANG SWITCH ─────────────────────────────────────────── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.lang-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  padding: 0.2rem 0.1rem;
  transition: color 0.2s;
}
.lang-btn:hover,
.lang-btn.active { color: var(--gold-lt); }

/* ── REVIEW BADGE ────────────────────────────────────────── */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--sand-dk);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: background 0.2s, color 0.2s;
}
.review-badge:hover { background: var(--sand); color: var(--accent); }
.review-stars { color: #f4a623; font-size: 0.9rem; letter-spacing: 0.05em; }

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gold-lt);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 300;
  pointer-events: none;
}
.back-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.back-top:hover { background: var(--mid); }
.back-top svg { width: 18px; height: 18px; }

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
  background: rgba(220,148,96,0.08);
}
.footer-social svg { width: 17px; height: 17px; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.28; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 0.55; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .stats-inner     { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about-inner     { grid-template-columns: 1fr; }
  .about-visual    { order: -1; }
  .hours-grid      { grid-template-columns: 1fr; }
  .location-inner  { grid-template-columns: 1fr; }
  .map-wrap        { position: static; aspect-ratio: 4/3; }
}

@media (max-width: 700px) {
  .nav-links  { display: none; }
  .nav-burger { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { border-right: 1px solid rgba(0,0,0,0.07); border-bottom: 1px solid rgba(0,0,0,0.07); padding: 1.25rem 0.5rem; }
  .stat-item:nth-child(2n) { border-right: none; }
  .feat-card:first-child { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .announce { gap: 0.5rem; }
  .announce-sep { display: none; }
  .cta-phone { font-size: 1.8rem; }
}
