:root {
  --navy:         #0F2044;
  --navy-mid:     #162d5e;
  --navy-dark:    #080f1e;
  --teal:         #2DBDB6;
  --teal-dark:    #1f9991;
  --off-white:    #EEF3F8;
  --page-bg:      #F4F7F9;
  --tint-bg:      #F5FBFC;
  --charcoal:     #1e2a3a;
  --grey:         #5A6B7A;
  --grey-light:   #D8E3EC;
  --white:        #ffffff;
  --red-ball:     #C9241A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.14);
  --transition:   0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--page-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--teal-dark); }
.section-intro { font-size: 1.05rem; color: var(--grey); max-width: 560px; margin-bottom: 40px; }
.section-header { margin-bottom: 48px; }
.body-text { color: var(--grey); font-size: 1rem; margin-bottom: 16px; line-height: 1.75; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-teal { background: var(--teal); color: var(--navy); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-outline { background: transparent; color: var(--off-white); border-color: rgba(238,243,248,0.45); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--off-white); }
.btn-navy { background: var(--navy); color: var(--off-white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
.full-width { width: 100%; justify-content: center; }

.link-arrow { font-size: 0.875rem; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; transition: color var(--transition); }
.link-arrow:hover { color: var(--teal-dark); }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 60px; padding: 0; transition: all 0.4s ease; background: linear-gradient(to bottom, rgba(8,15,30,0.92) 0%, rgba(8,15,30,0.6) 70%, transparent 100%); overflow: visible; }
.navbar.scrolled { background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,0.25); overflow: visible; }
.navbar.hidden { transform: translateY(-100%); opacity: 0; }
.nav-inner { width: 100%; height: 100%; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; overflow: visible; }
.nav-logo { margin-left: 0; overflow: visible; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-svg { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--off-white); }
.logo-sub { font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { color: rgba(238,243,248,0.85); font-size: 0.875rem; font-weight: 500; padding: 6px 12px; border-radius: var(--radius); transition: all var(--transition); position: relative; }
.nav-link:hover { color: var(--off-white); background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--teal); }
.nav-cta { margin-left: 8px; padding: 8px 18px; background: var(--teal); color: var(--navy); font-size: 0.875rem; font-weight: 600; border-radius: var(--radius); transition: all var(--transition); }
.nav-cta:hover { background: var(--teal-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--off-white); border-radius: 2px; transition: all var(--transition); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.hero-photo {
  position: absolute; inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,15,30,0.91) 0%,
    rgba(8,15,30,0.82) 35%,
    rgba(8,15,30,0.45) 60%,
    rgba(8,15,30,0.10) 100%
  );
}

.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(8,15,30,0.5));
}
.hero-content { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; padding: 120px 24px 80px; width: 100%; }
.hero-eyebrow { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; color: var(--off-white); line-height: 1.0; margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--teal); }
.hero-sub { font-size: clamp(1rem, 1.8vw, 1.15rem); color: rgba(238,243,248,0.75); max-width: 520px; line-height: 1.7; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hide-mobile { display: inline; }

.hero-scroll-hint { position: absolute; left: 24px; bottom: 40px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll-hint span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(238,243,248,0.45); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--teal), transparent); animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ABOUT */
.about-strip { padding: 100px 0; background: var(--page-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-block { position: relative; order: 2; }
.about-img-placeholder { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; }
.about-img-placeholder svg { width: 100%; height: auto; display: block; }
.club-photo-bg {
  background-image: url('../images/club-photo.jpg');
  background-size: cover;
  background-position: 35% center;
}
@media (max-width: 768px) {
  .club-photo-bg {
    min-height: 320px;
    background-position: 30% center;
  }
}
.about-img-accent { position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px; background: var(--teal); border-radius: var(--radius-lg); z-index: -1; opacity: 0.2; }
.about-text { padding: 20px 0; order: 1; }
.about-text .section-title { margin-bottom: 20px; }
.about-text .btn { margin-top: 12px; }

/* NEWS */
.news-section { padding: 100px 0; background: var(--white); }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.news-card { background: var(--page-bg); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--grey-light); transition: box-shadow var(--transition); }
.news-card:hover { box-shadow: var(--shadow); }
.news-card--featured .news-img-placeholder svg { width: 100%; height: 200px; display: block; }
.news-body { padding: 24px; }
.news-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(15,32,68,0.08); color: var(--navy); padding: 3px 8px; border-radius: 3px; margin-bottom: 8px; }
.news-date { font-size: 0.78rem; color: var(--grey); margin-left: 8px; }
.news-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 10px 0 8px; line-height: 1.3; }
.news-body p { font-size: 0.9rem; color: var(--grey); margin-bottom: 14px; }
.news-side { display: flex; flex-direction: column; gap: 16px; }
.news-card--small .news-body { padding: 20px; }
.news-card--small h3 { font-size: 0.95rem; }

