
:root {
  --cream: #f2e9d8;
  --cream-light: #fffaf0;
  --tan: #e8dcc4;
  --maroon: #7a1f2b;
  --maroon-hover: #a3382f;
  --rust: #c96a2e;
  --dark: #1a1210;
  --gold: #f6c453;
  --ink: #241a15;

  --text-muted-1: #5a473c;
  --text-muted-2: #3a2c24;
  --text-muted-3: #756252;
  --text-muted-4: #4a382f;
  --offwhite: #f0e6d2;
  --rust-deep: #8f3d1c;

  --divider: #d9c9a3;
  --divider-2: #c9b8a3;
  --tag-bg: #f6e2b8;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Instrument Sans', 'Helvetica Neue', sans-serif;

  --page-max: 1160px;
  --content-max: 1060px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ---------- Accessibility utilities ---------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  background: var(--dark);
  color: var(--cream-light);
  padding: 12px 20px;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--dark);
  outline-offset: 2px;
  border-radius: 2px;
}

.btn-cta:focus-visible,
.btn-block:focus-visible,
.filter-chip.active:focus-visible,
.btn-outline:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a {
  color: var(--maroon);
}
a:hover {
  color: var(--maroon-hover);
}

img { max-width: 100%; }

/* ---------- Announcement bar ---------- */

.announce {
  background: var(--dark);
  color: var(--offwhite);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 12px;
}

/* ---------- Header ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: var(--cream);
  border-bottom: 3px solid var(--maroon);
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 54px;
  width: auto;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--ink);
}

.brand-wordmark span {
  display: block;
  font-size: 12px;
  color: var(--maroon);
  letter-spacing: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 2px;
  border-bottom: 3px solid transparent;
  color: var(--text-muted-4);
  text-decoration: none;
}

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

.nav-links a.active {
  border-bottom-color: var(--maroon);
  color: var(--ink);
}

.btn-cta {
  background: var(--maroon);
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  background: var(--maroon-hover);
  color: var(--cream);
}

/* ---------- Nav toggle (hamburger, shown below 768px) ---------- */

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:hover .nav-toggle-bar {
  background: var(--maroon);
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--maroon);
  outline-offset: 2px;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--dark);
  color: var(--divider-2);
  padding: 40px;
  text-align: center;
  font-size: 13px;
}

.site-footer img {
  height: 70px;
  width: auto;
  margin-bottom: 14px;
}

.site-footer a {
  color: var(--gold);
}

.site-footer-credit {
  margin-top: 6px;
}

/* ---------- Page header (Schedule / Sponsors / Register / Contact) ---------- */

.page-header {
  background: linear-gradient(150deg, var(--rust-deep), var(--maroon) 70%);
  padding: 64px 0;
  color: var(--cream);
}

.page-header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px;
}

.page-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 58px;
  letter-spacing: -0.5px;
  line-height: 0.95;
  margin: 0;
}

.page-header .subhead {
  font-size: 20px;
  margin-top: 12px;
  color: var(--offwhite);
  max-width: 680px;
  line-height: 1.5;
}

.page-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-gold-lg {
  margin-top: 22px;
  padding: 16px 30px;
  font-size: 14px;
}

.btn-gold-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 14px 24px;
  border-radius: 3px;
  align-self: flex-start;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--cream);
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-block {
  background: var(--maroon);
  color: var(--cream);
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
  font-family: var(--font-body);
}

.text-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--maroon);
  border-bottom: 2px solid var(--maroon);
  text-decoration: none;
  padding-bottom: 2px;
  display: inline-block;
}

/* ---------- HOME: hero ---------- */

.hero {
  position: relative;
  padding: 0 40px;
  background: linear-gradient(160deg, var(--rust-deep) 0%, var(--maroon) 45%, var(--dark) 100%);
  overflow: hidden;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero-sunburst {
  position: absolute;
  left: 38%;
  top: 50%;
  width: 1400px;
  height: 1400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(246, 196, 83, 0.09) 0deg 3deg, transparent 3deg 22.5deg);
}

.hero-glow {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, #f6c45322, transparent 70%);
}

