:root {
    --black: #0a0a0a;
    --white: #f5f3ef;
    --grey-dark: #1c1c1c;
    --grey-mid: #3a3a3a;
    --grey-light: #8a8a8a;
    --grey-subtle: #e8e6e2;
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── HEADER ── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 90px;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    transition: background 0.3s;
  }
/*
  .logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  */

  .logo-top {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .logo-main {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    color: var(--white);
  }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  nav {
    display: flex;
    gap: 0.25rem;
    align-items: center;
  }

  nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-light);
    text-decoration: none;
    padding: 0.4rem 0.7rem;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
  }

  nav a:hover { color: var(--gold); }

  nav .cta-nav {
    color: var(--black);
    background: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 3px;
    margin-left: 0.5rem;
  }

  nav .cta-nav:hover { background: var(--gold-light); color: var(--black); }

  /* Mobile nav overlay */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--black);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    animation: fadeIn 0.2s ease;
  }

  .mobile-nav.open { display: flex; }

  .mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
  }

  .mobile-nav a:hover { color: var(--gold); }

  /* ── HERO ── */
  #home {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
    url('/wp-content/uploads/2026/04/Strugglers-Group-Image.jpeg') center 65% / cover no-repeat;
}

  @keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
  }

  /* diagonal gold accent */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%, rgba(0,0,0,0.4) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 820px;
  }

  .hero-badge {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 0.35rem 1.2rem;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease both;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 8vw, 6rem);
    line-height: 1.0;
    letter-spacing: -0.01em;
    animation: fadeUp 0.8s 0.15s ease both;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    margin-top: 1.2rem;
    font-size: 1.05rem;
    color: rgba(245,243,239,0.65);
    letter-spacing: 0.04em;
    line-height: 1.7;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem auto;
    animation: fadeUp 0.8s 0.45s ease both;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.6s ease both;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.85rem 1.8rem;
    border-radius: 3px;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--black);
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(245,243,239,0.3);
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    animation: fadeUp 1s 1.2s ease both;
  }

  .scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
  }

  .scroll-hint .arrow {
    width: 1px;
    height: 40px;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }

  .scroll-hint .arrow::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: slideDown 1.5s ease infinite;
  }

  @keyframes slideDown {
    from { top: -100%; }
    to { top: 100%; }
  }

  /* ── NEXT EVENT COUNTDOWN ── */
  .event-strip {
    background: var(--grey-dark);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 2rem;
    text-align: center;
  }

  .event-strip-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }

  .event-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }

  .event-details {
    font-size: 0.85rem;
    color: var(--grey-light);
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
  }

  .countdown {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }

  .cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
  }

  .cd-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }

  .cd-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-top: 0.3rem;
  }

  .cd-sep {
    font-size: 2rem;
    color: rgba(201,168,76,0.3);
    align-self: flex-start;
    margin-top: 0.2rem;
  }

  /* ── SECTIONS ── */
  section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  .section-divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2rem;
  }

  .section-body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245,243,239,0.7);
    max-width: 680px;
  }

  /* ── QUICK LINKS ── */
  .quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.15);
    margin-top: 3rem;
  }

  .quick-link {
    background: var(--grey-dark);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: background 0.2s;
  }

  .quick-link:hover { background: #222; }

  .quick-link .ql-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .quick-link .ql-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .quick-link .ql-sub {
    font-size: 0.8rem;
    color: var(--grey-light);
  }

  /* ── NEWS FEED ── */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .news-card {
    border: 1px solid rgba(201,168,76,0.15);
    background: var(--grey-dark);
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
  }

  .news-card:hover {
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-3px);
  }

  .news-date {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
  }

  .news-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.6rem;
  }

  .news-snippet {
    font-size: 0.85rem;
    color: var(--grey-light);
    line-height: 1.6;
  }

  .news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
  }

  /* ── SECTION SEPARATOR ── */
  .sep {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
    margin: 0 2rem;
  }

  /* ── ABOUT ── */
  #about { padding-bottom: 5rem; }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
  }

  .stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.15);
    margin-top: 2rem;
  }

  .stat-box {
    background: var(--grey-dark);
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
  }

  .stat-desc {
    font-size: 0.78rem;
    color: var(--grey-light);
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
  }

  /* Committee */
  .committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .committee-card {
    border: 1px solid rgba(201,168,76,0.15);
    background: var(--grey-dark);
    overflow: hidden;
    text-align: center;
    transition: border-color 0.2s;
  }

  .committee-card:hover { border-color: rgba(201,168,76,0.5); }

  .committee-avatar {
    width: 100%;
    aspect-ratio: 1;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
  }

  .committee-info { padding: 1rem; }

  .committee-role {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
  }

  .committee-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
  }

  /* Chairman's letter */
  .chairmans-letter {
    background: var(--grey-dark);
    border: 1px solid rgba(201,168,76,0.2);
    border-left: 3px solid var(--gold);
    padding: 2.5rem;
    margin-top: 3rem;
    max-width: 720px;
    position: relative;
  }

  .chairmans-letter::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(201,168,76,0.15);
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    line-height: 1;
  }

  .letter-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(245,243,239,0.8);
    font-style: italic;
  }

  .letter-sig {
    margin-top: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.95rem;
  }

  .letter-sig span {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: var(--gold);
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.2rem;
  }

  /* ── EVENTS ── */
  #events { padding-top: 5rem; }

  .events-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(201,168,76,0.15);
  }

  .event-row {
    background: var(--grey-dark);
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    transition: background 0.2s;
    cursor: pointer;
  }

  .event-row:hover { background: #222; }

  .event-date-block {
    text-align: center;
    border-right: 1px solid rgba(201,168,76,0.2);
    padding-right: 1.5rem;
  }

  .edb-day {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }

  .edb-month {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-light);
  }

  .event-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }

  .event-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--grey-light);
  }

  .event-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .spots-pill {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    white-space: nowrap;
  }

  .spots-open { background: rgba(201,168,76,0.15); color: var(--gold); }
  .spots-few { background: rgba(200,80,50,0.15); color: #e8735a; }

  /* ── 19TH HOLE ── */
  #social { background: var(--black); }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 2rem;
  }

  .gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
    cursor: pointer;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) grayscale(0.3);
    transition: filter 0.3s, transform 0.5s;
  }

  .gallery-item:hover img {
    filter: brightness(0.5) grayscale(0);
    transform: scale(1.05);
  }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .gallery-item:hover .gallery-overlay { opacity: 1; }

  .gallery-caption {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--grey-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2rem;
    color: rgba(201,168,76,0.3);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.15);
  }

  /* ── LEADERBOARD ── */
  #leaderboard { padding-top: 5rem; }

  .leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
  }

  .leaderboard-table th {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(201,168,76,0.3);
  }

  .leaderboard-table td {
    padding: 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
  }

  .leaderboard-table tr:hover td { background: rgba(201,168,76,0.04); }

  .rank-num {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--grey-light);
    font-size: 0.85rem;
  }

  .rank-1 { color: var(--gold); }
  .rank-2 { color: #c0c0c0; }
  .rank-3 { color: #cd7f32; }

  .player-name {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .points-val {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--white);
  }

 /* ── MEMBERSHIP ── */
#membership { padding-top: 5rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* CHANGED: 3 columns instead of auto-fit */
  gap: 1px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.15);
  margin-top: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px; /* ADDED: max width for better desktop display */
  margin-left: auto; /* ADDED: center the grid */
  margin-right: auto; /* ADDED: center the grid */
}

