/* =====================================================
   UPTBA — Uttar Pradesh Tenpin Bowling Association
   Main Stylesheet
   ===================================================== */

:root {
  /* Brand palette — pulled from logo */
  --brand-red:      #C8102E;
  --brand-red-dark: #9A0C23;
  --brand-orange:   #F57D1F;
  --brand-yellow:   #F9C114;
  --brand-cream:    #FFF4E0;

  /* Neutrals */
  --ink:        #0D0D0D;
  --ink-soft:   #1A1A1A;
  --charcoal:   #2A2A2A;
  --slate:      #5A5A5A;
  --mist:       #B8B8B8;
  --paper:      #FAFAF7;
  --paper-warm: #F5F1EA;
  --white:      #FFFFFF;

  /* Type */
  --font-display: 'Anton', 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --container: 1360px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.12);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
:root {
  --orange: #F5820A;
  --orange-light: #FF9A2E;
  --yellow: #F5C518;
  --red-dark: #7A0A0A;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --dark-4: #2A2A2A;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --white: #FFFFFF;
  --white-dim: rgba(255,255,255,0.08);
  --white-dim2: rgba(255,255,255,0.04);
  --gradient-orange: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  --head-font-accent: 'Oswald', sans-serif;


}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* =====================================================
   HEADER / NAV — dark, matching hero
   ===================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,130,10,0.15);
}
.nav { display: flex; align-items: center; height: 72px; }
.nav-logo { display: flex; align-items: center; margin-right: 48px; }
.nav-logo img { height: 48px; width: auto; filter: drop-shadow(0 0 12px rgba(245,130,10,0.4)); }
.nav-links { display: flex; align-items: center; flex: 1; }
.nav-links a {
  font-family: var(--head-font-accent); font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gray-light);
  padding: 8px 18px; position: relative; transition: var(--transition);
}
.nav-links a.active { color: var(--orange); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 0; height: 2px;
  background: var(--orange); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 70%; }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-cta {
  background: var(--orange); color: var(--black);
  font-family: var(--head-font-accent); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 10px 22px;
  border: none; border-radius: var(--radius); transition: var(--transition);
}
.nav-cta:hover { background: var(--yellow); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; inset: 0; background: rgba(0,0,0,0.97); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden; transition: var(--transition-slow);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { font-family: var(--font-display); font-size: 48px; font-weight: 800; text-transform: uppercase; color: var(--white); transition: var(--transition); }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white); width: 44px; height: 44px; border-radius: 50%;
  font-size: 18px; display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.mobile-nav-close:hover { border-color: var(--orange); color: var(--orange); }

/* =====================================================
   HERO — matching user's reference exactly
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: #0D0D0D;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(13,13,13,0.6) 0%,
      rgba(13,13,13,0.35) 50%,
      rgba(13,13,13,0.15) 100%
    );
}

/* Dot grid on hero */
.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

.hero-tag {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.25em;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right-side vertical text */
.hero-side-text {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.25em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-side-text .divider {
  writing-mode: horizontal-tb;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--white);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--brand-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245,125,31,0.4);
}

.btn-ghost {
  color: var(--white);
  border-color: var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-ghost-dark {
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost-dark:hover {
  background: var(--ink);
  color: var(--white);
}

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee {
  background: var(--brand-orange);
  color: var(--white);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  border-top: 3px solid var(--brand-red);
  border-bottom: 3px solid var(--brand-red);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.15em;
  font-weight: 600;
}
.marquee-track span { flex-shrink: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================================================
   SECTION BASICS
   ===================================================== */
section {
  padding: 100px 0;
  position: relative;
}

.section-head { margin-bottom: 60px; max-width: 780px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--brand-red);
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  padding-left: 48px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 36px;
  height: 2px;
  background: var(--brand-red);
}
.section-head.center .section-label { padding-left: 0; }
.section-head.center .section-label::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--ink);
  font-weight: 400;
}
.accent { color: var(--brand-red); }

