* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --fire: #e85d04;
  --ember: #f48c06;
  --gold: #faa307;
  --dark: #0a0a0a;
  --char: #141414;
  --ash: #2d2d2d;
  --smoke: #6b6b6b;
  --light: #f5f0e8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--light);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.ember-container {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.ember {
  position: absolute; bottom: -10px; border-radius: 50%;
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.9; }
  50%  { transform: translateY(-50vh) translateX(var(--drift)) scale(0.7); opacity: 0.5; }
  100% { transform: translateY(-105vh) translateX(calc(var(--drift)*1.8)) scale(0.1); opacity: 0; }
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.8rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  transition: all 0.4s;
}
nav.scrolled {
  padding: 1rem 3rem;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,93,4,0.15);
}
.nav-left { display: flex; align-items: center; gap: 1.4rem; }
.nav-logo-link { display: flex; align-items: center; line-height: 0; transition: opacity 0.2s; }
.nav-logo-link:hover { opacity: 0.85; }
.nav-logo-link img { height: 38px; width: auto; display: block; }
.nav-hours { font-size: 0.7rem; letter-spacing: 0.06em; color: rgba(245,240,232,0.55); white-space: pre-line; text-align: left; line-height: 1.5; }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: rgba(245,240,232,0.75); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* π — diskret admin-länk */
.nav-pi {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; line-height: 1;
  color: rgba(245,240,232,0.1); text-decoration: none;
  transition: color 0.5s;
}
.nav-pi:hover { color: rgba(245,240,232,0.45); }

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

.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,8,8,0.97);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--light); text-decoration: none;
  letter-spacing: 0.05em; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

