:root {
  --bg-primary: #0f1419;
  --bg-secondary: #1a2332;
  --bg-card: #1e2a3a;
  --fg-primary: #e8e6e3;
  --fg-secondary: #9ca8b7;
  --fg-muted: #6b7a8d;
  --accent: #c9933a;
  --accent-glow: rgba(201, 147, 58, 0.15);
  --accent-light: #e0b361;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2rem;
  color: var(--fg-primary);
}

.hero h1 .highlight {
  color: var(--accent-light);
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.hero-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* === FORMAT === */
.format {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
}

.format-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.format h2,
.media h2,
.location h2,
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--fg-primary);
}

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

.format-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 147, 58, 0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.format-card:hover {
  border-color: rgba(201, 147, 58, 0.3);
}

.format-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 0.25rem;
}

.format-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.format-desc {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === MEDIA === */
.media {
  padding: 8rem 2rem;
}

.media-inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

.media-col {
  padding-top: 1rem;
}

.media-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.media-col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--fg-primary);
}

.media-col p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.media-col em {
  color: var(--accent-light);
  font-style: italic;
}

/* === LOCATION === */
.location {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
}

.location-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.location-text {
  font-size: 1.15rem;
  color: var(--fg-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.location-text strong {
  color: var(--fg-primary);
}

.location-text.secondary {
  color: var(--fg-muted);
  font-style: italic;
  font-size: 1.05rem;
}

/* === CLOSING === */
.closing {
  padding: 10rem 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-text {
  font-size: 1.15rem;
  color: var(--fg-secondary);
  margin-bottom: 2rem;
}

.closing-big {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 2.5rem;
  line-height: 1.4;
  font-style: italic;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* === FOOTER === */
.site-footer {
  padding: 4rem 2rem;
  border-top: 1px solid rgba(201, 147, 58, 0.1);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .format-grid,
  .media-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero {
    padding: 3rem 1.5rem;
    min-height: 90vh;
  }

  .format,
  .media,
  .location,
  .closing {
    padding: 5rem 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .format-number {
    font-size: 2.8rem;
  }

  .closing-big {
    font-size: 1.4rem;
  }
}