/* ============================================
   ROYAL ROVERS FC — Premium Football Club CSS
   ============================================ */

:root {
  --royal-blue: #1a3a8a;
  --royal-blue-dark: #0d1b3e;
  --royal-blue-deeper: #0a0a2e;
  --gold: #d4af37;
  --gold-light: #e8c765;
  --red-accent: #c0392b;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --grey-100: #f1f3f8;
  --grey-300: #c5cbd9;
  --grey-500: #6c7591;
  --grey-700: #2c3351;
  --shadow-sm: 0 2px 8px rgba(10, 10, 46, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 10, 46, 0.12);
  --shadow-lg: 0 16px 48px rgba(10, 10, 46, 0.18);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--grey-700);
  line-height: 1.6;
  background: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--royal-blue-dark);
}

a { color: var(--royal-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(10, 10, 46, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all var(--transition);
}
.navbar.scrolled { padding: 10px 0; background: rgba(10, 10, 46, 0.98); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: 52px; }
.nav-logo-text {
  color: var(--white); font-family: 'Oswald', sans-serif;
  font-size: 18px; font-weight: 600; letter-spacing: 0.08em;
  line-height: 1; text-transform: uppercase;
}
.nav-logo-text small { display: block; font-size: 11px; color: var(--gold); letter-spacing: 0.2em; margin-top: 4px; }
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-menu a {
  color: var(--white); font-size: 14px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 10px 16px; position: relative;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; width: 0; height: 2px;
  background: var(--gold); transition: all var(--transition); transform: translateX(-50%);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: calc(100% - 32px); }
.nav-menu a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--royal-blue-dark) !important;
  padding: 12px 22px !important; border-radius: 4px;
  font-weight: 700 !important; margin-left: 12px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block; padding: 14px 28px;
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: 4px;
  cursor: pointer; transition: all var(--transition);
  text-align: center;
}
.btn-primary { background: var(--gold); color: var(--royal-blue-dark); border-color: var(--gold); }
.btn-primary:hover { background: transparent; color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4); }
.btn-secondary { background: var(--white); color: var(--royal-blue-dark); border-color: var(--white); }
.btn-secondary:hover { background: transparent; color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--royal-blue-dark); }
.btn-outline-dark { background: transparent; color: var(--royal-blue); border-color: var(--royal-blue); }
.btn-outline-dark:hover { background: var(--royal-blue); color: var(--white); }
.btn-red { background: var(--red-accent); color: var(--white); border-color: var(--red-accent); }
.btn-red:hover { background: var(--white); color: var(--red-accent); }
.btn-lg { padding: 18px 36px; font-size: 15px; }

/* ========== HERO ========== */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-align: center;
  margin-top: 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,46,0.72) 0%, rgba(10,10,46,0.85) 50%, rgba(10,10,46,0.95) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; padding: 0 20px; }
.hero-badge {
  display: inline-block; padding: 8px 18px;
  background: rgba(212, 175, 55, 0.15); color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4); border-radius: 999px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(38px, 7vw, 78px); color: var(--white);
  text-transform: uppercase; letter-spacing: 0.02em;
  line-height: 1.05; margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 680px; margin: 0 auto 36px;
  color: rgba(255,255,255,0.85); line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--white); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  opacity: 0.7; z-index: 1;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: var(--gold); margin: 12px auto 0;
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown { 0%{transform:scaleY(0);transform-origin:top}50%{transform:scaleY(1);transform-origin:top}50.1%{transform-origin:bottom}100%{transform:scaleY(0);transform-origin:bottom} }

.page-hero {
  margin-top: 80px; height: 50vh; min-height: 380px;
  position: relative; display: flex; align-items: center; justify-content: center;
  color: var(--white); text-align: center; overflow: hidden;
}
.page-hero .hero-bg::after { background: linear-gradient(180deg, rgba(10,10,46,0.75), rgba(10,10,46,0.9)); }
.page-hero h1 { font-size: clamp(36px, 6vw, 64px); color: var(--white); text-transform: uppercase; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 700px; margin: 16px auto 0; }

/* ========== SECTIONS ========== */
section { padding: 100px 0; }
section.tight { padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block; color: var(--gold);
  font-family: 'Oswald', sans-serif; font-size: 13px;
  letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; display: inline-block; width: 30px; height: 1px;
  background: var(--gold); vertical-align: middle; margin: 0 14px;
}
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  text-transform: uppercase; margin-bottom: 16px;
}
.section-head p { font-size: 17px; color: var(--grey-500); max-width: 680px; margin: 0 auto; }