.benefit-card {
  background: var(--grey-dark);
  padding: 1.5rem;
}

.benefit-icon { 
  font-size: 1.5rem; 
  margin-bottom: 0.75rem; 
}

.benefit-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.benefit-text {
  font-size: 0.82rem;
  color: var(--grey-light);
  line-height: 1.6;
}

/* ADDED: Responsive breakpoints */
@media (max-width: 968px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}
  /* Membership Form */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 600px;
  }

  .form-full { grid-column: 1 / -1; }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .form-group label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--grey-dark);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
  }

  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-group select { appearance: none; cursor: pointer; }

  .form-submit-row {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
  }

  /* ── CONTACT ── */
  #contact { padding-top: 5rem; }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
  }

  .contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
  }

  .ci-icon {
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    color: var(--gold);
  }

  .ci-text {
    font-size: 0.9rem;
    color: rgba(245,243,239,0.7);
    line-height: 1.6;
  }

  .ci-text strong {
    display: block;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--grey-dark);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 1.25rem 2rem;
    text-align: center;
  }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
  }

  .footer-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
  }

  .footer-links {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
  }

  .footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-light);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ── BLOG / ARTICLE MODAL ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem;
  }

  .modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }

  .modal-box {
    background: var(--grey-dark);
    border: 1px solid rgba(201,168,76,0.2);
    max-width: 680px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    margin: auto;
    animation: fadeUp 0.3s ease;
  }

  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--grey-light);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
  }

  .modal-close:hover { color: var(--gold); }

  .modal-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }

  .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .modal-body {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(245,243,239,0.75);
  }

  .modal-body p { margin-bottom: 1rem; }

  .modal-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin: 1.5rem 0 0.5rem;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }

    .about-grid { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }

    .event-row {
      grid-template-columns: 60px 1fr;
    }

    .spots-pill { display: none; }

    section { padding: 3rem 1.25rem; }

    .hero-ctas { flex-direction: column; align-items: center; }

    .chairmans-letter { padding: 1.5rem; }
  }

  @media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: 1fr; }
  }

  /* Section visibility on page */
  .page-section {
    display: none;
  }
  .page-section.active {
    display: block;
  }
  #home-section { display: block; }
