:root {
  --bg: #f5f0e8;
  --bg-dark: #0a0908;
  --bg-muted: #ebe4d8;
  --text: #1a1614;
  --text-muted: #5c534a;
  --text-light: #e7e5e4;
  --accent: #9b1c1c;
  --accent-hover: #7f1d1d;
  --gold: #d4af37;
  --gold-light: #f0d878;
  --border: rgba(26, 22, 20, 0.1);
  --radius: 0.75rem;
  --shadow: 0 24px 60px rgba(10, 9, 8, 0.18);
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --font-accent: "Oswald", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.eyebrow-light {
  color: var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #a67c00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  letter-spacing: 0.03em;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-muted {
  background: var(--bg-muted);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-note code {
  background: rgba(0, 0, 0, 0.06);
  padding: 0.15rem 0.4rem;
  border-radius: 0.35rem;
  font-size: 0.85em;
}

.section-hindi {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--accent);
  margin: -0.5rem 0 1rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 760px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.25rem 1.1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.85rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-family: var(--font-body);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-item a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.brand-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-sub {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  text-decoration: none;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--bg-dark);
  color: var(--text-light) !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 95% 5%, rgba(155, 28, 28, 0.1), transparent),
    radial-gradient(ellipse 55% 45% at 0% 90%, rgba(212, 175, 55, 0.12), transparent),
    linear-gradient(180deg, rgba(10, 9, 8, 0.02) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  border-color: var(--text);
  color: var(--text);
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-size: 1.35rem;
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.04em;
}

.hero-stats span {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-card {
  margin: 0;
  border-radius: calc(var(--radius) * 1.25);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-card--tournament {
  position: relative;
  background: linear-gradient(180deg, #141210 0%, var(--bg-dark) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(212, 175, 55, 0.15);
}

.hero-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 0.4rem 0.85rem;
  border-radius: 3px;
}

.hero-card--tournament img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  padding: 0.75rem 0.5rem 0.25rem;
}

.hero-card--tournament figcaption {
  padding: 0.9rem 1.1rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(231, 229, 228, 0.88);
  background: rgba(212, 175, 55, 0.08);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.hero-card figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* About */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.check-list li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.about-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(12, 10, 9, 0.88);
  color: white;
  padding: 0.85rem 1.1rem;
  border-radius: 0.75rem;
}

.about-badge span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

.about-badge strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

/* Trainer */
.trainer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.trainer-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.trainer-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.trainer-brand {
  margin-bottom: 1.25rem;
}

.trainer-brand img {
  display: block;
  max-width: min(100%, 22rem);
  height: auto;
}

.trainer-role {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.trainer-copy p {
  color: rgba(231, 229, 228, 0.88);
}

blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: normal;
  letter-spacing: 0.02em;
  color: var(--text-light);
  background: rgba(212, 175, 55, 0.06);
  border-radius: 0 0.5rem 0.5rem 0;
}

.trainer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.trainer-tags span {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Events */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.events-loading,
.events-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 1rem;
}

.event-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.event-card--featured {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(155, 28, 28, 0.12);
}

.event-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.event-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.event-date {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.event-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.event-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.event-venue {
  font-size: 0.95rem;
}

.event-badge {
  align-self: flex-start;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.events-contact {
  margin-top: 2rem;
  text-align: center;
}

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

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.85rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-link {
  text-align: center;
  margin-top: 1.5rem;
}

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

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

.achievements-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.achievements-photo img {
  width: 100%;
  display: block;
}

.achievements-copy h2 {
  color: var(--text-light);
}

.achievements-copy p {
  color: rgba(231, 229, 228, 0.88);
}

.medal-stats {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  gap: 1.5rem;
}

.medal-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.medal-stats strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
}

.medal-stats span {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(231, 229, 228, 0.7);
}

.achievements-note {
  font-size: 0.92rem;
  color: rgba(231, 229, 228, 0.65) !important;
}

@media (max-width: 960px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-wrap video {
  object-fit: contain;
  background: #000;
}

.video-grid--featured {
  grid-template-columns: 1fr;
  max-width: 42rem;
  margin-inline: auto;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

address {
  font-style: normal;
  margin: 1rem 0 1.5rem;
  line-height: 1.8;
  color: rgba(231, 229, 228, 0.85);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list span {
  color: rgba(231, 229, 228, 0.6);
  font-size: 0.85rem;
}

.contact-list a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-dark .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-light);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
}

.map-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.map-tab {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-light);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.map-tab.active {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.map-panel iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
}

.map-panel[hidden] {
  display: none;
}

.map-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

/* Footer */
.site-footer {
  background: #050403;
  color: rgba(231, 229, 228, 0.7);
  padding: 2rem 0;
  font-size: 0.88rem;
}

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

.footer-inner a {
  color: var(--gold);
  text-decoration: none;
}

.visit-counter {
  margin: 0;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(231, 229, 228, 0.55);
}

.visit-counter strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform 0.2s;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .split,
  .trainer-grid,
  .cards,
  .video-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .cards,
  .events-grid {
    grid-template-columns: 1fr;
  }

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