/* ===================================================
   GSOpen Theme — Production Stylesheet
   Fun & Sporty golf tournament — Modern Fairway palette
   =================================================== */

:root {
  --green: #15603A;
  --green-light: #4CAF50;
  --green-bright: #66BB6A;
  --green-pale: #E8F5E9;
  --crimson: #A21E3A;
  --navy: #1B2D5B;
  --dark: #1a1a1a;
  --white: #FFFFFF;
  --gray-light: #F7F7F7;
  --gray: #888;
  --radius: 16px;
  --radius-pill: 28px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; min-height: 100%; }

/* WP Admin Bar offset */
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body > main,
body > .page-content,
body > .site-main,
.page-content { flex: 1; }
body.home, body.page-template-template-home { padding-top: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1200px) / 2)); height: 72px;
  background: transparent;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

/* Inner pages: nav starts solid (not transparent) since there's no dark hero behind it */
body:not(.home):not(.page-template-template-home) .nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
body:not(.home):not(.page-template-template-home) .nav .nav-logo { color: var(--dark); }
body:not(.home):not(.page-template-template-home) .nav .nav-links a { color: var(--dark); }
body:not(.home):not(.page-template-template-home) .nav .nav-links a:hover { color: var(--green); }
body:not(.home):not(.page-template-template-home) .nav .hamburger line { stroke: var(--dark); }

.nav-logo {
  text-decoration: none; display: flex; align-items: center;
  font-weight: 900; font-size: 20px; color: #fff; transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: var(--dark); }
.nav.scrolled .nav-logo-gs { color: var(--dark); }
.nav-logo-gs {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900; font-style: normal;
}
.nav-logo-open {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-style: italic;
  color: var(--green-bright);
}
.nav.scrolled .nav-logo-open { color: var(--green-light); }
body:not(.home):not(.page-template-template-home) .nav .nav-logo-open { color: var(--green-light); }
.nav-logo-img { max-height: 36px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 24px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links li { list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9);
  letter-spacing: 0.3px; transition: color 0.2s; text-decoration: none;
}
.nav.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover { color: var(--green-bright); }
.nav.scrolled .nav-links a:hover { color: var(--green); }

/* CTA in nav */
.nav-cta,
.nav-links .menu-item-cta > a {
  background: var(--green) !important; color: #fff !important;
  padding: 10px 24px !important; border-radius: 24px !important;
  font-size: 12px !important; font-weight: 800 !important;
  letter-spacing: 0.5px; transition: all 0.2s;
}
.nav-cta:hover,
.nav-links .menu-item-cta > a:hover {
  background: #1a7a4a !important; transform: scale(1.03);
}

/* Cart icon in nav */
.nav-cart {
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,0.9); transition: color 0.2s; margin-left: 12px;
  order: 3; flex-shrink: 0;
}
.nav-cart svg { position: relative; flex-shrink: 0; }
.nav.scrolled .nav-cart { color: var(--dark); }
body:not(.home):not(.page-template-template-home) .nav .nav-cart { color: var(--dark); }
.nav-cart:hover { color: var(--green); }
.nav-cart--empty { opacity: 0; pointer-events: none; width: 0; overflow: hidden; }
.nav-cart-count {
  background: var(--green-bright); color: var(--dark); font-size: 10px; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; margin-left: -8px; margin-top: -10px;
  flex-shrink: 0;
}
.nav-cart-total {
  font-size: 12px; font-weight: 700; margin-left: 6px;
  white-space: nowrap;
}
.nav.scrolled .nav-cart-total { color: var(--dark); }
body:not(.home):not(.page-template-template-home) .nav .nav-cart-total { color: var(--dark); }