/* ═══════════════════════════════════════
   LOGO IMAGE IN HEADER
   ═══════════════════════════════════════ */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  align-items: flex-start;
}

/* ═══════════════════════════════════════
   SOCIAL LINKS
   ═══════════════════════════════════════ */
.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--grey-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.social-link svg {
  width: 16px; height: 16px;
  fill: currentColor;
}

/* ═══════════════════════════════════════
   COMMITTEE SECTION
   ═══════════════════════════════════════ */
.committee-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.committee-grid-real {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.committee-card-real {
  background: var(--grey-dark);
  border: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.committee-card-real:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-3px);
}
.committee-photo {
  width: 100%;
  aspect-ratio: 1;
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.committee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s, transform 0.4s;
}
.committee-card-real:hover .committee-photo img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.committee-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  position: relative;
}
.committee-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(201,168,76,0.02) 0px,
    rgba(201,168,76,0.02) 1px,
    transparent 1px,
    transparent 24px
  );
}
.committee-initials {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(201,168,76,0.3);
  position: relative;
  z-index: 1;
  line-height: 1;
}
.committee-info-real {
  padding: 1.1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.committee-role-real {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.committee-name-real {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

/* ═══════════════════════════════════════
   DOCS / DOWNLOADS SECTION (members)
   ═══════════════════════════════════════ */
.doc-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--grey-dark);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.doc-card:hover {
  border-color: rgba(201,168,76,0.5);
  background: #222;
}
.doc-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.doc-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.doc-info-meta {
  font-size: 0.75rem;
  color: var(--grey-light);
}
.doc-download {
  margin-left: auto;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.doc-card:hover .doc-download { background: rgba(201,168,76,0.1); }

/* ═══════════════════════════════════════
   FOOTER SOCIAL + CONTACT UPDATES
   ═══════════════════════════════════════ */
.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: var(--grey-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social-link:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 768px) {
  .committee-grid-real { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .committee-grid-real { grid-template-columns: 1fr; }
}
