:root {
  --red: #da3934;
  --red-deep: #b8211c;
  --red-soft: #ffe4e3;
  --cream: #fff8f5;
  --paper: #ffffff;
  --ink: #1d2329;
  --muted: #5d6872;
  --line: rgba(29, 35, 41, 0.1);
  --shadow: 0 22px 60px rgba(133, 41, 38, 0.12);
  --green: #0f8f4f;
  --green-soft: #edf8f2;
  --gold: #c7a14b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(218, 57, 52, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 143, 79, 0.08), transparent 24%),
    linear-gradient(180deg, #fffdfc 0%, #fff7f5 100%);
  font-family: "Trebuchet MS", "Gill Sans", "Lucida Grande", sans-serif;
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: 100%;
  margin-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(133, 41, 38, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--red), #f26963);
  color: white;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav a {
  color: var(--muted);
  font-weight: 700;
}

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

.panel {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: center;
  padding: 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 0;
  background: var(--red);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.35rem, 4.4vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.lede {
  max-width: 60ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 0;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--red), #f2574f);
  color: white;
  box-shadow: 0 14px 28px rgba(218, 57, 52, 0.25);
}

.button-secondary {
  background: white;
  border-color: rgba(218, 57, 52, 0.2);
  color: var(--red);
}

.button-ghost {
  background: transparent;
  border-color: rgba(29, 35, 41, 0.12);
  color: var(--ink);
}

.hero-art {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.flag-card {
  width: min(100%, 280px);
  padding: 10px;
  border-radius: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(29, 35, 41, 0.09);
}

.flag-card img {
  width: 100%;
  border-radius: 0;
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "date copy"
    "button button";
  gap: 14px 18px;
  width: min(100%, 420px);
  padding: 18px;
  border: 1px solid rgba(29, 35, 41, 0.08);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(218, 57, 52, 0.96), rgba(182, 44, 40, 0.96));
  color: white;
  box-shadow: 0 20px 36px rgba(133, 41, 38, 0.16);
}

.event-card-date {
  grid-area: date;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.9;
}

.event-card-month {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.event-card-day {
  margin-top: 4px;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.event-card-copy {
  grid-area: copy;
  align-self: end;
}

.event-card-title {
  max-width: 14ch;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.15;
}

.event-card-meta {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.event-card-button {
  grid-area: button;
  width: 100%;
  background: white;
  color: var(--red-deep);
  border-color: white;
  box-shadow: none;
}

.event-card-button:hover {
  background: #fff7f7;
}

.section {
  padding: 32px 34px 36px;
  margin-top: 22px;
  scroll-margin-top: 104px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-copy,
.sponsor-intro p,
.faq p {
  color: var(--muted);
  line-height: 1.8;
}

.about-copy {
  max-width: 78ch;
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 0;
  background: linear-gradient(180deg, #fff, #fff9f7);
  border: 1px solid var(--line);
}

.info-card::after {
  content: "";
  position: absolute;
  inset: auto -28% -40% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 57, 52, 0.14), transparent 68%);
  pointer-events: none;
}

.card-kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 0;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red-soft);
  color: var(--red-deep);
}

.tier h3,
.sponsor h3 {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.plan-name {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.price {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.info-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

.info-card li + li {
  margin-top: 10px;
}

.bronze .card-kicker {
  background: #f8ebda;
  color: #8b5f1d;
}

.silver .card-kicker {
  background: #eceff3;
  color: #56626d;
}

.gold .card-kicker {
  background: #fff1cf;
  color: #99701a;
}

.platinum .card-kicker {
  background: #e7f2ff;
  color: #2d5f8f;
}

.sponsor-panel {
  background:
    linear-gradient(135deg, rgba(218, 57, 52, 0.05), rgba(255, 255, 255, 0.94)),
    rgba(255, 255, 255, 0.92);
}

.sponsor-intro {
  max-width: 78ch;
  margin-bottom: 18px;
}

.faq details {
  padding: 20px 22px;
  border-radius: 0;
  background: linear-gradient(180deg, #fff, #fffaf8);
  border: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink);
}

.faq p {
  margin-top: 14px;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .three-up,
  .four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .topbar {
    position: static;
    border-top: 0;
    border-bottom: 0;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .section {
    padding: 22px;
  }

  h1 {
    max-width: none;
  }

  .three-up,
  .four-up {
    grid-template-columns: 1fr;
  }
}
