/*
Theme Name: TIGCWC
Theme URI: https://tigcwc.co.za
Author: Rysen
Author URI: https://rysen.co.za
Description: Official theme for the Travel Industry Golf Club Western Cape. Built for TIGCWC by Rysen.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: Private
Text Domain: tigcwc
Tags: golf, travel, sports, custom
*/


  :root {
    --green-deep: #0a2e1a;
    --green-mid: #1a5c32;
    --green-bright: #2d8a50;
    --green-light: #4db870;
    --green-pale: #e8f5ed;
    --gold: #c9a84c;
    --gold-light: #e8c96e;
    --gold-dark: #8a6a1f;
    --cream: #faf8f0;
    --white: #ffffff;
    --text-dark: #0d1f14;
    --text-mid: #2d4a38;
    --text-light: #6b8a72;
    --overlay: rgba(5,20,10,0.72);
    --nav-h: 80px;
    --radius: 4px;
    --shadow: 0 8px 40px rgba(0,0,0,0.18);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.10);
  }

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

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--green-deep); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

  /* ─── TYPOGRAPHY ─── */
  h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
  h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
  h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
  h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
  h4 { font-size: 1.2rem; }
  p { line-height: 1.75; }

  /* ─── NAV ─── */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(10, 46, 26, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    padding: 0 2rem;
    transition: all 0.3s ease;
  }
  #navbar.scrolled {
    height: 64px;
    background: rgba(5, 25, 14, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; flex-shrink: 0;
    cursor: pointer;
  }
  .logo-ball {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff 0%, #e8e8e8 40%, #c0c0c0 100%);
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    box-shadow: inset 0 -4px 8px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.3);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    overflow: hidden;
  }
  .logo-ball:hover { transform: rotate(20deg) scale(1.05); }
  .logo-ball svg { width: 30px; height: 30px; }
  /* dimple pattern on ball */
  .logo-ball::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 45% 30%, rgba(255,255,255,0.6) 0%, transparent 25%),
      radial-gradient(circle at 70% 55%, rgba(0,0,0,0.08) 0%, transparent 20%),
      radial-gradient(circle at 30% 65%, rgba(0,0,0,0.08) 0%, transparent 20%),
      radial-gradient(circle at 60% 25%, rgba(0,0,0,0.06) 0%, transparent 15%);
    border-radius: 50%;
  }

  .logo-text { color: var(--white); }
  .logo-text .logo-abbr { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; display: block; line-height: 1; }
  .logo-text .logo-full { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; display: block; margin-top: 3px; color: rgba(255,255,255,0.92); }

  .nav-menu {
    display: flex; align-items: center; gap: 0;
    list-style: none;
    margin-left: auto;
  }
  .nav-item { position: relative; }
  .nav-link {
    display: block;
    padding: 0 1.1rem;
    height: var(--nav-h);
    line-height: var(--nav-h);
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: color 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
  }
  #navbar.scrolled .nav-link { line-height: 64px; height: 64px; }
  .nav-link:hover, .nav-link.active { color: var(--gold); }
  .nav-link::after {
    content: '';
    position: absolute; bottom: 0; left: 1.1rem; right: 1.1rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
  }
  .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

  /* Dropdown */
  .nav-item .dropdown {
    position: absolute; top: 100%; left: 0;
    min-width: 200px;
    background: var(--green-deep);
    border: 1px solid rgba(201,168,76,0.2);
    border-top: 2px solid var(--gold);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 999;
  }
  .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s ease;
    cursor: pointer;
  }
  .dropdown a:hover { background: rgba(201,168,76,0.12); color: var(--gold); padding-left: 1.6rem; }

  /* ─── PAGES ─── */
  /* WordPress multi-page — no hiding needed */
  .page { display: block; }

  /* ─── HERO ─── */
  #hero {
    height: 100vh; min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-video-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(5,20,10,0.5) 0%, rgba(5,20,10,0.2) 40%, rgba(5,20,10,0.7) 100%),
      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="g1" cx="30%25" cy="60%25" r="70%25"><stop offset="0%25" stop-color="%23256b2b"/><stop offset="50%25" stop-color="%231a4d22"/><stop offset="100%25" stop-color="%230a2310"/></radialGradient><radialGradient id="g2" cx="70%25" cy="40%25" r="50%25"><stop offset="0%25" stop-color="%232d7a35"/><stop offset="100%25" stop-color="%23143819"/></radialGradient></defs><rect fill="url(%23g1)" width="1200" height="800"/><rect fill="url(%23g2)" width="1200" height="800" opacity="0.6"/><ellipse cx="200" cy="650" rx="300" ry="60" fill="%2318451d" opacity="0.5"/><ellipse cx="1000" cy="200" rx="250" ry="80" fill="%23236028" opacity="0.4"/><path d="M0 500 Q300 400 600 480 Q900 560 1200 460 L1200 800 L0 800Z" fill="%230d3015" opacity="0.6"/><circle cx="180" cy="300" r="8" fill="%23fff" opacity="0.85"/><path d="M180 292 L180 240 Q200 270 180 292" fill="%23fff" opacity="0.5"/></svg>') center/cover no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
  }
  @keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
  }

  /* Animated fairway lines */
  .fairway-lines {
    position: absolute; inset: 0; pointer-events: none;
    overflow: hidden;
  }
  .fairway-lines::before, .fairway-lines::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    width: 60%;
    height: 100%;
    animation: sweep 8s ease-in-out infinite;
  }
  .fairway-lines::after { animation-delay: 4s; left: 20%; }
  @keyframes sweep {
    0%, 100% { transform: skewX(-20deg) translateX(-100%); opacity: 0; }
    50% { transform: skewX(-20deg) translateX(200%); opacity: 1; }
  }

  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1.5rem;
    max-width: 860px;
    animation: heroFade 1.2s ease forwards;
  }
  @keyframes heroFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 0.4rem 1.2rem; border-radius: 2px;
    margin-bottom: 1.5rem;
    animation: heroFade 1.2s ease 0.2s both;
  }
  .hero-title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.2rem;
    animation: heroFade 1.2s ease 0.4s both;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  }
  .hero-title span { color: var(--gold); }
  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    animation: heroFade 1.2s ease 0.6s both;
  }
  .hero-ctas {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    animation: heroFade 1.2s ease 0.8s both;
  }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.85rem 2rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: var(--radius);
  }
  .btn-gold {
    background: var(--gold); color: var(--green-deep);
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
  .btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
  .btn-green {
    background: var(--green-mid); color: var(--white);
    box-shadow: 0 4px 20px rgba(26,92,50,0.4);
  }
  .btn-green:hover { background: var(--green-bright); transform: translateY(-2px); }
  .btn-dark {
    background: var(--green-deep); color: var(--gold);
    border: 1.5px solid var(--gold);
  }
  .btn-dark:hover { background: var(--gold); color: var(--green-deep); transform: translateY(-2px); }

  .hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    animation: bounce 2s ease infinite;
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }
  .hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  }

  /* ─── SECTION STYLES ─── */
  section { padding: 6rem 0; }
  .container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
  .container-narrow { max-width: 820px; margin: 0 auto; padding: 0 2rem; }

  .section-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--green-bright);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 4px;
    margin-bottom: 1rem;
  }
  .section-tag-light { color: var(--gold-light); border-color: rgba(201,168,76,0.5); }

  .section-title { margin-bottom: 1rem; color: var(--text-dark); }
  .section-title-light { color: var(--white); }
  .section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 560px; }
  .section-sub-light { color: rgba(255,255,255,0.7); }
  .section-center { text-align: center; }
  .section-center .section-sub { margin: 0 auto; }

  /* Divider */
  .gold-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 1.5rem 0 2.5rem;
  }
  .gold-divider-center { margin: 1.5rem auto 2.5rem; }

  /* ─── STATS BAR ─── */
  .stats-bar {
    background: var(--green-deep);
    padding: 3rem 0;
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
  }
  .stat-item {}
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
  }
  .stat-label {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 0.5rem;
    display: block;
  }

  /* ─── CARDS ─── */
  .cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
  .cards-grid-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }

  .card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
  }
  .card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .card-img {
    width: 100%; height: 200px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
    position: relative; overflow: hidden;
  }
  .card-img-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    transition: transform 0.4s ease;
  }
  .card:hover .card-img-inner { transform: scale(1.1); }
  .card-body { padding: 1.5rem; }
  .card-tag {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 0.5rem; display: block;
  }
  .card-title { font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--text-dark); }
  .card-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
  .card-footer { padding: 0 1.5rem 1.5rem; }

  /* ─── DARK SECTION ─── */
  .section-dark {
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
  }
  .section-dark::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><circle cx="200" cy="200" r="180" fill="none" stroke="rgba(201,168,76,0.04)" stroke-width="2"/><circle cx="200" cy="200" r="140" fill="none" stroke="rgba(201,168,76,0.04)" stroke-width="2"/><circle cx="200" cy="200" r="100" fill="none" stroke="rgba(201,168,76,0.04)" stroke-width="2"/></svg>') center/cover;
    opacity: 0.4;
  }

  /* ─── PAGE HERO (inner pages) ─── */
  .page-hero {
    height: 360px;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 60%, var(--green-bright) 100%);
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: var(--nav-h);
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 360"><path d="M0 200 Q200 100 400 200 Q600 300 800 180 L800 360 L0 360Z" fill="rgba(0,0,0,0.15)"/><circle cx="700" cy="80" r="120" fill="rgba(201,168,76,0.05)"/></svg>') center/cover;
  }
  .page-hero-content { position: relative; z-index: 1; color: var(--white); }
  .page-hero-content .section-tag { color: var(--gold); }
  .page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); }
  .page-hero p { color: rgba(255,255,255,0.7); margin-top: 0.8rem; font-size: 1.05rem; }
  .breadcrumb { font-size: 0.78rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 0.8rem; text-transform: uppercase; }
  .breadcrumb span { color: var(--gold); }

  /* ─── FORMS ─── */
  .form-section { background: var(--cream); }
  .form-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
  }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group.full { grid-column: 1/-1; }
  label {
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-mid);
  }
  input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
  select, textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: var(--radius);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.2s ease;
    outline: none;
  }
  input:focus, select:focus, textarea:focus { border-color: var(--green-bright); box-shadow: 0 0 0 3px rgba(45,138,80,0.1); }
  textarea { resize: vertical; min-height: 120px; }

  .form-success {
    display: none;
    text-align: center; padding: 3rem;
  }
  .form-success .success-icon { font-size: 4rem; margin-bottom: 1rem; }
  .form-success h3 { color: var(--green-mid); margin-bottom: 0.5rem; }
  .form-success p { color: var(--text-light); }

  /* ─── TABLE ─── */
  .styled-table {
    width: 100%; border-collapse: collapse;
    background: var(--white);
    border-radius: 8px; overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .styled-table thead { background: var(--green-deep); color: var(--white); }
  .styled-table th {
    padding: 1rem 1.25rem;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-align: left;
  }
  .styled-table td {
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: var(--text-mid);
  }
  .styled-table tr:hover td { background: var(--green-pale); }
  .styled-table tr:last-child td { border-bottom: none; }
  .badge {
    display: inline-block;
    padding: 3px 10px; border-radius: 20px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  }
  .badge-gold { background: rgba(201,168,76,0.15); color: var(--gold-dark); border: 1px solid rgba(201,168,76,0.3); }
  .badge-green { background: rgba(45,138,80,0.1); color: var(--green-mid); border: 1px solid rgba(45,138,80,0.25); }
  .badge-blue { background: rgba(30,80,180,0.1); color: #1e50b4; border: 1px solid rgba(30,80,180,0.2); }

  /* ─── ACCORDION ─── */
  .accordion { display: flex; flex-direction: column; gap: 0; }
  .accordion-item { border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
  .accordion-header {
    padding: 1.1rem 1.5rem;
    background: var(--white);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; font-size: 0.95rem;
    color: var(--text-dark);
    transition: background 0.2s ease;
    user-select: none;
  }
  .accordion-header:hover { background: var(--green-pale); }
  .accordion-header .acc-icon { transition: transform 0.3s ease; color: var(--green-bright); font-size: 1.2rem; }
  .accordion-item.open .acc-icon { transform: rotate(45deg); }
  .accordion-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .accordion-item.open .accordion-body { max-height: 1000px; }
  .accordion-body-inner { padding: 1.2rem 1.5rem; font-size: 0.93rem; color: var(--text-mid); line-height: 1.75; }

  /* ─── EVENTS CALENDAR ─── */
  .calendar-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .event-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex; gap: 1.5rem; align-items: flex-start;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .event-card:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); border-left: 3px solid var(--gold); }
  .event-date-box {
    background: var(--green-deep);
    color: var(--white);
    border-radius: 6px;
    padding: 0.7rem 1rem;
    text-align: center;
    min-width: 60px; flex-shrink: 0;
  }
  .event-day { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
  .event-month { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-top: 3px; }
  .event-info h4 { font-size: 1rem; margin-bottom: 0.3rem; }
  .event-meta { font-size: 0.82rem; color: var(--text-light); display: flex; gap: 12px; margin-top: 0.5rem; flex-wrap: wrap; }
  .event-meta span::before { margin-right: 4px; opacity: 0.6; }

  /* ─── SPONSORS ─── */
  .sponsor-tier {
    margin-bottom: 4rem;
  }
  .sponsor-tier-title {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 2rem;
  }
  .tier-badge {
    padding: 0.3rem 1rem;
    border-radius: 2px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  }
  .tier-platinum { background: linear-gradient(135deg, #e8e8e8, #c0c0c0); color: #333; }
  .tier-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); }
  .tier-silver { background: linear-gradient(135deg, #b0b8c1, #8a9099); color: var(--white); }

  .sponsors-logos {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
  }
  .sponsor-logo-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  }
  .sponsor-logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
  .sponsor-logo-placeholder {
    width: 80px; height: 80px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--white);
  }
  .sponsor-name { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
  .sponsor-type { font-size: 0.72rem; color: var(--text-light); letter-spacing: 0.08em; }

  /* ─── COMMITTEE ─── */
  .committee-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; }
  .member-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
  }
  .member-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
  .member-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--white);
    border: 3px solid var(--gold);
  }
  .member-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
  .member-role { font-size: 0.78rem; color: var(--green-bright); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

  /* ─── FEES TABLE ─── */
  .fees-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
  .fee-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
  }
  .fee-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .fee-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,168,76,0.3);
  }
  .fee-card.featured::before {
    content: 'Most Popular';
    position: absolute; top: 0; right: 0;
    background: var(--gold);
    color: var(--green-deep);
    font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 12px;
    border-bottom-left-radius: 6px;
  }
  .fee-header {
    background: var(--green-deep);
    padding: 1.8rem 1.5rem;
    text-align: center;
    color: var(--white);
  }
  .fee-type { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
  .fee-price { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
  .fee-period { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 5px; }
  .fee-body { padding: 1.5rem; }
  .fee-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .fee-features li { font-size: 0.88rem; color: var(--text-mid); padding-left: 1.4rem; position: relative; }
  .fee-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green-bright); font-weight: 700; }
  .fee-footer { padding: 0 1.5rem 1.5rem; }

  /* ─── CONSTITUTION ─── */
  .constitution-doc {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 3rem;
    max-width: 860px; margin: 0 auto;
  }
  .constitution-doc h3 { color: var(--green-deep); margin: 2rem 0 0.8rem; }
  .constitution-doc h3:first-child { margin-top: 0; }
  .constitution-doc p, .constitution-doc li { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; }
  .constitution-doc ol, .constitution-doc ul { padding-left: 1.5rem; }
  .constitution-doc li { margin-bottom: 0.4rem; }
  .section-divider { border: none; border-top: 2px solid var(--gold); margin: 2rem 0; opacity: 0.3; }

  /* ─── CONTACT ─── */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
  .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
  .contact-item { display: flex; gap: 1.2rem; align-items: flex-start; }
  .contact-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--green-pale);
    border: 1.5px solid rgba(45,138,80,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
  }
  .contact-item-text h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.25rem; }
  .contact-item-text p, .contact-item-text a { font-size: 0.95rem; color: var(--text-dark); text-decoration: none; font-weight: 600; }
  .contact-item-text a:hover { color: var(--green-bright); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--green-deep);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 4rem 0 2rem;
    color: rgba(255,255,255,0.6);
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem; margin-bottom: 3rem;
  }
  .footer-col h5 {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
  }
  .footer-col p { font-size: 0.85rem; line-height: 1.7; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s ease; cursor: pointer; }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.78rem;
  }
  .footer-bottom-links { display: flex; gap: 1.5rem; }
  .footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.75rem; }

  /* ─── GOLF HOLE DIVIDER ─── */
  .hole-divider {
    display: flex; align-items: center; justify-content: center; gap: 1.5rem;
    margin: 3rem 0;
    color: var(--text-light);
    font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  }
  .hole-divider::before, .hole-divider::after {
    content: '';
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.12));
  }
  .hole-divider::after { background: linear-gradient(270deg, transparent, rgba(0,0,0,0.12)); }

  /* ─── ANIMATED GOLF BALL LOADER ─── */
  .golf-loader {
    width: 28px; height: 28px; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff, #ccc);
    box-shadow: inset 0 -3px 6px rgba(0,0,0,0.2);
    animation: roll 1.2s linear infinite;
    display: inline-block;
  }
  @keyframes roll {
    0% { transform: rotate(0deg) translateX(0); }
    50% { transform: rotate(180deg) translateX(10px); }
    100% { transform: rotate(360deg) translateX(0); }
  }

  /* ─── WAVE SEPARATOR ─── */
  .wave-sep {
    width: 100%; overflow: hidden;
    line-height: 0; margin-bottom: -2px;
  }
  .wave-sep svg { display: block; }

  /* ─── VIDEO PLACEHOLDER ─── */
  .video-hero-placeholder {
    width: 100%; height: 100%;
    background: 
      linear-gradient(rgba(10,46,26,0.6), rgba(5,25,14,0.8)),
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        rgba(255,255,255,0.015) 80px,
        rgba(255,255,255,0.015) 82px
      ),
      linear-gradient(135deg, #1a5c32 0%, #0a2e1a 50%, #256b2b 100%);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }

  /* ─── ABOUT PAGE SPECIFIC ─── */
  .about-story {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }
  .about-visual {
    position: relative;
    height: 420px;
  }
  .about-img-main {
    width: 78%; height: 340px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 8rem;
    box-shadow: var(--shadow);
  }
  .about-img-accent {
    position: absolute; bottom: 0; right: 0;
    width: 55%; height: 200px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--green-deep);
    text-align: center; padding: 1rem;
    box-shadow: var(--shadow);
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }

  /* ─── MEMBER LIST ─── */
  .member-list-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
  }
  .member-list-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    display: flex; align-items: center; gap: 1rem;
    transition: all 0.25s ease;
  }
  .member-list-item:hover { border-color: var(--green-bright); box-shadow: var(--shadow-sm); }
  .member-initials {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; color: var(--white);
    flex-shrink: 0;
  }
  .member-details { flex: 1; }
  .member-details strong { font-size: 0.9rem; color: var(--text-dark); display: block; }
  .member-details span { font-size: 0.75rem; color: var(--text-light); }

  /* ─── INVITE GUESTS ─── */
  .invite-hero-text {
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
    padding: 3rem;
    border-radius: 8px;
    color: var(--white);
    margin-bottom: 2.5rem;
  }
  .invite-hero-text h3 { color: var(--gold); margin-bottom: 0.8rem; }
  .invite-hero-text p { color: rgba(255,255,255,0.75); }

  /* ─── NOTIFICATION ─── */
  .notification {
    position: fixed; bottom: 2rem; right: 2rem;
    background: var(--green-deep);
    color: var(--white);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 320px;
  }
  .notification.show { transform: translateX(0); }
  .notification strong { display: block; color: var(--gold); margin-bottom: 0.2rem; }

  /* ─── HERO VIDEO WRAP ─── */
  #hero { position: relative; overflow: hidden; }
  .hero-video-wrap {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
    /* Dark green bg shows while video loads */
    background: #071a0d;
  }

  /* CSS fallback — shown only if video fails entirely */
  .hero-video-fallback {
    position: absolute; inset: 0; z-index: 1;
    background:
      radial-gradient(ellipse 80% 60% at 20% 70%, #1a6b30 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 80% 40%, #256b2b 0%, transparent 55%),
      radial-gradient(ellipse 100% 40% at 50% 100%, #0d3d1e 0%, transparent 50%),
      linear-gradient(165deg, #0a2e1a 0%, #1a5c32 40%, #2d8a50 70%, #1a5c32 100%);
    animation: heroZoom 18s ease-in-out infinite alternate;
  }

  /* ─── SPONSOR TICKER ─── */
  .sponsor-ticker-wrap {
    background: var(--cream);
    border-top: 1px solid rgba(201,168,76,0.25);
    border-bottom: 3px solid var(--gold);
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .sponsor-ticker-label {
    position: absolute; left: 0; top: 0; bottom: 0; z-index: 10;
    background: var(--green-deep);
    display: flex; align-items: center;
    padding: 0 1.8rem;
    font-size: 0.7rem; font-weight: 800;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    border-right: 2px solid var(--gold);
  }
  .sponsor-ticker-label::after {
    content: '▶';
    margin-left: 10px;
    font-size: 0.6rem;
    color: var(--gold);
    opacity: 0.7;
  }
  .sponsor-ticker-track {
    display: flex; align-items: center;
    height: 80px;
    padding-left: 200px; /* space for pinned label */
    animation: tickerScroll 38s linear infinite;
    width: max-content;
    will-change: transform;
  }
  .sponsor-ticker-track:hover { animation-play-state: paused; }
  @keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .ticker-sponsor {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 0 3rem;
    border-right: 1px solid rgba(0,0,0,0.08);
    height: 80px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
    cursor: default;
  }
  .ticker-sponsor:hover { opacity: 0.7; }
  .ticker-logo-circle {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 800; color: white;
    flex-shrink: 0;
    letter-spacing: 0;
  }
  .ticker-sponsor-name {
    font-size: 0.88rem; font-weight: 700;
    color: var(--text-dark); letter-spacing: 0.02em;
  }
  .ticker-sponsor-type {
    font-size: 0.7rem; color: var(--text-light);
    letter-spacing: 0.05em;
  }


  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-story { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    section { padding: 4rem 0; }
    .form-card { padding: 1.5rem; }
    .constitution-doc { padding: 1.5rem; }
  }