.hero-content {
  position: relative;
  color: var(--cream);
  padding: 100px 0 100px 20px;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 100px;
  line-height: 0.86;
  letter-spacing: -1px;
  margin: 0;
}

.hero-rule {
  width: 70px;
  height: 5px;
  background: var(--gold);
  margin: 26px 0;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  color: var(--offwhite);
  max-width: 460px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--cream);
}

.hero-stats > div {
  padding: 0 32px;
  border-right: 1px solid #f6c45355;
}

.hero-stats > div:first-child {
  padding-left: 0;
}

.hero-stats > div:last-child {
  border-right: none;
}

.hero-stat-num {
  font-size: 34px;
}

.hero-stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--gold);
}

.hero-logo-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-logo-wrap img {
  height: 520px;
  width: auto;
  transform: rotate(-4deg);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));
}

/* ---------- HOME: ticket details bar ---------- */

.details-wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 40px;
  transform: translateY(-46px);
}

.details-card {
  background: var(--cream-light);
  border: 1px solid var(--dark);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  box-shadow: 0 20px 50px rgba(26, 18, 16, 0.35);
}

.details-card > div {
  padding: 32px 30px;
  border-right: 1px dashed var(--divider-2);
}

.details-card > div:last-child {
  border-right: none;
}

.details-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--maroon);
  margin-bottom: 10px;
}

.details-value {
  font-size: 21px;
  font-weight: 600;
}

.details-note {
  font-size: 13px;
  color: var(--text-muted-1);
  margin-top: 6px;
}

/* ---------- HOME: divisions section ---------- */

.section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 60px 40px 30px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  letter-spacing: 0.5px;
  margin: 0;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-muted-1);
  margin-top: 8px;
  max-width: 540px;
  line-height: 1.5;
  text-wrap: balance;
}

.section-break {
  display: none;
}

@media (min-width: 500px) {
  .section-break {
    display: inline;
  }
}

.divisions-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--dark);
  border-radius: 4px;
  overflow: hidden;
}

.division-row {
  background: var(--cream-light);
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 24px;
  align-items: center;
  padding: 22px 26px;
}

.division-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--maroon);
  letter-spacing: 0.5px;
}

.division-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted-2);
  line-height: 1.5;
}

.division-equiv {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted-1);
  text-align: right;
}

/* ---------- HOME: gallery + facebook block ---------- */

.gallery-section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 50px 40px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.placeholder-photo {
  border-radius: 4px;
  background: repeating-linear-gradient(45deg, var(--divider) 0 10px, var(--tan) 10px 20px);
  border: 1px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--text-muted-1);
  text-align: center;
  padding: 8px;
}

.photo {
  border-radius: 4px;
  border: 1px solid var(--dark);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.facebook-block {
  background: var(--dark);
  border-radius: 4px;
  padding: 32px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facebook-block h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--cream);
  margin: 0;
}

.facebook-block p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--divider);
  margin-top: 12px;
  line-height: 1.6;
}

.facebook-block a {
  display: inline-block;
  margin-top: 18px;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 12px 22px;
  border-radius: 2px;
  align-self: flex-start;
}

/* ---------- HOME: sponsor strip ---------- */

.sponsor-strip {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 20px 40px 90px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.sponsor-strip-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--maroon);
  white-space: nowrap;
  text-decoration: none;
}

.sponsor-strip-line {
  flex: 1;
  height: 1px;
  background: var(--divider);
  min-width: 24px;
}

.sponsor-logo-placeholder {
  width: 150px;
  aspect-ratio: 1 / 1;
  background: var(--tan);
  border: 1px solid var(--divider);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted-1);
  text-align: center;
}

.sponsor-logo-placeholder.has-logo {
  background: none;
  border: none;
}

.sponsor-logo-placeholder a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.sponsor-logo-placeholder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* ---------- SCHEDULE ---------- */

.status-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  padding: 10px 18px;
  border-radius: 999px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7ee38a;
}

.status-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
}

.schedule-body {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 44px 40px 80px;
}

