:root {
  --bg: #0f1117;
  --text: #f8fafc;
  --muted: #a1a1aa;
  --emerald: #10b981;
  --wine: #9f1239;
  --gold: #facc15;
  --cream: #fff7ed;
  --border: rgba(255, 255, 255, 0.1);
  --card: rgba(255, 255, 255, 0.055);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(159, 18, 57, 0.22), transparent 34%),
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.12), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(15, 17, 23, 0.78);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 900;
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--gold);
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -4px;
  margin-bottom: 1.2rem;
}

.hero-copy p,
.section-header p,
.menu-grid p,
.highlights-grid p,
.booking-card p,
.site-footer p {
  color: var(--muted);
}

.hero-copy p {
  font-size: 1.12rem;
  max-width: 660px;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--wine), var(--gold));
}

.btn-secondary {
  color: var(--cream);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card,
.event-card,
.price-card,
.highlights-grid article,
.booking-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.hero-card {
  padding: 2rem;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card span,
.price-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.hero-card h2 {
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-card strong {
  color: var(--cream);
  font-size: 1.5rem;
}

.section {
  padding: 4rem 0;
}

.alt-section {
  background: rgba(255, 255, 255, 0.025);
  border-block: 1px solid var(--border);
}

.section-header {
  max-width: 720px;
  margin-bottom: 1.6rem;
}

.section-header h2,
.menu-grid h2,
.booking-card h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 0.8rem;
}

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

.event-card {
  padding: 1.5rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.event-card:hover,
.event-card.active {
  transform: translateY(-4px);
  border-color: rgba(250, 204, 21, 0.45);
  background: rgba(250, 204, 21, 0.08);
}

.event-day {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
}

.event-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.event-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.event-card strong {
  color: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin-top: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.feature-list li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
}

.price-card {
  padding: 2rem;
}

.price-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.price-card strong {
  display: block;
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}

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

.highlights-grid article {
  padding: 1.5rem;
}

.highlights-grid span {
  color: var(--gold);
  font-weight: 900;
}

.highlights-grid h3 {
  font-size: 1.35rem;
  margin: 0.55rem 0;
}

.booking-card {
  padding: 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

input,
select {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(15, 17, 23, 0.82);
  color: var(--text);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  outline: none;
}

input::placeholder {
  color: #71717a;
}

input:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
}

.form-message {
  min-height: 24px;
  color: var(--gold);
  font-weight: 800;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

@media (max-width: 960px) {
  .hero-grid,
  .menu-grid,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .event-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    font-size: 0.92rem;
  }

  .hero {
    padding: 3.5rem 0 2.5rem;
  }

  h1 {
    letter-spacing: -2px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card,
  .price-card,
  .booking-card {
    padding: 1.25rem;
  }
}