.hero {
  position: relative; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://i.sfcdn.se/Resurs/Image/420690/Medium/638762535270000000/MDIyNnwwMDAyMDEzOTE2M3w5Ng...jpg');
  background-size: cover; background-position: center 30%;
  filter: brightness(0.3) saturate(0.7);
  transform: scale(1.06); transition: transform 10s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 35%, rgba(10,10,10,0.75) 75%, rgba(10,10,10,1) 100%);
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(232,93,4,0.18) 0%, transparent 65%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; }
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 1.8rem;
  opacity: 0; transform: translateY(20px); animation: fadeUp 1s 0.4s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 11vw, 10rem); font-weight: 900;
  line-height: 0.88; text-transform: uppercase; letter-spacing: -0.02em;
  opacity: 0; transform: translateY(30px); animation: fadeUp 1s 0.7s forwards;
}
.fire-word {
  display: block;
  background: linear-gradient(135deg, #ff4800, var(--gold), var(--ember));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  margin-top: 2.2rem; font-size: 1.05rem; font-weight: 300;
  letter-spacing: 0.1em; color: rgba(245,240,232,0.6);
  opacity: 0; transform: translateY(20px); animation: fadeUp 1s 1s forwards;
}
.hero-cta {
  margin-top: 3rem; display: flex; gap: 1.2rem; justify-content: center;
  opacity: 0; transform: translateY(20px); animation: fadeUp 1s 1.3s forwards;
}
.btn {
  padding: 0.95rem 2.6rem; font-size: 0.76rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500; text-decoration: none;
  transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.btn-fire { background: var(--fire); color: #fff; }
.btn-fire:hover { background: var(--ember); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(232,93,4,0.45); }
.btn-ghost { background: transparent; color: var(--light); border: 1px solid rgba(245,240,232,0.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  opacity: 0; animation: fadeIn 1s 2s forwards;
}
.scroll-hint span { font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(245,240,232,0.3); }
.scroll-line { width: 1px; height: 55px; background: linear-gradient(to bottom, var(--fire), transparent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

.band { background: var(--fire); padding: 1rem 0; overflow: hidden; z-index: 1; position: relative; }
.band-track { display: flex; width: max-content; animation: ticker 22s linear infinite; }
.band-track span { font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; font-weight: 600; padding: 0 2.5rem; color: rgba(255,255,255,0.92); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

section { position: relative; z-index: 1; }
.reveal { opacity: 0; transform: translateY(45px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }

.about { padding: 10rem 0; background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
.label { font-size: 0.68rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--fire); margin-bottom: 1.4rem; }
.h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 700; line-height: 1.1; margin-bottom: 2rem; }
.body-text { font-size: 1rem; line-height: 1.95; color: rgba(245,240,232,0.65); margin-bottom: 1.4rem; }
.stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(245,240,232,0.08); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.stat-lbl { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--smoke); }
.img-frame { position: relative; }
.img-frame img { width: 100%; height: 580px; object-fit: cover; display: block; filter: brightness(0.85); }
.img-frame::after { content: ''; position: absolute; top: 18px; right: -18px; bottom: -18px; left: 18px; border: 1px solid rgba(232,93,4,0.35); z-index: -1; }

.gallery { padding: 0 0 9rem; background: var(--dark); }
.gallery-head { text-align: center; padding: 0 3rem 4rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 290px 290px; gap: 5px; }
.gi { overflow: hidden; }
.gi img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72) saturate(0.85); transition: transform 0.7s ease, filter 0.7s ease; }
.gi:hover img { transform: scale(1.07); filter: brightness(0.9) saturate(1.1); }
.gi:nth-child(1) { grid-column: span 5; }
.gi:nth-child(2) { grid-column: span 4; }
.gi:nth-child(3) { grid-column: span 3; }
.gi:nth-child(4) { grid-column: span 3; }
.gi:nth-child(5) { grid-column: span 5; }
.gi:nth-child(6) { grid-column: span 4; }
.gallery-feature { display: flex; justify-content: center; align-items: flex-start; gap: 5px; margin-top: 5px; background: #080808; }
.gallery-feature img { display: block; max-height: 80vh; width: auto; max-width: 100%; filter: brightness(0.88); transition: filter 0.5s ease; }
.gallery-feature img:hover { filter: brightness(1); }

.historia { padding: 9rem 0; background: var(--char); }
.historia-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; margin-bottom: 5rem; }
.historia-text .label { margin-bottom: 1rem; }
.historia-text .h2 { margin-bottom: 2rem; }
.historia-body { font-size: 0.95rem; line-height: 1.95; color: rgba(245,240,232,0.6); margin-bottom: 1.2rem; }
.historia-quote { margin: 2.5rem 0; padding: 1.6rem 2rem; border-left: 2px solid var(--fire); background: rgba(232,93,4,0.05); }
.historia-quote p { font-family: 'Playfair Display', serif; font-size: 1.05rem; line-height: 1.7; color: rgba(245,240,232,0.8); font-style: italic; }
.historia-quote cite { display: block; margin-top: 0.8rem; font-size: 0.68rem; letter-spacing: 0.1em; color: var(--smoke); font-style: normal; }
.historia-timeline { display: flex; flex-direction: column; gap: 0; padding-top: 0.5rem; }
.tl-item { display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem; padding: 1.6rem 0; border-bottom: 1px solid rgba(245,240,232,0.06); }
.tl-item:last-child { border-bottom: none; }
.tl-year { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); line-height: 1.1; padding-top: 0.2rem; }
.tl-desc { font-size: 0.88rem; line-height: 1.75; color: rgba(245,240,232,0.55); }
.tl-title { font-size: 0.82rem; font-weight: 500; color: rgba(245,240,232,0.85); margin-bottom: 0.25rem; }
.historia-foton { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.hfoto { position: relative; overflow: hidden; background: #080808; }
.hfoto img { width: 100%; height: 380px; object-fit: cover; display: block; filter: sepia(0.5) brightness(0.7) contrast(1.15); transition: transform 0.8s ease, filter 0.8s ease; }
.hfoto:hover img { transform: scale(1.04); filter: sepia(0.2) brightness(0.88) contrast(1.05); }
.hfoto-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 55%, transparent 100%); padding: 2.5rem 1.5rem 1.4rem; }
.hfoto-year { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; margin-bottom: 0.25rem; }
.hfoto-desc { font-size: 0.76rem; letter-spacing: 0.07em; color: rgba(245,240,232,0.75); display: block; margin-bottom: 0.4rem; }
.hfoto-credit { font-size: 0.62rem; color: rgba(245,240,232,0.3); letter-spacing: 0.05em; }
.historia-attr { margin-top: 2rem; text-align: center; font-size: 0.68rem; color: rgba(245,240,232,0.22); letter-spacing: 0.05em; line-height: 1.9; }
.historia-attr a { color: rgba(245,240,232,0.32); text-decoration: none; border-bottom: 1px solid rgba(245,240,232,0.12); }
.historia-attr a:hover { color: var(--gold); border-color: var(--gold); }

.features { padding: 9rem 0; background: var(--dark); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 5rem; }
.feat-card { text-align: center; padding: 3.5rem 2rem; border: 1px solid rgba(245,240,232,0.07); position: relative; overflow: hidden; transition: border-color 0.4s, transform 0.4s; }
.feat-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--fire), transparent); transform: scaleX(0); transition: transform 0.4s; }
.feat-card:hover::after { transform: scaleX(1); }
.feat-card:hover { border-color: rgba(232,93,4,0.25); transform: translateY(-6px); }
.feat-icon { font-size: 2.2rem; display: block; margin-bottom: 1.5rem; }
.feat-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 1rem; }
.feat-desc { font-size: 0.88rem; line-height: 1.85; color: var(--smoke); }