.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger svg { width: 28px; height: 28px; }
.hamburger line { stroke: #fff; transition: stroke 0.3s; }
.nav.scrolled .hamburger line { stroke: var(--dark); }

/* ===================================================
   BUTTONS
   =================================================== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff;
  font-weight: 800; font-size: 14px; padding: 16px 40px;
  border-radius: var(--radius-pill); border: none; cursor: pointer;
  text-decoration: none; transition: all var(--transition);
  letter-spacing: 0.5px; text-align: center; line-height: 1;
}
.btn-primary:hover {
  background: var(--green-light); transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(21,96,58,0.4);
}

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); color: #fff;
  font-weight: 700; font-size: 14px; padding: 16px 40px;
  border-radius: var(--radius-pill); border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer; text-decoration: none; transition: all var(--transition);
  backdrop-filter: blur(4px); line-height: 1;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.2); }

/* Disabled button (registration closed/coming soon) */
.btn-disabled {
  opacity: 0.6; cursor: not-allowed; pointer-events: none;
  background: var(--gray) !important; border-color: var(--gray) !important;
  color: #fff !important;
}
.tier-cta.btn-disabled {
  background: var(--gray) !important; color: #fff !important;
}
.nav-cta.btn-disabled {
  background: var(--gray) !important;
}

/* Coming soon button — still clickable but different style */
.btn-coming-soon {
  background: var(--navy) !important; border-color: var(--navy) !important;
  color: #fff !important; cursor: pointer;
}
.nav-cta--soon {
  background: var(--navy) !important;
}

/* Product status labels */
.registration-status-label {
  font-size: 11px; font-weight: 700; color: var(--gray);
  text-transform: uppercase; letter-spacing: 1px;
}
.registration-status-soon { color: var(--navy); }

/* Registration notice banner */
.registration-notice {
  background: #FFF3CD; border-left: 4px solid #FFC107;
  padding: 16px 24px; margin-bottom: 0; text-align: center;
  font-size: 14px; font-weight: 600; color: #856404;
}
.registration-notice.notice-closed {
  background: #F8D7DA; border-left-color: #DC3545; color: #721C24;
}

/* On white-background sections */
.page-content .btn-secondary,
.section-pad .btn-secondary,
.section-footer .btn-secondary {
  color: var(--green); border-color: var(--green); background: transparent;
}
.page-content .btn-secondary:hover,
.section-pad .btn-secondary:hover,
.section-footer .btn-secondary:hover {
  background: var(--green-pale); color: var(--green);
}

/* ===================================================
   HERO (Full viewport — Home page)
   =================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background-color: var(--green);
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5,20,12,0.82) 0%, rgba(10,40,25,0.65) 45%, rgba(5,15,10,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 800px; padding: 0 24px;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; padding: 6px 20px; border-radius: 24px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-title {
  font-size: 90px; font-weight: 900; color: #fff;
  line-height: 1; margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  font-family: 'Playfair Display', Georgia, serif;
}
.hero-gs {
  font-weight: 900; font-style: normal; letter-spacing: -2px;
  color: #fff;
}
.hero-open {
  font-weight: 700; font-style: italic;
  color: var(--green-bright);
}
.hero-tagline {
  font-size: 20px; color: rgba(255,255,255,0.9); margin-bottom: 8px;
  font-weight: 500; text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-venue {
  font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.hero-date {
  font-size: 14px; color: var(--green-bright); margin-bottom: 28px;
  font-weight: 700; letter-spacing: 1.5px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Countdown */
.countdown { display: flex; gap: 12px; justify-content: center; margin-bottom: 32px; }
.countdown-item { text-align: center; }
.countdown-num {
  font-size: 40px; font-weight: 900; color: #fff; line-height: 1;
  background: var(--green); border-radius: 14px;
  padding: 14px 16px; min-width: 70px; display: block;
  box-shadow: 0 4px 16px rgba(21,96,58,0.3); position: relative;
}
.countdown-num::after {
  content: ''; position: absolute; top: 49%; left: 0; right: 0;
  height: 1px; background: rgba(0,0,0,0.1);
}
.countdown-label {
  font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase;
  letter-spacing: 2px; margin-top: 8px; display: block; font-weight: 700;
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.35); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; display: flex; flex-direction: column;
  align-items: center; gap: 4px; animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===================================================
   PAGE HERO (Inner pages — shorter)
   =================================================== */
.page-hero {
  min-height: 40vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 80px 24px 60px; color: #fff;
  background-color: var(--green);
  position: relative; overflow: hidden;
}
.page-hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
/* Overlay — gradient on top of image */
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, var(--green), var(--navy));
}
/* When image exists: overlay becomes semi-transparent */
.page-hero:has(.page-hero-bg-img) .page-hero-overlay {
  background: linear-gradient(135deg, rgba(21,96,58,0.55), rgba(27,45,91,0.5));
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-course-logo {
  max-height: 60px; width: auto; margin-top: 16px;
  filter: brightness(0) invert(1); position: relative;
  display: block; margin-left: auto; margin-right: auto;
}

.page-hero-badge {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; opacity: 0.8; margin-bottom: 8px;
  position: relative;
}
.page-hero-title, .page-hero h1 {
  font-size: 42px; font-weight: 900; position: relative;
}

/* ===================================================
   SECTIONS
   =================================================== */
.section-pad {
  padding: 80px 24px; max-width: 1100px; margin: 0 auto;
}
.section-label {
  font-size: 12px; color: var(--green); text-transform: uppercase;
  letter-spacing: 3px; font-weight: 800; margin-bottom: 8px;
}
.section-title {
  font-size: 36px; color: var(--dark); margin-bottom: 16px;
  font-weight: 900; letter-spacing: -0.5px;
}
.section-desc {
  font-size: 15px; color: var(--gray); max-width: 600px; line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.section-footer { margin-top: 32px; }

.content-wrap { max-width: 800px; }
/* Wider wrap for pages that need full grid (sign up, etc.) */
.page-content .content-wrap { max-width: 1000px; }
#sponsors .content-wrap,
#products .content-wrap { max-width: 100%; }

/* WYSIWYG content */
.wysiwyg-content { font-size: 16px; line-height: 1.8; color: #444; }
.wysiwyg-content p { margin-bottom: 16px; }
.wysiwyg-content strong { color: var(--dark); }
.wysiwyg-content a { color: var(--green); text-decoration: underline; }
.wysiwyg-content ul, .wysiwyg-content ol { margin: 0 0 16px 24px; list-style: disc; }
.wysiwyg-content ol { list-style: decimal; }

/* ===================================================
   ANNOUNCEMENT STRIP
   =================================================== */
.announce {
  background: var(--green); padding: 16px 24px; text-align: center;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.announce .icon { font-size: 18px; }
.announce-text { font-size: 14px; color: #fff; font-weight: 600; }
.announce-text strong { color: #fff; }

/* ===================================================
   TIMELINE (Winners)
   =================================================== */
.winners-section { padding: 0; }
.timeline-section { padding: 80px 24px; max-width: 1000px; margin: 0 auto; overflow-x: clip; }

.timeline { position: relative; padding-top: 16px; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(180deg, var(--green), var(--green-pale));
  transform: translateX(-50%); border-radius: 2px;
}

.timeline-item {
  display: grid; grid-template-columns: 1fr 64px 1fr;
  align-items: start; margin-bottom: 56px; position: relative;
}

/* Left card (odd items) */
.timeline-item:nth-child(odd) .timeline-card-wrap { grid-column: 1; }
.timeline-item:nth-child(odd) .timeline-dot-wrap { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-empty { grid-column: 3; }

/* Right card (even items) */
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-dot-wrap { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-card-wrap { grid-column: 3; }

.timeline-dot-wrap { display: flex; justify-content: center; padding-top: 24px; }
.timeline-dot {
  width: 52px; height: 52px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; z-index: 2; font-size: 14px; font-weight: 900;
  box-shadow: 0 0 0 6px var(--green-pale), 0 4px 16px rgba(21,96,58,0.2);
  flex-shrink: 0;
}

.timeline-card-wrap { padding: 0 12px; }
.timeline-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.timeline-card-image { height: 220px; overflow: hidden; background: linear-gradient(135deg, var(--green-light), var(--green)); }
.timeline-card-image img { width: 100%; height: 100%; object-fit: cover; }
.timeline-card-body { padding: 20px; }
.timeline-card-year {
  font-size: 11px; color: var(--green); font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px;
}
.timeline-card-title { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.timeline-card-venue { font-size: 13px; color: var(--gray); }

/* ===================================================
   PHOTOS GRID
   =================================================== */
.photos-section { background: var(--gray-light); padding: 80px 24px; }
.photos-inner { max-width: 1100px; margin: 0 auto; }
.photos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 36px; }
.photos-grid .photo-item {
  height: 220px; border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s;
}
.photos-grid .photo-item:hover { transform: scale(1.02); }
.photos-grid .photo-item:first-child { grid-column: span 2; grid-row: span 2; height: auto; }
.photos-grid .photo-item img { width: 100%; height: 100%; object-fit: cover; }

/* ===================================================
   SPONSOR SECTION
   =================================================== */
.sponsor-section { text-align: center; }
.sponsors-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 20px; margin-top: 32px;
}
.sponsor-card {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--gray-light); padding: 24px 40px;
  border-radius: var(--radius); margin-top: 24px;
  transition: all 0.2s; text-decoration: none;
}
.sponsor-card:hover { background: var(--green-pale); }
.sponsor-card-logo { max-height: 48px; width: auto; object-fit: contain; }
.sponsor-name { font-size: 16px; font-weight: 800; color: var(--dark); }

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  padding: 100px 24px; text-align: center; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(21,96,58,0.9), rgba(76,175,80,0.85));
}
.cta-content { position: relative; z-index: 2; }
.cta-heading { font-size: 40px; color: #fff; margin-bottom: 8px; font-weight: 900; }
.cta-text {
  font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-secondary { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-section .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ===================================================
   FOOTER
   =================================================== */
.footer { background: var(--dark); padding: 40px 24px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-left { display: flex; align-items: center; gap: 14px; }
.footer-charity-logo {
  display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.3);
  font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.footer-charity-logo img { height: auto; width: auto; max-height: 50px; max-width: 160px; object-fit: contain; }
.footer-charity-text { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.6; }
.footer-charity-text strong { color: rgba(255,255,255,0.55); }
.footer-right { text-align: right; }
.footer-right p { font-size: 11px; color: rgba(255,255,255,0.2); line-height: 1.8; }
.footer-sponsor { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 4px; }
.footer-sponsor a { color: var(--green-light); text-decoration: none; }

/* ===================================================
   RULES & INFO PAGE
   =================================================== */
.content-wrap-lg { max-width: 900px; }

/* Full-width background wrapper — content inside uses section-pad for centering */
.section-alt,
.section-full-bg { background: var(--gray-light); }

/* Info cards grid — scorecard style */
.rules-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; max-width: 900px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.rules-info-card {
  background: #fff; padding: 36px 28px;
  text-align: center; position: relative;
  transition: background var(--transition);
}
.rules-info-card:not(:last-child) { border-right: 1px solid #eee; }
.rules-info-card:hover { background: var(--green-pale); }
.rules-info-icon {
  font-size: 28px; margin-bottom: 12px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-pale); display: flex;
  align-items: center; justify-content: center;
  margin-left: auto; margin-right: auto;
}
.rules-info-card h3 {
  font-size: 11px; font-weight: 800; color: var(--green);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px;
}
.rules-info-card p { font-size: 15px; color: var(--dark); line-height: 1.5; margin: 0; font-weight: 600; }
.rules-info-card .text-small { font-size: 12px; color: var(--gray); margin-top: 4px; font-weight: 400; }

/* Agenda */
.agenda-list { margin-top: 16px; }
.agenda-item {
  display: flex; align-items: center; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid #eee;
}
.agenda-time {
  font-size: 15px; font-weight: 800; color: var(--green);
  min-width: 130px; white-space: nowrap;
  background: var(--green-pale); padding: 6px 14px;
  border-radius: 8px; text-align: center;
}
.agenda-activity { font-size: 15px; color: var(--dark); font-weight: 500; }

/* Bottom cards (accommodations + contact) */
.rules-bottom-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.rules-bottom-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column;
  justify-content: space-between; min-height: 240px;
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--green);
  transition: box-shadow var(--transition);
}
.rules-bottom-card:hover { box-shadow: var(--shadow-md); }
.rules-bottom-icon {
  font-size: 22px; margin-bottom: 14px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-pale); display: flex;
  align-items: center; justify-content: center;
}
.rules-bottom-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.rules-bottom-card p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 20px; }
.rules-bottom-card .btn-primary { align-self: flex-start; margin-top: auto; font-size: 13px; padding: 12px 28px; }
.rules-bottom-card .wysiwyg-content { margin-bottom: 20px; font-size: 14px; }

/* ===================================================
   COURSE PAGE
   =================================================== */

/* Course Slider */
.course-slider-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  max-width: 100%; margin: 0 auto;
}
.course-slider {
  display: flex; overflow: hidden;
}
.course-slide {
  flex: 0 0 100%; min-width: 100%;
  transition: opacity 0.4s ease;
}
.course-slide img {
  width: 100%; height: 500px; object-fit: cover; display: block;
}
.course-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.35); backdrop-filter: blur(4px);
  border: none; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%;
  color: #fff; display: flex;
  align-items: center; justify-content: center;
  transition: all var(--transition); z-index: 2;
}
.course-slider-btn svg { display: block; }
.course-slider-btn:hover { background: rgba(0,0,0,0.6); }
.course-slider-prev { left: 20px; }
.course-slider-next { right: 20px; }

/* Slider dots */
.course-slider-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.course-slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: all var(--transition); padding: 0;
}
.course-slider-dot.active,
.course-slider-dot:hover { background: #fff; transform: scale(1.2); }

.map-embed {
  position: relative; height: 450px; overflow: hidden;
  border-radius: var(--radius); margin-top: 24px;
  box-shadow: var(--shadow-md); border: 1px solid #eee;
  width: 100%;
}
.map-embed iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
@media (max-width: 768px) {
  .map-embed { height: 300px; }
}

/* ===================================================
   SIGN UP / SPONSOR TIERS
   =================================================== */
.sponsors-section { max-width: 1100px; margin: 0 auto; }

.tier-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 32px;
  align-items: stretch;
}
.tier-card {
  background: #fff; border-radius: var(--radius); padding: 32px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid #eee;
  text-align: center; transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
  position: relative;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier-card h3 { font-size: 15px; font-weight: 800; margin-bottom: 4px; color: var(--dark); text-transform: uppercase; letter-spacing: 0.5px; }
.tier-price { font-size: 36px; font-weight: 900; color: var(--green); margin-bottom: 20px; line-height: 1.2; }
.tier-benefits {
  list-style: none; margin: 0; padding: 0 0 24px; text-align: left;
  flex: 1;
}
.tier-benefits li {
  padding: 6px 0; font-size: 13px; color: #555;
  padding-left: 22px; position: relative; line-height: 1.5;
}
.tier-benefits li::before {
  content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700;
}
.tier-cta {
  display: block; background: var(--green); color: #fff;
  padding: 12px 20px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700; transition: all var(--transition);
  text-align: center; margin-top: auto;
}
.tier-cta:hover { background: var(--green-light); transform: translateY(-2px); }

/* Hide WooCommerce "View cart" link that appears after AJAX add-to-cart */
a.added_to_cart,
.woocommerce a.added_to_cart,
.woocommerce ul.products li.product a.added_to_cart,
.tier-card a.added_to_cart { display: none; }

/* Featured tier */
.tier-card--featured {
  background: var(--green); border-color: var(--green);
  box-shadow: 0 8px 32px rgba(21,96,58,0.25);
}
.tier-card--featured h3 { color: rgba(255,255,255,0.85); }
.tier-card--featured .tier-price { color: #fff; }
.tier-card--featured .tier-benefits li { color: rgba(255,255,255,0.8); }
.tier-card--featured .tier-benefits li::before { color: var(--green-bright); }
.tier-card--featured .tier-cta { background: #fff; color: var(--green); }
.tier-card--featured .tier-cta:hover { background: var(--green-pale); }
.tier-card--featured:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(21,96,58,0.3); }

.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green-bright); color: var(--dark); font-size: 10px;
  font-weight: 800; padding: 4px 14px; border-radius: 20px;
  letter-spacing: 0.5px; white-space: nowrap; text-transform: uppercase;
}