.section-sub {
  color: var(--slate);
  font-size: 17px;
  margin-top: 20px;
  line-height: 1.6;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
  background: var(--paper);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left .lead {
  font-size: 18px;
  color: var(--charcoal);
  margin: 28px 0 20px;
  line-height: 1.65;
}
.about-left p { color: var(--slate); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  color: var(--brand-red);
  line-height: 1;
}
.stat .stat-label {
  font-size: 12px;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-top: 8px;
  text-transform: uppercase;
}

/* About right — asymmetric images */
.about-right {
  position: relative;
  height: 560px;
}
.img-card {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--paper-warm);
}
.img-card img { width: 100%; height: 100%; object-fit: cover; }
.img-card-lg {
  top: 0; right: 0;
  width: 75%;
  height: 70%;
}
.img-card-sm {
  bottom: 0; left: 0;
  width: 55%;
  height: 45%;
  border: 6px solid var(--paper);
}

/* Placeholder styling */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-red) 100%);
  color: rgba(255,255,255,0.6);
}
.placeholder img { display: none; }
.img-placeholder-text {
  display: none;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 8px 16px;
  border: 1px dashed rgba(255,255,255,0.5);
}
.placeholder .img-placeholder-text { display: inline-flex; align-items: center; justify-content: center; }

.floating-pin {
  position: absolute;
  bottom: -30px; right: -20px;
  width: 90px;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.25));
  animation: pinFloat 3s ease-in-out infinite;
}
@keyframes pinFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-10px) rotate(-5deg); }
}

/* =====================================================
   WHAT WE DO
   ===================================================== */
.what-we-do {
  background: var(--ink);
  color: var(--white);
  position: relative;
}
.what-we-do::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.what-we-do .section-title { color: var(--white); }
.what-we-do .section-label { color: var(--brand-orange); }
.what-we-do .section-label::before { background: var(--brand-orange); }
.what-we-do .section-sub { color: rgba(255,255,255,0.7); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--brand-orange);
  transition: width 0.4s var(--ease);
}
.feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,125,31,0.3);
  transform: translateY(-4px);
}
.feature-card:hover::before { width: 100%; }

.feature-icon {
  font-size: 36px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.feature-card p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.6;
}

/* =====================================================
   EVENTS
   ===================================================== */
.events-section {
  background: var(--paper-warm);
}

.event-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  flex-wrap: wrap;
}
.event-tab {
  padding: 16px 28px;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--slate);
  font-weight: 600;
  position: relative;
  transition: color 0.2s var(--ease);
  background: none;
}
.event-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 3px;
  background: var(--brand-red);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.event-tab:hover { color: var(--ink); }
.event-tab.active { color: var(--brand-red); }
.event-tab.active::after { transform: scaleX(1); }

.event-panel { display: none; }
.event-panel.active { display: block; animation: fadeIn 0.4s var(--ease); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.event-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  border-left: 4px solid var(--brand-red);
}
.event-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.event-date {
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
}
.event-date .month {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--brand-orange);
}
.event-date .day {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  margin: 4px 0;
}
.event-date .year {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}

.event-body {
  padding: 28px 32px;
}
.event-tag {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 600;
  border-radius: 2px;
  margin-bottom: 10px;
}
.event-tag.state        { background: #E8F0FF; color: #2B4FC9; }
.event-tag.zone         { background: #FFEED4; color: #B56409; }
.event-tag.league       { background: #E4F7EA; color: #1F8F3F; }
.event-tag.championship { background: #FDE2E7; color: var(--brand-red-dark); }

.event-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink);
}
.event-body p {
  color: var(--slate);
  margin-bottom: 12px;
}

.event-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 12px;
}

.event-link {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--brand-red);
  font-weight: 600;
  transition: color 0.2s var(--ease);
}
.event-link:hover { color: var(--brand-orange); }

