:root {
  --background: hsl(0 0% 5%);
  --foreground: hsl(40 20% 90%);
  --card: hsl(0 0% 8%);
  --secondary: hsl(0 0% 9%);
  --muted: hsl(40 10% 55%);
  --primary: hsl(38 70% 50%);
  --primary-foreground: hsl(0 0% 5%);
  --border: hsl(40 15% 18%);
  --display: 'Playfair Display', Georgia, serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3 { font-family: var(--display); font-weight: 500; }
a { color: inherit; text-decoration: none; }

/* Layout */
.section { padding: 8rem 1.5rem; }
.bg-secondary { background: hsl(0 0% 7%); }
.container { max-width: 1100px; margin: 0 auto; }
.container.narrow { max-width: 800px; }
.center { text-align: center; }
.mb-lg { margin-bottom: 4rem; }
.mt-lg { margin-top: 4rem; }
.mt-md { margin-top: 1.5rem; }
.mt-sm { margin-top: 1rem; }

/* Typography */
.eyebrow {
  color: hsl(38 70% 50% / 0.8);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.title-gold {
  font-size: clamp(2rem, 5vw, 3.25rem);
  background: linear-gradient(135deg, hsl(38 60% 45%), hsl(42 80% 65%), hsl(38 60% 45%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}
.hero h1.title-gold { font-size: clamp(3rem, 9vw, 6rem); line-height: 1.05; }
.lead { color: hsl(40 20% 90% / 0.6); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2.5rem; }
.muted { color: hsl(40 20% 90% / 0.4); margin-bottom: 1rem; }
.muted-lg { color: hsl(40 20% 90% / 0.5); font-size: 1.125rem; margin-bottom: 1rem; }
.muted-sm { color: hsl(40 20% 90% / 0.5); font-size: 0.875rem; }
.muted-xs { color: hsl(40 20% 90% / 0.3); font-size: 0.75rem; }

.divider { width: 4rem; height: 1px; background: hsl(38 70% 50% / 0.4); margin: 0 auto 3rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, hsl(38 30% 12%) 0%, hsl(0 0% 4%) 70%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, hsl(0 0% 0% / 0.3), hsl(0 0% 0% / 0.7));
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 1.5rem; max-width: 48rem; }
.mail-note { margin-top: 1.5rem; color: hsl(40 20% 90% / 0.4); font-size: 0.875rem; letter-spacing: 0.05em; }
.mail-note a { color: hsl(38 70% 50% / 0.85); border-bottom: 1px solid hsl(38 70% 50% / 0.4); padding-bottom: 2px; }
.mail-note a:hover { color: var(--primary); }

/* Buttons */
.btn-outline, .btn-solid {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  cursor: pointer;
}
.btn-outline { border: 1px solid hsl(38 70% 50% / 0.4); color: var(--primary); }
.btn-outline:hover { background: hsl(38 70% 50% / 0.1); }
.btn-solid { background: var(--primary); color: var(--primary-foreground); }
.btn-solid:hover { background: hsl(38 70% 45%); }

/* Grids */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 4rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Cards */
.card {
  border: 1px solid hsl(40 15% 18% / 0.6);
  background: hsl(0 0% 8% / 0.5);
  padding: 2rem;
}
.card-title { color: var(--primary); font-size: 1.25rem; margin-bottom: 0.75rem; }
.card-eyebrow {
  color: hsl(40 20% 90% / 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.card-value { color: var(--primary); font-family: var(--display); font-size: 1.75rem; margin-bottom: 0.25rem; }

/* Events */
.event-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid hsl(40 15% 18% / 0.5);
  transition: all 0.4s ease;
}
.event-row:hover .event-name { color: var(--primary); }
.event-date { color: hsl(38 70% 50% / 0.6); font-size: 0.875rem; letter-spacing: 0.1em; }
.event-name { font-family: var(--display); font-size: 1.75rem; transition: color 0.4s; }
.event-desc { color: hsl(40 20% 90% / 0.4); font-size: 0.875rem; }
@media (min-width: 768px) {
  .event-row { flex-direction: row; align-items: center; gap: 3rem; }
  .event-date { width: 6rem; flex-shrink: 0; }
  .event-desc { margin-left: auto; text-align: right; max-width: 18rem; }
}

/* Rules list */
.rules-list { list-style: none; counter-reset: rule; }
.rules-list li {
  position: relative;
  padding: 1.25rem 0 1.25rem 3rem;
  border-bottom: 1px solid hsl(40 15% 18% / 0.4);
  color: hsl(40 20% 90% / 0.55);
  font-size: 0.9rem;
}
.rules-list li::before {
  counter-increment: rule;
  content: counter(rule) ".";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 2rem;
  text-align: right;
  color: hsl(38 70% 50% / 0.5);
  font-family: var(--display);
  font-size: 0.875rem;
}

/* Price rows */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid hsl(40 15% 18% / 0.3);
  color: hsl(40 20% 90% / 0.55);
  font-size: 0.9rem;
}
.price-row:last-of-type { border-bottom: none; }
.price { color: var(--primary); font-weight: 500; }

.dot-list { list-style: none; max-width: 32rem; margin: 0 auto; }
.dot-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.25rem;
  color: hsl(40 20% 90% / 0.55);
  font-size: 0.9rem;
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1rem;
  width: 4px; height: 4px;
  background: hsl(38 70% 50% / 0.7);
  border-radius: 50%;
}

/* Footer */
.footer { padding: 4rem 1.5rem; border-top: 1px solid hsl(40 15% 18% / 0.4); }
.footer-row {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; text-align: center;
}
.footer-brand { font-size: 1.25rem; margin: 0; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: hsl(40 20% 90% / 0.3); font-size: 0.75rem; letter-spacing: 0.1em; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
@media (min-width: 768px) {
  .footer-row { flex-direction: row; justify-content: space-between; text-align: left; }
}
.event-date-block { display: flex; flex-direction: column; gap: 4px; width: 6rem; flex-shrink: 0; }
.event-badge { color: hsl(43 74% 60%); font-size: 0.7rem; letter-spacing: 0.2em; font-weight: 600; }
.event-time { color: rgba(245,240,230,0.4); font-size: 0.7rem; font-weight: 300; }