/* ===================================================
   WOOCOMMERCE OVERRIDES
   =================================================== */
.woocommerce ul.products {
  display: grid !important; grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important; margin: 0 !important; padding: 0 !important;
  max-width: 800px;
}
/* 2-column layout — larger cards for registration products */
.woocommerce .columns-2 ul.products,
.woocommerce ul.products.columns-2 {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 700px; margin: 0 auto !important; gap: 24px !important;
}
.woocommerce .columns-2 ul.products li.product,
.woocommerce ul.products.columns-2 li.product {
  padding: 0 !important; border-radius: 20px; text-align: center;
  border: 2px solid #eee; box-shadow: none;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.woocommerce .columns-2 ul.products li.product:hover {
  border-color: var(--green); transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(21,96,58,0.12);
}
.woocommerce .columns-2 ul.products li.product a img {
  height: 200px; background: var(--gray-light);
}
.woocommerce .columns-2 ul.products li.product .woocommerce-loop-product__title {
  font-size: 20px !important; font-weight: 800 !important;
  padding: 20px 20px 4px !important;
}
.woocommerce .columns-2 ul.products li.product .price {
  font-size: 28px !important; font-weight: 900 !important;
  padding: 0 20px 8px !important;
}
.woocommerce .columns-2 ul.products li.product .button {
  margin: 8px 20px 24px !important; padding: 14px 20px !important;
  font-size: 15px !important; font-weight: 800 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
  margin: 0 !important; padding: 0 !important; width: auto !important; float: none !important;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid #eee; transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.woocommerce ul.products li.product a { display: block; }
.woocommerce ul.products li.product a img {
  border-radius: 0; width: 100%; height: 180px; object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 15px !important; font-weight: 700 !important;
  padding: 12px 16px 4px !important; margin: 0 !important;
}
.woocommerce ul.products li.product .price {
  font-size: 20px !important; font-weight: 900 !important;
  color: var(--green) !important; padding: 0 16px 8px !important;
  display: block !important;
}
.woocommerce ul.products li.product .button {
  background: var(--green) !important; color: #fff !important;
  border-radius: var(--radius-pill) !important; padding: 10px 20px !important;
  font-size: 13px !important; font-weight: 700 !important;
  margin: auto 16px 16px !important; border: none !important;
  transition: all var(--transition) !important; text-align: center !important;
  display: block !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--green-light) !important;
}
/* Generic WC buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--green) !important; color: #fff !important;
  border-radius: var(--radius-pill) !important; padding: 12px 28px !important;
  font-size: 14px !important; font-weight: 700 !important;
  border: none !important; transition: all var(--transition) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--green-light) !important;
}

/* Single Product Page */
.woocommerce div.product {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start;
}
.woocommerce div.product div.images {
  border-radius: var(--radius); overflow: hidden;
  background: var(--gray-light);
}
.woocommerce div.product div.images img {
  width: 100%; height: auto; object-fit: cover;
}
.woocommerce div.product div.summary {
  padding: 20px 0;
}
.woocommerce div.product .product_title {
  font-size: 32px; font-weight: 900; color: var(--dark); margin-bottom: 8px;
}
.woocommerce div.product p.price {
  font-size: 28px !important; font-weight: 900 !important;
  color: var(--green) !important; margin-bottom: 16px !important;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 24px;
}
.woocommerce div.product form.cart {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.woocommerce div.product form.cart .quantity input {
  width: 60px; text-align: center; border: 1px solid #ddd;
  border-radius: 8px; padding: 10px; font-size: 16px; font-weight: 700;
}
.woocommerce div.product form.cart button.single_add_to_cart_button {
  flex: 1;
}
.woocommerce .woocommerce-message {
  background: var(--green-pale); border-left: 4px solid var(--green);
  padding: 14px 20px; border-radius: 8px; margin-bottom: 24px;
  font-size: 14px; color: var(--dark);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.woocommerce .woocommerce-message a.button {
  background: var(--green); color: #fff;
  border-radius: var(--radius-pill); padding: 8px 20px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  margin: 0; float: none;
}
.woocommerce .woocommerce-message a.button:hover {
  background: var(--green-light);
}
.woocommerce-breadcrumb { display: none; }

@media (max-width: 768px) {
  .woocommerce div.product { grid-template-columns: 1fr; gap: 24px; }
}

/* Cart & Checkout */
.woocommerce-cart .wc-block-cart,
.woocommerce-checkout .wc-block-checkout {
  max-width: 1000px; margin: 0 auto;
}

/* Proceed to Checkout button */
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.woocommerce .checkout-button,
.wc-block-cart__submit-container .wc-block-components-button {
  background: var(--green) !important; color: #fff !important;
  border-radius: var(--radius-pill) !important; padding: 16px 32px !important;
  font-size: 15px !important; font-weight: 700 !important;
  border: none !important; width: 100% !important;
  transition: all var(--transition) !important; cursor: pointer !important;
  text-align: center !important; display: block !important;
}
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.woocommerce .checkout-button:hover,
.wc-block-cart__submit-container .wc-block-components-button:hover {
  background: var(--green-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(21,96,58,0.3) !important;
}

/* Cart totals box */

/* Block-based cart/checkout styling */
.wc-block-components-product-name { color: var(--dark); font-weight: 700; }
.wc-block-components-product-name:hover { color: var(--green); }
.wc-block-formatted-money-amount { font-weight: 800; color: var(--dark); }
.wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
  color: var(--green); font-size: 20px !important;
}

/* Quantity buttons */
.wc-block-components-quantity-selector {
  border-radius: 8px !important; overflow: hidden;
}

/* Checkout form */
.wc-block-components-text-input input,
.wc-block-components-select .wc-block-components-select__input {
  border-radius: 8px !important; border: 1px solid #ddd !important;
  transition: border-color var(--transition) !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-select .wc-block-components-select__input:focus {
  border-color: var(--green) !important; outline: none !important;
  box-shadow: 0 0 0 2px rgba(21,96,58,0.1) !important;
}

/* ── Empty Cart Page ── */

/* Hide the sad face icon (CSS pseudo-element from .with-empty-cart-icon) */
.with-empty-cart-icon::before,
.with-empty-cart-icon::after {
  display: none;
}
.wc-block-cart__empty-cart__title.with-empty-cart-icon {
  padding-top: 0;
  margin-top: 40px;
}

/* Hide "New in store" products section */
.wp-block-woocommerce-empty-cart-block .wp-block-heading:not(.wc-block-cart__empty-cart__title),
.wp-block-woocommerce-empty-cart-block .wc-block-grid,
.wp-block-woocommerce-empty-cart-block .wp-block-product-new {
  display: none;
}

/* Style the empty cart container */
.wp-block-woocommerce-empty-cart-block {
  text-align: center;
  padding: 40px 24px 60px;
  max-width: 500px;
  margin: 0 auto;
}

/* "Your cart is currently empty!" title */
.wc-block-cart__empty-cart__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}

/* Add a golf icon before the title */
.wc-block-cart__empty-cart__title::before {
  content: '⛳';
  display: block;
  font-size: 48px;
  margin-bottom: 16px;
}

/* Style the "Browse store" / return button */
.wp-block-woocommerce-empty-cart-block .wp-block-button .wp-block-button__link,
.woocommerce .return-to-shop a {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  transition: all var(--transition);
  text-decoration: none;
}
.wp-block-woocommerce-empty-cart-block .wp-block-button .wp-block-button__link:hover,
.woocommerce .return-to-shop a:hover {
  background: var(--green-light);
}

/* Checkout actions row */
.wc-block-checkout__actions .wc-block-checkout__actions_row {
  display: flex; flex-direction: row; align-items: center;
  gap: 16px; justify-content: space-between; margin-top: 24px;
}
.wc-block-components-checkout-place-order-button {
  background: var(--green); color: #fff;
  border-radius: var(--radius-pill); padding: 16px 48px;
  font-size: 16px; font-weight: 700; border: none;
  cursor: pointer; transition: all var(--transition);
}
.wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text {
  display: flex; align-items: center; justify-content: center;
}
.wc-block-components-checkout-place-order-button:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(21,96,58,0.3);
}
.wc-block-components-checkout-return-to-cart-button {
  color: var(--gray); font-size: 14px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
  transition: color var(--transition);
}
.wc-block-components-checkout-return-to-cart-button:hover { color: var(--green); }
.wc-block-components-checkout-return-to-cart-button svg { width: 18px; height: 18px; fill: currentColor; }

/* Checkout total price */
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: var(--green); font-weight: 900;
}

