@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600&display=swap");

:root {
  --field: #12271f;
  --field-2: #17332a;
  --turf: #1f4a38;
  --chalk: #f3efe4;
  --chalk-dim: #cfcabb;
  --brass: #c9a227;
  --brass-bright: #e0bd3f;
  --ink: #0b1310;
  --line: rgba(243, 239, 228, 0.14);
  --whistle: #b23a2e;
  --radius: 3px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--field);
  color: var(--chalk);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Oswald", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--chalk);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--chalk-dim); max-width: 62ch; }

a { color: var(--brass-bright); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--chalk);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.4em;
}
.brand span { color: var(--brass-bright); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--chalk-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--brass-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn-primary { background: var(--brass); color: var(--ink); }
.btn-primary:hover { background: var(--brass-bright); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn-ghost {
  background: transparent;
  color: var(--chalk);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-bright); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  padding: 96px 0 72px;
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0 64px,
      rgba(243, 239, 228, 0.035) 64px 66px
    ),
    linear-gradient(180deg, var(--field-2), var(--field) 70%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero .kicker {
  font-family: "Oswald", sans-serif;
  color: var(--brass-bright);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}
.hero p.lede { font-size: 1.15rem; max-width: 56ch; }

.city-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  max-width: 720px;
}
@media (max-width: 640px) { .city-picker { grid-template-columns: 1fr; } }

.city-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(11, 19, 16, 0.4);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.city-card:hover { border-color: var(--brass); transform: translateY(-2px); }
.city-card .city-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--chalk);
  text-transform: uppercase;
}
.city-card .city-dates { color: var(--brass-bright); font-size: 0.95rem; margin-top: 4px; }
.city-card .city-venue { color: var(--chalk-dim); font-size: 0.9rem; margin-top: 8px; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
section + section { border-top: 1px solid var(--line); }

/* ---------- Location hero ---------- */
.loc-hero {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, var(--field-2), var(--field) 80%);
  border-bottom: 1px solid var(--line);
}
.loc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--chalk-dim);
}
.loc-meta strong { color: var(--chalk); font-weight: 600; }

/* ---------- Tier / scoreboard cards ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
@media (max-width: 800px) { .tier-grid { grid-template-columns: 1fr; } }

.tier-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(11, 19, 16, 0.35);
}
.tier-card.featured { border-color: var(--brass); background: rgba(201, 162, 39, 0.07); }
.tier-card .tier-name {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.tier-card .tier-price {
  font-family: "Oswald", sans-serif;
  font-size: 2.1rem;
  color: var(--brass-bright);
  margin: 8px 0;
}
.tier-card .tier-price small { font-size: 0.95rem; color: var(--chalk-dim); font-family: "Inter", sans-serif; }
.tier-card p { font-size: 0.92rem; margin-bottom: 0; }
.addon-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--chalk-dim);
}
.addon-note strong { color: var(--brass-bright); }

/* ---------- Registration form ---------- */
.reg-panel {
  background: var(--field-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 32px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

label { display: block; font-size: 0.85rem; color: var(--chalk-dim); margin-bottom: 6px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select {
  width: 100%;
  padding: 11px 12px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--chalk);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}
input:focus, select:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
  border-color: var(--brass);
}

.tier-select { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.tier-option {
  flex: 1 1 160px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
}
.tier-option input { width: auto; margin-right: 8px; }
.tier-option.selected { border-color: var(--brass); background: rgba(201, 162, 39, 0.08); }

.attendee-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
}
.attendee-block .attendee-title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: var(--brass-bright);
  margin-bottom: 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
}
.checkbox-row { display: flex; align-items: center; gap: 10px; margin: 10px 0 0; }
.checkbox-row input { width: auto; }
.checkbox-row label { margin: 0; color: var(--chalk); font-size: 0.9rem; }

.order-summary {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.order-summary .total { font-family: "Oswald", sans-serif; font-size: 1.6rem; color: var(--brass-bright); }

.form-error {
  color: var(--whistle);
  background: rgba(178, 58, 46, 0.12);
  border: 1px solid rgba(178, 58, 46, 0.4);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.9rem;
  margin-top: 16px;
  display: none;
}
.form-error.show { display: block; }

.disclaimer {
  font-size: 0.82rem;
  color: var(--chalk-dim);
  margin-top: 20px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: var(--ink);
}
.site-footer p { font-size: 0.85rem; color: var(--chalk-dim); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0 0 16px; }
.footer-links a { color: var(--chalk-dim); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: var(--brass-bright); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
