:root {
  --bg: #130f0b;
  --surface: #201713;
  --surface-strong: #342119;
  --text: #fff8ea;
  --muted: #e3caa3;
  --brand: #f4b63b;
  --accent: #ef4b2e;
  --green: #38b66b;
  --line: rgba(255, 248, 234, 0.17);
  --shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.38);
  --font-display: "Anton", Impact, sans-serif;
  --font-condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", Verdana, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.035) 1px, transparent 1px) 0 0 / 4rem 4rem,
    linear-gradient(180deg, rgba(244, 182, 59, 0.11), transparent 22rem),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(239, 75, 46, 0.2), transparent 18rem),
    radial-gradient(circle at 92% 8%, rgba(244, 182, 59, 0.18), transparent 20rem);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.7rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(19, 15, 11, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  flex: 0 0 auto;
  border: 2px solid var(--brand);
  border-radius: 50%;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: clamp(3.8rem, 14vw, 5rem);
  height: auto;
  aspect-ratio: 1;
  flex: 0 0 auto;
  padding: 0.18rem;
  border-radius: 0.45rem;
  object-fit: contain;
  background: #fff;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.brand strong,
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong {
  font-size: clamp(1.05rem, 5vw, 1.55rem);
}

.brand small {
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: grid;
  gap: 0.25rem;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.45rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav {
  position: absolute;
  inset: 4.85rem 1rem auto;
  display: none;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 0.8rem;
}

.site-nav a {
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
}

.nav-cta,
.btn-primary {
  background: var(--brand);
  color: #1a1008;
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 248, 234, 0.04);
}

.hero,
.section,
.quick-info,
.faq {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  display: grid;
  gap: 2rem;
  min-height: calc(100dvh - 4.7rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brand);
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  max-width: 9.5ch;
  margin: 0;
  font-size: clamp(4rem, 17vw, 10.5rem);
}

h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.6rem);
}

h3 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-lead,
.intro p,
.promo p,
.visit p,
.faq p {
  max-width: 42rem;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-board {
  position: relative;
  min-height: 24rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(244, 182, 59, 0.12), transparent 45%),
    linear-gradient(160deg, var(--surface), var(--surface-strong));
  box-shadow: var(--shadow);
}

.hero-board::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(255, 248, 234, 0.24);
}

.hero-board strong,
.board-word {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 7.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-board strong {
  margin-top: 1.6rem;
  color: var(--brand);
}

.board-word {
  color: var(--accent);
  transform: rotate(-4deg);
}

.board-kicker {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-family: var(--font-condensed);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-board p {
  position: relative;
  z-index: 1;
  max-width: 24rem;
  margin-top: 2rem;
}

.quick-info {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0;
  border-block: 1px solid var(--line);
}

.quick-info p {
  margin: 0;
  color: var(--text);
  font-family: var(--font-condensed);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  color: var(--brand);
  font-size: 0.9rem;
}

.section,
.faq {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.intro {
  display: grid;
  gap: 1rem;
}

.promo {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid rgba(255, 248, 234, 0.22);
  background: var(--accent);
}

.promo .eyebrow,
.promo p {
  color: #fff0d6;
}

.programming,
.visit {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.event-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
  background: rgba(255, 248, 234, 0.06);
}

.event-card time {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 0.9;
}

.event-card p,
.event-card h3 {
  margin: 0;
}

.visit {
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--line);
  background: var(--surface);
}

.faq {
  display: grid;
  gap: 0.85rem;
}

.faq h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
}

details {
  border: 1px solid var(--line);
  background: rgba(255, 248, 234, 0.05);
}

summary {
  cursor: pointer;
  padding: 1rem;
  color: var(--text);
  font-family: var(--font-condensed);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer nav {
  display: grid;
  gap: 0.45rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.footer-brand > span {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.footer-logo {
  display: block;
  width: 4.25rem;
  height: auto;
  aspect-ratio: 1;
  flex: 0 0 auto;
  padding: 0.18rem;
  border-radius: 0.45rem;
  object-fit: contain;
  background: #fff;
}

.site-footer strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer a {
  width: fit-content;
}

.whatsapp-fab,
.back-to-top {
  position: fixed;
  right: 1rem;
  z-index: 25;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow);
  line-height: 1;
}

.whatsapp-fab {
  bottom: 1rem;
  width: 3.6rem;
  height: 3.6rem;
  background: var(--green);
  color: #fff8ea;
}

.whatsapp-fab svg {
  width: 1.95rem;
  height: 1.95rem;
  display: block;
  fill: currentColor;
}

.back-to-top {
  bottom: 5.05rem;
  width: 3rem;
  height: 3rem;
  background: var(--brand);
  color: #1a1008;
  font-size: 1.5rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top span {
  display: block;
  transform: translateY(-0.06em);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner button {
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: var(--brand);
  color: #1a1008;
  font-weight: 800;
}

@media (min-width: 780px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero,
  .programming,
  .visit {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .quick-info {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro {
    grid-template-columns: 0.8fr 1fr;
  }

  .promo {
    grid-template-columns: 1fr 0.75fr;
    align-items: end;
  }

  .site-footer {
    grid-template-columns: 1fr auto auto;
    align-items: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