.bg-dark { background: var(--royal-blue-deeper); color: rgba(255,255,255,0.85); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark .section-head p { color: rgba(255,255,255,0.7); }
.bg-blue { background: var(--royal-blue); color: var(--white); }
.bg-blue h1, .bg-blue h2, .bg-blue h3 { color: var(--white); }

/* ========== CARDS ========== */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid transparent;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(212, 175, 55, 0.3); }
.card-img { height: 240px; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.08); }
.card-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--royal-blue-dark);
  padding: 5px 12px; border-radius: 3px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
}
.card-body { padding: 28px; }
.card-meta { font-size: 12px; color: var(--grey-500); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.card h3 { font-size: 22px; margin-bottom: 12px; color: var(--royal-blue-dark); }
.card p { color: var(--grey-500); font-size: 15px; line-height: 1.6; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--royal-blue); font-weight: 600; font-size: 14px; }

/* value/icon cards */
.value-card {
  background: var(--white); padding: 36px 28px; border-radius: 8px;
  text-align: center; transition: all var(--transition);
  border-top: 3px solid var(--gold);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: var(--royal-blue); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.value-card h3 { font-size: 20px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--grey-500); }

/* ========== STATS ========== */
.stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px; padding: 40px 0;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Oswald', sans-serif; font-size: 56px; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ========== SPLIT / FEATURE BLOCK ========== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.split-img img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.split-content h2 { font-size: clamp(30px, 3.5vw, 44px); text-transform: uppercase; margin-bottom: 20px; }
.split-content .eyebrow { color: var(--gold); font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.split-content p { font-size: 16px; margin-bottom: 18px; color: var(--grey-500); }
.bg-dark .split-content p { color: rgba(255,255,255,0.75); }
.split-content ul { list-style: none; margin: 20px 0; }
.split-content ul li { padding: 8px 0 8px 28px; position: relative; }
.split-content ul li::before {
  content: '▸'; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}

/* ========== GALLERY ========== */
.gallery-filter { text-align: center; margin-bottom: 40px; }
.filter-btn {
  background: transparent; border: 1px solid var(--grey-300);
  padding: 10px 20px; margin: 4px; cursor: pointer;
  font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--grey-700);
  border-radius: 3px; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--royal-blue); color: var(--white); border-color: var(--royal-blue);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 6px;
  aspect-ratio: 1 / 1; cursor: pointer;
}
.gallery-item.tall { aspect-ratio: 3 / 4; }
.gallery-item.wide { aspect-ratio: 4 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,46,0.7));
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .caption {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  color: var(--white); z-index: 2; opacity: 0; transform: translateY(10px);
  transition: all var(--transition);
  font-family: 'Oswald', sans-serif; letter-spacing: 0.1em;
  text-transform: uppercase; font-size: 13px;
}
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(10,10,46,0.95);
  z-index: 2000; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 95%; max-height: 95vh; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px; color: var(--white);
  background: none; border: none; font-size: 40px; cursor: pointer;
}

/* ========== CTA BANNERS ========== */
.cta-band {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-dark) 100%);
  color: var(--white); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.15), transparent 50%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(30px, 4vw, 48px); text-transform: uppercase; margin-bottom: 18px; }
.cta-band p { font-size: 18px; max-width: 640px; margin: 0 auto 30px; color: rgba(255,255,255,0.85); }

/* ========== SPONSORSHIP TIERS ========== */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.tier {
  background: var(--white); padding: 40px 28px; border-radius: 8px;
  text-align: center; transition: all var(--transition);
  border: 2px solid transparent; position: relative;
}
.tier:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tier.featured { border-color: var(--gold); background: linear-gradient(180deg, #fff 0%, #fffbf0 100%); }
.tier.featured::before {
  content: 'MOST IMPACT'; position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%); background: var(--gold); color: var(--royal-blue-dark);
  padding: 4px 16px; border-radius: 3px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em;
}
.tier-name {
  font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.tier h3 { font-size: 28px; color: var(--royal-blue-dark); margin-bottom: 20px; }
.tier-tag {
  font-size: 14px; color: var(--grey-500); padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-100); margin-bottom: 20px;
}
.tier ul { list-style: none; margin-bottom: 28px; text-align: left; }
.tier ul li { padding: 8px 0 8px 24px; position: relative; font-size: 14px; color: var(--grey-700); }
.tier ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ========== FORM ========== */
.form-card {
  background: var(--white); padding: 48px; border-radius: 8px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: 'Oswald', sans-serif; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--royal-blue-dark); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--grey-300);
  border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 15px;
  transition: border-color var(--transition); background: var(--off-white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--royal-blue); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-tabs { display: flex; gap: 4px; margin-bottom: 30px; flex-wrap: wrap; }
