  :root {
    --cream: #FFF9EE;
    --ink: #2B2438;
    --sport: #E4772A;
    --music: #8B5FBF;
    --eco: #3E8E4F;
    --speech: #2E7FC1;
    --science: #1FA098;
    --art: #D64C77;
    --card-bg: #ffffff;
    --ring: rgba(43,36,56,0.08);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: 'Nunito', sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3 { font-family: 'Baloo 2', sans-serif; margin: 0; }
  a { color: inherit; }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

  /* ---- Top bar ---- */
  header.site {
    padding: 22px 0;
    border-bottom: 3px dashed var(--ring);
  }
  .site-bar {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }
  .brand { display: flex; align-items: center; gap: 12px; }
  .brand-mark {
    width: 46px; height: 46px; border-radius: 14px;
    background: linear-gradient(135deg, var(--sport), var(--art));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: 'Baloo 2'; font-weight: 800; font-size: 20px;
    transform: rotate(-6deg);
  }
  .brand-text .school { font-family: 'Baloo 2'; font-weight: 700; font-size: 18px; }
  .brand-text .loc { font-size: 13px; opacity: .65; }
  nav.site-nav a {
    text-decoration: none; font-weight: 700; font-size: 15px; margin-left: 22px; opacity: .8;
  }
  nav.site-nav a:hover { opacity: 1; }

  /* ---- Hero ---- */
  .hero {
    padding: 64px 0 40px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
  }
  .eyebrow-pill {
    display: inline-block; background: #fff; border: 2px solid var(--ink);
    padding: 6px 16px; border-radius: 100px; font-weight: 800; font-size: 13px;
    transform: rotate(-2deg); margin-bottom: 18px;
  }
  .hero h1 {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
    font-weight: 800;
  }
  .hero h1 .accent { color: var(--sport); }
  .hero p.lead {
    font-size: 18px; max-width: 46ch; margin-top: 18px; opacity: .82;
  }
  .hero-stats { display: flex; gap: 28px; margin-top: 30px; flex-wrap: wrap; }
  .stat b { display: block; font-family: 'Baloo 2'; font-size: 30px; }
  .stat span { font-size: 13px; opacity: .65; }

  .hero-art { position: relative; height: 340px; }
  .hero-art svg { width: 100%; height: 100%; }

  /* ---- Section headers ---- */
  .section { padding: 54px 0; }
  .section-head { max-width: 640px; margin-bottom: 34px; }
  .section-kicker {
    font-weight: 800; font-size: 14px; letter-spacing: .2px;
    color: var(--sport); margin-bottom: 6px;
  }
  .section h2 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 700; }
  .section-head p { margin-top: 10px; opacity: .75; font-size: 16px; }

  .section.alt { background: #FFF3DC; border-radius: 40px; margin: 0 8px; }

  /* ---- Club cards ---- */
  .club-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px;
  }
  .club-card {
    background: var(--card-bg);
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    transition: transform .15s ease;
  }
  .club-card:hover { transform: translate(-3px, -3px); }
  .club-art {
    line-height: 0;
    height: 118px;
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .club-art-img { display: block; width: 100%; height: 100%; object-fit: contain; background: #e8e8e8; }
  .club-body { padding: 22px 22px 24px; }
  .club-icon-wrap {
    width: 40px; height: 40px; border-radius: 11px;
    background: #FBEFD8;
    display: flex; align-items: center; justify-content: center;
    margin: -44px 0 14px;
    position: relative;
    border: 2px solid var(--ink);
  }
  .club-icon { width: 21px; height: 21px; color: var(--ink); }
  .club-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
  .club-tag { font-weight: 700; font-size: 13px; color: var(--sport); margin: 0 0 10px; }
  .club-blurb { font-size: 14.5px; opacity: .8; margin: 0; }

  /* colour rotation for tag labels (art plate already carries the theme colour) */
  .club-grid .club-card:nth-child(6n+1) .club-tag { color: var(--sport); }
  .club-grid .club-card:nth-child(6n+2) .club-tag { color: var(--music); }
  .club-grid .club-card:nth-child(6n+3) .club-tag { color: var(--eco); }
  .club-grid .club-card:nth-child(6n+4) .club-tag { color: var(--speech); }
  .club-grid .club-card:nth-child(6n+5) .club-tag { color: var(--science); }
  .club-grid .club-card:nth-child(6n+6) .club-tag { color: var(--art); }

  /* ---- Calendar strip ---- */
  .calendar-note {
    display: flex; align-items: center; gap: 14px;
    background: #fff; border: 2px dashed var(--ink); border-radius: 18px;
    padding: 16px 20px; margin-top: 30px; font-size: 14.5px;
  }
  .calendar-note b { font-family: 'Baloo 2'; }

  /* ---- Footer ---- */
  footer {
    padding: 50px 0 40px; text-align: center;
  }
  footer .brand-text { margin-bottom: 6px; }
  footer p { font-size: 13px; opacity: .6; }

  /* ---- RESPONSIVE - Tablet (860px and below) ---- */
  @media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-art { height: 220px; order: -1; }
    nav.site-nav { display: none; }
    .section.alt { border-radius: 24px; margin: 0; }
    .club-art { height: 110px; }
  }

  /* ---- RESPONSIVE - Mobile (600px and below) ---- */
  @media (max-width: 600px) {
    .club-art { height: 100px; }
    .club-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  }

  /* ---- RESPONSIVE - Small Mobile (480px and below) ---- */
  @media (max-width: 480px) {
    .club-art { height: 90px; }
    .club-grid { grid-template-columns: 1fr; }
    .club-card { box-shadow: 4px 4px 0 var(--ink); }
    .club-card h3 { font-size: 17px; }
    .club-blurb { font-size: 13.5px; }
  }

  /* ---- RESPONSIVE - Extra Small (360px and below) ---- */
  @media (max-width: 360px) {
    .club-art { height: 80px; }
    .club-card { box-shadow: 3px 3px 0 var(--ink); border-radius: 16px; }
    .club-card h3 { font-size: 16px; margin-bottom: 2px; }
    .club-tag { font-size: 12px; }
    .club-blurb { font-size: 12.5px; }
  }
