/* ==========================================================================
   Bhiwani Boxing Club — stylesheet
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ---------- Design tokens ---------- */
:root {
  --red: #d81f27;
  --red-dark: #a5141b;
  --red-darker: #7a0f14;
  --ink: #121012;
  --ink-soft: #201c1e;
  --gold: #e8b23a;
  --gold-soft: #f6d488;
  --cream: #faf7f2;
  --paper: #ffffff;
  --gray-100: #f2efe9;
  --gray-200: #e6e1d8;
  --gray-500: #7c766e;
  --gray-700: #4a4540;
  --text: #1c1917;
  --silver: #b9c0c6;
  --bronze: #c17a3f;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 2px 8px rgba(18,16,18,.06);
  --shadow-md: 0 10px 30px rgba(18,16,18,.12);
  --shadow-lg: 0 20px 50px rgba(18,16,18,.22);
  --ease: cubic-bezier(.4,0,.2,1);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: .06em; }

p { color: var(--gray-700); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
.section-tight { padding: 56px 0; }

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
}

/* ---------- Eyebrow / kicker ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--red);
  display: inline-block;
}

.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(216,31,39,.35);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(216,31,39,.42); }
.btn-outline {
  border: 2px solid currentColor;
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-outline.light { color: #fff; }
.btn-outline.light:hover { background: #fff; color: var(--ink); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 8px 20px rgba(232,178,58,.35); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: .78rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(18,16,18,.0);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 18px 0;
}
.site-header::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,0));
  z-index:-1;
  opacity: 1;
  transition: opacity .35s var(--ease);
}
.site-header.solid {
  background: var(--ink);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  padding: 10px 0;
}
.site-header.solid::before{ opacity: 0; }
.site-header.no-hero { background: var(--ink); padding: 10px 0; }
.site-header.no-hero::before{ opacity: 0; }

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,255,255,.15);
}
.brand-mark svg { width: 26px; height: 26px; fill: #fff; }
.brand-text { line-height: 1.1; }
.brand-text .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
}
.brand-text .sub {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  color: #f2f0ee;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.main-nav > ul > li > a .caret { width: 9px; height: 9px; opacity: .7; transition: transform .2s; }
.main-nav > ul > li:hover > a, .main-nav > ul > li > a.active { color: var(--gold-soft); }
.main-nav > ul > li:hover > a .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.main-nav > ul > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(4px); }
.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 500;
}
.dropdown li a:hover { background: var(--gray-100); color: var(--red); }
.dropdown.wide { min-width: 380px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 6px; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 6px;
  z-index: 1100;
}
.hamburger span { width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px); background: var(--ink); flex-direction: column; align-items: stretch; padding: 90px 0 30px; transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto; }
  .main-nav.is-open { transform: translateX(0); box-shadow: -20px 0 50px rgba(0,0,0,.35); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0 20px; }
  .main-nav > ul > li > a { padding: 15px 6px; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.08); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.04); display: none; width: 100%; margin-bottom: 6px; }
  .dropdown.wide { grid-template-columns: 1fr; }
  li.nav-open > .dropdown { display: block; }
  .dropdown li a { color: #eee; }
  .dropdown li a:hover { background: rgba(255,255,255,.08); color: var(--gold-soft); }
  .hamburger { display: flex; }
  .header-cta .btn-primary { padding: 10px 16px; font-size: .74rem; }
  .nav-scrim { content:""; position: fixed; inset:0; background: rgba(0,0,0,.5); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 999; }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}
@media (max-width: 400px) {
  .brand-text .sub { display: none; }
  .brand-text .name { font-size: 1rem; }
  .brand-mark { width: 40px; height: 40px; }
  .header-cta { gap: 8px; }
  .header-cta .btn-primary { padding: 9px 12px; font-size: .68rem; }
}

/* ==========================================================================
   Hero slider
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s var(--ease), transform 7s linear;
  background-size: cover;
  background-position: center;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); z-index: 2; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,9,.55) 0%, rgba(10,8,9,.35) 40%, rgba(10,8,9,.75) 100%);
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.hero-content .kicker { color: var(--gold-soft); justify-content: center; }
.hero-content .kicker::before { background: var(--gold-soft); }
.hero-title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  color: #fff;
  max-width: 920px;
  text-shadow: 0 6px 30px rgba(0,0,0,.35);
}
.hero-title .accent { color: var(--red); -webkit-text-stroke: 1px rgba(255,255,255,.15); }
.hero-sub {
  margin-top: 20px;
  max-width: 620px;
  font-size: 1.08rem;
  color: rgba(255,255,255,.88);
}
.hero-actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-dots { position: absolute; z-index: 5; bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dots button { width: 34px; height: 4px; background: rgba(255,255,255,.35); border-radius: 2px; transition: background .3s, width .3s; }
.hero-dots button.is-active { background: var(--gold-soft); width: 50px; }
.hero-scroll { position: absolute; z-index: 5; bottom: 30px; right: 40px; color: rgba(255,255,255,.7); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; animation: bob 2.2s ease-in-out infinite; }
.hero-scroll svg{ width:16px; height:16px; }
@media (max-width: 768px) { .hero-scroll { display: none; } }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* Page (interior) header banner, replaces hero on inner pages */
.page-banner {
  position: relative;
  padding: 190px 0 90px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,9,.72), rgba(10,8,9,.82));
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; }
.breadcrumbs { margin-top: 16px; display: flex; gap: 8px; justify-content: center; font-size: .82rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-display); }
.breadcrumbs a:hover { color: var(--gold-soft); }

