:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --primary: #000000;
  --primary-dark: #000000;
  --secondary: #ffffff;
  --text: #000000;
  --text-light: #404040;
  --muted: #808080;
  --accent: #ff9000;
  --accent-light: #ffb84d;
  --accent-dark: #e67e00;
  --border: #d9d9d9;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

button,
.btn {
  font: inherit;
  transition: all 0.3s ease;
}

button:hover,
.btn:hover {
  opacity: 0.92;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ===== HEADER ===== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: var(--primary-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 0.5rem;
}

nav {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.mobile-nav-toggle:hover {
  border-color: rgba(255, 144, 0, 0.5);
  color: var(--accent-light);
}

.mobile-nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav-toggle-line + .mobile-nav-toggle-line {
  margin-top: 4px;
}

nav a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

nav a:hover {
  color: var(--accent);
}

nav a.is-active {
  color: var(--accent-light);
  font-weight: 700;
}

/* ===== HERO ===== */
.hero {
  background: #000000;
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 144, 0, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  max-width: 15ch;
  font-weight: 800;
}

.hero p {
  margin: 1.5rem 0 2rem;
  max-width: 45rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 144, 0, 0.15);
  border: 1px solid rgba(255, 144, 0, 0.3);
  color: var(--accent-light);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.flag-duo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0.2rem 0 1.8rem;
  flex-wrap: wrap;
}

.flag-card {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
}

.flag-emoji {
  font-size: 2rem;
  line-height: 1;
}

.flag-name {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.flag-vs {
  color: var(--accent-light);
  font-weight: 800;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 144, 0, 0.3);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: min(100%, 500px);
}

/* ===== SECTIONS ===== */
.intro,
.schedule,
.news,
.contact {
  padding: 5rem 0;
}

.team-highlight {
  padding: 4rem 0;
  background: #f7f7f7;
}

.intro h2,
.schedule h2,
.news h2,
.contact h2 {
  margin: 0 0 1.5rem 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-dark);
}

.team-highlight h2 {
  margin: 0 0 1rem 0;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--primary-dark);
}

.info-grid,
.schedule-grid,
.news-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.team-grid p {
  margin: 0 0 1rem 0;
  color: var(--text-light);
}

.team-photo img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
}

/* ===== INFO GRID ===== */
.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.info-grid article:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.info-grid h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.info-grid p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== SCHEDULE ===== */
.schedule {
  background: #ffffff;
}

.schedule-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.schedule-grid div {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.schedule-grid div:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 144, 0, 0.1);
}

.schedule-grid strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.schedule-grid p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.pricing-section h3 {
  margin: 0 0 1.3rem 0;
  font-size: 1.4rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 144, 0, 0.08);
  border: 1px solid rgba(255, 144, 0, 0.2);
  border-radius: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
}

.pricing-frequency {
  color: var(--primary-dark);
  font-weight: 600;
}

.pricing-value {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
}

.pricing-note {
  background: transparent !important;
  border: none !important;
  color: var(--muted);
  font-weight: 500;
  padding: 0.5rem 0 !important;
  justify-content: flex-start !important;
}

/* ===== NEWS ===== */
.news {
  background: #ffffff;
}

.section-header {
  max-width: 700px;
  margin-bottom: 3rem;
}

.featured-news-link {
  margin: 0 0 2rem 0;
}

.featured-news-link .btn {
  display: inline-block;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.news-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.news-dual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.news-pane {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
}

.news-pane-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.news-pane-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.academy-news-card {
  overflow: hidden;
  padding: 0;
}

.academy-news-thumb-link {
  display: block;
}

.academy-news-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.academy-news-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.2rem 1.2rem 1.4rem;
  height: 100%;
}

.academy-news-chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  border: 1px solid rgba(255, 144, 0, 0.35);
  background: rgba(255, 144, 0, 0.12);
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.academy-news-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--accent-dark);
}

.academy-news-link:hover {
  color: var(--accent);
}

.academy-news-more {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
}

.hidden {
  display: none !important;
}

.scheduled-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 0.95rem 1rem;
}

.scheduled-notice.is-warning {
  border-left-color: #f59e0b;
  background: #fffaf0;
}

.scheduled-notice.is-info {
  border-left-color: #0ea5e9;
  background: #f0f9ff;
}

.scheduled-notice.is-success {
  border-left-color: #10b981;
  background: #ecfdf5;
}

