* {
  box-sizing: border-box;
}

:root {
  --ink: #0f172a;
  --muted: #475569;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --surface: #f8fafc;
  --surface-2: #eef2f7;
  --panel: #ffffff;
  --line: #e2e8f0;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 48px 6%;
  background: var(--surface);
}

.hero-content,
.hero-media {
  flex: 1 1 320px;
}

.hero-media {
  border-radius: 24px;
  overflow: hidden;
  background: #dbeafe;
  min-height: 320px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffedd5;
  color: var(--accent-dark);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 46px 6%;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
}

.split-media {
  border-radius: 18px;
  overflow: hidden;
  background: #e2e8f0;
  min-height: 260px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.section-title {
  margin-top: 0;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  margin-top: auto;
  padding: 32px 6%;
  background: var(--surface-2);
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.bg-venue {
  background: #e0f2fe;
  background-image: url("https://images.unsplash.com/photo-1476480862126-209bfaa8edc8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-track {
  background: #fef3c7;
  background-image: url("https://images.unsplash.com/photo-1461896836934-ffe607ba8211?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-court {
  background: #e2e8f0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.highlight {
  background: var(--surface-2);
  border-radius: 16px;
  padding: 18px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.two-col > div {
  flex: 1 1 260px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.legal-block {
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-short {
  padding: 32px 6%;
  background: var(--surface);
}
