:root {
  --bg: #ffffff;
  --bg-soft: #f4f8ff;
  --bg-accent: #e6f0ff;
  --bg-band: #edf5ff;
  --bg-deep: #0f3a78;
  --text: #10233f;
  --text-soft: #506981;
  --blue: #1d5fbe;
  --blue-dark: #123f7f;
  --blue-deep: #0d2d5d;
  --blue-soft: #dbeafe;
  --line: #d8e5f3;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(17, 49, 92, 0.08);
  --shadow-strong: 0 24px 60px rgba(17, 49, 92, 0.14);
  --radius: 22px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(94%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(16, 35, 63, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
}

.brand-large {
  max-width: 480px;
}

.logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-name {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue-deep);
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.98rem;
  color: var(--text-soft);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 2 1 auto;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--blue-dark);
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.site-nav a:hover {
  background: var(--bg-accent);
  transform: translateY(-2px);
}

.site-nav .nav-cta {
  background: var(--blue);
  color: #ffffff;
  padding-inline: 1.4rem;
  box-shadow: 0 10px 20px rgba(29, 95, 190, 0.18);
}

.site-nav .nav-cta:hover {
  background: var(--blue-dark);
}

.menu-toggle {
  display: none;
  background: var(--blue);
  color: #ffffff;
  border: none;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-weight: 800;
}

.hero-premium {
  padding: 4.2rem 0 2.2rem;
  background:
    radial-gradient(circle at top right, rgba(29, 95, 190, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.hero-single {
  max-width: 1240px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.92;
  margin: 0 0 1.6rem;
  color: var(--blue);
  font-weight: 900;
}

.hero-image-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-image {
  width: 100%;
  height: min(74vh, 780px);
  object-fit: cover;
}

.video-band {
  background: var(--bg-band);
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.media-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.media-grid-stacked {
  align-items: start;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--blue-deep);
}

h3 {
  font-size: 1.42rem;
  line-height: 1.25;
  margin: 0 0 0.7rem;
  color: var(--blue-deep);
}

.section-text {
  font-size: 1.14rem;
  color: var(--text-soft);
  max-width: 68ch;
}

.video-embed-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
  background: #000;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.section {
  padding: 5.2rem 0;
}

.intro-section {
  background: #ffffff;
}

.story-grid-simple {
  grid-template-columns: 1fr;
}

.story-copy {
  max-width: 820px;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.95;
  color: var(--text-soft);
}

.training-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.training-header {
  margin-bottom: 1.5rem;
}

.training-image-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  margin-bottom: 2rem;
}

.training-image {
  width: 100%;
  height: min(60vh, 620px);
  object-fit: cover;
}

.training-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.training-info-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.training-info-card p {
  color: var(--text-soft);
}

.page-header {
  margin-bottom: 2.5rem;
  max-width: 860px;
}

.page-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  color: var(--blue-deep);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.gallery-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 240px;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.placeholder-card {
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  color: var(--text-soft);
  background: var(--bg-soft);
  font-weight: 700;
}

.contact-layout {
  max-width: 1100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.8rem;
  align-items: start;
}

.info-card,
.table-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.info-card p {
  color: var(--text-soft);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  font-weight: 700;
  color: var(--blue-deep);
}

input,
textarea {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid #c6dcfb;
  border-color: var(--blue);
}

.form-note {
  color: var(--text-soft);
  margin-top: 1rem;
}

.fixtures-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.fixtures-table th,
.fixtures-table td {
  text-align: left;
  padding: 1rem 0.8rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}

.fixtures-table th {
  color: var(--blue-deep);
  font-weight: 800;
}

.top-space {
  margin-top: 2rem;
}

.site-footer {
  background: #f7fbff;
  border-top: 1px solid var(--line);
  padding: 1.8rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-soft);
}

.reveal,
.reveal-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view,
.reveal-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-nav a {
    transition: none;
  }
}

@media (max-width: 1024px) {
  .media-grid,
  .training-info-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    padding-top: 1rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-cta {
    text-align: center;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 700px) {
  .brand-name {
    font-size: 1.45rem;
  }

  .logo {
    width: 58px;
    height: 58px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .hero-image,
  .training-image,
  .gallery-item img {
    height: auto;
  }

  .fixtures-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
