/* ============================================================
   Maria Sharapova Official Fan Site - Main Stylesheet
   ============================================================ */

:root {
  /* ── Tennis Court Theme ── */
  --bg-primary: #030e04;        /* Deep court night green */
  --bg-secondary: #071409;
  --bg-card: #0c1e0d;
  --bg-card-hover: #112514;

  /* Tennis ball yellow-green */
  --gold: #c8e600;
  --gold-light: #e0ff00;
  --gold-dark: #8faa00;

  /* Clay court orange */
  --pink: #ff6b00;
  --pink-light: #ff9240;
  --red: #e83000;

  --text-primary: #f0f8f0;
  --text-secondary: #80a880;
  --text-muted: #3d6b3d;

  --border: rgba(200, 230, 0, 0.14);
  --border-hover: rgba(200, 230, 0, 0.38);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 4px 30px rgba(200, 230, 0, 0.18);

  --nav-height: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-secondary); margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

/* ---- Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-gold { color: var(--gold); }
.text-pink { color: var(--pink); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  margin: 1.5rem auto;
  border-radius: 2px;
}
.divider-left { margin: 1.5rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}
.btn-pink {
  background: linear-gradient(135deg, var(--pink), #a8005a);
  color: #fff;
}
.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge-gold { background: rgba(212, 175, 55, 0.15); color: var(--gold); border: 1px solid var(--border); }
.badge-pink { background: rgba(233, 30, 140, 0.15); color: var(--pink); }
.badge-red  { background: rgba(200, 16, 46, 0.15);  color: var(--red);  }

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0 24px;
}
.navbar.scrolled {
  background: rgba(9, 9, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-logo .logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.nav-cta {
  background: var(--gold);
  color: #000 !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(9,9,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 20px;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

/* ---- Hero (Homepage) ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,230,0,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(255,107,0,0.06) 0%, transparent 50%),
              var(--bg-primary);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23c8e600' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: var(--nav-height);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 { margin-bottom: 8px; }
.hero h1 .last-name {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 20px 0 40px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-frame {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a1a35 0%, #0d0d1a 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-gold);
}
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  background: linear-gradient(180deg, rgba(200,230,0,0.05) 0%, rgba(255,107,0,0.08) 100%);
}
.hero-image-placeholder .silhouette {
  width: 200px;
  height: 340px;
  background: linear-gradient(180deg, rgba(212,175,55,0.3) 0%, rgba(212,175,55,0.1) 100%);
  border-radius: 50% 50% 0 0;
  margin-bottom: 20px;
}
.hero-badge {
  position: absolute;
  top: 30px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}
.hero-badge-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.hero-badge-text { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,230,0,0.1) 0%, transparent 60%), var(--bg-primary);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ---- Cards ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1a35, #0d0d1a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.card-body { padding: 24px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.card-date { font-size: 0.8rem; color: var(--text-muted); }
.card-title { margin-bottom: 12px; font-size: 1.15rem; }
.card-title a:hover { color: var(--gold); }
.card-excerpt { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 20px; }
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; }
.card-link .arrow { font-size: 1rem; }

/* ---- Grid layouts ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- Stats bar ---- */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}
.stat-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 40px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
}
.timeline-year {
  min-width: 80px;
  text-align: center;
  position: relative;
}
.timeline-year-num {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}
.timeline-content {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.timeline-content:hover { border-color: var(--border-hover); }
.timeline-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.timeline-desc { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover { transform: scale(1.02); border-color: var(--border-hover); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:nth-child(3n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--gold);
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- Grand Slam table ---- */
.slams-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.slam-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.slam-card.won {
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.05);
}
.slam-card.won:hover { background: rgba(212,175,55,0.1); }
.slam-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.slam-surface {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 16px;
  display: inline-block;
}
.slam-clay { background: rgba(200,100,40,0.2); color: #c86428; }
.slam-grass { background: rgba(40,160,40,0.2); color: #28a028; }
.slam-hard { background: rgba(40,100,200,0.2); color: #2864c8; }
.slam-years { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--text-primary); }
.slam-count { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.slam-count.zero { color: var(--text-muted); font-size: 1.5rem; }

/* ---- Stats Table ---- */
.stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.stats-table th {
  text-align: left;
  padding: 14px 20px;
  background: var(--bg-secondary);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.stats-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-secondary);
}
.stats-table tr:hover td { background: rgba(255,255,255,0.02); }
.stats-table td:first-child { color: var(--text-primary); font-weight: 500; }
.stats-table .highlight td { background: rgba(212,175,55,0.05); }
.stats-table .highlight td:first-child { color: var(--gold); }

/* ---- Academy / Article Cards ---- */
.academy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.academy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.academy-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.academy-card:hover::before { transform: scaleX(1); }
.academy-icon {
  width: 52px; height: 52px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.academy-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.academy-card p { font-size: 0.9rem; margin-bottom: 20px; }
.academy-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ---- Article Page ---- */
.article-page { padding: 80px 0 120px; }
.article-container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.article-header { margin-bottom: 48px; }
.article-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.article-meta-item { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.article-body h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--text-primary);
}
.article-body h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--gold);
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.article-body ul, .article-body ol {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}
.article-body ul li, .article-body ol li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.article-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.article-body ol { counter-reset: list; }
.article-body ol li { counter-increment: list; }
.article-body ol li::before {
  content: counter(list) '.';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.article-callout {
  background: rgba(212,175,55,0.05);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin: 2rem 0;
}
.article-callout p { margin: 0; font-style: italic; }
.article-callout .callout-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}
.article-table th {
  padding: 12px 16px;
  background: rgba(212,175,55,0.08);
  color: var(--gold);
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-secondary);
}
.article-table tr:hover td { background: rgba(255,255,255,0.02); }

.sharapova-tip {
  background: linear-gradient(135deg, rgba(255,107,0,0.08), rgba(200,230,0,0.05));
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius);
  padding: 28px;
  margin: 2.5rem 0;
  position: relative;
}
.sharapova-tip::before {
  content: '"';
  position: absolute;
  top: 10px; left: 20px;
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.sharapova-tip-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.sharapova-tip p { font-style: italic; font-size: 1rem; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a { transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ---- Footer ---- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; margin-bottom: 24px; max-width: 280px; }
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-disclaimer { max-width: 600px; line-height: 1.6; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .stats-bar-grid { grid-template-columns: repeat(3, 1fr); }
  .slams-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .hero-stats { gap: 24px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .slams-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .timeline::before { left: 0; }
  .timeline-year { min-width: 60px; }
}
@media (max-width: 480px) {
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .slams-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
}

/* ---- Scroll animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Glow decorations ---- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}
.glow-gold { background: rgba(200,230,0,0.10); }
.glow-pink { background: rgba(255,107,0,0.07); }

/* ---- Back to top ---- */
#back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 500;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}
#back-to-top:hover { transform: translateY(-3px); background: var(--gold-light); }
#back-to-top.show { display: flex; }

/* ---- Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
