:root {
  --navy:    #1a2b6b;
  --navy-dk: #0d1a3a;
  --red:     #c8192b;
  --red-dk:  #a8141f;
  --white:   #ffffff;
  --off-white: #f4f6fb;
  --light:   #e8edf6;
  --text:    #1a2040;
  --muted:   #4a5270;
  --border:  #d0d8ec;
}

/* ============================================================
   NAVIGATION — hamburger + slide-out drawer (desktop & mobile)
   ============================================================ */

/* Sticky top bar */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(26,43,107,.08);
}
.nav-inner {
  max-width: 960px; margin: 0 auto; padding: 0 32px;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0;
}
.nav-burgee { width: 46px; height: auto; object-fit: contain; }
.nav-title { display: flex; flex-direction: column; }
.nav-name {
  font-family: 'Playfair Display', serif; font-size: 15px;
  color: var(--navy); line-height: 1.2; white-space: nowrap;
}
.nav-sub {
  font-size: 10px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--red); font-weight: 600;
}

/* Hamburger button */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 6px; transition: background .15s;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--light); }
.nav-toggle .bar {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
/* Animated X when open */
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 299;
  background: rgba(10,18,50,.45); backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

/* Slide-out drawer */
.nav-drawer {
  position: fixed; top: 0; right: -320px; z-index: 300;
  width: 300px; height: 100vh;
  background: var(--white);
  border-left: 3px solid var(--red);
  box-shadow: -8px 0 40px rgba(10,18,50,.18);
  display: flex; flex-direction: column;
  transition: right .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.nav-drawer.open { right: 0; }

/* Drawer links */
.drawer-links {
  display: flex; flex-direction: column;
  padding: 80px 0 24px; flex: 1;
}
.drawer-links a {
  display: block; padding: 14px 32px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px; font-weight: 500;
  color: var(--navy); text-decoration: none;
  border-left: 3px solid transparent;
  transition: background .12s, border-color .12s, color .12s;
  letter-spacing: .01em;
}
.drawer-links a:hover {
  background: var(--off-white);
  border-left-color: var(--border);
  color: var(--navy);
}
.drawer-links a.active {
  background: var(--light);
  border-left-color: var(--red);
  color: var(--red);
  font-weight: 600;
}

/* Drawer footer */
.drawer-footer {
  padding: 20px 32px 32px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.drawer-burgee { width: 36px; opacity: .7; }
.drawer-sub { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* Prevent body scroll when open */
body.nav-open { overflow: hidden; }

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.1rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; }
em { font-style: italic; }
p { color: var(--muted); }

/* ---- Utility ---- */
.section-inner { max-width: 960px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(26,43,107,0.08);
}
.nav-inner {
  max-width: 960px; margin: 0 auto; padding: 0 32px;
  height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.nav-burgee { width: 46px; height: auto; object-fit: contain; }
.nav-title { display: flex; flex-direction: column; }
.nav-name {
  font-family: 'Playfair Display', serif; font-size: 15px;
  color: var(--navy); line-height: 1.2; white-space: nowrap;
}
.nav-sub {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--red); font-weight: 600;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: min(520px, 60vw); overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,14,40,0.95) 0%, rgba(8,14,40,0.5) 50%, rgba(8,14,40,0.15) 100%);
  display: flex; align-items: flex-end; padding: 48px 0;
}
.hero-content { max-width: 960px; margin: 0 auto; padding: 0 32px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,25,43,0.25); border: 1px solid rgba(200,25,43,0.55);
  border-radius: 4px; padding: 4px 14px;
  font-size: 11px; color: #f5a0a8; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 16px;
}
.hero h1 { color: var(--white); margin-bottom: 14px; }
.hero h1 em { color: #e8a0a6; }
.hero p { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 460px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-red {
  display: inline-block;
  background: var(--red); color: var(--white);
  padding: 11px 28px; border-radius: 5px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  transition: background 0.15s;
}
.btn-red:hover { background: var(--red-dk); }
.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--white);
  padding: 11px 28px; border-radius: 5px;
  font-size: 14px; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.85); }
