:root {
  --red: #AC2228;
  --charcoal: #333F48;
  --ink: #1f2933;
  --muted: #667085;
  --cream: #F8F5EF;
  --white: #ffffff;
  --line: rgba(51, 63, 72, 0.16);
  --shadow: 0 20px 60px rgba(31, 41, 51, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 40px)); }
.centered { text-align: center; }
.section-pad { padding: 92px 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; text-decoration: none; color: var(--charcoal); }
.brand img { width: 54px; height: 34px; object-fit: contain; }
.nav { display: flex; gap: 20px; align-items: center; font-size: 0.92rem; font-weight: 700; color: var(--charcoal); }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--red); }
.hero {
  min-height: 86vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #1e2a30 0%, #40505a 55%, #1e2a30 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(172,34,40,.24), transparent 24%),
    linear-gradient(rgba(20, 29, 33, .52), rgba(20, 29, 33, .84)),
    url("assets/fricke-field.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: .94;
}
.hero-content { position: relative; text-align: center; max-width: 920px; }
.hero-logo { width: min(260px, 70vw); margin-bottom: 18px; filter: drop-shadow(0 0 2px rgba(255,255,255,.98)) drop-shadow(0 0 6px rgba(255,255,255,.96)) drop-shadow(0 0 12px rgba(255,255,255,.88)) drop-shadow(0 10px 20px rgba(0,0,0,.18)); }
.eyebrow { margin: 0 0 14px; color: var(--red); letter-spacing: .15em; text-transform: uppercase; font-size: .76rem; font-weight: 800; }
.hero .eyebrow { color: #fff; opacity: .92; }
h1, h2, h3 { margin: 0; color: var(--charcoal); line-height: 1.04; }
h1 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(3.4rem, 8vw, 7.5rem); color: var(--white); letter-spacing: -0.04em; }
h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2.4rem, 5vw, 4.6rem); letter-spacing: -0.035em; }
h3 { font-size: 1.05rem; margin-bottom: 10px; }
.hero-subtitle { margin: 18px auto 24px; font-size: clamp(1.1rem, 2vw, 1.5rem); max-width: 680px; }
.hero-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 0 auto 34px; }
.hero-meta span { border: 1px solid rgba(255,255,255,.32); border-radius: 999px; padding: 8px 14px; background: rgba(255,255,255,.10); font-weight: 700; }
.countdown { display: grid; grid-template-columns: repeat(4, minmax(74px, 1fr)); gap: 10px; width: min(520px, 100%); margin: 0 auto 30px; }
.countdown-item { padding: 13px 10px; border: 1px solid rgba(255,255,255,.34); border-radius: 18px; background: rgba(255,255,255,.13); backdrop-filter: blur(8px); box-shadow: 0 14px 32px rgba(0,0,0,.14); }
.countdown-item strong { display: block; color: var(--white); font-size: clamp(1.55rem, 4vw, 2.35rem); line-height: 1; font-weight: 900; letter-spacing: -0.04em; }
.countdown-item span { display: block; margin-top: 6px; color: rgba(255,255,255,.86); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 14px 22px; border-radius: 999px; text-decoration: none; font-weight: 800; letter-spacing: .02em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); box-shadow: 0 14px 32px rgba(172, 34, 40, .28); }
.button-primary:hover { background: #921a20; }
.button-large { min-height: 58px; padding: 17px 30px; font-size: 1.05rem; }
.two-col { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.copy-block p { font-size: 1.13rem; margin-top: 0; color: #3e4a53; }
.why-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.why-photo-wrap { margin: 0; }
.why-photo { width: 100%; max-height: 620px; object-fit: cover; object-position: center top; border-radius: 28px; box-shadow: var(--shadow); border: 1px solid var(--line); display: block; }
.photo-caption { margin: 14px 0 0; color: var(--muted); font-size: .9rem; font-weight: 700; text-align: center; }
.section-muted { background: var(--cream); }
.section-heading { max-width: 760px; margin: 0 auto 38px; }
.section-heading p { color: var(--muted); }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.detail-card { background: var(--white); padding: 28px; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 10px 24px rgba(31, 41, 51, .05); }
.detail-card span { font-size: 2rem; display: block; margin-bottom: 14px; }
.detail-card p { margin: 0; color: var(--muted); font-weight: 600; }
.detail-card small { color: var(--muted); font-weight: 500; }
.callout { margin-top: 28px; padding: 22px 24px; border-left: 5px solid var(--red); background: var(--white); border-radius: 16px; box-shadow: 0 10px 24px rgba(31, 41, 51, .05); }
.register-section p { color: var(--muted); font-size: 1.08rem; }
.small-note { font-size: .9rem !important; margin-top: 16px; }
.sponsor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sponsor-grid div { min-height: 120px; display: grid; place-items: center; border-radius: 20px; background: var(--white); border: 1px dashed rgba(51,63,72,.28); color: var(--muted); font-weight: 800; }
.contact-card { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: 42px; border-radius: 28px; background: var(--charcoal); box-shadow: var(--shadow); }
.contact-card h2, .contact-card p, .contact-card a { color: var(--white); }
.contact-card .eyebrow { color: #ffccd0; }
.contact-info { font-size: 1.08rem; }
.site-footer { border-top: 1px solid var(--line); padding: 24px 0; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-inner a { font-weight: 800; text-decoration: none; color: var(--charcoal); }
@media (max-width: 850px) {
  .site-header { align-items: flex-start; padding: 12px 18px; }
  .brand span { display: none; }
  .nav { gap: 10px; font-size: .78rem; flex-wrap: wrap; justify-content: flex-end; }
  .section-pad { padding: 70px 0; }
  .two-col, .why-layout, .contact-card { grid-template-columns: 1fr; gap: 24px; }
  .detail-grid, .sponsor-grid { grid-template-columns: 1fr; }
  .hero { min-height: 82vh; }
  .hero-meta { flex-direction: column; align-items: center; }
  .countdown { grid-template-columns: repeat(2, minmax(110px, 1fr)); max-width: 310px; }
}
