/* La Luna Festival — original design for Casa Luna AB */
:root {
  --night: #0a0d1a;
  --deep: #10142a;
  --card: #151a33;
  --line: rgba(232, 226, 209, 0.12);
  --moon: #f2ead2;
  --gold: #d9a441;
  --ember: #e0484f;
  --text: #e8e4d8;
  --muted: #a9a698;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--night);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Space Grotesk", sans-serif; line-height: 1.15; letter-spacing: -0.01em; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* Announcement bar */
.bar {
  background: var(--ember);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  letter-spacing: 0.04em;
}
.bar a { color: #fff; text-decoration: underline; }

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 13, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--moon);
  letter-spacing: 0.06em;
}
.brand .luna { color: var(--gold); }
.brand:hover { text-decoration: none; }
.nav-links { display: flex; gap: 1.4rem; align-items: center; list-style: none; }
.nav-links a { color: var(--text); font-size: 0.95rem; }
.nav-links a:hover { color: var(--gold); text-decoration: none; }
.btn {
  display: inline-block;
  background: var(--gold);
  color: #14100a;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(217, 164, 65, 0.35); }
.btn.ghost { background: transparent; color: var(--moon); border: 1px solid var(--line); }
.btn.ember { background: var(--ember); color: #fff; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--text); border-radius: 8px; padding: 0.4rem 0.7rem; font-size: 1.1rem; cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 1.25rem 5rem;
  background:
    radial-gradient(circle 340px at 50% -80px, rgba(242, 234, 210, 0.22), transparent 70%),
    radial-gradient(circle 900px at 80% 120%, rgba(224, 72, 79, 0.12), transparent 60%),
    linear-gradient(180deg, var(--deep), var(--night));
}
.hero .moon-disc {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #fdf6e0, #d9cfae 60%, #b3a986);
  box-shadow: 0 0 120px 40px rgba(242, 234, 210, 0.18);
  opacity: 0.9;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  color: var(--moon);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}
.hero h1 .accent { color: var(--gold); }
.hero .sub {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--muted);
  position: relative;
}
.hero .meta {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
}
.hero .cta-row { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* Countdown */
.countdown { display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem; position: relative; }
.countdown .unit {
  background: rgba(21, 26, 51, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  min-width: 86px;
}
.countdown .num { font-family: "Space Grotesk", sans-serif; font-size: 2rem; font-weight: 700; color: var(--moon); }
.countdown .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }

/* Sections */
section.block { padding: 4.5rem 0; }
section.block.alt { background: var(--deep); }
.kicker { color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; font-weight: 700; }
.block h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--moon); margin: 0.5rem 0 1rem; }
.lead { color: var(--muted); max-width: 640px; }

/* Cards grid */
.grid { display: grid; gap: 1.25rem; margin-top: 2.25rem; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.card h3 { color: var(--moon); font-size: 1.15rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .emoji { font-size: 1.6rem; margin-bottom: 0.6rem; }

/* Passes */
.pass { display: flex; flex-direction: column; }
.pass .tier { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ember); font-weight: 700; }
.pass h3 { font-size: 1.4rem; margin: 0.4rem 0; }
.pass .price { font-family: "Space Grotesk", sans-serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
.pass .price small { font-size: 0.85rem; color: var(--muted); font-weight: 400; }
.pass ul { list-style: none; margin: 1rem 0 1.5rem; flex: 1; }
.pass ul li { padding: 0.3rem 0 0.3rem 1.4rem; position: relative; color: var(--text); font-size: 0.95rem; }
.pass ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; }
.pass.featured { border-color: var(--gold); box-shadow: 0 0 40px rgba(217, 164, 65, 0.12); }

/* Lineup */
.lineup-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; margin-top: 2rem; }
.artist {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  text-align: center;
}
.artist .name { font-family: "Space Grotesk", sans-serif; font-weight: 600; color: var(--moon); font-size: 1rem; }
.artist .role { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }
.artist.dj { border-color: rgba(224, 72, 79, 0.4); }

/* Partners */
.partners { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.partners span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Prose pages */
.prose { max-width: 760px; margin: 0 auto; padding: 3.5rem 1.25rem; }
.prose h1 { color: var(--moon); font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 1rem; }
.prose h2 { color: var(--moon); font-size: 1.4rem; margin: 2.2rem 0 0.7rem; }
.prose p, .prose li { color: var(--text); }
.prose ul, .prose ol { padding-left: 1.4rem; margin: 0.6rem 0 1rem; }
.prose .note {
  background: var(--card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--muted);
}

/* FAQ */
details.faq {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  padding: 1rem 1.25rem;
}
details.faq summary { cursor: pointer; font-weight: 600; color: var(--moon); font-family: "Space Grotesk", sans-serif; }
details.faq p { margin-top: 0.6rem; color: var(--muted); }

/* Footer */
footer.site {
  border-top: 1px solid var(--line);
  padding: 3rem 1.25rem 2rem;
  background: var(--deep);
}
.foot-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.foot-grid h4 { color: var(--moon); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 0.45rem; }
.foot-grid a { color: var(--muted); font-size: 0.92rem; }
.foot-grid a:hover { color: var(--gold); }
.foot-note { max-width: 1100px; margin: 2.5rem auto 0; color: var(--muted); font-size: 0.82rem; border-top: 1px solid var(--line); padding-top: 1.2rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 860px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .lineup-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--deep);
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}
@media (max-width: 520px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .countdown { flex-wrap: wrap; }
}