.btn-navy {
  display: inline-block;
  background: var(--navy); color: var(--white);
  padding: 11px 28px; border-radius: 5px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  transition: background 0.15s;
}
.btn-navy:hover { background: #0f1d4a; }

/* ============================================================
   CHAMP BAR & STATS
   ============================================================ */
.champ-bar {
  background: var(--red); padding: 13px 32px;
  display: flex; align-items: center; gap: 12px;
}
.champ-icon { font-size: 20px; }
.champ-bar strong { font-size: 15px; color: var(--white); font-family: 'Playfair Display', serif; font-weight: 700; }
.champ-sub { font-size: 13px; color: rgba(255,255,255,0.72); }
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--navy);
}
.stat-cell {
  padding: 22px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.09);
}
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--white); }
.stat-lbl { font-size: 10px; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 4px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 60px 0; }
.section-alt { background: var(--off-white); }
.sec-kicker {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--red); font-weight: 600; margin-bottom: 8px;
}
.sec-title { color: var(--navy); margin-bottom: 14px; }
.sec-body { font-size: 15px; max-width: 620px; line-height: 1.75; }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; }
.pillar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px;
  border-top: 3px solid var(--navy);
}
.pillar.pillar-red { border-top-color: var(--red); }
.pillar-icon { font-size: 24px; margin-bottom: 14px; }
.pillar h3 { color: var(--navy); margin-bottom: 8px; }
.pillar p { font-size: 13px; line-height: 1.65; }

/* ============================================================
   PHOTO GRID
   ============================================================ */
.photo-grid {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 8px; margin-top: 32px; height: 340px;
  border-radius: 10px; overflow: hidden;
}
.photo-main img { width: 100%; height: 340px; object-fit: cover; }
.photo-side {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: 8px;
}
.photo-side img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   NEWS
   ============================================================ */
.news-grid { display: grid; grid-template-columns: 5fr 3fr; gap: 24px; margin-top: 32px; }
.news-feature { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.news-img-wrap { position: relative; height: 160px; overflow: hidden; background: var(--navy); }
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.news-tag {
  position: absolute; bottom: 12px; left: 14px;
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: 3px; text-transform: uppercase; letter-spacing: 0.08em;
}
.news-body { padding: 20px; }
.news-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.news-body p { font-size: 13px; line-height: 1.65; }
.news-side { display: flex; flex-direction: column; gap: 12px; }
.news-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  border-left: 3px solid var(--navy);
}
.news-item.news-item-red { border-left-color: var(--red); }
.news-item-tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); font-weight: 600; margin-bottom: 5px; }
.news-item h4 { font-size: 0.88rem; color: var(--navy); line-height: 1.4; }

/* ============================================================
   CLUBS STRIP (homepage)
   ============================================================ */
.clubs-strip {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 12px; margin-top: 32px;
}
.club-chip {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 14px;
  border-top: 3px solid var(--navy); transition: border-top-color 0.15s, box-shadow 0.15s;
}
.club-chip:hover { border-top-color: var(--red); box-shadow: 0 4px 16px rgba(26,43,107,0.1); }
.club-chip-name { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--navy); font-weight: 700; line-height: 1.3; margin-bottom: 6px; }
.club-chip-lake { font-size: 11px; color: var(--muted); }
.clubs-cta { margin-top: 28px; }

/* ============================================================
   JOIN BAND
   ============================================================ */
