/*
 * Bishop Grossutti - Main Stylesheet
 * Uses variables from brand.css for easy updates
 */

/* ===========================================
   RESET & BASE
   =========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================================
   LAYOUT
   =========================================== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ===========================================
   HEADER
   =========================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-header-bg, rgba(26, 39, 68, 0.95));
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header-logo .name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.header-logo .surname {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--color-white);
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.header-nav {
  display: flex;
  gap: var(--space-xl);
}

.header-nav a {
  font-size: var(--text-caption);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--color-gold);
}

/* Theme Switcher */
.theme-switcher {
  position: relative;
  margin-left: var(--space-lg);
}

.theme-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.theme-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.theme-icon {
  font-size: 18px;
}

.theme-dropdown {
  position: absolute;
  top: calc(100% + var(--space-sm));
  right: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  z-index: 200;
  overflow: hidden;
}

.theme-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-dropdown-header {
  padding: var(--space-md);
  font-size: var(--text-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray);
  border-bottom: 1px solid var(--color-border);
}

.theme-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-md);
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: var(--text-caption);
  color: var(--color-black);
  transition: background 0.15s;
  text-align: left;
}

.theme-option:hover {
  background: #F3F4F6;
}

.theme-option.active {
  background: #F3F4F6;
}

.theme-option.active .theme-label {
  font-weight: 600;
}

.theme-swatch {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.theme-label {
  flex: 1;
}

/* ===========================================
   HERO SECTION
   =========================================== */

.hero {
  min-height: 100vh;
  background: var(--color-hero-bg-gradient, linear-gradient(135deg, var(--color-navy) 0%, #2D3E5F 100%));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.08;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.05;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-4xl) 0;
}

.hero-text {
  color: var(--color-white);
}

.hero-wordmark {
  line-height: 1;
  margin-bottom: var(--space-md);
}

.hero-wordmark .first {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  letter-spacing: -0.02em;
}

.hero-wordmark .last {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.hero-tagline {
  font-size: var(--text-caption);
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: var(--text-body);
  opacity: 0.7;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  color: var(--color-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
  margin-top: var(--space-xs);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Hero Slideshow */
.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slideshow-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slideshow-dot:hover {
  border-color: var(--color-gold);
}

.slideshow-dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

/* ===========================================
   STATS SECTION
   =========================================== */

.stats-section {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  color: var(--color-gold);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  margin-top: var(--space-sm);
}

/* ===========================================
   TABS NAVIGATION
   =========================================== */

.tabs-nav {
  display: flex;
  gap: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
  padding: 0 var(--space-lg);
  background: white;
  position: sticky;
  top: var(--header-height);
  z-index: 50;
}

.tab-btn {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--color-gray);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  font-family: var(--font-primary);
}

.tab-btn:hover {
  color: var(--color-navy);
}

.tab-btn.active {
  color: var(--color-navy);
  border-bottom-color: var(--color-gold);
}

.tab-content {
  display: none;
  padding: var(--space-2xl) 0;
}

.tab-content.active {
  display: block;
}

/* Page sections - all visible on mobile */
.page-section {
  scroll-margin-top: calc(var(--header-height) + var(--space-md));
}

/* ===========================================
   SECTION TITLES
   =========================================== */

.section-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: var(--space-md);
}

.section-heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-h2);
  color: var(--color-navy);
  margin-bottom: var(--space-lg);
}

/* ===========================================
   BIO SECTION
   =========================================== */

.bio-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
}

.bio-text {
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--color-black);
}

.bio-text p {
  margin-bottom: var(--space-md);
}

.bio-sidebar {
  background: #F9FAFB;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.bio-info-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.bio-info-item:last-child {
  border-bottom: none;
}

.bio-info-label {
  font-size: var(--text-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray);
}

.bio-info-value {
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-navy);
  margin-top: var(--space-xs);
}

