﻿:root {
  --bg: #0a0b0d;
  --bg-soft: #111216;
  --fg: #f3f0ea;
  --muted: #b4b0a8;
  --accent: #c8a04d;
  --accent-strong: #d7b76a;
  --accent-dark: #7a1515;
  --line: #26282d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  mix-blend-mode: screen;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.92) 0%, rgba(7, 7, 9, 0.6) 100%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  display: block;
  height: 28px;
  width: auto;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  height: 2px;
  width: 26px;
  background: var(--fg);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(62%) sepia(68%) saturate(611%) hue-rotate(358deg) brightness(96%) contrast(94%);
}

.menu-panel {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 7, 0.95);
  backdrop-filter: blur(12px);
  padding: 120px 12vw 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 15;
}

.menu-panel.is-open {
  transform: translateX(0);
  opacity: 1;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 2px;
}

.menu-nav a {
  color: var(--fg);
}

.menu-lang {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.menu-lang-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.lang-switch {
  display: flex;
  gap: 10px;
}

.lang-switch button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 8px 14px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.lang-switch button.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.6) 0%, rgba(8, 8, 10, 0.95) 85%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: 8vw;
  max-width: 540px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.is-loaded .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 8vw, 120px);
  margin: 10px 0 0;
  letter-spacing: 4px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 16px;
}

.hero-eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--fg);
  border-bottom: 2px solid var(--fg);
  transform: rotate(45deg);
  animation: bounce 1.6s infinite;
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.section-text {
  color: var(--muted);
  max-width: 700px;
}

.image-break .image-frame {
  border: 1px solid var(--line);
  background: #0f0f12;
  padding: 14px;
}

.image-break img {
  width: 100%;
  height: clamp(260px, 45vw, 520px);
  object-fit: cover;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.sponsor-card {
  border: 1px solid var(--line);
  padding: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  text-align: center;
}

.cta {
  background: var(--bg-soft);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: var(--accent);
  color: #111;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--fg);
  color: var(--fg);
}

.btn-strong {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}

.page-hero {
  padding: 160px 0 80px;
  background: radial-gradient(circle at top, rgba(200, 160, 77, 0.15), transparent 60%);
}

.page-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(50px, 8vw, 100px);
  margin: 0;
  letter-spacing: 4px;
}

.page-subtitle {
  color: var(--muted);
  max-width: 520px;
}

.timeline-list {
  position: relative;
  margin-top: 40px;
  --timeline-year: 120px;
  --timeline-rail: 80px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: calc(var(--timeline-year) + (var(--timeline-rail) / 2));
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: var(--timeline-year) var(--timeline-rail) 1fr;
  gap: 20px;
  padding: 34px 0;
  align-items: start;
}

.timeline-year {
  text-align: right;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  padding-right: 30px;
}

.timeline-year::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--line);
}

.timeline-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--bg);
  transition: background 0.3s ease, transform 0.3s ease;
}

.timeline-panel {
  display: grid;
  gap: 16px;
}

.timeline-media {
  border: 1px solid var(--line);
  background: #0f0f12;
  padding: 12px;
}

.timeline-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.timeline-content {
  color: var(--muted);
  max-width: 620px;
}

.timeline-item.active .timeline-year {
  color: var(--fg);
}

.timeline-item.active .timeline-year::after {
  background: var(--accent);
}

.timeline-item.active .timeline-dot {
  background: var(--accent);
  transform: scale(1.1);
}

.coaching-hero {
  padding: 180px 0 120px;
  position: relative;
  background: #0a0b0d;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.coaching-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: none;
}

.coaching-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.4) 0%, rgba(7, 7, 9, 0.9) 100%);
  pointer-events: none;
  z-index: 1;
}

.coaching-hero .container {
  position: relative;
  z-index: 2;
}

.coaching-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-strong);
}

.coaching-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  max-width: 900px;
  margin: 12px 0;
  letter-spacing: 3px;
}

.coaching-text {
  font-size: 18px;
  max-width: 620px;
  color: var(--fg);
}

.coaching-actions {
  margin-top: 24px;
}

.coaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.coaching-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(10, 11, 13, 0.6);
}

.coaching-list {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.booking-frame {
  margin-top: 30px;
  border: 1px solid var(--line);
  background: #0f0f12;
  overflow: hidden;
}

.booking-frame iframe {
  width: 100%;
  min-height: 520px;
  border: none;
}

.feature-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
  background: #14151a;
}

.gallery-grid img:hover {
  transform: scale(1.04);
}

.gallery-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.contact-details {
  margin: 24px 0 32px;
  display: grid;
  gap: 6px;
}

.contact-label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
}

.contact-value {
  margin-bottom: 8px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  background: transparent;
  border: 1px solid var(--line);
  padding: 12px;
  color: var(--fg);
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.contact-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  font-size: 12px;
}

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

.footer-icons {
  opacity: 0.85;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.footer-credit img {
  width: 120px;
  height: auto;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lazy-image {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lazy-image.is-loaded {
  opacity: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

@media (max-width: 900px) {
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .timeline-list {
    --timeline-year: 80px;
    --timeline-rail: 50px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 16px 20px;
  }

  .hero-content {
    margin-left: 6vw;
  }

  .page-hero {
    padding-top: 140px;
  }

  .gallery-grid img {
    height: 200px;
  }

  .timeline-media img {
    height: 240px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