.join-band { background: var(--navy); padding: 64px 0; }
.join-title { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.join-title em { color: #e8a0a6; }
.join-body { color: rgba(255,255,255,0.62); font-size: 15px; max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
.tiers { display: flex; gap: 16px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.tier {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px; padding: 22px 28px; text-align: left; min-width: 155px;
  position: relative;
}
.tier.tier-feat { border-color: var(--red); background: rgba(200,25,43,0.12); }
.tier-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap;
}
.tier-name { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.tier-price { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white); }
.tier.tier-feat .tier-price { color: #f5a0a8; }
.tier-desc { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 4px; }
.join-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.4); }
.join-note a { color: rgba(255,255,255,0.65); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-dk); padding: 32px 0 0; }
.footer-inner {
  max-width: 960px; margin: 0 auto; padding: 0 32px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-burgee { width: 40px; opacity: 0.85; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 15px; color: rgba(255,255,255,0.75); }
.footer-sub { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 2px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-copy {
  max-width: 960px; margin: 0 auto;
  padding: 14px 32px;
  font-size: 11px; color: rgba(255,255,255,0.22);
}
.footer-copy a { color: rgba(255,255,255,0.35); }

/* ============================================================
   PAGE HERO (clubs.html)
   ============================================================ */
.page-hero {
  background: var(--navy); padding: 60px 0;
  background-image: linear-gradient(135deg, #0d1a3a 0%, #1a2b6b 60%, #1a3a6b 100%);
}
.page-hero-inner { max-width: 960px; margin: 0 auto; padding: 0 32px; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 15px; max-width: 580px; margin-top: 12px; line-height: 1.75; }

/* ============================================================
   CLUBS PAGE
   ============================================================ */
.clubs-page { max-width: 960px; margin: 0 auto; padding: 48px 32px; display: flex; flex-direction: column; gap: 32px; }

.club-card {
  display: grid; grid-template-columns: 320px 1fr;
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  background: var(--white); transition: box-shadow 0.2s;
}
.club-card:hover { box-shadow: 0 6px 32px rgba(26,43,107,0.1); }
.club-card.club-card-flip .club-photo { order: 2; }
.club-card.club-card-flip .club-info { order: 1; }

.club-photo { position: relative; min-height: 220px; overflow: hidden; background: var(--navy); }
.club-photo img { width: 100%; height: 100%; object-fit: cover; }
.club-photo-overlay {
  position: absolute; top: 14px; left: 14px;
}
.club-year {
  background: rgba(26,43,107,0.82); color: rgba(255,255,255,0.9);
  font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.06em;
}

.club-info { padding: 28px 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 14px; }
.club-header h2 { color: var(--navy); font-size: 1.5rem; margin-bottom: 4px; }
.club-location { font-size: 12px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.club-desc { font-size: 14px; color: var(--muted); line-height: 1.72; }

.club-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  background: var(--light); color: var(--navy);
  font-size: 11px; padding: 3px 12px; border-radius: 20px;
  font-weight: 500; border: 1px solid var(--border);
}
.tag.tag-gold { background: #fff4dd; color: #7a4e00; border-color: #f0d080; }

.club-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 4px; border-top: 1px solid var(--border); }
.club-link {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--navy); color: var(--white);
  font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 5px;
  transition: background 0.15s;
}
.club-link:hover { background: var(--red); }
.club-address { font-size: 11px; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  
  .nav-name { font-size: 13px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .pillars { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; height: auto; }
  .photo-main img { height: 220px; }
  .photo-side { grid-template-columns: repeat(4,1fr); grid-template-rows: 1fr; height: 100px; }
  .news-grid { grid-template-columns: 1fr; }
  .clubs-strip { grid-template-columns: repeat(2,1fr); }
  .clubs-strip .club-chip:last-child { grid-column: 1 / -1; }
  .tiers { flex-direction: column; align-items: center; }
  .club-card, .club-card.club-card-flip { grid-template-columns: 1fr; }
  .club-card.club-card-flip .club-photo { order: 0; }
  .club-card.club-card-flip .club-info { order: 0; }
  .club-photo { min-height: 180px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero { height: 440px; }
  .hero h1 { font-size: 1.9rem; }
  .clubs-strip { grid-template-columns: 1fr; }
  .clubs-strip .club-chip:last-child { grid-column: auto; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-lead {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: start;
}
.about-lead-burgee {
  text-align: center;
  padding-top: 8px;
}
.about-burgee-img {
  width: 180px;
  height: auto;
  margin: 0 auto 12px;
  filter: drop-shadow(0 4px 20px rgba(26,43,107,0.15));
}
.about-burgee-caption {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.objective-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  position: relative;
}
.objective-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--light);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 700;
}
.objective-card h3 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.objective-card p { font-size: 13px; line-height: 1.65; }

.rsa-table-wrap { margin-top: 28px; overflow-x: auto; }
.rsa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.rsa-table th {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 10px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rsa-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.rsa-table td a { color: var(--sky, #1a6fa8); }
.rsa-table td a:hover { color: var(--red); }
.rsa-row-highlight td { background: #f0f4ff; color: var(--navy); font-weight: 500; }
.rsa-table tr:last-child td { border-bottom: none; }

.docs-grid {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.doc-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  min-width: 280px;
  flex: 1;
  transition: box-shadow 0.15s, border-color 0.15s;
  text-decoration: none;
}
.doc-card:hover { box-shadow: 0 4px 16px rgba(26,43,107,0.1); border-color: var(--navy); }
.doc-icon { font-size: 24px; flex-shrink: 0; }
.doc-title { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--navy); }
.doc-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.doc-arrow { margin-left: auto; font-size: 18px; color: var(--muted); flex-shrink: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.contact-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 24px;
  border-top: 3px solid var(--navy);
}
.contact-icon { font-size: 24px; margin-bottom: 12px; }
.contact-card h3 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.contact-card p { font-size: 13px; line-height: 1.6; margin-bottom: 12px; }
.contact-link {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}
.contact-link:hover { text-decoration: underline; }

/* ============================================================
   SCHEDULE PAGE
   ============================================================ */
.schedule-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff8e6;
  border: 1px solid #f0d080;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  color: #5a4000;
  margin-bottom: 28px;
  line-height: 1.6;
}
.schedule-note a { color: #8a6000; font-weight: 600; }
.schedule-note-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

.schedule-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.schedule-list { display: flex; flex-direction: column; gap: 16px; }
.event-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.15s;
}
.event-card:hover { box-shadow: 0 4px 20px rgba(26,43,107,0.08); }

.event-date-block {
  text-align: center;
  background: var(--navy);
  border-radius: 8px;
  padding: 12px 8px;
  color: #fff;
  flex-shrink: 0;
}
.event-month { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-bottom: 2px; }
.event-day { font-family: 'Playfair Display', serif; font-size: 26px; line-height: 1; }

.event-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.tag-qualifier { background: #e8f0ff; color: #1a2b6b; }
.tag-interclub { background: #fff0e8; color: #7a3000; }
.tag-national  { background: #fff0d8; color: #c8192b; border: 1px solid rgba(200,25,43,0.2); }

.event-title { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.event-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.event-desc { font-size: 13px; line-height: 1.65; }
.event-action { padding-top: 4px; flex-shrink: 0; }

.schedule-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.schedule-cta-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 24px;
  border-top: 3px solid var(--navy);
}
.schedule-cta-card h3 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.schedule-cta-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

/* ============================================================
   TIERS — wider grid for more tiers
   ============================================================ */
.tiers { flex-wrap: wrap; max-width: 780px; margin-left: auto; margin-right: auto; }
.tier { min-width: 120px; flex: 1 1 120px; }

/* ============================================================
   RESPONSIVE additions
   ============================================================ */
@media (max-width: 768px) {
  .about-lead { grid-template-columns: 1fr; }
  .about-lead-burgee { display: none; }
  .objectives-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 60px 1fr; }
  .event-action { grid-column: 2; }
  .schedule-cta-row { grid-template-columns: 1fr; }
  .docs-grid { flex-direction: column; }
}

/* ============================================================
   CLUBS PAGE TABS
   ============================================================ */
.clubs-tab {
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-family: 'Source Sans 3', sans-serif; font-size: 13px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 12px 4px; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.clubs-tab:hover { color: rgba(255,255,255,0.8); }
.clubs-tab.active { color: #fff; border-bottom-color: #c8192b; }

/* ============================================================
   AREA CLUBS
   ============================================================ */
.area-clubs-intro { padding: 40px 48px 0; max-width: 960px; margin: 0 auto; width: 100%; }
.area-clubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 28px 48px 48px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}
.area-club-card {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px;
  border-left: 3px solid var(--navy);
  text-decoration: none;
  transition: box-shadow 0.15s, border-left-color 0.15s;
}
.area-club-card:hover { box-shadow: 0 4px 16px rgba(26,43,107,0.1); border-left-color: var(--red); }
.area-club-name { font-family: 'Playfair Display', serif; font-size: 14px; color: var(--navy); font-weight: 700; line-height: 1.3; }
.area-club-loc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.area-club-link { font-size: 11px; color: var(--red); font-weight: 600; margin-top: 8px; }
.area-club-add { border-left-color: var(--border); border-style: dashed; }
.area-club-add .area-club-name { color: var(--muted); }
.area-club-add a { text-decoration: none; }

/* clubs-page flex column (shared by both tabs) */
.clubs-page { max-width: 960px; margin: 0 auto; padding: 48px 48px; display: flex; flex-direction: column; gap: 32px; width: 100%; box-sizing: border-box; }

@media (max-width: 768px) {
  .area-clubs-grid { grid-template-columns: 1fr 1fr; padding: 20px 24px 36px; }
  .area-clubs-intro { padding: 28px 24px 0; }
  .clubs-page { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .area-clubs-grid { grid-template-columns: 1fr; }
}
