/* ============================================
   BRITISH PADEL AWARDS 2026 — Master Stylesheet
   ============================================ */

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

:root {
  --navy: #0a1628;
  --navy-mid: #111d35;
  --navy-light: #1a2a4a;
  --red: #c8102e;
  --red-hover: #e01535;
  --red-dark: #9a0c22;
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --white: #ffffff;
  --gray-100: #f7f7f8;
  --gray-200: #e8e8ec;
  --gray-300: #d0d0d8;
  --gray-600: #6b6b7b;
  --gray-800: #2a2a3a;
  --font-display: 'Oswald', 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-w: 1240px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 4px 24px rgba(0,0,0,.08);
  --shadow-elevated: 0 12px 48px rgba(0,0,0,.15);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: .01em; text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: .01em; text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); letter-spacing: .01em; margin-bottom: 12px; }
h4 { font-size: 1.1rem; letter-spacing: .01em; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-label--light { color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}

.btn:hover::after { transform: translateX(100%); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,16,46,.35);
}
.btn--primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200,16,46,.45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(212,168,83,.35);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-group { display: flex; flex-wrap: wrap; gap: 16px; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background .4s ease, box-shadow .4s ease, padding .3s ease;
}

.nav.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
  padding-top: 0;
  padding-bottom: 0;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height .3s ease;
}

.nav.scrolled .nav__inner { height: 64px; }

.nav__logo img { height: 48px; width: auto; max-width: 100%; transition: var(--transition); }
.nav.scrolled .nav__logo img { height: 40px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  color: rgba(255,255,255,.75);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .3s ease;
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--white); }

.nav__cta {
  padding: 10px 24px !important;
  font-size: .85rem !important;
}

/* Dropdown Nav */
.nav__dropdown {
  position: relative;
}
.nav__dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav__dropdown > a::after {
  display: none !important; /* suppress underline on parent */
}
.nav__dropdown-toggle {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  cursor: pointer;
  border: none;
  background: none;
  position: relative;
  transition: color .2s;
}
.nav__dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav__dropdown:hover .nav__dropdown-toggle,
.nav__dropdown-toggle.active {
  color: var(--white);
}
.nav__dropdown:hover .nav__dropdown-toggle::after,
.nav__dropdown-toggle.active::after {
  width: 100%;
}
.nav__dropdown-toggle svg {
  width: 12px; height: 12px;
  fill: currentColor;
  transition: transform .25s;
  flex-shrink: 0;
}
.nav__dropdown:hover .nav__dropdown-toggle svg,
.nav__dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 210px;
  background: rgba(10,22,44,.97);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 20px 8px 8px; /* top padding acts as the visual gap */
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 200;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Transparent bridge + arrow — fills any gap so hover stays active */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px; left: -20%; right: -20%;
  height: 8px;
  background: transparent;
}
.nav__dropdown-menu::after {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,.1);
}
.nav__dropdown-menu a {
  display: block;
  color: rgba(255,255,255,.75) !important;
  font-size: .82rem !important;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav__dropdown-menu a::after { display: none !important; }
.nav__dropdown-menu a:hover { background: rgba(255,255,255,.07); color: var(--white) !important; }
.nav__dropdown-menu a.active { color: var(--gold-light) !important; }
.nav__dropdown-menu .dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 6px 8px;
}

/* Gold label in dropdown */
.nav__dropdown-menu a[data-tier="gold"] {
  color: rgba(232,201,122,.8) !important;
}
.nav__dropdown-menu a[data-tier="gold"]:hover {
  color: var(--gold-light) !important;
  background: rgba(212,168,83,.08);
}

/* Mobile nav CTA — hidden on desktop, shown between logo + hamburger on mobile */
.nav__mobile-cta {
  display: none;
}

/* Mobile Nav */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1050;
  position: relative;
}

.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,.98);
  backdrop-filter: blur(20px);
  z-index: 1100;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 76px 40px 48px;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.nav__mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

