/* ============================================================
   The Pheasant Invitational — El Macero Country Club
   Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; overflow-x: hidden; }

body {
  font-family: 'Raleway', system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

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


/* ---------- Color Palette ---------- */
:root {
  --green-dark: #1a3c2a;
  --green-mid: #2d5a3f;
  --green-light: #3a7d5c;
  --green-pale: #e8f0eb;
  --gold: #b8963e;
  --gold-light: #d4b668;
  --gold-pale: #faf5e8;
  --cream: #faf9f6;
  --charcoal: #1a1a1a;
  --gray-dark: #4a4a4a;
  --gray-mid: #777;
  --gray-light: #bbb;
  --gray-rule: #e0ddd7;
  --white: #ffffff;
  --danger: #b91c1c;
  --success: #166534;
}


/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: url('mahogany-nav.jpg') center/cover no-repeat;
  border-bottom: 1px solid rgba(140,100,50,0.3);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5), inset 0 -1px 0 rgba(255,220,160,0.08);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 8px 28px rgba(0,0,0,0.6), inset 0 -1px 0 rgba(255,220,160,0.08);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  border-radius: 999px;
  padding: 8px 20px;
  font-weight: 600;
  margin-left: 8px;
}

/* Tournament-week nav items — hidden until event week */
.tournament-nav-item { display: none; }
.nav-link-active {
  color: #fff !important;
  background: rgba(255,255,255,0.12);
}

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(155deg, var(--green-dark) 0%, #0f2a1a 40%, #0a1f14 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,150,62,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(58,125,92,0.12) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="none" width="100" height="100"/><circle fill="rgba(255,255,255,0.015)" cx="50" cy="50" r="1"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px 40px;
  max-width: 700px;
}

.hero-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.hero-date {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  margin-bottom: 8px;
}

.hero-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 8px;
}

.hero-est-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.hero-est-line::before,
.hero-est-line::after {
  content: '';
  width: 60px;
  height: 1px;
}

.hero-est-line::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-est-line::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-est {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(212,182,104,0.6);
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 65th Anniversary */
.hero-anniversary {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 7vw, 56px);
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 3px;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.hero-anniversary .ordinal {
  font-size: 0.45em;
  vertical-align: super;
  margin-right: 2px;
  font-weight: 700;
}

.hero-anniversary .annual-text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.3em;
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  display: block;
  color: rgba(212,182,104,0.6);
  margin-top: 4px;
}

.hero-anniversary-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.hero-anniversary-line::before,
.hero-anniversary-line::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-anniversary-line::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-anniversary-line::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}


/* Subtle gold shimmer on anniversary text */
@keyframes goldShimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; text-shadow: 0 0 20px rgba(184,150,62,0.3); }
}

.hero-anniversary {
  animation: goldShimmer 4s ease-in-out infinite;
}


/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184,150,62,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}


/* ---------- Section Shared ---------- */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-mid);
}


/* ---------- About ---------- */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--gray-rule);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.about-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.about-card p {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.7;
}


/* ---------- Schedule ---------- */
.schedule {
  background: var(--white);
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 28px;
  background: var(--cream);
  border: 2px solid var(--gray-rule);
  border-radius: 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-dark);
  cursor: pointer;
  transition: all 0.25s;
}

.tab-btn .tab-date {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-mid);
}

.tab-btn:hover {
  border-color: var(--green-light);
  color: var(--green-dark);
}

.tab-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.tab-btn.active .tab-date {
  color: rgba(255,255,255,0.7);
}

.schedule-day {
  display: none;
}

.schedule-day.active {
  display: block;
  animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.day-title {
  font-size: 22px;
  color: var(--green-dark);
  margin-bottom: 28px;
  text-align: center;
}

/* Timeline */
.timeline {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 88px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gray-rule);
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 83px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-light);
  z-index: 1;
}

.timeline-item.match::before {
  border-color: var(--green-light);
  background: var(--green-pale);
}

.timeline-item.highlight::before {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.timeline-item.social::before {
  border-color: var(--gray-mid);
  background: var(--cream);
}

.timeline-time {
  flex: 0 0 72px;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-mid);
  padding-top: 2px;
}

.timeline-event {
  flex: 1;
  padding-left: 24px;
}

.timeline-event h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.timeline-event p {
  font-size: 14px;
  color: var(--gray-mid);
}