/* ===========================================
   ACHIEVEMENTS SECTION
   =========================================== */

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.achievement-badge {
  background: var(--color-badge-bg, var(--color-navy));
  color: var(--color-badge-text, white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.achievement-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.achievement-text {
  line-height: 1.3;
}

.achievement-title {
  font-weight: 700;
  font-size: var(--text-caption);
}

.achievement-sub {
  font-size: var(--text-small);
  opacity: 0.7;
}

/* Highlight badge for current titles */
.achievement-badge.highlight {
  background: var(--color-badge-highlight-bg, linear-gradient(135deg, var(--color-gold) 0%, #C49A47 100%));
  color: var(--color-badge-highlight-text, var(--color-navy));
}

.achievement-badge.highlight .achievement-sub {
  opacity: 0.8;
}

/* ===========================================
   TOURNAMENT TABLE
   =========================================== */

.tournament-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-lg);
}

.tournament-table th,
.tournament-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.tournament-table th {
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #F9FAFB;
}

.tournament-table tr:hover {
  background: #F9FAFB;
}

.result-champion {
  color: var(--color-gold);
  font-weight: 700;
}

.result-finalist {
  color: var(--color-navy);
  font-weight: 600;
}

/* ===========================================
   FOOTER
   =========================================== */

.footer {
  background: var(--color-footer-bg, var(--color-navy));
  color: var(--color-footer-text, white);
  padding: var(--space-3xl) 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo .name {
  font-family: var(--font-display);
  font-size: 20px;
}

.footer-logo .surname {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.footer-meta {
  font-size: var(--text-caption);
  opacity: 0.6;
}

.footer-flag {
  font-size: 24px;
}

/* ===========================================
   GALLERY SECTION
   =========================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-caption {
  text-align: center;
  color: white;
  font-size: var(--text-caption);
  margin-top: var(--space-md);
  opacity: 0.8;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  padding: var(--space-md);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lightbox-close {
  top: var(--space-lg);
  right: var(--space-lg);
}

.lightbox-prev {
  left: var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
  right: var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ===========================================
   SPONSORS SECTION
   =========================================== */

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.sponsor-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.sponsor-card {
  display: flex;
}

.sponsor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.sponsor-card:active {
  transform: translateY(0);
}

.sponsor-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sponsor-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-navy);
}

.sponsor-name {
  font-weight: 700;
  font-size: var(--text-h4);
  color: var(--color-navy);
}

.sponsor-category {
  font-size: var(--text-caption);
  color: var(--color-gray);
  margin-top: var(--space-xs);
}

/* Sponsorship Inquiry Card */
.inquiry-card {
  background: linear-gradient(135deg, var(--color-navy) 0%, #2D3E5F 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.inquiry-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.1;
}

.inquiry-content {
  position: relative;
  z-index: 1;
}

.inquiry-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-h3);
  color: white;
  margin-bottom: var(--space-md);
}

.inquiry-text {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.btn-inquiry {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-button-primary-bg, var(--color-gold));
  color: var(--color-button-primary-text, var(--color-navy));
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-body);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.4);
}

.btn-icon {
  font-size: 18px;
}

.inquiry-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.inquiry-stat {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.inquiry-stat-number {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  color: var(--color-gold);
  line-height: 1;
}

.inquiry-stat-label {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-xs);
}

/* ===========================================
   UTILITIES
   =========================================== */

.text-gold { color: var(--color-gold); }
.text-navy { color: var(--color-navy); }
.text-gray { color: var(--color-gray); }
.text-center { text-align: center; }

.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden { display: none !important; }

/* ===========================================
   RESPONSIVE - MOBILE FIRST
   =========================================== */