/* Top-level links */
.nav__mobile-menu > a {
  color: var(--white);
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.nav__mobile-menu > a:hover { color: var(--gold-light); }
.nav__mobile-menu > a.btn--primary {
  text-transform: none;
  letter-spacing: 0;
  border-bottom: none;
  border-radius: 50px;
  padding: 13px 28px;
  text-align: center;
  margin-top: 20px;
  align-self: flex-start;
}

/* Accordion */
.mobile-accordion {
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-accordion__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 15px 0;
  cursor: pointer;
  transition: color .2s;
}
.mobile-accordion__toggle:hover { color: var(--gold-light); }
.mobile-accordion__chevron {
  width: 22px; height: 22px;
  fill: currentColor;
  opacity: .45;
  flex-shrink: 0;
  transition: transform .25s ease, opacity .2s;
}
.mobile-accordion.open .mobile-accordion__chevron {
  transform: rotate(180deg);
  opacity: .8;
}
.mobile-accordion__body {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.mobile-accordion.open .mobile-accordion__body {
  max-height: 420px;
}
.mobile-accordion__body a {
  font-family: var(--font-display);
  font-weight: 500;
  text-decoration: none;
  padding: 11px 0 11px 16px;
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  border-left: 2px solid rgba(255,255,255,.1);
  margin-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.mobile-accordion__body a:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.mobile-accordion__body a.mobile-gold { color: rgba(232,201,122,.8); }
.mobile-accordion__body a.mobile-gold:hover { color: var(--gold-light); border-color: rgba(212,168,83,.4); }
.mobile-accordion__body a:last-child { margin-bottom: 12px; }

.nav__mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1101;
  transition: background .2s ease;
}

.nav__mobile-close:hover {
  background: rgba(200,16,46,.5);
  border-color: var(--red);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100svh; /* svh for mobile browser chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

/* Background video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay so text stays readable over any video content */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,15,35,.55) 0%,
    rgba(5,15,35,.40) 50%,
    rgba(5,15,35,.65) 100%
  );
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(200,16,46,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(212,168,83,.08) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 2;
}

/* Animated geometric accents */
.hero__accent {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.hero__accent--1 {
  width: 400px; height: 400px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(200,16,46,.08), transparent 70%);
  animation-delay: 0s;
}

.hero__accent--2 {
  width: 300px; height: 300px;
  bottom: -50px; left: -80px;
  background: radial-gradient(circle, rgba(212,168,83,.06), transparent 70%);
  animation-delay: -3s;
}

.hero__accent--3 {
  width: 200px; height: 200px;
  top: 40%; left: 60%;
  background: radial-gradient(circle, rgba(200,16,46,.05), transparent 70%);
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 860px;
}

.hero__date {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  color: rgba(255,255,255,.65);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.hero__stat { text-align: center; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.hero__stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Section Styles --- */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--cream {
  background: var(--cream);
}

.section--gradient {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section__header p {
  color: var(--gray-600);
  margin-top: 16px;
  font-size: 1.05rem;
}

.section--dark .section__header p {
  color: rgba(255,255,255,.55);
}

.sponsor-carousel-section .section__header h2 {
  color: var(--white);
}
.sponsor-carousel-section .section__header p {
  color: rgba(255,255,255,.55);
}

/* --- About / Intro --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__text p {
  margin-bottom: 20px;
  color: var(--gray-600);
  font-size: 1.02rem;
}

.about__text p:first-of-type {
  font-size: 1.15rem;
  color: var(--gray-800);
  font-weight: 500;
}

.about__visual {
  position: relative;
}

.about__card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about__card::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(200,16,46,.15), transparent 70%);
}

.about__card-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.about__card-icon {
  width: 48px; height: 48px;
  background: rgba(212,168,83,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__card-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.about__card-detail h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
}

.about__card-detail span {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* --- Categories Grid --- */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.category-card {
  flex: 0 1 300px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0; width: 100%;
  background: var(--red);
  transition: height .4s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: transparent;
}

.category-card:hover::before { height: 4px; }

.category-card__num {
  font-family: var(--font-display);
  font-size: .8rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 12px;
  opacity: .6;
}

.category-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.3;
}

.category-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* dark variant */
.section--dark .category-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.section--dark .category-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(200,16,46,.3);
}
.section--dark .category-card h3 { color: var(--white); }
.section--dark .category-card p { color: rgba(255,255,255,.5); }

/* --- Venue Section --- */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.venue__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-light);
}

.venue__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.venue__image-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(10,22,40,.9), transparent);
  color: var(--white);
}

.venue__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.venue__info h2 { color: var(--navy); margin-bottom: 20px; }

.venue__info p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.venue__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.venue__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.venue__detail-icon {
  width: 40px; height: 40px;
  background: rgba(200,16,46,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.venue__detail-icon svg {
  width: 18px; height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}

.venue__detail-text h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
}

.venue__detail-text span {
  font-size: .83rem;
  color: var(--gray-600);
}

/* --- Partners / Sponsors --- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}

.partner-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.partner-card__tier {
  font-size: .75rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 8px;
}

/* Sponsor tiers in dark section */
.sponsor-tier { margin-bottom: 56px; }
.sponsor-tier__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* --- Sponsorship Packages --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.package-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}

.package-card--featured {
  border-color: var(--gold);
  background: rgba(212,168,83,.06);
}

.package-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.25);
}

.package-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.package-card__desc {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.package-card__benefits {
  margin-bottom: 32px;
}

.package-card__benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}