/* ---------- Format ---------- */
.format {
  background: var(--cream);
}

.format-block {
  max-width: 800px;
  margin: 0 auto 48px;
}

.format-block:last-child {
  margin-bottom: 0;
}

.format-block h3 {
  font-size: 24px;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-rule);
}

.format-block p {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.format-note {
  font-size: 14px;
  color: var(--gray-mid);
  font-style: italic;
}

/* Scoring Grid */
.scoring-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.scoring-item {
  background: var(--white);
  border: 1px solid var(--gray-rule);
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
}

.scoring-value {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.scoring-label {
  font-size: 12px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Elimination Bracket */
.elimination-bracket {
  margin: 24px 0;
}

.bracket-round {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-left: 3px solid var(--green-light);
  margin-bottom: 8px;
  border-radius: 0 10px 10px 0;
}

.bracket-round.final {
  border-left-color: var(--gold);
  background: var(--gold-pale);
}

.bracket-label {
  flex: 0 0 72px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
}

.bracket-detail {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.5;
}

/* Optional Competitions */
.optional-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.optional-card {
  background: var(--white);
  border: 1px solid var(--gray-rule);
  border-radius: 14px;
  padding: 24px;
}

.optional-card--wide {
  grid-column: 1 / -1;
}

.optional-card h4 {
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.optional-meta {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.optional-card p:last-child {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.6;
}


/* ---------- Registration ---------- */
.registration {
  background: var(--white);
}

/* Countdown Timer */
/* Dual Countdown Container */
.countdown-dual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 56px;
}

.countdown-box {
  background: var(--green-dark);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  color: #fff;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.countdown-box .btn {
  align-self: center;
}

.countdown-flex-gap {
  flex: 1;
  min-height: 20px;
}

.countdown-refresh-prompt {
  text-align: center;
  margin-top: 16px;
}

.btn-refresh {
  background: var(--gold);
  color: var(--green-dark);
  border: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-refresh:hover {
  background: var(--gold-light);
}

.countdown-refresh-note {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  font-style: italic;
}

.countdown-sponsor { border-top: 3px solid var(--gold); }
.countdown-open { border-top: 3px solid var(--green-light); }

.countdown-badge {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.countdown-sponsor .countdown-badge {
  background: rgba(184,150,62,0.2);
  color: var(--gold-light);
}

.countdown-open .countdown-badge {
  background: rgba(58,125,92,0.2);
  color: var(--green-light);
}

.countdown-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  font-style: italic;
}

.countdown-box h3 {
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  min-width: 68px;
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 12px 8px;
}

.countdown-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  font-weight: 500;
}

.countdown-sep {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  padding-top: 12px;
  line-height: 1;
}

.countdown-date {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  letter-spacing: 0.5px;
}


.countdown-live {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  padding: 24px;
}

/* Registration Checklist */
.checklist-box {
  max-width: 600px;
  margin: 0 auto 24px;
  background: var(--green-pale);
  border: 1px solid rgba(45,90,63,0.15);
  border-radius: 14px;
  padding: 24px 28px;
}

.checklist-box h3 {
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 4px;
  text-align: center;
}

.checklist-intro {
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 12px;
  text-align: center;
}

.checklist-handicap-notice {
  font-size: 13px;
  color: #5a4a1a;
  background: rgba(212,182,104,0.12);
  border: 1px solid rgba(212,182,104,0.4);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.checklist-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--green-dark);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(45,90,63,0.15);
}

.reg-checklist {
  list-style: none;
}

.reg-checklist li {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.5;
  padding: 3px 0 3px 16px;
  position: relative;
}

.reg-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
}

.checklist-note {
  font-size: 12px;
  color: var(--gray-mid);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
}

/* Key Dates */
.reg-dates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.reg-date-card {
  background: var(--cream);
  border: 1px solid var(--gray-rule);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.reg-date-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.reg-date-card h4 {
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.reg-date-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.reg-date-card p:last-child {
  font-size: 13px;
  color: var(--gray-mid);
}

/* Registration Process */
.reg-process {
  max-width: 700px;
  margin: 0 auto 56px;
}

.reg-process h3 {
  font-size: 24px;
  color: var(--green-dark);
  margin-bottom: 24px;
  text-align: center;
}

.process-steps {
  position: relative;
}

.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.step-number {
  flex: 0 0 44px;
  height: 44px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.step-content h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  margin-bottom: 56px;
}

.pricing h3 {
  font-size: 24px;
  color: var(--green-dark);
  margin-bottom: 4px;
  text-align: center;
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--gray-mid);
  text-align: center;
  margin-bottom: 28px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--cream);
  border: 1px solid var(--gray-rule);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.pricing-card h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.price-detail {
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

.price-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

/* Optional Pricing */
.optional-pricing {
  max-width: 560px;
  margin: 0 auto 24px;
}

.optional-pricing h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-dark);
  margin-bottom: 12px;
  text-align: center;
}

.optional-pricing-items {
  background: var(--cream);
  border: 1px solid var(--gray-rule);
  border-radius: 12px;
  overflow: hidden;
}

.optional-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-rule);
}

