:root {
  --navy: #071f28;
  --navy-2: #0b3038;
  --green: #0c4938;
  --green-2: #126b51;
  --blue: #00a8df;
  --gold: #e0b83f;
  --cream: #f3f0e8;
  --paper: #faf9f5;
  --ink: #102d2b;
  --muted: #60716d;
  --line: rgba(16, 45, 43, .16);
  --white: #fff;
  --max: 1240px;
  --shadow: 0 24px 80px rgba(3, 24, 27, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.hidden { position: absolute; left: -9999px; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 1000; padding: 12px 18px; background: white; }
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  padding: 0 clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 34px;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background .3s, height .3s, box-shadow .3s;
}
.site-header.scrolled {
  height: 70px;
  background: rgba(7,31,40,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(0,0,0,.15);
}
.brand { display: flex; align-items: center; gap: 18px; margin-right: auto; }
.brand img:first-child { width: 137px; height: auto; }
.brand .event-mark { width: 43px; }
.brand-divider { width: 1px; height: 32px; background: rgba(255,255,255,.25); }
.desktop-nav { display: flex; gap: 28px; font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.desktop-nav a, .text-link { transition: color .2s; }
.desktop-nav a:hover, .text-link:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 22px; font-size: 13px; font-weight: 700; }
.menu-button { display: none; width: 44px; height: 44px; padding: 9px; border: 0; background: transparent; }
.menu-button span { display: block; height: 2px; margin: 6px 0; background: white; }

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .025em;
  transition: transform .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 18px; }
.button-gold { color: #132c2a; background: var(--gold); }
.button-gold:hover { background: #efc94f; }
.button-glass, .button-outline { color: white; border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.button-light { color: var(--navy); background: white; }

.mobile-menu {
  position: fixed;
  z-index: 202;
  top: 0;
  right: 0;
  width: min(88vw, 430px);
  height: 100dvh;
  padding: 92px 30px 30px;
  color: white;
  background: var(--navy);
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.13); font-size: 20px; font-weight: 700; }
.menu-close { position: absolute; top: 24px; right: 25px; color: white; border: 0; background: transparent; font-size: 38px; }
.mobile-actions { display: grid; gap: 12px; margin-top: 34px; }
.menu-backdrop { position: fixed; z-index: 201; inset: 0; visibility: hidden; opacity: 0; background: rgba(0,0,0,.55); transition: .3s; }
.menu-backdrop.open { visibility: visible; opacity: 1; }

.hero {
  position: relative;
  min-height: 920px;
  height: 100svh;
  color: white;
  overflow: hidden;
  background: var(--navy);
}
.hero-image { position: absolute; inset: 0; background: url("assets/hero-football-cities.png") center 57% / cover no-repeat; transform: scale(1.015); }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(3,24,31,.95) 0%, rgba(3,24,31,.76) 44%, rgba(3,24,31,.25) 76%),
    linear-gradient(0deg, rgba(3,24,31,.72) 0%, transparent 45%),
    linear-gradient(180deg, rgba(3,24,31,.45) 0%, transparent 25%);
}
.pitch-lines { position: absolute; right: -12vw; bottom: -23vw; width: 62vw; height: 62vw; border: 2px solid rgba(255,255,255,.17); border-radius: 50%; }
.pitch-lines::before { content: ""; position: absolute; left: 50%; top: -25%; width: 1px; height: 150%; background: rgba(255,255,255,.15); }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding-top: clamp(158px, 18vh, 205px);
}
.eyebrow { margin: 0 0 19px; color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.dark { color: var(--green-2); }
.hero h1 { max-width: 820px; margin: 0; font-size: clamp(62px, 8.3vw, 125px); line-height: .88; letter-spacing: -.075em; }
.hero h1 span { display: block; color: var(--gold); }
.hero-tagline { margin: 28px 0 0; font-size: clamp(18px, 2vw, 27px); font-weight: 800; letter-spacing: -.025em; }
.hero-intro { max-width: 610px; margin: 23px 0 0; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.date-grid { display: grid; grid-template-columns: repeat(2, minmax(250px, 330px)); gap: 12px; margin-top: 46px; }
.date-card { padding: 22px 24px; border: 1px solid rgba(224,184,63,.75); background: rgba(4,38,38,.72); backdrop-filter: blur(10px); }
.date-card p { margin: 0; color: rgba(255,255,255,.66); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.date-card h2 { margin: 7px 0 13px; font-size: 30px; line-height: 1; text-transform: uppercase; }
.date-card time { color: var(--gold); font-size: 14px; font-weight: 800; }
.scroll-cue { position: absolute; z-index: 3; right: clamp(24px,4vw,64px); bottom: 38px; display: flex; gap: 14px; align-items: center; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.scroll-cue i { display: block; width: 38px; height: 1px; background: white; }

.section { position: relative; max-width: var(--max); margin: 0 auto; padding: 130px 24px; }
.section-heading { max-width: 630px; }
.section-heading h2, .experience-intro h2, .heritage-copy h2, .form-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.intro-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  column-gap: 85px;
  padding-top: 110px;
  padding-bottom: 72px;
}
.intro-copy { padding-top: 46px; }
.intro-copy p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.intro-copy .lead { color: var(--ink); font-size: 21px; line-height: 1.55; }
blockquote { margin: 38px 0 0; padding: 25px 0 0; border-top: 1px solid var(--line); font-size: 17px; font-weight: 700; line-height: 1.55; }
blockquote cite { display: block; margin-top: 15px; color: var(--muted); font-size: 11px; font-style: normal; letter-spacing: .07em; text-transform: uppercase; }
.stats { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 62px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats article { min-height: 132px; padding: 27px 25px; border-right: 1px solid var(--line); }
.stats article:last-child { border: 0; }
.stats strong { display: block; color: var(--green); font-size: 52px; letter-spacing: -.06em; }
.stats span { color: var(--muted); font-size: 13px; }

.cities-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; color: white; }
.city {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 540px;
  padding: clamp(38px,4vw,62px);
  grid-template-rows: auto 1fr;
}
.city-bishkek { background: linear-gradient(145deg,#092d38,#0b4a4c); }
.city-tashkent { background: linear-gradient(145deg,#0e543d,#0a342c); }
.city-topline, .city-content { position: relative; z-index: 2; }
.city-topline { display: flex; justify-content: space-between; color: rgba(255,255,255,.66); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.city-content { max-width: 520px; align-self: center; padding: 34px 0 12px; }
.city-content > p:first-child { margin: 0 0 10px; color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.city-content h2 { margin: 0 0 20px; font-size: clamp(58px,6vw,86px); line-height: .9; letter-spacing: -.07em; text-transform: uppercase; }
.city-content p { color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.65; }
.venue-note { display: inline-block; margin-top: 20px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.2); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.topics-section { padding-bottom: 145px; }
.topics-heading { display: grid; grid-template-columns: 1fr .7fr; max-width: none; align-items: end; column-gap: 80px; }
.topics-heading .eyebrow { grid-column: 1 / -1; }
.topics-heading p:last-child { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.topic-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin-top: 75px; background: var(--line); border: 1px solid var(--line); }
.topic-card { display: block; min-height: 190px; padding: 38px; background: var(--paper); transition: background .25s, color .25s; }
.topic-card h3 { margin: 2px 0 14px; font-size: 23px; letter-spacing: -.025em; }
.topic-card p { max-width: 440px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.topic-card:hover { color: white; background: var(--green); }
.topic-card:hover p { color: rgba(255,255,255,.7); }
.accent-card { background: #e9f1ed; }

.experience-section { padding: 120px max(24px,calc((100vw - var(--max))/2 + 24px)); color: white; background: var(--navy); }
.experience-intro { max-width: 750px; }
.experience-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 80px; border-top: 1px solid rgba(255,255,255,.16); }
.experience-grid article { padding: 35px 26px 20px 0; border-right: 1px solid rgba(255,255,255,.16); }
.experience-grid article:not(:first-child) { padding-left: 26px; }
.experience-grid article:last-child { border: 0; }
.experience-grid h3 { margin: 10px 0 14px; font-size: 20px; }
.experience-grid p { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.65; }

.heritage-section { display: grid; grid-template-columns: .45fr 1fr .7fr; gap: 55px; align-items: start; }
.heritage-label { padding-top: 4px; color: var(--green-2); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.heritage-copy p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.arrow-link { display: inline-flex; gap: 10px; margin-top: 16px; padding-bottom: 7px; border-bottom: 1px solid var(--green); font-size: 13px; font-weight: 800; }
.heritage-metrics { border-top: 1px solid var(--line); }
.heritage-metrics article { padding: 20px 0; border-bottom: 1px solid var(--line); }
.heritage-metrics strong { display: block; color: var(--green); font-size: 42px; letter-spacing: -.05em; }
.heritage-metrics span { color: var(--muted); font-size: 12px; }
.diary-film {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(480px, 1.3fr);
  gap: clamp(30px, 4vw, 62px);
  align-items: center;
  margin-top: 95px;
  padding: clamp(34px, 4vw, 58px);
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.diary-film-heading { display: block; padding: 0; }
.diary-film-heading .eyebrow { margin-bottom: 10px; color: var(--gold); }
.diary-film-heading h3 { margin: 0; font-size: clamp(34px, 4vw, 56px); line-height: 1; letter-spacing: -.05em; }
.film-summary { margin: 24px 0 28px; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.7; }
.diary-film-heading > span { color: rgba(255,255,255,.58); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.diary-film video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #000; object-fit: contain; }
.diary-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .45fr 1fr .7fr;
  gap: 55px;
  align-items: end;
  margin-top: 105px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
}
.diary-heading .eyebrow { margin: 0; align-self: start; }
.diary-heading h3 { margin: 0; font-size: clamp(30px, 3.5vw, 48px); line-height: 1.06; letter-spacing: -.045em; }
.diary-heading > p:last-child { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.diary-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  grid-auto-flow: dense;
  gap: 10px;
  margin-top: 40px;
}
.diary-photo {
  position: relative;
  grid-column: span 3;
  grid-row: span 2;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}
.diary-photo.diary-wide { grid-column: span 6; }
.diary-photo.diary-tall { grid-row: span 4; }
.diary-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.diary-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(3,24,31,.72)); pointer-events: none; }
.diary-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 15px;
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.diary-photo:hover img { transform: scale(1.035); }

.forms-section { display: grid; grid-template-columns: 1fr 1fr; }
.form-panel { padding: clamp(70px,7vw,110px) clamp(28px,7vw,100px); }
.register-panel { color: white; background: var(--green); }
.sponsor-panel { color: white; background: var(--navy-2); }
.form-heading { max-width: 560px; }
.form-heading p:last-child { color: rgba(255,255,255,.66); line-height: 1.65; }
form { display: grid; gap: 25px; max-width: 640px; margin-top: 52px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
label { display: grid; gap: 10px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
input, select, textarea { width: 100%; min-height: 46px; color: white; border: 0; border-bottom: 1px solid rgba(255,255,255,.32); border-radius: 0; outline: 0; background: transparent; padding: 11px 0 13px; }
select { color-scheme: dark; }
textarea { min-height: 105px; resize: vertical; line-height: 1.5; }
textarea::placeholder, input::placeholder { color: rgba(255,255,255,.38); }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
.consent { display: grid; grid-template-columns: 20px 1fr; align-items: center; gap: 11px; margin-top: 2px; font-weight: 600; letter-spacing: 0; line-height: 1.45; text-transform: none; }
.consent input { width: 16px; }
form .button { width: fit-content; min-width: 230px; margin-top: 4px; }
.thank-you-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; color: white; background: var(--navy); }
.thank-you-card { width: min(100%, 680px); padding: clamp(35px, 7vw, 75px); border: 1px solid rgba(255,255,255,.15); background: var(--navy-2); box-shadow: var(--shadow); }
.thank-you-card img { width: 180px; margin-bottom: 70px; }
.thank-you-card h1 { margin: 0; font-size: clamp(58px, 9vw, 100px); line-height: .9; letter-spacing: -.07em; }
.thank-you-card > p:not(.eyebrow) { max-width: 480px; margin: 28px 0 38px; color: rgba(255,255,255,.66); font-size: 17px; line-height: 1.65; }

footer { display: grid; grid-template-columns: 1.3fr 1fr .8fr; gap: 50px; padding: 75px max(24px,calc((100vw - var(--max))/2 + 24px)) 30px; color: white; background: #04171d; }
.footer-brand img { width: 170px; }
.footer-brand p { max-width: 320px; color: rgba(255,255,255,.48); font-size: 13px; line-height: 1.6; }
.footer-locations, .footer-links { display: grid; align-content: start; gap: 12px; color: rgba(255,255,255,.7); font-size: 13px; }
.footer-links a:hover { color: var(--gold); }
.copyright { grid-column: 1 / -1; margin: 40px 0 0; padding-top: 22px; color: rgba(255,255,255,.36); border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

@media (max-width: 980px) {
  .desktop-nav, .header-actions { display: none; }
  .menu-button { display: block; }
  .hero { height: auto; min-height: 940px; }
  .hero-content { padding-top: 160px; }
  .intro-section { grid-template-columns: 1fr; }
  .intro-copy { max-width: 720px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stats article:nth-child(2) { border-right: 0; }
  .stats article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cities-section { grid-template-columns: 1fr; }
  .city { min-height: 510px; }
  .topics-heading { grid-template-columns: 1fr; }
  .topics-heading p:last-child { margin-top: 22px; max-width: 600px; }
  .experience-grid { grid-template-columns: repeat(2,1fr); }
  .experience-grid article:nth-child(2) { border-right: 0; }
  .experience-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .heritage-section { grid-template-columns: 110px 1fr; }
  .heritage-metrics { grid-column: 2; }
  .diary-film { grid-template-columns: minmax(230px, .7fr) minmax(380px, 1.3fr); }
  .diary-heading { grid-template-columns: 110px 1fr; }
  .diary-heading > p:last-child { grid-column: 2; }
  .diary-photo { grid-column: span 4; }
  .diary-photo.diary-wide { grid-column: span 8; }
  .forms-section { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header { height: 70px; padding: 0 18px; }
  .brand { gap: 10px; }
  .brand img:first-child { width: 108px; }
  .brand .event-mark { width: 34px; }
  .brand-divider { height: 25px; }
  .hero { min-height: 920px; }
  .hero-image { background-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg,rgba(3,24,31,.94),rgba(3,24,31,.54)), linear-gradient(0deg,rgba(3,24,31,.88),transparent 62%); }
  .hero-content { width: calc(100% - 36px); padding-top: 130px; }
  .hero h1 { font-size: clamp(48px,14.4vw,58px); letter-spacing: -.08em; }
  .hero-intro { font-size: 15px; }
  .hero-actions { display: grid; }
  .date-grid { grid-template-columns: 1fr; margin-top: 30px; }
  .date-card { padding: 17px 20px; }
  .date-card h2 { font-size: 24px; margin-bottom: 9px; }
  .scroll-cue { display: none; }
  .section { padding: 90px 18px; }
  .section-heading, .intro-copy, .stats { margin-left: 0; }
  .section-heading h2, .experience-intro h2, .heritage-copy h2, .form-heading h2 { font-size: 42px; }
  .intro-copy { padding-top: 30px; }
  .intro-copy .lead { font-size: 18px; }
  .stats { grid-template-columns: 1fr 1fr; margin-top: 55px; }
  .stats article { min-height: 130px; padding: 25px 17px; }
  .stats strong { font-size: 40px; }
  .city { min-height: 470px; padding: 28px 20px; }
  .city-content h2 { font-size: 58px; }
  .topic-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .topic-card { min-height: 0; padding: 28px 20px; }
  .topic-card h3 { font-size: 20px; }
  .experience-section { padding: 85px 18px; }
  .experience-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .experience-grid article, .experience-grid article:not(:first-child) { padding: 25px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .experience-grid h3 { margin-top: 20px; }
  .heritage-section { grid-template-columns: 1fr; gap: 28px; }
  .heritage-metrics { grid-column: auto; }
  .diary-film { display: grid; grid-template-columns: 1fr; gap: 25px; margin-top: 55px; padding: 24px 18px 18px; }
  .diary-film-heading { display: block; }
  .diary-film-heading > span { padding: 0; }
  .diary-heading { grid-template-columns: 1fr; gap: 16px; margin-top: 60px; }
  .diary-heading > p:last-child { grid-column: auto; }
  .diary-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 135px; gap: 7px; margin-top: 28px; }
  .diary-photo, .diary-photo.diary-wide { grid-column: span 1; grid-row: span 1; }
  .diary-photo.diary-tall { grid-row: span 2; }
  .diary-photo:nth-child(1),
  .diary-photo:nth-child(7),
  .diary-photo:nth-child(14),
  .diary-photo:nth-child(16) { grid-column: 1 / -1; }
  .form-panel { padding: 75px 18px; }
  .field-row { grid-template-columns: 1fr; }
  form .button { width: 100%; }
  footer { grid-template-columns: 1fr; padding: 60px 18px 25px; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