.tab-btn {
  background: var(--grey-100); border: none; padding: 14px 24px;
  font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer; flex: 1; min-width: 120px;
  transition: all var(--transition); color: var(--grey-700);
  border-radius: 4px 4px 0 0;
}
.tab-btn.active { background: var(--royal-blue); color: var(--white); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ========== CONTACT CARDS ========== */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
.contact-card {
  background: var(--white); padding: 30px 24px; border-radius: 8px;
  text-align: center; box-shadow: var(--shadow-sm); transition: all var(--transition);
  border-top: 3px solid var(--gold);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .icon {
  width: 54px; height: 54px; background: var(--royal-blue); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 16px;
}
.contact-card h4 { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 10px; }
.contact-card p, .contact-card a { font-size: 16px; color: var(--royal-blue-dark); font-weight: 600; }

/* ========== NEWS LIST / FIXTURES ========== */
.fixtures { max-width: 900px; margin: 0 auto; }
.fixture-row {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 24px;
  align-items: center; padding: 24px; background: var(--white);
  border-radius: 6px; margin-bottom: 12px; box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.fixture-row:hover { transform: translateX(4px); border-left: 3px solid var(--gold); padding-left: 21px; }
.fixture-date {
  text-align: center; color: var(--royal-blue); font-family: 'Oswald', sans-serif;
}
.fixture-date .day { font-size: 32px; font-weight: 700; line-height: 1; }
.fixture-date .month { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 4px; }
.fixture-info h4 { font-size: 18px; margin-bottom: 4px; }
.fixture-info p { font-size: 13px; color: var(--grey-500); margin: 0; }
.fixture-tag {
  background: var(--royal-blue); color: var(--white); padding: 6px 14px;
  border-radius: 3px; font-size: 11px; letter-spacing: 0.15em;
  font-weight: 600; text-transform: uppercase;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--royal-blue-deeper); color: rgba(255,255,255,0.7);
  padding: 80px 0 30px; margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px; margin-bottom: 50px;
}
.footer-brand img { height: 72px; margin-bottom: 20px; }
.footer-brand h4 { color: var(--white); font-size: 16px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer h5 {
  color: var(--gold); font-size: 13px; letter-spacing: 0.25em;
  text-transform: uppercase; margin-bottom: 20px; font-family: 'Oswald', sans-serif;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer ul a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact p { font-size: 14px; margin-bottom: 10px; }
.footer-contact strong { color: var(--white); display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center;
  color: var(--white); transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--royal-blue-dark); transform: translateY(-3px); }
.footer-bottom {
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 13px;
}
.footer-bottom .credit { color: var(--gold); }

/* ========== ANIMATIONS ========== */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== UTILS ========== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-4 { margin-top: 40px; }
.divider-gold { width: 60px; height: 3px; background: var(--gold); margin: 20px auto; }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; top: 80px; right: -100%; width: 80%; max-width: 340px;
    height: calc(100vh - 80px); background: var(--royal-blue-deeper);
    flex-direction: column; padding: 30px; gap: 0;
    transition: right var(--transition);
  }
  .nav-menu.open { right: 0; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-cta { margin: 16px 0 0; display: block !important; text-align: center; }
  section { padding: 60px 0; }
  .hero { min-height: 540px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; }
  .form-card { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .fixture-row { grid-template-columns: 80px 1fr; }
  .fixture-tag { grid-column: 1 / -1; justify-self: start; }
  .nav-logo-text { font-size: 15px; }
  .nav-logo-text small { font-size: 9px; }
}

/* Gold button */
.btn-gold{background:var(--gold);color:var(--primary);border:2px solid var(--gold);font-weight:700}
.btn-gold:hover{background:#b8941f;border-color:#b8941f;color:var(--white)}
