:root {
  font-family: 'Avenir Next', 'Segoe UI', sans-serif;
  color: #14281d;
  background:
    radial-gradient(circle at top left, rgba(255, 178, 122, 0.35), transparent 30%),
    radial-gradient(circle at top right, rgba(28, 102, 76, 0.18), transparent 26%),
    linear-gradient(180deg, #f8f2e8 0%, #f4ede1 50%, #efe5d7 100%);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

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

.page-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
  min-height: 100vh;
}

.hero-card,
.schedule-card,
.club-card,
.hero-panel,
.insight-band {
  border: 1px solid rgba(20, 40, 29, 0.08);
  box-shadow: 0 20px 60px rgba(20, 40, 29, 0.08);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  gap: 24px;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 252, 247, 0.82);
  backdrop-filter: blur(8px);
}

.hero-copy h1,
.section-heading h2,
.insight-band h2,
.club-card h3,
.schedule-card h3 {
  font-family: 'Iowan Old Style', 'Palatino Linotype', serif;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin: 8px 0 18px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.94;
  max-width: 11ch;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8d4d2f;
}

.hero-text {
  max-width: 60ch;
  margin: 0;
  font-size: 1.02rem;
  color: rgba(20, 40, 29, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: #1c664c;
  color: #f8f2e8;
}

.button-secondary {
  background: rgba(28, 102, 76, 0.08);
  color: #1c664c;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(20, 40, 29, 0.95), rgba(28, 102, 76, 0.92)),
    linear-gradient(120deg, rgba(255, 178, 122, 0.15), transparent);
  color: #f8f2e8;
}

.panel-header,
.club-topline,
.pulse-row,
.mini-grid,
.schedule-grid,
.club-list,
.section-grid {
  display: grid;
}

.panel-header,
.club-topline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-meta,
.club-topline span:last-child {
  text-align: right;
  opacity: 0.72;
}

.pulse-row {
  grid-template-columns: 14px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(248, 242, 232, 0.12);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06);
}

.pulse-green {
  background: #76d19f;
}

.pulse-orange {
  background: #ffb27a;
}

.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-stat {
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.mini-stat strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.mini-stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.86rem;
  color: rgba(248, 242, 232, 0.78);
}

.section-grid {
  gap: 20px;
  margin-top: 34px;
}

.section-heading {
  display: grid;
  gap: 6px;
}

.section-heading h2,
.insight-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.section-heading.compact h2 {
  max-width: 14ch;
}

.schedule-grid,
.club-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.schedule-card,
.club-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.9);
}

.schedule-day {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 178, 122, 0.2);
  color: #8d4d2f;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.schedule-card h3,
.club-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.schedule-card p,
.club-card p,
.insight-band p {
  margin: 0;
  color: rgba(20, 40, 29, 0.78);
}

.clubs-section {
  align-items: start;
}

.insight-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 20px;
  margin-top: 34px;
  padding: 24px 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 178, 122, 0.24), rgba(255, 252, 247, 0.92));
}

@media (max-width: 960px) {
  .hero-card,
  .insight-band,
  .schedule-grid,
  .club-list {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100vw - 20px, 1180px);
    padding-top: 10px;
    padding-bottom: 24px;
  }

  .hero-card,
  .hero-panel,
  .schedule-card,
  .club-card,
  .insight-band {
    border-radius: 22px;
  }

  .hero-card {
    padding: 20px;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .panel-header,
  .club-topline {
    grid-template-columns: 1fr;
  }

  .panel-meta,
  .club-topline span:last-child {
    text-align: left;
  }
}