.package-card__benefit svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Nominations Section --- */
.nominations-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.nom-step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.nom-step__num {
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nom-step__text h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}

.nom-step__text p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.1), transparent 60%);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
}

.cta-banner .btn { position: relative; }

.cta-banner .btn--outline { border-color: rgba(255,255,255,.5); }
.cta-banner .btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* --- Sponsor Carousel --- */
.sponsor-carousel-section {
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  /* edge fade */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.carousel-track--left {
  animation: scrollLeft 30s linear infinite;
}
.carousel-track--right {
  animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause on hover */
.carousel-track-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

.carousel-logo {
  flex-shrink: 0;
  width: 180px;
  height: 90px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
}

.carousel-logo:hover {
  background: #fff;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25), 0 0 0 1px rgba(212,168,83,.4);
}

.carousel-logo img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .85;
  transition: opacity .25s;
}

.carousel-logo:hover img {
  opacity: 1;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.5);
  padding: 0 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand img {
  height: auto;
  max-width: 100%;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: .9rem;
  padding: 5px 0;
  color: rgba(255,255,255,.5);
}

.footer__col a:hover { color: var(--white); }

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__social:hover {
  background: var(--red);
}

.footer__social svg {
  width: 18px; height: 18px;
  fill: rgba(255,255,255,.6);
}

.footer__social:hover svg { fill: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}

.footer__bottom a { color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: var(--white); }
.footer__bottom .gloss-credit,
a.gloss-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
}
.footer__bottom .gloss-credit__label,
a.gloss-credit .gloss-credit__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.footer__bottom .gloss-credit__logo,
a.gloss-credit .gloss-credit__logo {
  height: 15px;
  width: auto;
  opacity: 1;
  transition: opacity .2s;
}
a.gloss-credit:hover .gloss-credit__logo { opacity: 1; }

/* --- Page Header (for internal pages) --- */
.page-header {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(200,16,46,.08), transparent 60%);
}

.page-header h1 {
  color: var(--white);
  position: relative;
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255,255,255,.55);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* --- Countdown --- */
.countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 40px 0;
}

.countdown__item {
  text-align: center;
}

.countdown__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  min-width: 72px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
}

.countdown__label {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 8px;
}

/* --- Divider line with diamond --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 64px 0;
}

.divider__line {
  height: 1px;
  width: 80px;
  background: var(--gray-200);
}

.section--dark .divider__line { background: rgba(255,255,255,.1); }

.divider__diamond {
  width: 8px; height: 8px;
  background: var(--red);
  transform: rotate(45deg);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* --- Map embed --- */
.venue__map {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
  aspect-ratio: 16/7;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.venue__map iframe {
  width: 100%; height: 100%;
  border: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-grid,
  .venue-grid,
  .nominations-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Stronger overlay on mobile so text is legible over video */
@media (max-width: 768px) {
  .hero__video-overlay {
    background: linear-gradient(
      180deg,
      rgba(5,15,35,.65) 0%,
      rgba(5,15,35,.55) 50%,
      rgba(5,15,35,.75) 100%
    );
  }
}

/* Respect reduced-motion: pause video */
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile-cta {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    margin-right: 12px;
    padding: 4px 10px;
    font-size: .65rem;
    letter-spacing: .06em;
    white-space: nowrap;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero__stat { min-width: 80px; }

  .categories-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .category-card {
    flex: 1 1 auto;
  }

  .venue__details {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section { padding: 64px 0; }

  .countdown { gap: 12px; }
  .countdown__num { font-size: 1.8rem; min-width: 56px; padding: 12px 8px; }

  .btn-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .partners-grid { grid-template-columns: 1fr; }
}

/* ── 320 px / very small phones ────────────────────────────────────────────── */
@media (max-width: 360px) {
  /* Countdown: scale down numbers so they don't overflow on 320px screens */
  .countdown { gap: 6px; }
  .countdown__num { font-size: 1.4rem; min-width: 44px; padding: 10px 6px; }
  .countdown__label { font-size: .6rem; letter-spacing: .08em; }

  /* Container padding relief */
  .container { padding: 0 14px; }

  /* Hero headline */
  h1 { font-size: clamp(1.6rem, 8vw, 2.8rem); }
}

/* ── iOS safe-area insets for mobile nav ────────────────────────────────────── */
.nav__mobile-menu {
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}

/* ── focus-visible styles (Phase 2A — placed here for single-file maintenance) */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
/* Remove default outline for mouse users (non-keyboard) */
:focus:not(:focus-visible) { outline: none; }

/* ── Skip link (Phase 2A) ────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  z-index: 9999;
  text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 0; }