/* Weekly card */
.weekly-card {
  background: linear-gradient(135deg, var(--ink) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: 60px 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.weekly-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,125,31,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.weekly-badge {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white);
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.2em;
  border-radius: 2px;
  margin-bottom: 24px;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,16,46,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(200,16,46,0); }
}
.weekly-card h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.weekly-card > p {
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 16px;
}
.weekly-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}
.weekly-meta > div {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.weekly-meta strong {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brand-orange);
  font-weight: 600;
}
.weekly-meta span { font-size: 14px; color: var(--white); }

/* Past events */
.past-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.past-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.past-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.past-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--paper-warm);
}
.past-img img { width: 100%; height: 100%; object-fit: cover; }
.past-body { padding: 20px; }
.past-body h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  margin: 8px 0 6px;
  line-height: 1.3;
}
.past-date {
  font-size: 13px;
  color: var(--slate);
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-section { background: var(--paper); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--paper-warm);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.08em;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.center-btn { text-align: center; margin-top: 48px; }

/* =====================================================
   RESOURCES
   ===================================================== */
.resources-section {
  background: var(--paper-warm);
  position: relative;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.resource-card {
  background: var(--white);
  padding: 44px 40px;
  border-radius: var(--radius-md);
  display: block;
  position: relative;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.resource-card:hover {
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.resource-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}
.resource-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--ink);
}
.resource-card p {
  color: var(--slate);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.resource-link {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--brand-red);
  font-weight: 600;
}

/* =====================================================
   NEWS
   ===================================================== */
.news-section { background: var(--paper); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.news-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--paper-warm);
}
.news-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.news-card:hover .news-img img { transform: scale(1.05); }

.news-body { padding: 28px; }
.news-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brand-red);
  font-weight: 600;
  margin-bottom: 12px;
}
.news-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--ink);
}
.news-body p {
  color: var(--slate);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.news-meta {
  display: flex;
  gap: 4px;
  font-size: 12px;
  color: var(--mist);
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: var(--paper);
  padding-bottom: 120px;
}
.cta-box {
  background: var(--ink);
  color: var(--white);
  padding: 80px 60px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-shape {
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,125,31,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-content .section-label { color: var(--brand-orange); padding-left: 0; }
.cta-content .section-label::before { display: none; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  margin: 16px 0 20px;
  line-height: 1.05;
}
.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   LEADERSHIP
   ===================================================== */
.leadership-section { background: var(--paper-warm); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  padding-bottom: 24px;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-img {
  aspect-ratio: 1;
  background: var(--paper-warm);
  margin-bottom: 20px;
  position: relative;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--brand-red);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-orange), var(--brand-yellow));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { height: 60px; margin-bottom: 20px; }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 340px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.2s var(--ease);
}
.socials a svg { width: 18px; height: 18px; }
.socials a:hover { background: var(--brand-orange); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--brand-orange);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .contact-list li {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: color 0.2s var(--ease);
}
.footer-bottom-links a:hover { color: var(--white); }

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  background: var(--brand-red);
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-md);
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-top:hover { background: var(--brand-orange); transform: translateY(-4px); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-right { height: 480px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .past-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .weekly-meta { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  section { padding: 70px 0; }
  .header-inner { height: 64px; }
  .menu-btn { width: 64px; height: 64px; }
  .mobile-menu { top: 64px; }
  .hero { padding: 100px 20px 60px; min-height: 100vh; }
  .hero-side-text { display: none; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .btn { padding: 14px 24px; font-size: 12px; width: 100%; text-align: center; }
  .hero-cta .btn { max-width: 260px; }
  .event-card { grid-template-columns: 1fr; }
  .event-date {
    flex-direction: row;
    gap: 12px;
    padding: 16px 20px;
  }
  .event-date .day { font-size: 32px; }
  .event-body { padding: 24px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .past-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .cta-box { padding: 50px 28px; }
  .weekly-card { padding: 40px 24px; }
  .weekly-meta { grid-template-columns: 1fr; }
  .resource-card { padding: 32px 24px; }
  .about-right { height: 400px; }
  .marquee-track { font-size: 14px; gap: 32px; }
}