/* Payment error notice */
.wc-block-components-notice-banner.is-error {
  border-radius: var(--radius); border-left: 4px solid #dc3545;
  border-top: none; border-right: none; border-bottom: none;
}

/* Classic cart/checkout fallback */
.woocommerce table.cart td, .woocommerce table.cart th { border-color: #eee; }
.woocommerce #payment { border-radius: var(--radius); background: var(--gray-light); }
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="url"],
.woocommerce select,
.woocommerce textarea {
  border: 1px solid #ddd !important; border-radius: 8px !important;
  padding: 10px 14px !important; transition: border-color var(--transition) !important;
}
.woocommerce input:focus,
.woocommerce select:focus,
.woocommerce textarea:focus { border-color: var(--green) !important; outline: none !important; }

/* ===================================================
   ENTRY CONTENT (Generic pages)
   =================================================== */
.entry-content { font-size: 16px; line-height: 1.8; color: var(--dark); }
.entry-content h1 { font-size: 36px; font-weight: 900; margin-bottom: 16px; }
.entry-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.entry-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.entry-content p { margin-bottom: 18px; }
.entry-content ul, .entry-content ol { margin: 0 0 18px 24px; list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content a { color: var(--green); text-decoration: underline; }

/* ===================================================
   LIGHTBOX
   =================================================== */
#gsopen-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
#gsopen-lightbox.active { opacity: 1; visibility: visible; }
#gsopen-lightbox .lightbox-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}
#gsopen-lightbox .lightbox-img {
  position: relative; z-index: 1; max-width: 90vw; max-height: 85vh;
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain; cursor: zoom-out;
}