/* ==========================================================================
   Marquee strip (stat highlight ribbon)
   ========================================================================== */
.ribbon { background: var(--ink); color: #fff; padding: 14px 0; overflow: hidden; }
.ribbon-track { display: flex; gap: 60px; white-space: nowrap; animation: scroll-left 26s linear infinite; width: max-content; }
.ribbon-track span { font-family: var(--font-display); letter-spacing: .1em; text-transform: uppercase; font-size: .82rem; color: var(--gold-soft); display: inline-flex; align-items: center; gap: 10px; }
.ribbon-track span::after { content: "•"; color: var(--red); margin-left: 60px; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Mission / feature cards
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feature-icon svg { width: 28px; height: 28px; fill: #fff; }
.feature-card h3 { margin-bottom: 12px; }
.feature-card .link-more { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.feature-card .link-more svg { width: 14px; height: 14px; transition: transform .25s; }
.feature-card:hover .link-more svg { transform: translateX(4px); }

/* ==========================================================================
   About split / Who we are
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 420px; object-fit: cover; }
.split-media .badge-card {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--ink);
  color: #fff;
  padding: 20px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.split-media .badge-card .num { font-family: var(--font-display); font-size: 2rem; color: var(--gold-soft); font-weight: 700; }
.split-media .badge-card .lbl { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.75); }
@media (max-width: 900px) { .split-media .badge-card { left: 16px; bottom: -20px; padding: 14px 18px;} }

.check-list { margin-top: 22px; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--gray-700); }
.check-list li svg { flex-shrink: 0; width: 20px; height: 20px; fill: var(--red); margin-top: 2px; }

/* ==========================================================================
   President message
   ========================================================================== */
.president {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.president::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(216,31,39,.28), transparent 55%);
}
.president-grid { position: relative; display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .president-grid { grid-template-columns: 1fr; gap: 34px; text-align: center; } }
.president-photo { position: relative; }
.president-photo .frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(232,178,58,.5);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: #2a2528;
}
.president-photo img { width: 100%; height: 100%; object-fit: cover; }
.president-photo .placeholder-tag {
  position: absolute; top: 14px; right: -10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}
@media (max-width: 860px) { .president-photo .frame { max-width: 280px; margin: 0 auto; } .president-photo .placeholder-tag { right: calc(50% - 140px); } }
.president-quote-mark { font-family: var(--font-display); font-size: 5rem; line-height: 1; color: var(--red); opacity: .55; margin-bottom: -10px; }
.president blockquote { font-size: 1.18rem; color: #f1efe9; font-weight: 300; line-height: 1.75; }
.president-name { margin-top: 26px; font-size: 1.3rem; color: #fff; }
.president-role { color: var(--gold-soft); font-family: var(--font-display); letter-spacing: .05em; text-transform: uppercase; font-size: .88rem; margin-top: 4px; }
.president-cred { margin-top: 10px; color: rgba(255,255,255,.6); font-size: .85rem; max-width: 560px; }
@media (max-width: 860px) { .president-cred { margin-left: auto; margin-right: auto; } }

/* ==========================================================================
   Stats counters
   ========================================================================== */
.stats-band { background: var(--red); background: linear-gradient(120deg, var(--red-darker), var(--red)); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }
.stat-item .stat-num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; color: #fff; }
.stat-item .stat-num .plus { color: var(--gold-soft); }
.stat-item .stat-lbl { margin-top: 6px; color: rgba(255,255,255,.85); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; font-family: var(--font-display); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  background: var(--gray-100);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,8,9,.85) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery-item .zoom-icon {
  position: absolute; inset: 0; margin: auto; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; opacity: 0; transform: scale(.7);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 2;
}
.gallery-item .zoom-icon svg { width: 22px; height: 22px; fill: #fff; }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item:hover::after, .gallery-item:hover .zoom-icon { opacity: 1; transform: scale(1); }
.gallery-preview-foot { margin-top: 44px; text-align: center; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-bar button {
  padding: 9px 20px;
  border-radius: 30px;
  border: 1px solid var(--gray-200);
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-700);
  transition: all .25s var(--ease);
}
.filter-bar button:hover { border-color: var(--red); color: var(--red); }
.filter-bar button.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8,7,8,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
  padding: 40px 20px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(90vw, 1100px); max-height: 82vh; object-fit: contain; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; color: #fff; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); transition: background .25s; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.2); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; fill: #fff; }
.lightbox-caption { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.75); font-size: .85rem; }
@media (max-width: 640px) { .lightbox-prev, .lightbox-next { width: 38px; height: 38px; } .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; } .lightbox-close { top: 10px; right: 10px; } }

/* ==========================================================================
   Video gallery
   ========================================================================== */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .video-grid { grid-template-columns: 1fr; } }
.video-card { border-radius: var(--radius); overflow: hidden; background: var(--ink); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.video-card:hover .video-thumb img { transform: scale(1.08); }
.video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-play span { width: 62px; height: 62px; border-radius: 50%; background: rgba(216,31,39,.92); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(0,0,0,.4); transition: transform .3s var(--ease); }
.video-card:hover .video-play span { transform: scale(1.1); }
.video-play svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.video-title { padding: 16px 18px; color: #fff; font-size: .92rem; font-weight: 500; }
.video-embed-wrap { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; }
.video-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Timeline (About / History)
   ========================================================================== */
.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 18px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--red), var(--gray-200)); }
.timeline-item { position: relative; padding-left: 58px; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: 8px; top: 4px; width: 22px; height: 22px; border-radius: 50%; background: var(--red); border: 4px solid #fff; box-shadow: 0 0 0 2px var(--red); }
.timeline-item h3 { color: var(--red); margin-bottom: 6px; font-size: 1rem; }

/* ==========================================================================
   Staff cards
   ========================================================================== */
.staff-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.staff-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.staff-photo { aspect-ratio: 1/1; background: linear-gradient(150deg, var(--gray-100), var(--gray-200)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.staff-photo svg { width: 46%; height: 46%; fill: #cfc9bd; }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-body { padding: 22px 18px 26px; }
.staff-body .name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; text-transform: uppercase; }
.staff-body .role { color: var(--red); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; font-family: var(--font-display); }
.staff-body .cred { margin-top: 10px; font-size: .82rem; color: var(--gray-500); line-height: 1.6; }
.staff-tier-title { margin: 56px 0 26px; text-align: center; }
.staff-tier-title:first-child { margin-top: 0; }

/* ==========================================================================
   Achievements
   ========================================================================== */
.awards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 768px) { .awards-grid { grid-template-columns: 1fr; } }
.award-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 26px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.award-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.award-medal { flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, var(--gold), #c8901d); box-shadow: 0 6px 14px rgba(232,178,58,.4); }
.award-medal svg { width: 26px; height: 26px; fill: #fff; }
.award-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.award-card ul { display: grid; gap: 4px; margin-top: 8px; }
.award-card ul li { font-size: .88rem; color: var(--gray-700); }
.award-card ul li b { color: var(--ink); }

.med-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.med-table { min-width: 640px; }
.med-table th, .med-table td { padding: 13px 16px; text-align: center; font-size: .92rem; border-bottom: 1px solid var(--gray-200); }
.med-table th:first-child, .med-table td:first-child { text-align: left; }
.med-table thead th { background: var(--ink); color: #fff; font-family: var(--font-display); letter-spacing: .04em; text-transform: uppercase; font-size: .76rem; font-weight: 600; }
.med-table tbody tr:hover { background: var(--gray-100); }
.med-table tfoot td { font-weight: 700; background: var(--gray-100); font-family: var(--font-display); }
.med-table td.gold { color: #a67608; font-weight: 700; }
.med-table td.silver { color: #6b7075; font-weight: 700; }
.med-table td.bronze { color: var(--bronze); font-weight: 700; }

.year-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 46px; }
.year-nav a { padding: 9px 18px; border-radius: 30px; border: 1px solid var(--gray-200); font-family: var(--font-display); font-size: .8rem; letter-spacing: .04em; transition: all .25s var(--ease); }
.year-nav a:hover, .year-nav a.is-active { background: var(--red); border-color: var(--red); color: #fff; }

.event-block { margin-bottom: 30px; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 22px 24px; background: #fff; }
.event-block h4 { color: var(--ink); font-size: .98rem; text-transform: none; letter-spacing: 0; font-weight: 600; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px dashed var(--gray-200); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; padding: 6px 13px; border-radius: 30px; font-size: .8rem; font-weight: 500; }
.chip-name { background: var(--gray-100); color: var(--ink); font-weight: 600; }
.chip-weight { background: #e7eef5; color: #33627e; }
.chip-result { background: var(--gray-100); color: var(--gray-700); }
.chip-gold { background: #fbead0; color: #966615; font-weight: 700; }
.chip-silver { background: #edeff1; color: #5c6267; font-weight: 700; }
.chip-bronze { background: #f4e3d4; color: var(--bronze); font-weight: 700; }

.section-toggle-group { display: flex; gap: 10px; margin: 8px 0 30px; }
.section-toggle-group h3 { padding: 8px 4px; border-bottom: 3px solid var(--red); }

/* ==========================================================================
   Admission
   ========================================================================== */
.tabs-nav { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.tabs-nav button { padding: 12px 26px; border-radius: 30px; border: 1px solid var(--gray-200); font-family: var(--font-display); letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; transition: all .25s var(--ease); }
.tabs-nav button.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade-in .4s var(--ease); }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.info-table-wrap { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow-x: auto; }
.info-table { width: 100%; min-width: 480px; }
.info-table th, .info-table td { padding: 12px 18px; font-size: .92rem; border-bottom: 1px solid var(--gray-200); text-align: left; }
.info-table thead th { background: var(--ink); color: #fff; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: .76rem; }
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: var(--gray-100); }

.notice-box { background: #fff6e6; border: 1px solid #f0d99a; border-left: 4px solid var(--gold); padding: 20px 24px; border-radius: var(--radius-sm); margin: 26px 0; }
.notice-box h4 { color: #8a6413; margin-bottom: 8px; }
.notice-box p { color: #7d6323; font-size: .92rem; margin: 0; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-list { display: grid; gap: 22px; margin-top: 30px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; }
.contact-info-item .ic svg { width: 20px; height: 20px; fill: #fff; }
.contact-info-item h4 { font-size: .78rem; color: var(--gray-500); letter-spacing: .08em; margin-bottom: 4px; }
.contact-info-item p { color: var(--ink); font-weight: 500; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); margin-top: 30px; }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

.form-card { background: var(--gray-100); border-radius: var(--radius); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--gray-700); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(216,31,39,.12); }
.field { margin-bottom: 18px; }
.field textarea { min-height: 130px; resize: vertical; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--ink) 0%, #2b1416 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 20% 30%, rgba(216,31,39,.35), transparent 50%), radial-gradient(circle at 85% 75%, rgba(232,178,58,.2), transparent 45%); }
.cta-band .inner { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 560px; margin: 16px auto 0; }
.cta-band .hero-actions { margin-top: 34px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #0c0a0b; color: rgba(255,255,255,.65); }
.footer-top { padding: 72px 0 50px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .9rem; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; transition: background .25s, border-color .25s, transform .25s; }
.footer-social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; fill: #fff; }
.footer-social.on-light a { border-color: var(--gray-200); }
.footer-social.on-light svg { fill: var(--ink); }
.footer-social.on-light a:hover svg { fill: #fff; }
.footer-col h4 { color: #fff; margin-bottom: 22px; letter-spacing: .08em; font-size: .82rem; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: .9rem; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--gold-soft); padding-left: 4px; }
.footer-col .contact-line { display: flex; gap: 10px; font-size: .9rem; align-items: flex-start; }
.footer-col .contact-line svg { width: 16px; height: 16px; fill: var(--gold-soft); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .82rem; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .25s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); }
.back-to-top svg { width: 18px; height: 18px; fill: #fff; }

/* ==========================================================================
   Reveal-on-scroll animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: .1s; }
.reveal-delay-2.in-view { transition-delay: .2s; }
.reveal-delay-3.in-view { transition-delay: .3s; }
.reveal-delay-4.in-view { transition-delay: .4s; }

/* ==========================================================================
   Misc
   ========================================================================== */
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); color: #fff; }
.bg-ink h2, .bg-ink h3 { color: #fff; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.divider { height: 1px; background: var(--gray-200); margin: 60px 0; }
.tag-pill { display: inline-block; padding: 5px 14px; border-radius: 30px; background: var(--gray-100); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; font-family: var(--font-display); color: var(--gray-700); }
.pdf-note { display:flex; align-items:center; gap:14px; background:#fff; border:1px solid var(--gray-200); border-radius: var(--radius); padding:20px 24px; }
.pdf-note svg{ width:34px; height:34px; fill:var(--red); flex-shrink:0; }

.form-status{margin-top:14px;font-size:.88rem;color:var(--gray-700)}