.location { padding: 9rem 0; background: var(--char); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
.loc-img { position: relative; overflow: hidden; }
.loc-img img { width: 100%; height: 520px; object-fit: cover; filter: brightness(0.65) saturate(0.85); display: block; }
.loc-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(232,93,4,0.15), transparent 60%); }
.addr-box { margin-top: 2.5rem; padding: 1.8rem; border-left: 2px solid var(--fire); background: rgba(232,93,4,0.05); }
.addr-title { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 0.6rem; }
.addr-box p { font-size: 0.9rem; line-height: 1.9; color: rgba(245,240,232,0.65); }
.maps-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.8rem; font-size: 0.78rem; letter-spacing: 0.08em; color: var(--fire); text-decoration: none; border-bottom: 1px solid rgba(232,93,4,0.3); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.maps-link:hover { color: var(--gold); border-color: var(--gold); }
.maps-link svg { flex-shrink: 0; }
.hours-box { margin-top: 1.5rem; padding: 1.8rem; border-left: 2px solid var(--ember); background: rgba(232,93,4,0.03); }
.hours-box .addr-title { color: var(--ember); }
.hours-content { white-space: pre-line; font-size: 0.9rem; line-height: 1.7; color: rgba(245,240,232,0.85); }
.status-closed { color: #ef4444; font-weight: 700; letter-spacing: 0.08em; }
.transport { margin-top: 2rem; list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.transport li { display: flex; align-items: center; gap: 1rem; font-size: 0.88rem; color: rgba(245,240,232,0.55); }
.transport li::before { content: '→'; color: var(--fire); font-size: 0.8rem; }

footer { background: #040404; padding: 4.5rem 3rem; border-top: 1px solid rgba(232,93,4,0.18); text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.footer-tagline { font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--smoke); margin-bottom: 2rem; }
.footer-div { width: 50px; height: 1px; background: var(--fire); margin: 0 auto 2rem; }
.footer-addr { font-size: 0.82rem; color: rgba(245,240,232,0.3); line-height: 2.1; }

@media (max-width: 768px) {
  .wrap { padding: 0 1.2rem; }
  nav { padding: 1.2rem 1.2rem; }
  nav.scrolled { padding: 0.9rem 1.2rem; }
  .nav-links { display: none; }
  .nav-left { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .nav-hours { font-size: 0.6rem; line-height: 1.35; }
  .nav-burger { display: flex; z-index: 101; position: relative; }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.25em; margin-bottom: 1.2rem; }
  .hero-sub { font-size: 0.9rem; margin-top: 1.4rem; }
  .hero-cta { flex-direction: column; align-items: center; gap: 0.8rem; margin-top: 2rem; }
  .btn { padding: 0.9rem 2rem; width: 100%; max-width: 220px; text-align: center; }
  .scroll-hint { display: none; }
  .about { padding: 5rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .img-frame img { height: 280px; }
  .img-frame::after { display: none; }
  .stats { gap: 1.5rem; }
  .stat-num { font-size: 2rem; }
  .gallery { padding: 0 0 5rem; }
  .gallery-head { padding: 0 1.2rem 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; gap: 4px; }
  .gi:nth-child(1),.gi:nth-child(2),.gi:nth-child(3),.gi:nth-child(4),.gi:nth-child(5),.gi:nth-child(6) { grid-column: span 1; }
  .gallery-feature img { max-height: 60vh; }
  .historia { padding: 5rem 0; }
  .historia-inner { grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
  .historia-foton { grid-template-columns: 1fr 1fr; }
  .hfoto img { height: 220px; }
  .hfoto-year { font-size: 1.4rem; }
  .tl-item { grid-template-columns: 60px 1fr; gap: 1rem; }
  .tl-year { font-size: 1.1rem; }
  .features { padding: 5rem 0; }
  .feat-grid { grid-template-columns: 1fr; gap: 1.2rem; margin-top: 3rem; }
  .feat-card { padding: 2.2rem 1.5rem; }
  .location { padding: 5rem 0; }
  .loc-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .loc-img img { height: 260px; }
  .addr-box { margin-top: 0; }
  footer { padding: 3rem 1.2rem; }
  .h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
}