/* REGISTER CTA */
.register-cta { background: var(--navy); padding: 100px 0; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-text h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--off-white); margin-bottom: 16px; }
.cta-text p { color: rgba(238,243,248,0.7); font-size: 1rem; line-height: 1.7; }
.section-eyebrow.light { color: var(--teal); }
.cta-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.cta-form h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--grey-light); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal); background: var(--page-bg); transition: border-color var(--transition); }
.form-input:focus { outline: none; border-color: var(--teal); }
.form-select { margin-bottom: 12px; color: var(--grey); -webkit-appearance: none; appearance: none; }
.form-select:focus { color: var(--charcoal); }
.cta-form .btn { margin-top: 12px; }

/* SPONSORS */
.sponsors-section { padding: 80px 0; background: var(--page-bg); }
.sponsors-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin: 40px 0 24px; }
.sponsor-slot { width: 180px; height: 80px; border: 2px dashed var(--grey-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--grey); font-weight: 500; letter-spacing: 0.04em; transition: border-color var(--transition); }
.sponsor-slot:hover { border-color: var(--teal); }
.sponsor-cta-text { text-align: center; font-size: 0.9rem; color: var(--grey); }
.sponsor-cta-text a { color: var(--teal-dark); font-weight: 600; }
.sponsor-cta-text a:hover { color: var(--navy); }

/* GROUND / MAP */
.ground-section { padding: 100px 0; background: var(--page-bg); }
.ground-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }

.ground-details { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.ground-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.ground-detail-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(45,189,182,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.ground-detail-icon svg { width: 18px; height: 18px; }
.ground-detail-item strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.ground-detail-item span { font-size: 0.875rem; color: var(--grey); }

.ground-map { position: relative; }
.ground-map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-light);
}
.ground-map-frame iframe { width: 100%; height: 100%; display: block; }
.ground-map-badge {
  position: absolute;
  bottom: -14px; left: 24px;
  background: var(--navy);
  color: var(--off-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow);
}
.ground-map-badge svg { color: var(--teal); }

@media (max-width: 1024px) {
  .ground-grid { grid-template-columns: 1fr; gap: 48px; }
  .ground-map-frame { height: 340px; }
}
@media (max-width: 768px) {
  .ground-map-frame { height: 280px; }
  .ground-map-badge { font-size: 0.75rem; }
}

/* FIND OUR GROUND NAV TAB */
.nav-ground-tab {
  margin-left: 8px;
  padding: 7px 14px;
  border: 1.5px solid rgba(45,189,182,0.5);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-ground-tab:hover {
  background: rgba(45,189,182,0.1);
  border-color: var(--teal);
  color: var(--teal);
}
.nav-ground-tab svg { flex-shrink: 0; }

/* FOOTER */
.site-footer { background: var(--navy-dark); color: rgba(238,243,248,0.75); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; padding: 72px 24px 60px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-name { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--off-white); line-height: 1.1; }
.footer-logo-sub { display: block; font-size: 0.6rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(238,243,248,0.6); transition: all var(--transition); }
.social-link:hover { border-color: var(--teal); color: var(--teal); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--off-white); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; color: rgba(238,243,248,0.6); transition: color var(--transition); text-decoration: none; position: relative; display: inline-block; padding-bottom: 2px; }
.footer-col ul a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--teal); border-radius: 2px; transition: width var(--transition); }
.footer-col ul a:hover { color: var(--teal); }
.footer-col ul a:hover::after { width: 100%; }
.footer-col ul a.footer-active { color: var(--teal); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.875rem; color: rgba(238,243,248,0.6); margin-bottom: 4px; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-size: 0.8rem; color: rgba(238,243,248,0.4); }
.footer-credit a { color: var(--teal); }
.footer-credit a:hover { color: var(--teal-dark); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-block { order: 1; }
  .about-text { order: 2; }
  .about-img-accent { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 16px 24px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .navbar { position: fixed; }
  .hamburger { display: flex; }
  .news-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 40px; }
  .footer-bottom-inner { flex-direction: column; gap: 4px; text-align: center; }
  .hide-mobile { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-content { padding: 100px 24px 60px; }
  .nav-logo img.logo-svg {
    width: 90px !important;
    height: 50px !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
  }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