.optional-price-item:last-child {
  border-bottom: none;
}

.optional-price {
  font-weight: 700;
  color: var(--green-dark);
}

.deposit-notice {
  text-align: center;
  font-size: 14px;
  color: var(--gray-mid);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
}

/* Registration Form */
.reg-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--gray-rule);
  border-radius: 16px;
  padding: 36px;
}

.reg-form-container h3 {
  font-size: 24px;
  color: var(--green-dark);
  margin-bottom: 8px;
  text-align: center;
}

.form-status {
  text-align: center;
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  padding: 20px;
  background: var(--gold-pale);
  border: 1px solid rgba(184,150,62,0.25);
  border-radius: 12px;
  margin-top: 16px;
}

/* Form Styles */
.reg-form fieldset {
  border: none;
  margin-bottom: 28px;
}

.reg-form legend {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-rule);
  width: 100%;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dark);
  margin-bottom: 6px;
}

.reg-form input[type="text"],
.reg-form input[type="email"],
.reg-form input[type="tel"],
.reg-form select {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid var(--gray-rule);
  border-radius: 10px;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.reg-form input:focus,
.reg-form select:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(58,125,92,0.12);
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-dark);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--green-dark);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 32px 16px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--success);
  color: #fff;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success h4 {
  font-size: 22px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* Registration Type Tabs */
.reg-type-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-rule);
}

.reg-type-tab {
  flex: 1;
  padding: 14px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--white);
  color: var(--gray-dark);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.reg-type-tab:first-child {
  border-right: 1px solid var(--gray-rule);
}

.reg-type-tab.active {
  background: var(--green-dark);
  color: #fff;
}

.reg-type-tab.tab-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.reg-type-tab:hover:not(.active):not(.tab-disabled) {
  background: var(--green-pale);
}

/* Sponsor-Only Fields */
.sponsor-only-fields {
  border: 1px solid rgba(184,150,62,0.3) !important;
  background: var(--gold-pale);
  border-radius: 12px;
  padding: 24px !important;
  margin-bottom: 28px;
}

