@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --green:       #1a3a2a;
  --green-mid:   #2a5040;
  --amber:       #c8860a;
  --amber-hover: #a86e08;
  --cream:       #f7f2e8;
  --cream-dark:  #ede7d7;
  --stone:       #8a7f6e;
  --border:      #ddd6c8;
  --white:       #ffffff;
  --text:        #1c1917;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

/* ── Site header ─────────────────────────────────────── */

.site-header {
  background: var(--green);
  padding: 0 24px;
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-header__nav {
  display: flex;
  gap: 24px;
}

.site-header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s;
}
.site-header__nav a:hover { color: var(--white); }

/* ── Hero ────────────────────────────────────────────── */

.hero {
  background: var(--green);
  color: var(--white);
  padding: 72px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero__logo {
  display: block;
  max-height: 72px;
  max-width: 220px;
  object-fit: contain;
  margin: 0 0 24px;
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.hero__cat-pill {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px;
  padding: 4px 12px;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero__tagline {
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 600px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.hero__meta-item {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.hero__meta-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 1px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Buttons ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background 0.15s, opacity 0.15s;
  line-height: 1;
}
.btn--amber  { background: var(--amber); color: var(--white); }
.btn--amber:hover { background: var(--amber-hover); }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn--outline:hover { border-color: var(--white); }
.btn--amber-outline { background: transparent; color: var(--amber); border: 1.5px solid var(--amber); }
.btn--amber-outline:hover { background: rgba(200,134,10,0.08); }
.btn--green  { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-mid); }
.btn--sm     { padding: 9px 18px; font-size: 14px; }

/* ── Section layout ──────────────────────────────────── */

.section {
  padding: 64px 24px;
}

.section--alt {
  background: var(--cream-dark);
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__header {
  margin-bottom: 40px;
}

.section__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.01em;
}

.section__body {
  font-size: 16px;
  color: var(--stone);
  margin-top: 10px;
  max-width: 560px;
}

/* ── League cards ────────────────────────────────────── */

.leagues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.league-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.league-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.league-card__banner {
  background: var(--green);
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  min-height: 100px;
}

.league-card__logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  padding: 6px;
}

.league-card__banner-text {
  flex: 1;
  min-width: 0;
}

.league-card__status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.status-open   { background: #d1fae5; color: #065f46; }
.status-active { background: #dbeafe; color: #1e40af; }
.status-closed { background: #fee2e2; color: #991b1b; }

.league-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.league-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.league-card__tagline {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.league-card__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.league-card__cat-pill {
  font-size: 12px;
  color: var(--stone);
  background: var(--cream);
  border-radius: 99px;
  padding: 3px 10px;
}

.league-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}

.league-card__meta-text {
  font-size: 12px;
  color: var(--stone);
  line-height: 1.4;
}

.league-card__arrow {
  flex-shrink: 0;
  font-size: 16px;
  color: var(--amber);
  transition: transform 0.15s;
}

.league-card:hover .league-card__arrow {
  transform: translateX(4px);
}

/* ── How it works ────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

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

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__title {
  font-weight: 700;
  font-size: 17px;
  color: var(--green);
}

.step__body {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.6;
}

/* ── Empty state ─────────────────────────────────────── */

.empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--stone);
}

.empty__icon { font-size: 48px; margin-bottom: 16px; }
.empty__text { font-size: 18px; font-weight: 500; }

/* ── Footer ──────────────────────────────────────────── */

.site-footer {
  background: var(--green);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
}

/* ── League page header ──────────────────────────────── */

.league-page-header {
  background: var(--green);
  color: var(--white);
  padding: 48px 24px 0;
}

.league-page-header__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.league-page-header__logo {
  display: block;
  max-height: 64px;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.league-page-header__status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.league-page-header__name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
}

.league-page-header__tagline {
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.league-page-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.league-page-header__meta-item {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.league-page-header__meta-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 1px;
}

.league-page-header__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.league-page-header__cat-pill {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 99px;
  padding: 4px 12px;
}

/* ── Tab navigation ──────────────────────────────────── */

.league-tabs {
  display: flex;
  gap: 2px;
  margin-top: 8px;
  overflow-x: auto;
}

.league-tab {
  display: inline-block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}

.league-tab:hover {
  color: rgba(255,255,255,0.9);
}

.league-tab--active {
  color: var(--white);
  border-bottom-color: var(--amber);
}

.league-tab--cta {
  color: var(--amber);
}
.league-tab--cta:hover { color: #e8a020; }

/* ── League page content ─────────────────────────────── */

.league-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

/* ── News / Posts ────────────────────────────────────── */

.post-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
}

.post-card__date {
  font-size: 12px;
  color: var(--stone);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.post-card__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.post-card__body p  { margin-bottom: 14px; }
.post-card__body p:last-child { margin-bottom: 0; }
.post-card__body h2,
.post-card__body h3 { font-family: 'Playfair Display', serif; color: var(--green); margin: 20px 0 8px; }
.post-card__body ul,
.post-card__body ol { padding-left: 20px; margin-bottom: 14px; }
.post-card__body li { margin-bottom: 4px; }
.post-card__body a  { color: var(--amber); }

/* ── Rules ───────────────────────────────────────────── */

.rules-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 40px;
  font-size: 16px;
  line-height: 1.75;
  max-width: 720px;
}

.rules-body p  { margin-bottom: 14px; }
.rules-body p:last-child { margin-bottom: 0; }
.rules-body h2,
.rules-body h3 { font-family: 'Playfair Display', serif; color: var(--green); margin: 24px 0 10px; }
.rules-body ul,
.rules-body ol { padding-left: 22px; margin-bottom: 14px; }
.rules-body li { margin-bottom: 6px; }

/* ── Awards ──────────────────────────────────────────── */

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.award-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.award-card__image {
  height: 180px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.award-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-card__body {
  padding: 20px;
}

.award-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.award-card__desc {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.5;
}

/* ── Leaderboard ─────────────────────────────────────── */

.leaderboard {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard th {
  text-align: left;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone);
  border-bottom: 2px solid var(--border);
}

.leaderboard td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.leaderboard tr:last-child td { border-bottom: none; }

.leaderboard__rank {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--stone);
  width: 48px;
  text-align: center;
}

.leaderboard__rank--1 { color: #b7860d; }
.leaderboard__rank--2 { color: #6b7280; }
.leaderboard__rank--3 { color: #92400e; }

.leaderboard__team {
  font-weight: 600;
  font-size: 16px;
  color: var(--green);
}

.leaderboard__number {
  font-size: 12px;
  font-family: monospace;
  color: var(--stone);
  margin-top: 2px;
}

.leaderboard__score {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  text-align: right;
  white-space: nowrap;
}

.leaderboard__score-unit {
  font-size: 13px;
  font-weight: 400;
  color: var(--stone);
  margin-left: 4px;
}

.leaderboard__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.leaderboard__cat-pill {
  font-size: 12px;
  background: var(--cream-dark);
  color: var(--stone);
  border-radius: 99px;
  padding: 2px 10px;
}

/* ── Registration form ───────────────────────────────── */

.reg-page {
  padding: 48px 24px 80px;
}

.reg-page__inner {
  max-width: 540px;
  margin: 0 auto;
}

.reg-page__eyebrow {
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 8px;
}

.reg-page__eyebrow a {
  color: var(--amber);
  text-decoration: none;
}

.reg-page__eyebrow a:hover { text-decoration: underline; }

.reg-page__eyebrow-arrow {
  font-size: 18px;
  line-height: 1;
}

.reg-page__title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.reg-page__subtitle {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 36px;
}

.reg-section {
  margin-bottom: 32px;
}

.reg-section__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 4px;
}

.reg-section__hint {
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.field--half { flex: 1; min-width: 0; }

.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,58,42,0.08);
}

.member-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

.member-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.member-card__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone);
}

.member-card__remove {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--stone);
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.member-card__remove:hover { color: #b91c1c; }

.member-card__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}

.member-card__fields .field { width: 100%; }
.member-card__fields .field--half { width: calc(50% - 8px); }

.reg-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.reg-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding: 6px 0;
  color: var(--stone);
}

.reg-summary__row--total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 17px;
  color: var(--green);
}

.reg-actions {
  display: flex;
  gap: 12px;
}

.btn--sm {
  font-size: 14px;
  padding: 8px 16px;
}

.btn--lg {
  font-size: 17px;
  padding: 14px 28px;
  width: 100%;
  justify-content: center;
}

.form-errors {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #b91c1c;
}

.form-errors p + p { margin-top: 4px; }

/* ── Haul submission form ────────────────────────────── */

.value-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-input input {
  flex: 1;
}

.value-input__unit {
  font-size: 15px;
  font-weight: 600;
  color: var(--stone);
  white-space: nowrap;
}

.team-found-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
}