.filter-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-chip {
  background: var(--tan);
  color: var(--text-muted-4);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.filter-chip.active {
  background: var(--maroon);
  color: var(--cream);
}

.day-block {
  margin-bottom: 42px;
}

.day-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 3px solid var(--dark);
  padding-bottom: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.day-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--maroon);
  margin: 0;
}

.day-note {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted-1);
}

.game-row {
  display: grid;
  grid-template-columns: 96px 1fr 130px 100px 110px;
  align-items: center;
  gap: 14px;
  background: var(--cream-light);
  border: 1px solid var(--divider);
  border-radius: 4px;
  padding: 13px 18px;
  margin-bottom: 8px;
}

.game-time {
  font-weight: 700;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
}

.game-teams {
  font-weight: 600;
}

.game-division {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 700;
  background: var(--tag-bg);
  padding: 4px 10px;
  border-radius: 3px;
  justify-self: start;
}

.game-rink {
  font-size: 13px;
  color: var(--text-muted-1);
}

.game-stage {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted-3);
  text-align: right;
}

/* ---------- SPONSORS ---------- */

.tier-featured {
  background: var(--dark);
  color: var(--cream);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tier-featured-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.tier-featured-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  margin-top: 10px;
}

.tier-featured-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 20px;
}

.tier-featured-price .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  color: var(--gold);
}

.tier-featured-price .per {
  font-size: 13px;
  color: var(--divider);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tier-featured-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--divider);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 430px;
}

.tier-featured-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px dashed #4a3a34;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

.tier-featured .btn-gold-display {
  margin-top: 20px;
}

/* ---------- SPONSORS: why band ---------- */

.why-wrap {
  max-width: var(--content-max);
  margin: 52px auto 44px;
  padding: 0 40px;
}

.why-band {
  border-top: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 52px;
}

.why-col {
  position: relative;
  padding: 26px 0;
}

.why-col:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -26px;
  border-left: 1px dashed var(--divider-2);
}

.why-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  color: var(--rust);
}

.why-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-top: 10px;
}

.why-copy {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted-1);
  line-height: 1.5;
  margin-top: 6px;
  text-wrap: pretty;
}

/* ---------- SPONSORS: in-kind panel ---------- */

.inkind-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px 44px;
}

.inkind-panel {
  padding: 34px 36px;
  background: var(--maroon);
  color: var(--cream);
  border-radius: 4px;
}

.inkind-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: var(--gold);
  margin: 0;
}

.inkind-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--cream);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 720px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.chip {
  background: var(--cream-light);
  color: var(--maroon);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 9px 13px;
  white-space: nowrap;
}

.inkind-panel .btn-gold-display {
  margin-top: 24px;
}

/* ---------- SPONSORS: featured row ---------- */

.featured-row {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.mock-panel {
  background: var(--tan);
  border: 1px solid var(--dark);
  border-radius: 4px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.mock-panel .panel-tan-title {
  color: var(--maroon);
}

.door-sign {
  background: var(--cream-light);
  border: 1px solid var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
  border-radius: 3px;
  padding: 22px 20px;
  text-align: center;
}

.door-sign-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted-1);
}

.door-sign-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--dark);
  margin-top: 2px;
  margin-bottom: 16px;
}

.door-sign-sponsored {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--maroon);
  border-top: 1px solid var(--divider);
  padding-top: 16px;
}

.door-sign-logo {
  margin-top: 10px;
  border: 1px dashed #7a1f2b80;
  border-radius: 3px;
  padding: 14px 10px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--text-muted-1);
}

.mock-panel-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted-1);
  line-height: 1.5;
  text-align: left;
  margin-top: 0;
}

/* ---------- SPONSORS: how it works ---------- */

.how-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 44px 40px 0;
}

.how-band {
  padding: 28px 32px;
  background: var(--dark);
  color: var(--cream);
  border-radius: 4px;
}

.how-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--gold);
  padding-bottom: 18px;
  margin: 0 0 22px;
  border-bottom: 1px dashed #4a3a34;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.how-step {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.how-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  color: var(--rust);
}

.how-step-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--divider);
  line-height: 1.5;
  margin: 0;
}

/* ---------- SPONSORS: maroon note box (reuses panel-tan-title / panel-note) ---------- */

