:root {
  --bg: #121411;
  --bg-soft: #1b2118;
  --card: #f3efe4;
  --card-soft: #fff9ea;
  --text: #f6f0df;
  --muted: #d7ccb0;
  --ink: #1c1b16;
  --green: #78a850;
  --green-dark: #4f7437;
  --gold: #d7a84f;
  --rust: #bd6b44;
  --border: rgba(246, 240, 223, 0.18);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(120,168,80,.22), transparent 30%),
    radial-gradient(circle at 90% 5%, rgba(215,168,79,.18), transparent 28%),
    linear-gradient(135deg, #11140f 0%, #202716 55%, #11140f 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(18,20,17,.82);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
}
.nav-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,.08);
}
.register-small {
  background: var(--gold) !important;
  color: #24180b !important;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,20,17,.48), rgba(18,20,17,.18), rgba(18,20,17,.50)),
    url("assets/hero.jpg") 60% center/cover;
  filter: saturate(1.08) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% -10%;
  height: 35%;
  background: linear-gradient(0deg, var(--bg), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 44px));
  padding: 70px 0;
}
.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(18,20,17,.55);
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
h1 {
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: .88;
  margin: 22px 0 16px;
  letter-spacing: -.06em;
}
.tagline {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--card-soft);
  max-width: 780px;
  font-weight: 800;
}
.hero-copy { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 900;
}
.button.primary { background: var(--gold); color: #24180b; border-color: transparent; }
.button.secondary { background: rgba(255,255,255,.08); color: var(--text); }

main { max-width: var(--max); margin: 0 auto; padding: 64px 22px; }
.section { margin: 0 0 72px; }
.section-header { max-width: 780px; margin-bottom: 26px; }
.eyebrow { color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; }
h2 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1; margin: 8px 0 12px; letter-spacing: -.04em; }
h3 { font-size: 1.45rem; line-height: 1.2; margin: 0 0 10px; }
p { margin: 0 0 16px; }

.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.card {
  grid-column: span 6;
  background: var(--card);
  color: var(--ink);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.card.dark {
  background: rgba(255,255,255,.08);
  color: var(--text);
  border: 1px solid var(--border);
}
.card.full { grid-column: 1 / -1; }
.stat-card {
  grid-column: span 4;
  background: linear-gradient(135deg, var(--green-dark), #26351e);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.stat { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1; font-weight: 950; letter-spacing: -.06em; color: var(--gold); }
.stat-label { color: var(--muted); font-weight: 800; margin-top: 8px; }

.image-card { padding: 0; overflow: hidden; }
.image-card img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.caption { padding: 14px 18px; font-size: .92rem; color: var(--muted); background: rgba(0,0,0,.2); }

.callout {
  border-left: 6px solid var(--gold);
  padding: 20px 24px;
  background: rgba(255,255,255,.08);
  border-radius: 0 22px 22px 0;
  color: var(--text);
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 22px 30px;
}
.page-hero h1 { font-size: clamp(3rem, 8vw, 6rem); }

.rule-list, .schedule-list { display: grid; gap: 14px; }
.rule-item, .schedule-item {
  background: var(--card);
  color: var(--ink);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.rule-item ul, .rule-item ol { margin-bottom: 0; }
.schedule-item { display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: start; }
.time { font-weight: 950; color: var(--green-dark); }
.date-band {
  margin: 34px 0 14px;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.map-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 900;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 34px 22px;
  color: var(--muted);
  text-align: center;
}
.footer a { color: var(--text); font-weight: 800; }

@media (max-width: 760px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { width: 100%; }
  .card, .stat-card { grid-column: 1 / -1; }
  .schedule-item { grid-template-columns: 1fr; }
  .hero { min-height: 72vh; }
}