/* Mobile Base (default) */
@media (max-width: 768px) {
  :root {
    --text-hero: 40px;
    --text-h1: 32px;
    --text-h2: 24px;
    --text-h3: 20px;
    --header-height: 60px;
  }

  .container {
    padding: 0 var(--space-md);
  }

  /* Hide tabs nav on mobile */
  .tabs-nav.desktop-only {
    display: none;
  }

  /* Show all sections on mobile (single page scroll) */
  .page-section {
    display: block !important;
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--color-border);
  }

  .page-section:last-of-type {
    border-bottom: none;
  }

  /* Header Mobile */
  .header .container {
    flex-wrap: wrap;
  }

  .header-logo .name {
    font-size: 18px;
  }

  .header-logo .surname {
    font-size: 10px;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-header-bg, rgba(26, 39, 68, 0.98));
    flex-direction: column;
    padding: var(--space-md);
    gap: 0;
  }

  .header-nav.mobile-open {
    display: flex;
  }

  .header-nav a {
    padding: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-nav a:last-child {
    border-bottom: none;
  }

  .theme-switcher {
    margin-left: auto;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    padding: var(--space-sm);
    cursor: pointer;
    margin-left: var(--space-sm);
  }

  /* Hero Mobile */
  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + var(--space-lg)) 0 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: 0;
  }

  .hero-text {
    text-align: center;
    order: 1;
    padding: 0 var(--space-md);
  }

  .hero-image {
    order: 2;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--space-sm);
  }

  .hero-wordmark .first {
    font-size: var(--text-hero);
  }

  .hero-wordmark .last {
    font-size: var(--text-h2);
  }

  .hero-tagline {
    font-size: var(--text-small);
    margin-bottom: var(--space-xs);
  }

  .hero-subtitle {
    font-size: var(--text-caption);
    display: none;
  }

  .hero-stats {
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
  }

  .hero-stat-number {
    font-size: var(--text-h2);
  }

  .hero-stat-label {
    font-size: 10px;
  }

  .hero-slideshow {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md);
    width: 100%;
  }

  .hero-slideshow-dots {
    position: absolute;
    bottom: var(--space-md);
    left: 0;
    right: 0;
    margin-top: 0;
  }

  .slideshow-dot {
    width: 8px;
    height: 8px;
  }

  /* Stats Section Mobile */
  .stats-section {
    padding: var(--space-xl) 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .stat-card {
    padding: var(--space-md);
  }

  .stat-number {
    font-size: var(--text-h2);
  }

  .stat-label {
    font-size: 10px;
  }

  /* Tabs Mobile */
  .tabs-nav {
    top: var(--header-height);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .tabs-nav .container {
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .tab-btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-small);
    white-space: nowrap;
  }

  .tab-content {
    padding: var(--space-lg) 0;
  }

  /* Bio Section Mobile */
  .bio-section {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .bio-sidebar {
    order: -1;
  }

  .section-heading {
    font-size: var(--text-h3);
  }

  /* Tournament Table Mobile */
  .tournament-table {
    font-size: var(--text-caption);
  }

  .tournament-table th,
  .tournament-table td {
    padding: var(--space-sm);
  }

  /* Achievements Mobile */
  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .achievement-badge {
    padding: var(--space-sm) var(--space-md);
  }

  .achievement-icon {
    font-size: 24px;
  }

  .achievement-title {
    font-size: var(--text-small);
  }

  .achievement-sub {
    font-size: 10px;
  }

  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 30px;
    padding: var(--space-sm);
  }

  .lightbox-close {
    top: var(--space-sm);
    right: var(--space-sm);
  }

  /* Sponsors Mobile */
  .sponsors-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-card {
    grid-template-columns: 1fr;
    padding: var(--space-lg);
  }

  .inquiry-stats {
    flex-direction: row;
    justify-content: space-around;
  }

  .inquiry-stat {
    padding: var(--space-sm);
  }

  .inquiry-stat-number {
    font-size: var(--text-h3);
  }

  /* Footer Mobile */
  .footer {
    padding: var(--space-xl) 0;
  }

  .footer-content {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content {
    gap: var(--space-xl);
  }

  .hero-wordmark .first {
    font-size: 56px;
  }

  .hero-wordmark .last {
    font-size: 36px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bio-section {
    grid-template-columns: 1.5fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop hide mobile menu button */
@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* ===========================================
   LOADING STATE
   =========================================== */

.loading {
  text-align: center;
  padding: var(--space-3xl);
  color: var(--color-gray);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-border);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

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