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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

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

  /* ── UTILITY ── */
  .eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #660099;
    display: block;
    margin-bottom: 10px;
  }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 0.5px solid rgba(0,0,0,0.1);
    height: 56px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: box-shadow 0.3s ease;
  }

  nav.scrolled {
    box-shadow: 0 1px 12px rgba(0,0,0,0.07);
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .nav-logo {
    height: 32px;
    mix-blend-mode: multiply;
  }

  .nav-club-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
  }

  .nav-centre {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .nav-centre a {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    transition: color 0.2s ease;
  }

  .nav-centre a:hover {
    color: #660099;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }

  .btn-join {
    background: #660099;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    display: inline-block;
  }

  .btn-join:hover {
    opacity: 0.88;
  }

  .clubhq-credit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    transition: opacity 0.2s ease;
  }

  .clubhq-credit:hover {
    opacity: 0.7;
  }

  .clubhq-powered {
    font-size: 9px;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .clubhq-name {
    font-size: 12px;
    font-weight: 700;
    color: #660099;
    font-family: Georgia, serif;
  }

  /* ── HERO ── */
  #hero {
    min-height: 600px;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0.1) 100%),
      url('hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 80px 40px;
  }

  .hero-content {
    max-width: 560px;
    padding-left: 0;
  }

  .hero-h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #1a1a1a;
  }

  .hero-h1 .purple {
    color: #660099;
  }

  .hero-sub {
    font-size: 16px;
    color: #555555;
    line-height: 1.65;
    margin-top: 16px;
    max-width: 400px;
  }

  .btn-primary {
    display: inline-block;
    background: #660099;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-top: 28px;
    transition: opacity 0.2s ease;
  }

  .btn-primary:hover {
    opacity: 0.88;
  }

  .hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .stat-num {
    font-size: 22px;
    font-weight: 800;
    color: #660099;
    line-height: 1;
  }

  .stat-num--wide {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
  }

  .stat-label {
    font-size: 11px;
    color: #888888;
    font-weight: 500;
  }

  .stat-divider {
    width: 0.5px;
    height: 32px;
    background: #ddd;
    flex-shrink: 0;
  }

  /* ── NEW TO ULTIMATE ── */
  #new-to-ultimate {
    background: #ffffff;
    padding: 72px 40px;
  }

  .new-to-ultimate-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .new-to-ultimate-inner h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #1a1a1a;
    margin-bottom: 8px;
  }

  .new-to-ultimate-copy {
    max-width: 640px;
  }

  .new-to-ultimate-copy p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .new-to-ultimate-copy p:last-child {
    margin-bottom: 0;
  }

  .new-to-ultimate-panel {
    margin-top: 28px;
  }

  /* ── ACCORDION ── */
  .accordion {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .accordion-item {
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
  }

  .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    user-select: none;
  }

  .accordion-season {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
  }

  .accordion-toggle {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    transition: transform 0.3s ease;
  }

  .accordion-item.open .accordion-toggle {
    transform: rotate(180deg);
  }

  .accordion-body {
    display: none;
    padding: 0 20px 20px;
  }

  .accordion-item.open .accordion-body {
    display: block;
  }

  /* ── MEMBERSHIP ── */
  #membership {
    background: #ffffff;
    padding: 72px 40px;
    border-top: 0.5px solid #eeeeee;
  }

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

  .membership-inner h2 {
    font-size: 33px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #1a1a1a;
    margin-bottom: 16px;
  }

  .membership-inner > p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 640px;
  }

  .checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .check-circle {
    width: 20px;
    height: 20px;
    background: #f3e8ff;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .check-circle svg {
    width: 10px;
    height: 10px;
  }

  .checklist-item span {
    font-size: 14px;
    color: #444444;
  }

  .membership-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 480px;
  }

  .membership-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #ffffff;
    border: 0.5px solid rgba(0,0,0,0.09);
    border-radius: 6px;
    transition: border-color 0.2s ease;
  }

  .membership-option:hover {
    border-color: #660099;
  }

  .membership-option-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
  }

  .membership-option-price {
    font-size: 13px;
    font-weight: 700;
    color: #660099;
  }

  .membership-panel {
    background: #f5f0fa;
    border-radius: 12px;
    padding: 32px;
    border: 0.5px solid #e0cff0;
  }

  .panel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 0.5px solid #e0cff0;
  }

  .panel-row:last-child {
    border-bottom: none;
  }

  .panel-row-label {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
  }

  .panel-row-value {
    font-size: 14px;
    color: #555555;
  }

  /* ── ALUMNI ── */
  #alumni {
    background: #f9f9f9;
    padding: 72px 40px;
    text-align: center;
    border-top: 0.5px solid #eeeeee;
  }

  #alumni h2 {
    font-size: 33px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #1a1a1a;
    margin-bottom: 16px;
  }

  #alumni p {
    font-size: 15px;
    color: #555555;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto 28px;
  }

  .alumni-form {
    max-width: 400px;
    margin: 0 auto;
  }

  .form-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
  }

  .alumni-input {
    flex: 1;
    padding: 11px 14px;
    border: 0.5px solid #cccccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s ease;
  }

  .alumni-input:focus {
    border-color: #660099;
  }

  .alumni-input::placeholder {
    color: #bbb;
  }

  .btn-alumni {
    background: #660099;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.2s ease;
    white-space: nowrap;
  }

  .btn-alumni:hover {
    opacity: 0.88;
  }

  .btn-alumni:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .fine-print {
    font-size: 11px;
    color: #aaaaaa;
    margin-top: 10px;
    text-align: center;
  }

  .alumni-form-status {
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    text-align: center;
  }

  .alumni-form-status--ok {
    color: #2e7d32;
  }

  .alumni-form-status--error {
    color: #c0392b;
  }

  /* ── FOOTER ── */
  footer {
    background: #0d0010;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-logo {
    height: 20px;
    filter: brightness(0) invert(0.5) saturate(5) hue-rotate(270deg);
  }

  .footer-club-name {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
  }

  .footer-centre {
    display: flex;
    gap: 20px;
  }

  .footer-centre a {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    transition: color 0.2s ease;
  }

  .footer-centre a:hover {
    color: rgba(255,255,255,0.7);
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.25;
  }

  .footer-powered {
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .footer-clubhq {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    font-family: Georgia, serif;
  }

  /* ── SCROLL ANIMATIONS ── */
  .anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .anim.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── TOP BANNER ── */
  .top-banner {
    background: #FFCC33;
    overflow: hidden;
    white-space: nowrap;
    padding: 7px 0;
  }

  .top-banner-track {
    display: inline-block;
    padding-left: 100%;
    animation: top-banner-scroll 14s linear infinite;
  }

  .top-banner-item {
    display: inline-block;
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .top-banner .dot {
    color: #660099;
    margin: 0 6px;
  }

  @keyframes top-banner-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
  }

  @media (prefers-reduced-motion: reduce) {
    .top-banner-track {
      animation: none;
    }
  }

  /* ── NAV: FIXTURES LINK ── */
  .nav-fixtures-link {
    font-size: 13px;
    font-weight: 600;
    color: #660099;
    white-space: nowrap;
    padding-right: 4px;
    border-right: 0.5px solid rgba(0,0,0,0.12);
    transition: opacity 0.2s ease;
  }

  .nav-fixtures-link:hover {
    opacity: 0.75;
  }

  /* ── SHARED SECTION HEADER (light bg sections) ── */
  .section-sub {
    font-size: 14px;
    color: #777777;
    margin-bottom: 36px;
    max-width: 640px;
  }

  /* Light-on-dark variants, for sections on colour-blocked bands */
  .eyebrow--light {
    color: #d9a3ff;
  }

  .section-sub--light {
    color: rgba(255,255,255,0.65);
  }

  /* ── TRAINING ── */
  .training-band {
    background: #0d0010;
    padding: 72px 40px;
  }

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

  .training-inner h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin-bottom: 8px;
  }

  .training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 36px;
  }

  .training-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    padding: 18px 20px;
  }

  .training-day {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    min-width: 32px;
  }

  .training-type {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    background: #660099;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .training-type--invite {
    background: #FFCC33;
    color: #1a1a1a;
  }

  .training-time {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-left: auto;
    white-space: nowrap;
  }

  /* ── ACCORDION: LIGHT VARIANT (History) ── */
  .accordion--light .accordion-item {
    background: #f5f0fa;
    border: 0.5px solid #e0cff0;
  }

  .accordion--light .accordion-season {
    color: #1a1a1a;
  }

  .accordion--light .accordion-toggle {
    color: rgba(0,0,0,0.35);
  }

  /* ── HISTORY ── */
  #history {
    background: #ffffff;
    padding: 72px 40px;
    border-top: 0.5px solid #eeeeee;
  }

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

  .history-inner h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #1a1a1a;
    margin-bottom: 8px;
  }

  .history-entry {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .history-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .history-results {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .history-result-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 0.5px solid #eeeeee;
  }

  .history-result-row:last-child {
    border-bottom: none;
  }

  .history-result-row--sub {
    padding-left: 16px;
    border-bottom: none;
  }

  .history-result-row--sub .history-result-label,
  .history-result-row--sub .history-result-value {
    font-size: 12px;
    color: #888888;
  }

  .history-result-label {
    font-size: 14px;
    color: #333333;
  }

  .history-result-value {
    font-size: 14px;
    font-weight: 700;
    color: #660099;
    white-space: nowrap;
    text-align: right;
  }

  .history-result-value--gold {
    background: #FFCC33;
    color: #1a1a1a;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
  }

  .history-tagline {
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: #660099;
    margin-top: 32px;
  }

  /* ── NEWSLETTER ── */
  #newsletter {
    background: #ffffff;
    padding: 72px 40px;
  }

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

  .newsletter-inner h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #1a1a1a;
    margin-bottom: 8px;
  }

  /* ── FIXTURES & RESULTS ── */
  #fixtures {
    background: #ffffff;
    padding: 72px 40px;
    border-top: 0.5px solid #eeeeee;
    border-bottom: 0.5px solid #eeeeee;
  }

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

  .fixtures-inner h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #1a1a1a;
    margin-bottom: 8px;
  }

  .matchday-group {
    margin-bottom: 32px;
  }

  .matchday-title {
    font-size: 15px;
    font-weight: 700;
    color: #660099;
    margin-bottom: 12px;
  }

  .fixture-table {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(0,0,0,0.06);
    border: 0.5px solid rgba(0,0,0,0.09);
    border-radius: 8px;
    overflow: hidden;
  }

  .fixture-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 12px;
    padding: 12px 16px;
    background: #ffffff;
    align-items: center;
  }

  .fixture-row--header {
    background: #fafafa;
  }

  .fixture-row--header span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888888;
  }

  .fixture-opponent {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
  }

  .fixture-venue {
    font-size: 13px;
    color: #666666;
  }

  .fixture-score {
    font-size: 13px;
    font-weight: 600;
    color: #660099;
  }

  .fixture-score.tbc {
    color: #aaaaaa;
    font-weight: 500;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .nav-club-name { display: none; }

    #hero { padding: 60px 20px; }
    .hero-content { max-width: 100%; }
    .hero-h1 { font-size: 38px; }

    #membership { padding: 56px 20px; }

    #new-to-ultimate { padding: 56px 20px; }

    #alumni { padding: 56px 20px; }

    .training-band { padding: 56px 20px; }
    .training-row { flex-wrap: wrap; }
    .training-time { margin-left: 0; }

    #history { padding: 56px 20px; }
    .history-entry { flex-direction: column; }
    .history-image { width: 100%; height: 200px; }

    #newsletter { padding: 56px 20px; }

    #fixtures { padding: 56px 20px; }
    .fixture-row { grid-template-columns: 1.4fr 1.4fr 1fr; gap: 8px; padding: 12px; }
    .fixture-venue { font-size: 12px; }

    footer {
      flex-direction: column;
      align-items: flex-start;
      padding: 28px 20px;
    }

    .footer-right { align-items: flex-start; }
  }

  @media (max-width: 760px) {
    nav { height: auto; flex-wrap: wrap; padding: 10px 20px; gap: 8px 16px; }
    .nav-centre { gap: 14px 16px; flex-wrap: wrap; order: 3; width: 100%; }
    .nav-fixtures-link { border-right: none; padding-right: 0; font-size: 12px; }
    .clubhq-credit { display: none; }
  }