/* ===================================================
   HERO TEXT ENTRANCE (CSS-only, no JS)
   Only targets text INSIDE .hero-content / .page-hero-content.
   NEVER targets hero backgrounds or images.
   =================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-content > *:nth-child(5) { animation-delay: 0.4s; }
.hero-content > *:nth-child(6) { animation-delay: 0.45s; }
.hero-content > *:nth-child(7) { animation-delay: 0.5s; }

.page-hero-content {
  animation: fadeUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.1s both;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content > *, .page-hero-content { animation: none; }
}

/* ===================================================
   SCROLL ANIMATIONS
   Uses IntersectionObserver in JS — no opacity:0 in CSS.
   JS adds these classes only to off-screen elements.
   =================================================== */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
[data-animate="up"] { transform: translateY(40px); }
[data-animate="left"] { transform: translateX(-40px); }
[data-animate="right"] { transform: translateX(40px); }
[data-animate="scale"] { transform: scale(0.92); }

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for grid children */
[data-animate-delay="0"] { transition-delay: 0s; }
[data-animate-delay="1"] { transition-delay: 0.12s; }
[data-animate-delay="2"] { transition-delay: 0.24s; }
[data-animate-delay="3"] { transition-delay: 0.36s; }
[data-animate-delay="4"] { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
}