.scheduled-notice-gif {
  width: 58px;
  height: 58px;
  border-radius: 0.5rem;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.scheduled-notice-content {
  min-width: 0;
}

.scheduled-notice-title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.scheduled-notice-text {
  margin: 0.35rem 0 0;
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1.5;
}

.scheduled-notice-comment {
  margin: 0.38rem 0 0;
  color: var(--text-light);
  font-size: 0.92rem;
}

.scheduled-notice-action {
  display: inline-block;
  margin-top: 0.55rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.scheduled-notice-action:hover {
  color: var(--accent);
}

.news-list-page h2 {
  margin: 0 0 1.5rem 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent);
}

.news-card h3 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  color: var(--primary-dark);
  line-height: 1.4;
}

.news-card h3 a {
  color: var(--primary-dark);
}

.news-card h3 a:hover {
  color: var(--accent);
}

.news-card p {
  margin: 0 0 1rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
  flex-grow: 1;
}

.news-card time {
  display: block;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.see-more-news {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.see-more-news:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 144, 0, 0.3);
}

/* ===== CONTACT ===== */
.contact {
  background: #000000;
  color: white;
}

.contact h2 {
  color: white;
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
}

.contact p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.contact strong {
  color: var(--accent);
  font-weight: 700;
}

.contact a {
  color: var(--accent);
  font-weight: 600;
}

.contact a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.contact-phone {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem 0;
  color: var(--accent);
}

