﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #e8c97a;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --text: #e8e4dc;
  --text-muted: #888880;
  --border: rgba(201,168,76,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: 'Inter', sans-serif; font-weight: 300; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 60px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display:flex; align-items:center; gap:14px; width:auto; min-width:240px; height:50px; text-decoration:none; overflow:visible; }
.nav-logo img { width:86px; height:50px; object-fit:contain; object-position:left center; display:block; filter:drop-shadow(0 0 12px rgba(201,168,76,0.2)); flex-shrink:0; }
.nav-brand-name { position:relative; padding-left:14px; font-family:'Playfair Display',serif; font-size:18px; line-height:1; color:var(--text); letter-spacing:0.03em; white-space:nowrap; text-shadow:0 0 18px rgba(0,0,0,0.42); }
.nav-brand-name::before { content:''; position:absolute; left:0; top:50%; width:1px; height:22px; transform:translateY(-50%); background:rgba(201,168,76,0.42); }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.2s; padding-bottom: 2px; border-bottom: 1px solid transparent; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--text); border-bottom-color: var(--gold); }
.lang-toggle { display: flex; gap: 2px; background: var(--dark-3); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.lang-btn { background: none; border: none; color: var(--text-muted); font-size: 11px; font-family: 'Inter', sans-serif; letter-spacing: 0.1em; padding: 6px 10px; cursor: pointer; transition: all 0.2s; }

.nav-menu-btn { display:none; width:38px; height:34px; border:1px solid var(--border); background:rgba(26,26,26,0.92); color:var(--text); border-radius:4px; align-items:center; justify-content:center; flex-direction:column; gap:5px; cursor:pointer; }
.nav-menu-btn span { width:16px; height:1px; background:var(--gold); display:block; transition:transform 0.2s, opacity 0.2s; }
.nav-menu-btn.open span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity:0; }
.nav-menu-btn.open span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
body.menu-open { overflow:hidden; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 160px 80px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--dark-2);
}
.page-header .eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(44px, 5vw, 72px); line-height: 1.05; }
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header p { margin-top: 20px; font-size: 15px; color: var(--text-muted); max-width: 560px; line-height: 1.8; }

/* ── DIVIDER ── */
.divider { width: 48px; height: 1px; background: var(--gold); margin: 24px 0; }

/* ── SECTION ── */
.section { padding: 100px 80px; }
.section-alt { background: var(--dark-2); }

.eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 3.5vw, 52px); line-height: 1.1; margin-bottom: 12px; }
.section-title em { font-style: italic; color: var(--gold); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── STAT CARDS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat-card { background: var(--dark-3); border: 1px solid var(--border); padding: 32px 28px; }
.stat-card:first-child { border-color: rgba(201,168,76,0.5); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 52px; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.stat-sublabel { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ── RESULTS ── */
.results-list { display: flex; flex-direction: column; }
.result-row { display: grid; grid-template-columns: 52px 1fr auto; gap: 20px; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.result-year { font-size: 12px; color: var(--text-muted); }
.result-event { font-size: 14px; color: var(--text); }
.result-event small { display: block; font-size: 11px; color: var(--text-muted); margin-top: 3px; }
.result-badge { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--gold); color: var(--gold); white-space: nowrap; }
.result-badge.gold { background: var(--gold); color: var(--dark); font-weight: 600; }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 72px 1px 1fr; gap: 0 28px; padding-bottom: 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-year { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--gold); padding-top: 4px; text-align: right; }
.tl-line { background: var(--border); position: relative; width: 1px; }
.tl-dot { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.tl-sport { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.tl-title { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.tl-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── TIERS ── */
.tiers { display: flex; flex-direction: column; gap: 2px; }
.tier-row { display: grid; grid-template-columns: 220px 1fr auto; gap: 32px; align-items: center; background: var(--dark-3); border: 1px solid var(--border); padding: 28px 36px; transition: border-color 0.2s; }
.tier-row:hover { border-color: rgba(201,168,76,0.5); }
.tier-row.featured { background: var(--dark-4); border-color: rgba(201,168,76,0.4); }
.tier-name { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--text); }
.tier-name small { display: block; font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.tier-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.tier-price { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold); text-align: right; white-space: nowrap; }
.tier-price small { display: block; font-family: 'Inter', sans-serif; font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── BENEFITS GRID ── */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.benefit-card { background: var(--dark-3); padding: 32px 28px; border: 1px solid var(--border); position: relative; }
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.3s; }
.benefit-card:hover::before { background: var(--gold); }
.benefit-icon { font-size: 20px; margin-bottom: 14px; color: var(--gold); }
.benefit-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.benefit-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ── PHOTO STRIP ── */
.photo-strip { display: flex; gap: 4px; overflow: hidden; }
.photo-strip img { flex: 1; min-width: 0; height: 300px; object-fit: cover; filter: brightness(0.7) grayscale(0.15); transition: filter 0.4s, flex 0.5s ease; }
.photo-strip img:hover { flex: 2.5; filter: brightness(0.95) grayscale(0); }

/* ── ENV SPLIT ── */
.env-split { display: grid; grid-template-columns: 1fr 1fr; }
.env-image { overflow: hidden; aspect-ratio: 4/5; }
.env-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); transition: transform 0.8s, filter 0.4s; }
.env-image:hover img { transform: scale(1.04); filter: brightness(0.9); }
.env-text { background: var(--dark-3); padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.env-chain { margin-top: 36px; }
.env-chain-item { display: flex; align-items: flex-start; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.env-chain-num { font-size: 11px; color: var(--gold); letter-spacing: 0.1em; min-width: 24px; padding-top: 2px; }
.env-chain-name { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.env-chain-desc { font-size: 12px; color: var(--text-muted); }
.env-chain-arrow { color: var(--gold); margin-left: auto; padding-top: 2px; }

/* ── ACADEMIC CARDS ── */
.academic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.academic-card { background: var(--dark-3); padding: 48px 36px; border: 1px solid var(--border); position: relative; overflow: hidden; }
.academic-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.3s; }
.academic-card:hover::before { background: var(--gold); }
.academic-num { font-family: 'Playfair Display', serif; font-size: 48px; color: rgba(201,168,76,0.12); margin-bottom: 24px; }
.academic-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.academic-title { font-size: 18px; font-weight: 500; color: var(--text); margin-bottom: 14px; line-height: 1.3; }
.academic-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── COUNTRY GRID ── */
.circuit-countries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.country-item { background: var(--dark-3); padding: 26px 32px; display: flex; justify-content: space-between; align-items: center; border: 1px solid transparent; transition: border-color 0.2s; }
.country-item:hover { border-color: var(--border); }
.country-name { font-size: 15px; color: var(--text); }
.country-tag { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

/* ── CONTACT ── */
.contact-center { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-btn { display: inline-block; padding: 18px 52px; background: var(--gold); color: var(--dark); font-size: 11px; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, transform 0.2s; margin-top: 40px; }
.cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.contact-info { margin-top: 40px; display: flex; justify-content: center; gap: 40px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.contact-info a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.contact-info a:hover { color: var(--gold); }

/* ── QUOTE ── */
blockquote.pull { border-left: 2px solid var(--gold); padding: 16px 24px; margin: 32px 0; font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; color: var(--text); line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 32px 80px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); gap:28px; }
.footer-brand { display:flex; align-items:center; gap:18px; }
.footer-logo { width:78px; height:46px; opacity:0.9; flex-shrink:0; }
.footer-logo img { width:100%; height:100%; object-fit:contain; object-position:left center; display:block; filter:brightness(0.96) drop-shadow(0 0 10px rgba(201,168,76,0.12)); }
.footer-performance { display:grid; gap:4px; padding-left:18px; border-left:1px solid rgba(201,168,76,0.28); }
.footer-performance strong { color:var(--text); font-size:11px; letter-spacing:0.22em; text-transform:uppercase; }
.footer-performance span { color:var(--gold); font-family:'Playfair Display',serif; font-size:15px; }
.footer-performance small { color:var(--text-muted); font-size:10px; letter-spacing:0.12em; text-transform:uppercase; }
.footer-copy { font-size: 11px; color: var(--text-muted); text-align:right; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.anim-1 { opacity: 0; animation: fadeUp 0.7s 0.2s forwards; }
.anim-2 { opacity: 0; animation: fadeUp 0.7s 0.4s forwards; }
.anim-3 { opacity: 0; animation: fadeUp 0.7s 0.6s forwards; }
.anim-4 { opacity: 0; animation: fadeUp 0.7s 0.8s forwards; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 18px; gap:12px; }
  .nav-logo { min-width:190px; height:44px; gap:10px; flex-shrink:0; }
  .nav-logo img { width:74px; height:44px; }
  .nav-brand-name { padding-left:10px; font-size:15px; letter-spacing:0.02em; }
  .nav-brand-name::before { height:18px; }
  .nav-menu-btn { display:flex; margin-left:auto; }
  .lang-toggle { flex-shrink:0; }
  .lang-btn { padding:6px 8px; }
  .nav-links { position:fixed; top:63px; left:0; right:0; display:grid; gap:0; padding:10px 24px 18px; background:rgba(10,10,10,0.98); border-bottom:1px solid var(--border); box-shadow:0 24px 60px rgba(0,0,0,0.45); transform:translateY(-12px); opacity:0; visibility:hidden; pointer-events:none; transition:opacity 0.22s ease, transform 0.22s ease, visibility 0.22s; }
  .nav-links.open { transform:translateY(0); opacity:1; visibility:visible; pointer-events:auto; }
  .nav-links li { list-style:none; }
  .nav-links a { display:block; padding:15px 0; font-size:11px; border-bottom:1px solid rgba(201,168,76,0.14); }
  .page-header { padding: 120px 24px 60px; }
  .section { padding: 64px 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .tier-row { grid-template-columns: 1fr; gap: 10px; }
  .tier-price { text-align: left; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .academic-grid { grid-template-columns: 1fr; }
  .circuit-countries { grid-template-columns: 1fr 1fr; }
  .env-split { grid-template-columns: 1fr; }
  .env-text { padding: 40px 28px; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
  .footer-brand { flex-direction:column; gap:10px; }
  .footer-performance { border-left:0; padding-left:0; }
  .footer-copy { text-align:center; }
  .contact-info { flex-direction: column; gap: 12px; }
}

@media (max-width: 560px) {
  .nav-logo { min-width:auto; }
  .nav-brand-name { display:none; }
  .page-header h1 { font-size:38px; }
  .section-title { font-size:32px; }
  .stats-grid, .benefits-grid, .circuit-countries { grid-template-columns:1fr; }
  .result-row { grid-template-columns:42px 1fr; gap:14px; }
  .result-badge { grid-column:2; justify-self:start; }
  .photo-strip { display:grid; grid-template-columns:1fr; }
  .photo-strip img { height:260px; }
  .cta-btn { width:100%; max-width:340px; padding:16px 18px; text-align:center; letter-spacing:0.14em; }
}