/* ===================================================
   RESPONSIVE — Tablet (1024px)
   =================================================== */
@media (max-width: 1024px) {
  .rules-info-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-bottom-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tier-card--featured { transform: scale(1); }
  .photos-grid { grid-template-columns: repeat(2, 1fr); }
  .photos-grid .photo-item:first-child { grid-column: span 2; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
}

/* ===================================================
   ADD-TO-CART TOAST NOTIFICATION
   =================================================== */
.gsopen-toast {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 9999;
  background: var(--green);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.gsopen-toast.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gsopen-toast a {
  color: #fff;
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 700;
}

/* ===================================================
   RESPONSIVE — Mobile (768px)
   =================================================== */
@media (max-width: 768px) {
  body { padding-top: 64px; }
  body.home, body.page-template-template-home { padding-top: 0; }

  .nav { height: 64px; padding: 0 20px !important; flex-wrap: nowrap; }
  .hamburger { display: block; order: 4; margin-left: 12px; }
  .nav-cart-total { display: none; }
  .nav-cart { order: 3; margin-left: auto; flex-shrink: 0; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px); padding: 20px 24px; gap: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links.open a { color: var(--dark) !important; font-size: 15px; }
  .nav-links.open .menu-item-cta > a { display: block; text-align: center; padding: 14px !important; color: #fff !important; }

  .hero-title { font-size: 60px; }
  .hero-tagline { font-size: 16px; }
  .countdown { gap: 8px; }
  .countdown-num { font-size: 28px; padding: 10px 12px; min-width: 52px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; max-width: 280px; text-align: center; }

  .announce { flex-direction: column; gap: 6px; }
  .section-pad { padding: 60px 20px; }
  .section-title { font-size: 28px; }
  .page-hero { min-height: 30vh; padding: 60px 20px 40px; }
  .page-hero-title, .page-hero h1 { font-size: 32px; }

  /* Mobile timeline */
  .timeline::before { left: 28px; transform: none; }
  .timeline-item {
    display: grid; grid-template-columns: 56px 1fr;
    gap: 0 12px; margin-bottom: 40px;
  }
  .timeline-item:nth-child(odd) .timeline-card-wrap,
  .timeline-item:nth-child(even) .timeline-card-wrap { grid-column: 2; grid-row: 1; padding: 0; }
  .timeline-item:nth-child(odd) .timeline-dot-wrap,
  .timeline-item:nth-child(even) .timeline-dot-wrap { grid-column: 1; grid-row: 1; padding-top: 0; justify-content: center; }
  .timeline-empty { display: none; }
  .timeline-dot { width: 44px; height: 44px; font-size: 13px; }

  .photos-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .photos-grid .photo-item { height: 150px; }
  .photos-grid .photo-item:first-child { grid-column: span 2; height: 200px; }
  .sponsor-card { padding: 16px 24px; }

  .cta-heading { font-size: 28px; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .rules-info-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier-card--featured { transform: scale(1); }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .course-slide img { height: 260px; }
  .course-slider-btn { width: 36px; height: 36px; }
  .course-slider-btn svg { width: 16px; height: 16px; }
  .course-slider-prev { left: 10px; }
  .course-slider-next { right: 10px; }
  .course-slider-dots { bottom: 12px; }
  .course-slider-dot { width: 8px; height: 8px; }
  .agenda-item { flex-direction: column; gap: 8px; align-items: center; text-align: center; }
  .agenda-time { min-width: auto; }

  .footer-inner { flex-direction: column; text-align: center; gap: 28px; }
  .footer-left { flex-direction: column; }
  .footer-right { text-align: center; }
}

/* ===================================================
   RESPONSIVE — Small (400px)
   =================================================== */
@media (max-width: 400px) {
  .hero-title { font-size: 48px; }
  .countdown-num { font-size: 22px; min-width: 44px; padding: 8px 8px; }
  .section-title { font-size: 24px; }
  .page-hero-title, .page-hero h1 { font-size: 26px; }
  .photos-grid { grid-template-columns: 1fr; }
  .photos-grid .photo-item:first-child { grid-column: span 1; }
}