.form-hint--error {
  font-size: 14px;
  color: #b91c1c;
  margin-top: 4px;
}

.file-input {
  font-size: 14px;
  color: var(--stone);
}

/* ── Sponsors bar ───────────────────────────────────── */

.sponsors-bar {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.sponsors-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sponsors-bar__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}

.sponsors-bar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.sponsors-bar__item {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.sponsors-bar__item:hover { opacity: 1; }

.sponsors-bar__img {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.15s;
}

.sponsors-bar__item:hover .sponsors-bar__img { filter: none; }

.sponsors-bar__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* ── Public team page ───────────────────────────────── */

.team-members {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.team-member__name {
  font-size: 15px;
  font-weight: 500;
  flex: 1;
}

.team-member__badge {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  background: rgba(26,58,42,0.08);
  border-radius: 4px;
  padding: 2px 8px;
}

.team-score {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.team-score__total {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.team-score__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
}

.team-score__label {
  font-size: 13px;
  color: var(--stone);
}

.team-score__breakdown {
  padding: 8px 0;
}

.team-score__cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.team-score__cat:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.team-score__cat-name {
  font-size: 14px;
  color: var(--ink);
}

.team-score__cat-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.submission-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submission-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}

.submission-item--rejected {
  opacity: 0.45;
}

.submission-item__main {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.submission-item__cat {
  font-size: 15px;
  font-weight: 500;
  flex: 1;
}

.submission-item__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
}

.submission-item__rejected-pill {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b91c1c;
  background: #fee2e2;
  border-radius: 4px;
  padding: 2px 7px;
}

.submission-item__meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--stone);
}

.submission-item__reason {
  color: #b91c1c;
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 600px) {
  .hero { padding: 48px 20px 56px; }
  .section { padding: 48px 20px; }
  .hero__meta { gap: 16px; }
  .league-content { padding: 28px 16px 48px; }
  .rules-body { padding: 24px 20px; }
  .post-card { padding: 20px; }
  .leaderboard__cats { display: none; }
  .member-card__fields .field--half { width: 100%; }
  .reg-page { padding: 32px 16px 64px; }
  .leagues-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
}