.sponsor-notice {
  background: rgba(184,150,62,0.1);
  border: 1px solid rgba(184,150,62,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 8px;
}

.sponsor-notice p {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.6;
  margin: 0;
}

/* File Upload */
.file-upload-wrapper {
  position: relative;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.file-upload-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px dashed var(--gray-rule);
  border-radius: 10px;
  background: var(--white);
}

.file-upload-text {
  flex: 1;
  font-size: 14px;
  color: var(--gray-mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-file-choose {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-file-choose:hover {
  background: var(--green-mid);
}

.field-hint {
  font-size: 12px;
  color: var(--gray-mid);
  margin-top: 6px;
}

/* Logo Preview */
.logo-preview {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-preview img {
  max-width: 120px;
  max-height: 80px;
  border: 1px solid var(--gray-rule);
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
}

.btn-logo-remove {
  font-size: 13px;
  color: var(--danger);
  background: none;
  border: 1px solid var(--danger);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-logo-remove:hover {
  background: var(--danger);
  color: #fff;
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-left: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* Form Error */
.form-error {
  text-align: center;
  padding: 32px 16px;
}

.error-icon {
  width: 64px;
  height: 64px;
  background: var(--danger);
  color: #fff;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-error h4 {
  font-size: 22px;
  color: var(--danger);
  margin-bottom: 8px;
}

.form-error p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Inline Validation Warning */
.field-warning {
  font-size: 13px;
  color: var(--danger);
  background: rgba(185,28,28,0.06);
  border: 1px solid rgba(185,28,28,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 8px;
  line-height: 1.5;
}

.field-info {
  font-size: 13px;
  color: #5a4a1a;
  background: rgba(212,182,104,0.12);
  border: 1px solid rgba(212,182,104,0.4);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 8px;
  line-height: 1.5;
}

/* Dual status messages */
.form-status-sponsor,
.form-status-open {
  margin-top: 8px;
}


/* ---------- Champions ---------- */
.champions {
  background: url('mahogany-bg.jpg') center/cover no-repeat;
  color: #fff;
}

.champions .section-header h2 {
  color: #fff;
}

.champions .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.champions-list {
  max-width: 640px;
  margin: 0 auto;
}

.champion-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}

.champion-row:hover {
  background: rgba(255,255,255,0.04);
}

.champion-row.defending {
  background: rgba(184,150,62,0.15);
  border: 1px solid rgba(184,150,62,0.3);
  border-radius: 10px;
  margin-bottom: 8px;
  padding: 16px;
}

.champion-row.co-champ {
  background: rgba(255,255,255,0.02);
}

.champion-year {
  flex: 0 0 56px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
}

.champion-names {
  flex: 1;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}

.champion-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  background: rgba(184,150,62,0.15);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(184,150,62,0.3);
  white-space: nowrap;
}

.champions-footnote {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 24px;
}


/* ---------- Rules ---------- */
.rules {
  background: var(--cream);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.rule-card {
  background: var(--white);
  border: 1px solid var(--gray-rule);
  border-radius: 14px;
  padding: 28px 24px;
}

.rule-card--wide {
  grid-column: 1 / -1;
}

.rule-card h4 {
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.rule-card p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.7;
}


/* ---------- Registration CTA (index page) ---------- */
.reg-cta-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--green-dark);
  border-radius: 16px;
  padding: 48px 36px;
}

.reg-cta-box h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
}

.reg-cta-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  line-height: 1.6;
}

.btn-register-cta {
  font-size: 15px;
  padding: 16px 32px;
  letter-spacing: 1px;
}

/* Registration split buttons */
.hero-reg-btns,
.cta-reg-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-reg-btns {
  margin-top: 0;
}

/* Active state — sponsor (gold) */
.btn-reg-sponsor {
  background: var(--gold);
  color: var(--green-dark);
  border: 2px solid var(--gold);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.btn-reg-sponsor:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* Active state — open (green) */
.btn-reg-open {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.btn-reg-open:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* Coming-soon muted state (on dark bg) */
.btn-reg-soon {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

/* On light backgrounds (reg-cta-box is dark so these are fine, but hero is also dark) */


/* ---------- Registration Page ---------- */
.reg-hero {
  background: linear-gradient(155deg, var(--green-dark) 0%, #0f2a1a 40%, #0a1f14 100%);
  padding: 120px 24px 60px;
  text-align: center;
}

.reg-hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.reg-hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.reg-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.reg-hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

.reg-page {
  background: var(--cream);
}

/* Registration closed card */
.reg-closed-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border: 1px solid var(--gray-rule);
  border-radius: 16px;
}

.reg-closed-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.reg-closed-card h2 {
  font-size: 28px;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.reg-closed-dates {
  margin-bottom: 28px;
}

.reg-closed-dates .form-status {
  margin-top: 12px;
}

/* Before You Register prep card */
.prep-card {
  max-width: 860px;
  margin: 0 auto 36px;
  background: #eef3ee;
  border-radius: 16px;
  padding: 40px 40px 32px;
  text-align: center;
}

.prep-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.prep-card-sub {
  font-size: 15px;
  color: var(--gray-dark);
  margin-bottom: 12px;
}

.prep-card-handicap-notice {
  font-size: 13px;
  color: #5a4a1a;
  background: rgba(212,182,104,0.15);
  border: 1px solid rgba(212,182,104,0.4);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.prep-card-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.prep-col h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(26,58,42,0.2);
}

.prep-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prep-col ul li {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.6;
  padding: 4px 0 4px 18px;
  position: relative;
}

.prep-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-dark);
}

.prep-card-note {
  font-size: 13px;
  color: var(--gray-dark);
  margin: 0;
}

/* Registration form area on register page */
.reg-page-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-rule);
  border-radius: 16px;
  padding: 36px;
}


/* ---------- Footer ---------- */
.footer {
  background: url('mahogany-bg.jpg') center/cover no-repeat;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-brand h3 {
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}


/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .scoring-grid { grid-template-columns: repeat(2, 1fr); }
  .optional-grid { grid-template-columns: 1fr; }
  .countdown-dual { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 56px; }
  .countdown-value { font-size: 36px; min-width: 56px; }
  .countdown-sep { font-size: 28px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .reg-dates { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 56px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 32px; }
  .rules-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; gap: 20px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 28px; }

  /* Mobile Nav */
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: url('mahogany-bg.jpg') center/cover no-repeat;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(140,100,50,0.3);
    transform: translateY(calc(-100% - 68px));
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0s 0.35s;
  }

  .nav-menu.open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.35s ease, visibility 0s 0s;
  }

  .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
  }

  .nav-cta {
    text-align: center;
    margin-left: 0;
    margin-top: 8px;
  }

  /* Mobile Timeline */
  .timeline::before { left: 12px; }
  .timeline-item::before { left: 7px; }
  .timeline-time { flex: 0 0 auto; font-size: 13px; min-width: 0; }
  .timeline-item { flex-direction: column; gap: 4px; padding-left: 32px; }
  .timeline-event { padding-left: 0; }

  .schedule-tabs { gap: 4px; }
  .tab-btn { padding: 10px 16px; font-size: 14px; }

  .reg-form-container { padding: 24px 20px; }
  .bracket-round { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 42px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { padding: 12px 28px; font-size: 13px; }
  .scoring-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-anniversary-line::before,
  .hero-anniversary-line::after { width: 36px; }

  /* Countdown — prevent overflow on small phones */
  .countdown-dual { max-width: 100%; padding: 0; }
  .countdown-box { padding: 20px 14px; }
  .countdown-box h3 { font-size: 15px; margin-bottom: 14px; }
  .countdown-timer { gap: 4px; }
  .countdown-value { font-size: 26px; min-width: 42px; padding: 8px 4px; border-radius: 8px; }
  .countdown-sep { font-size: 20px; padding-top: 8px; }
  .countdown-label { font-size: 10px; }
  .countdown-note { font-size: 11px; }
  .countdown-date { font-size: 12px; }

  /* Registration buttons — stack on very small screens */
  .hero-reg-btns, .cta-reg-btns { flex-direction: column; align-items: center; }
  .btn-reg-sponsor, .btn-reg-open { width: 100%; max-width: 300px; text-align: center; font-size: 11px; letter-spacing: 0; padding: 12px 16px; }

  /* Pricing cards — tighten padding */
  .pricing-card { padding: 24px 20px; }
  .price { font-size: 36px; }

  /* Champions list */
  .champion-row { flex-wrap: wrap; gap: 4px; }
  .champion-badge { font-size: 10px; }
}


/* ── WOW FEATURES ──────────────────────────────────────── */

/* Hero particle canvas */
#heroParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Hero entrance cascade */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 0.15s;
}
.hero-anniversary-line {
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 0.4s;
}
.hero-anniversary-line.js-controlled {
  animation: none;
}
.hero-title {
  opacity: 0;
  background: linear-gradient(
    112deg,
    #fff 0%,
    #fff 48%,
    rgba(255,255,60,1)  49.2%,
    rgba(255,255,210,1) 50%,
    rgba(255,255,60,1)  50.8%,
    #fff 52%,
    #fff 100%
  );
  background-size: 300% auto;
  background-position: 100% center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroFadeUp 0.7s ease 0.65s forwards;
  transition: background-position 3.8s ease;
}
.hero-title.shimmer-once {
  background-position: 0% center;
}
.hero-divider {
  opacity: 0;
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 0.9s;
}
.hero-date {
  opacity: 0;
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 1.05s;
}
.hero-tagline {
  opacity: 0;
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 1.15s;
}
.hero-est-line {
  opacity: 0;
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 1.25s;
}
.hero-actions {
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 1.45s;
}

/* Countdown pulse */
@keyframes cdPulse {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.12); color: var(--gold-light); }
  100% { transform: scale(1); }
}
.cd-pulse { animation: cdPulse 0.35s ease; }

/* Card hover lifts */
.about-card,
.reg-date-card,
.pricing-card,
.optional-card,
.rule-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease !important;
}
.about-card:hover,
.reg-date-card:hover,
.pricing-card:hover,
.optional-card:hover,
.rule-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 14px 36px rgba(184,150,62,0.18) !important;
}