.panel-maroon {
  background: var(--maroon);
  color: var(--cream);
  border-radius: 4px;
  padding: 26px;
}

.panel-maroon .panel-tan-title {
  color: var(--gold);
}

.panel-maroon .panel-note {
  color: var(--cream);
}

/* ---------- Two-column body layouts (Sponsors / Register / Contact) ---------- */

.two-col {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 44px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 36px;
  align-items: start;
}

.two-col.wide-left {
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: start;
  padding-top: 56px;
}

.two-col.even {
  grid-template-columns: 1fr 1fr;
  padding-top: 56px;
}

.panel {
  background: var(--cream-light);
  border: 1px solid var(--dark);
  border-radius: 4px;
  padding: 34px;
}

.panel-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--dark);
  margin: 0;
}

.panel-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted-1);
  margin-top: 8px;
  margin-bottom: 24px;
}

.panel-dark {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

.panel-dark .panel-title {
  color: var(--cream);
}

.panel-dark .panel-desc {
  font-size: 17px;
  color: var(--divider);
  margin-bottom: 0;
}

.panel .panel-tan-title {
  color: var(--maroon);
}

.panel-note {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted-2);
  line-height: 1.7;
  margin: 0;
}

.contact-list.compact {
  margin-top: 16px;
}

.contact-list.compact .contact-row {
  border-bottom: none;
  padding-bottom: 0;
}

/* ---------- Forms ---------- */

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-fields[hidden] {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.field label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--maroon);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--dark);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted-1);
  opacity: 1;
}

.form-result {
  border: 1px solid var(--dark);
  border-radius: 4px;
  padding: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted-2);
  background: var(--cream-light);
  margin: 0;
}

.form-success {
  border-color: var(--maroon);
}

.form-error {
  border-color: var(--rust);
}

.form-success:focus,
.form-error:focus {
  outline: 3px solid var(--maroon);
  outline-offset: 2px;
}

/* ---------- Side panels (contacts / notes) ---------- */

.side-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel-tan {
  background: var(--tan);
  border-radius: 4px;
  padding: 26px;
}

.panel-tan-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--dark);
  margin: 0 0 14px;
}

.panel-outline {
  background: var(--cream-light);
  border: 1px dashed #7a1f2b66;
  border-radius: 4px;
  padding: 26px;
}

.panel-outline-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--maroon);
  margin: 0 0 10px;
}

.panel-outline p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted-2);
  line-height: 1.7;
  margin: 0;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px dashed var(--divider-2);
  padding-bottom: 10px;
}

.contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-row .name {
  font-weight: 600;
}

.contact-row a {
  font-weight: 600;
  text-decoration: none;
}

.placeholder-photo.map-photo {
  height: 240px;
  background: none;
  padding: 0;
  overflow: hidden;
}

.placeholder-photo.map-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---------- REGISTER ---------- */

.register-steps {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--dark);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 24px;
}

.register-step {
  background: var(--cream-light);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.register-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--rust);
  line-height: 1;
}

.register-step-title {
  font-weight: 600;
  font-size: 16px;
}

.register-step-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted-1);
  margin-top: 4px;
  line-height: 1.5;
}

.reg-note {
  font-size: 12px;
  color: var(--divider-2);
  margin-top: 12px;
}

.divisions-open {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.division-open-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  border-bottom: 1px dashed var(--divider-2);
  padding-bottom: 8px;
}

.division-open-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.division-open-row .name {
  font-weight: 600;
}

.division-open-row .equiv {
  color: var(--text-muted-1);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- CONTACT ---------- */

.organizer-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px dashed var(--divider-2);
  padding-bottom: 12px;
}

.organizer-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.organizer-row .name {
  font-weight: 600;
  font-size: 17px;
}

.organizer-row .role {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted-1);
}

.organizer-row a {
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.contact-note {
  font-size: 14px;
  color: var(--text-muted-1);
  line-height: 1.5;
  margin-top: 16px;
}

.btn-dark {
  display: inline-block;
  margin-top: 18px;
  background: var(--dark);
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 12px 22px;
  border-radius: 2px;
}

.rink-name {
  font-size: 17px;
  font-weight: 600;
}

.rink-address {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-muted-2);
  margin-top: 6px;
  line-height: 1.6;
}

