
:root {
  --bg: #0f1115;
  --bg-soft: #171a20;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #f4f4f4;
  --text-soft: rgba(244, 244, 244, 0.78);
  --text-muted: rgba(244, 244, 244, 0.62);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f1440f;
  --accent-dark: #c53308;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(241, 68, 15, 0.22), transparent 25%), linear-gradient(180deg, #111317 0%, #0d0f13 45%, #12151a 100%);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
figure { margin: 0; }
figcaption { padding: 1.2rem 1.2rem 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
[hidden] { display: none !important; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(15, 17, 21, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 41;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-nav,
.header-actions { display: flex; align-items: center; gap: 1rem; }

.site-nav a,
.footer-links a,
.text-link {
  color: var(--text-soft);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover { color: var(--white); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 41;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-compact { padding: 0.8rem 1.2rem; }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 12px 30px rgba(241, 68, 15, 0.28); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary, .btn-outline { border-color: var(--line); color: var(--white); background: rgba(255, 255, 255, 0.03); }
.btn-full { width: 100%; }

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 10, 12, 0.88), rgba(9, 10, 12, 0.62)), linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 45%);
  pointer-events: none;
}

.hero-grid,
.section-grid,
.event-grid,
.contact-grid,
.immersion-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
}

h1, h2, h3 { margin: 0 0 1rem; line-height: 1.08; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }

.lead,
.hero-copy p,
.card p,
.section p,
.legal-card p,
figcaption p { color: var(--text-soft); }

.hero-actions,
.map-actions,
.cookie-actions,
.hero-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-highlights li,
.event-point,
.feature-item,
.legal-card,
.card,
.visual-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-highlights li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--text);
}

.card,
.legal-card,
.feature-item,
.event-point,
.visual-card { border-radius: var(--radius-md); }
.card, .legal-card { padding: 1.5rem; }
.hero-copy { padding-top: 2rem; }
.hero-media { position: relative; }

.hero-media img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-info {
    position: absolute;
    right: -1rem;
    bottom: -2rem;
    width: min(360px, calc(100% - 2rem));
    background: linear-gradient(315deg, rgb(0 0 0 / 10%), rgb(0 0 0));
}

.info-block + .info-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.info-label,
.small-note { font-size: 0.92rem; color: var(--text-muted); }
.section { padding: 5.5rem 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); }
.section-dark { background: linear-gradient(180deg, rgba(241, 68, 15, 0.1), rgba(255, 255, 255, 0.02)); }

.visual-grid,
.photo-strip,
.two-cards {
  display: grid;
  gap: 1.5rem;
}

.visual-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.photo-strip-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 2rem; }
.photo-strip-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 2rem; }
.single-photo-block { margin-top: 1.5rem; }
.visual-card { overflow: hidden; padding: 0 0 1.2rem; }
.compact-card { padding-bottom: 0; }
.visual-card img, .wide-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.wide-photo-card img { aspect-ratio: 16 / 7; }
.feature-panel, .event-points, .contact-list { display: grid; gap: 1rem; }
.feature-item, .event-point { padding: 1.25rem; }
.two-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.soft-card { min-height: 100%; }
.accent-card { background: linear-gradient(180deg, rgba(241,68,15,0.16), rgba(255,255,255,0.04)); }
.visit-card { display: grid; gap: 1rem; }
.contact-list a, .contact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.site-footer { padding: 2rem 0 3rem; border-top: 1px solid var(--line); }
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1.1rem; }

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 80;
}

.cookie-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.2rem;
  background: rgba(12, 14, 18, 0.98);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.cookie-content p { margin: 0 0 0.9rem; }
.legal-body { min-height: 100vh; }
.legal-wrap { max-width: 900px; }
.legal-wrap h1 { max-width: none; font-size: clamp(2.1rem, 5vw, 4rem); }
.legal-card + .legal-card { margin-top: 1rem; }

@media (max-width: 1080px) {
  .hero-grid,
  .section-grid,
  .event-grid,
  .contact-grid,
  .immersion-block,
  .two-cards,
  .visual-grid,
  .photo-strip-3,
  .photo-strip-4 { grid-template-columns: 1fr; }

  .hero { padding-top: 4.5rem; }
  .hero-copy { padding-top: 0; }
  h1 { max-width: none; }
  .hero-info { position: static; width: 100%; margin-top: 1rem; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 920px) {
  .nav-wrap { min-height: 72px; padding: 0.8rem 0; flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 0;
    border-top: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .header-actions {
    display: none;
    width: 100%;
    order: 5;
    padding-top: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }
  .header-actions.is-open { display: flex; }
}

@media (max-width: 720px) {
  .brand span { font-size: 0.95rem; }
  .hero-highlights { flex-direction: column; align-items: stretch; }
  .hero-highlights li,
  .contact-list a,
  .contact-list span,
  .btn { width: 100%; }
  .hero-media img { min-height: 420px; }
  .cookie-banner { inset: auto 0.75rem 0.75rem 0.75rem; }
  .cookie-actions { flex-direction: column; }
}