.contact-photo {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.contact-photo img {
  width: 100%;
  max-width: 450px;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
footer {
  padding: 2rem 0;
  background: #000000;
  color: #808080;
  border-top: 3px solid var(--accent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-content p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-content p + p {
  margin-top: 0.4rem;
}

.footer-content p a {
  color: var(--accent);
}

.footer-content p a:hover {
  color: var(--accent-light);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: #999;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* ===== INTERNAL PAGES ===== */
.internal-page {
  background: #f3f3f3;
}

.page-hero {
  background: #000000;
  color: #ffffff;
  padding: 3.5rem 0;
  border-bottom: 3px solid var(--accent);
}

.page-hero h1 {
  margin: 0 0 0.8rem 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
}

.article-content,
.gallery-content {
  padding: 3rem 0 5rem;
}

.gallery-loading-shell {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.gallery-loading-copy {
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.15rem 1.2rem;
}

.gallery-loading-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 144, 0, 0.12);
  color: var(--accent-dark);
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-loading-copy h2 {
  margin: 0.7rem 0 0.45rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  color: var(--primary-dark);
}

.gallery-loading-copy p {
  margin: 0;
  color: var(--text-light);
}

.article-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.article-main-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.article-body {
  padding: 2rem;
}

.article-body-layout {
  display: grid;
  grid-template-columns: minmax(250px, 360px) 1fr;
  align-items: start;
  gap: 1.6rem;
}

.article-text-block {
  min-width: 0;
}

.article-body p {
  margin: 0 0 1rem 0;
  color: var(--text-light);
}

.article-video-block {
  margin: 0;
  position: relative;
}

.article-video-block h3 {
  margin: 0 0 0.75rem;
  color: var(--primary-dark);
}

.article-main-video {
  width: 100%;
  max-height: 640px;
  display: block;
  border-radius: 0.75rem;
  background: #000000;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.video-loading-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.58);
  border-radius: 0.75rem;
  z-index: 2;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-loading-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-loading-content {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #ffffff;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.65rem 1rem;
}

.video-loading-spinner {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  animation: videoSpin 0.85s linear infinite;
}

@keyframes videoSpin {
  to {
    transform: rotate(360deg);
  }
}

.article-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

.article-side-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.article-side-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.championship-gallery {
  margin-top: 1.6rem;
}

.championship-gallery h3 {
  margin: 0 0 0.5rem 0;
  color: var(--primary-dark);
}

.championship-gallery p {
  margin: 0 0 1rem 0;
}

.strip-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.strip-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--primary-dark);
  font-size: 1.1rem;
  cursor: pointer;
}

.strip-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.championship-strip {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding: 0.3rem;
  scroll-behavior: smooth;
}

.championship-thumb {
  position: relative;
  min-width: 150px;
  width: 150px;
  height: 150px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

.championship-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 1rem;
}

.photo-lightbox[hidden] {
  display: none;
}

.lightbox-stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.lightbox-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 0.6rem;
}

.lightbox-nav,
.lightbox-close {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-size: 1.3rem;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.lightbox-counter {
  text-align: center;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.gallery-tab {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

.gallery-tab.active,
.gallery-tab:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.6rem;
}

.gallery-skeleton-grid {
  pointer-events: none;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.gallery-skeleton-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #f2f2f2 0%, #fafafa 30%, #ececec 55%, #f7f7f7 100%);
}

.gallery-skeleton-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: galleryShimmer 1.5s ease-in-out infinite;
}

@keyframes galleryShimmer {
  100% {
    transform: translateX(100%);
  }
}

.gallery-grid-live {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-grid-is-loading {
  opacity: 0;
  transform: translateY(14px);
}

.gallery-grid-is-ready {
  opacity: 1;
  transform: translateY(0);
}

.photo-grid figure:nth-child(7n+1) {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-grid figure:nth-child(7n+4) {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-grid figure.is-clickable {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.photo-grid figure.is-clickable:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  z-index: 1;
  position: relative;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-grid img.is-loading {
  opacity: 0;
  transform: scale(1.04);
}

.photo-grid img.is-ready {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.empty-gallery {
  background: #ffffff;
  border: 1px dashed var(--border);
  border-radius: 0.6rem;
  padding: 1.5rem;
  color: var(--text-light);
}

/* ===== ATHLETES ===== */
.athletes-intro-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0.7rem;
  padding: 1.2rem 1.3rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.athletes-intro-card h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
}

.athletes-intro-card p {
  margin: 0;
  color: var(--text-light);
}

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

.athlete-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.athlete-photo-btn {
  width: 100%;
  border: none;
  padding: 0;
  background: #000000;
  cursor: pointer;
}

.athlete-photo-btn img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.25s ease;
}

.athlete-photo-btn:hover img {
  transform: scale(1.03);
}

.athlete-info {
  padding: 1rem 1rem 1.1rem;
}

.athlete-info h2 {
  margin: 0;
  font-size: 1.2rem;
}

.athlete-belt-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin: 0.45rem 0 0.8rem;
}

.athlete-graduation {
  margin: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.athlete-belt-img {
  width: 92px;
  min-width: 92px;
  height: auto;
  display: block;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.athlete-description {
  margin: 0;
  color: var(--text-light);
}

.athletes-guide-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0.7rem;
  padding: 1.4rem;
  margin: 0 auto 1.3rem;
  max-width: 780px;
  width: 100%;
  box-shadow: var(--shadow);
}

.athletes-guide-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  text-align: center;
}

.athletes-guide-card p {
  margin: 0 0 1rem;
  color: var(--text-light);
  text-align: center;
  font-size: 1.04rem;
  line-height: 1.75;
}

.athletes-guide-card .btn {
  display: table;
  margin: 0 auto;
}

.belts-guide {
  display: grid;
  gap: 1rem;
}

.belts-guide-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.belts-guide-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.belts-guide-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.14rem;
  color: var(--accent-dark);
  text-align: center;
}

.belts-guide-card p {
  margin: 0;
  color: var(--text-light);
  text-align: center;
  font-size: 1.04rem;
  line-height: 1.75;
}

.belt-illustration {
  width: min(100%, 420px);
  height: auto;
  display: block;
  margin: 0.6rem auto;
  border: 1px solid var(--border);
  border-radius: 0.55rem;
  background: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
  }

  .article-body-layout {
    grid-template-columns: 1fr;
  }

  .article-main-video {
    max-height: 72vh;
  }
}

@media (max-width: 720px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .gallery-loading-copy {
    padding: 1rem;
    border-radius: 0.9rem;
  }

  .gallery-loading-copy h2 {
    font-size: 1.2rem;
  }

  .photo-grid figure:nth-child(7n+1),
  .photo-grid figure:nth-child(7n+4) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
  }

  .brand {
    min-width: 0;
    padding-right: 0.5rem;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  nav {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
  }

  .topbar.menu-open nav {
    display: flex;
  }

  .topbar.menu-open .mobile-nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .topbar.menu-open .mobile-nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .topbar.menu-open .mobile-nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  nav a {
    width: 100%;
    padding: 0.9rem 0.95rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
  }

  nav a:hover {
    background: rgba(255, 255, 255, 0.09);
  }

  nav a.is-active {
    background: rgba(255, 144, 0, 0.16);
    border: 1px solid rgba(255, 144, 0, 0.3);
    color: var(--accent-light);
  }

  .hero {
    padding: 2.5rem 0 3rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-badges {
    flex-direction: column;
  }

  .hero-badges span {
    width: 100%;
  }

  .flag-duo {
    width: 100%;
  }

  .contact-grid {
    gap: 2rem;
  }

  .intro,
  .schedule,
  .news,
  .contact,
  .team-highlight {
    padding: 3rem 0;
  }

  .container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .schedule-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 1.35rem;
  }

  .section-header p {
    font-size: 0.98rem;
  }

  .news-dual {
    gap: 1rem;
  }

  .news-pane {
    padding: 1rem;
    border-radius: 0.95rem;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  }

  .news-dual .news-pane:first-child {
    border-color: rgba(255, 144, 0, 0.28);
    background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
  }

  .news-dual .news-pane:last-child {
    border-color: rgba(14, 165, 233, 0.28);
    background: linear-gradient(180deg, #f3fbff 0%, #ffffff 100%);
  }

  .news-pane-header {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
  }

  .news-pane-header h3 {
    width: 100%;
    font-size: 1.15rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid var(--border);
  }

  .news-dual .news-pane:first-child .news-pane-header h3 {
    color: var(--accent-dark);
    border-bottom-color: rgba(255, 144, 0, 0.22);
  }

  .news-dual .news-pane:last-child .news-pane-header h3 {
    color: #0369a1;
    border-bottom-color: rgba(14, 165, 233, 0.22);
  }

  .academy-news-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 0.95rem;
    border: 1px solid rgba(255, 144, 0, 0.28);
    border-radius: 999px;
    background: rgba(255, 144, 0, 0.12);
  }

  .news-dual .news-pane:last-child .academy-news-link {
    border-color: rgba(14, 165, 233, 0.28);
    background: rgba(14, 165, 233, 0.12);
    color: #0369a1;
  }

  .news-dual .news-pane:last-child .academy-news-link:hover {
    color: #0284c7;
  }

  .news-card {
    padding: 1rem;
    border-radius: 0.8rem;
  }

  .academy-news-card {
    border: 1px solid rgba(255, 144, 0, 0.18);
  }

  .academy-news-thumb {
    height: 180px;
  }

  .academy-news-content {
    padding: 1rem 1rem 1.15rem;
  }

  .article-body {
    padding: 1rem;
  }

  .article-video-block {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 0.75rem;
  }

  .article-video-block h3 {
    margin-bottom: 0.6rem;
    font-size: 1rem;
  }


  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .strip-nav {
    grid-template-columns: 1fr;
  }

  .strip-btn {
    display: none;
  }

  .championship-thumb {
    min-width: 130px;
    width: 130px;
    height: 130px;
  }

  .lightbox-stage {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  #lightbox-prev {
    left: 10px;
  }

  #lightbox-next {
    right: 10px;
  }

  .athlete-photo-btn img {
    height: 180px;
  }

  .scheduled-notice {
    flex-direction: column;
    margin-bottom: 1rem;
    padding: 1rem;
    border-left-width: 0;
    border-top: 4px solid var(--accent);
    border-radius: 0.95rem;
    box-shadow: var(--shadow-lg);
  }

  .scheduled-notice.is-warning {
    border-top-color: #f59e0b;
  }

  .scheduled-notice.is-info {
    border-top-color: #0ea5e9;
  }

  .scheduled-notice.is-success {
    border-top-color: #10b981;
  }

  .scheduled-notice-gif {
    width: 100%;
    max-width: 210px;
    height: auto;
  }

  .scheduled-notice-title {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 144, 0, 0.12);
    color: var(--accent-dark);
  }

  .scheduled-notice-text {
    font-size: 1rem;
  }

  .scheduled-notice-comment {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .scheduled-notice-action {
    margin-top: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 144, 0, 0.28);
    border-radius: 999px;
    background: rgba(255, 144, 0, 0.12);
  }

  .article-main-video {
    width: 100%;
    max-width: 100%;
    max-height: min(72vh, 560px);
    border-radius: 0.75rem;
    box-sizing: border-box;
  }

  .video-loading-overlay {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .video-loading-content {
    width: calc(100% - 1rem);
    max-width: 300px;
    justify-content: center;
    padding: 0.7rem 0.85rem;
    border-radius: 1rem;
    text-align: center;
    font-size: 0.92rem;
  }

  .pricing-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .pricing-value {
    align-self: flex-end;
  }

  .pricing-section h3 {
    font-size: 1.2rem;
  }
}