.rink-map-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
  /* Hero: stop the fixed-height logo from distorting, ease the title
     size, and give the text column more room before the 900px collapse. */
  .hero {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .hero-title {
    font-size: 78px;
  }

  .hero-logo-wrap img {
    height: auto;
    max-height: 360px;
  }

  /* Schedule rows: shrink the fixed columns so team names have more
     room between 901px and the 1060px content cap. */
  .game-row {
    grid-template-columns: 80px 1fr 110px 90px 95px;
  }

  /* Sponsor card: tighter padding so the display type has more room
     to breathe below 1200px. */
  .tier-featured {
    padding: 24px;
  }

  .details-card > div {
    padding: 22px 20px;
  }

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

  .sponsor-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 16px 24px;
    max-width: 700px;
    margin: 0 auto;
  }

  .sponsor-strip .sponsor-strip-label,
  .sponsor-strip .text-link {
    grid-column: 1 / -1;
  }

  .sponsor-strip-line {
    display: none;
  }

  .sponsor-logo-placeholder {
    width: 100%;
    max-width: 150px;
  }
}

@media (max-width: 1060px) {
  .chip-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .chip {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .site-header,
  .page-header-inner,
  .section,
  .details-wrap,
  .gallery-section,
  .sponsor-strip,
  .schedule-body,
  .why-wrap,
  .inkind-wrap,
  .featured-row,
  .how-wrap,
  .two-col {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 0 24px;
    min-height: 0;
  }

  .hero-content {
    padding: 0 0 80px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-logo-wrap {
    order: -1;
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .hero-logo-wrap img {
    height: 220px;
    transform: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-outline {
    text-align: center;
  }

  .details-card,
  .division-row,
  .gallery-section,
  .two-col,
  .two-col.wide-left,
  .two-col.even,
  .form-row,
  .why-band,
  .featured-row,
  .how-steps {
    grid-template-columns: 1fr;
  }

  .why-col:not(:last-child)::after {
    display: none;
  }

  .why-col:not(:last-child) {
    border-bottom: 1px dashed var(--divider-2);
  }

  .how-steps {
    row-gap: 24px;
  }

  .details-card > div,
  .division-row {
    border-right: none;
    border-bottom: 1px dashed var(--divider-2);
  }

  .details-card > div:last-child,
  .division-row:last-child {
    border-bottom: none;
  }

  .division-row {
    text-align: left;
  }

  .division-equiv {
    text-align: left;
  }

  .game-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "time division"
      "teams teams"
      "rink stage";
  }

  .game-time { grid-area: time; }
  .game-teams { grid-area: teams; }
  .game-division { grid-area: division; justify-self: end; }
  .game-rink { grid-area: rink; }
  .game-stage { grid-area: stage; text-align: right; }

  .section-title {
    font-size: 34px;
  }

  .page-header h1 {
    font-size: 42px;
  }

  .sponsor-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 16px 20px;
    max-width: 360px;
    margin: 0 auto;
  }

  .sponsor-strip .sponsor-strip-label,
  .sponsor-strip .text-link {
    grid-column: 1 / -1;
  }

  .sponsor-strip-line {
    display: none;
  }

  .sponsor-logo-placeholder {
    width: 100%;
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-basis: 100%;
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--divider);
  }

  .site-nav.is-open .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav.is-open .nav-links a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--divider);
  }

  .site-nav.is-open .btn-cta {
    margin-top: 12px;
    text-align: center;
  }
}

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

@media (max-width: 560px) {
  .hero-title {
    font-size: 46px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-stats > div {
    border-right: none;
    padding: 0 !important;
  }

  .site-header {
    padding: 14px 20px;
  }

  .site-nav {
    gap: 14px;
  }

  .nav-links {
    gap: 14px;
  }

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

/* ---------- Touch targets (44px minimum on touch screens) ---------- */

@media (pointer: coarse) {
  .nav-links a,
  .btn-cta,
  .btn-block,
  .filter-chip {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 44px;
  }
}
