/* ============================================================
   AMIT SANGHI — Profile Website CSS
   Design: Luxury Dark Gold + Electric Cyan — Editorial/Refined
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Syne:wght@700&display=swap');


/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg:           #0a0c10;
  --bg2:          #111520;
  --bg3:          #161b26;
  --gold:         #c9a84c;
  --gold-light:   #e8c96a;
  --gold-dim:     #8a6e30;
  --cyan:         #00e5ff;
  --cyan-dim:     #0097b2;
  --text:         #f0ede8;
  --text-muted:   #9a9490;
  --text-dim:     #5a5550;
  --white:        #ffffff;
  --danger:       #ff5252;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-accent:  'Bebas Neue', sans-serif;

  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold:  0 0 30px rgba(201,168,76,0.25);
  --shadow-cyan:  0 0 30px rgba(0,229,255,0.2);

  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none; outline: none;
}

html { overflow-x: hidden; scroll-behavior: smooth; }

#about {
  scroll-margin-top: 70px;
}
#business {
  scroll-margin-top: 70px;
}
#sportsman {
  scroll-margin-top: 70px;
}
#sportsleadership {
  scroll-margin-top: 70px;
}
#pmedia {
  scroll-margin-top: 70px;
}
#gallery {
  scroll-margin-top: 70px;
}
#dmedia {
  scroll-margin-top: 70px;
}
#awards {
  scroll-margin-top: 70px;
}
#contact {
  scroll-margin-top: 70px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  cursor: none;                        /* custom cursor */
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 2px solid var(--cyan);
  transition: width 0.25s, height 0.25s, border-color 0.25s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 48px; height: 48px;
  border-color: var(--gold);
}

/* ============================================================
   NOISE OVERLAY & GLOBAL BG TEXTURE
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ============================================================
   SCROLL ANIMATIONS — base states
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left  { transform: translateX(-50px); }
.reveal.from-right { transform: translateX(50px); }
.reveal.from-top   { transform: translateY(-40px); }
.reveal.scale-in   { transform: scale(0.92); }

.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}


/* ===== SEARCH TRIGGER BUTTON (navbar) ===== */
.search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}
.search-trigger:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201,168,76,0.25);
  transform: scale(1.08);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
  height: 68px;
}

.logo img {
  height: 46px;
  filter: brightness(1.1);
  transition: filter var(--transition);
}
.logo img:hover { filter: brightness(1.4) drop-shadow(0 0 8px var(--gold)); }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-menu li { position: relative; }

.nav-menu li a {
  display: block;
  padding: 8px 14px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-menu li a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* Active nav item */
.nav-menu li.active > a { color: var(--gold); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  list-style: none;
  top: calc(100%);
  left: 0;
  min-width: 200px;
  background: var(--bg2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 8px 0;
  box-shadow: var(--shadow);
  animation: dropDown 0.25s ease;
}
@keyframes dropDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown li a {
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown li a:hover { background: rgba(201,168,76,0.1); color: var(--gold); }

.nav-menu li:hover .dropdown { display: block; }

/* Arrow indicator */
.arrow { font-size: 10px; margin-left: 4px; opacity: 0.6; }

/* Hamburger toggle */
.toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.toggle.open span:nth-child(2) { opacity: 0; }
.toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   SECTION LABEL UTILITY
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--cyan);
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ============================================================
   HOME SECTION
   ============================================================ */
#home {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 6% 40px;
  overflow: hidden;
}

/* Decorative radial glow behind profile */
#home::after {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  width: 560px; height: 560px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(0,229,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.home-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.home-content { max-width: 55%; }

.home-content .eyebrow {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.home-content h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.home-content h1 span {
  color: var(--gold);
  font-style: italic;
}

.home-content h2 {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: var(--cyan);
  min-height: 1.5em;
  margin-bottom: 20px;
}

.home-content p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0a0c10;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(0,229,255,0.1);
  box-shadow: 0 4px 20px rgba(0,229,255,0.2);
}

/* Home image */
.home-image {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.home-image img {
  width: clamp(280px, 32vw, 440px);
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
  transition: transform var(--transition);
}

.home-image::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, var(--gold), transparent 60%, var(--cyan));
  z-index: -1;
  opacity: 0.5;
}

.home-image:hover img { transform: scale(1.02) translateY(-4px); }

/* Highlights strip */
.highlights-strip {
  background: var(--bg2);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 36px 6%;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.highlight-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
  cursor: default;
}

.highlight-item:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.highlight-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.highlight-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.highlight-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  scroll-margin-top: 80px;
}
.about-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 40%, rgba(0,229,255,0.05)),
              url("about-hero.jpg") center/cover no-repeat;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 6% 60px;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero > div { position: relative; z-index: 1; }

.about-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.about-hero p {
  font-size: 17px;
  color: rgba(240,237,232,0.8);
  max-width: 640px;
  line-height: 1.8;
}

.about-tagline {
  margin-top: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}

/* About sections (alternating layout) */
.about-section {
  padding: 80px 6%;
  background: var(--bg2);
}

.about-section:nth-child(even) {
  background: var(--bg3);
}

.about-section-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-section img {
  width: 400px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-section img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.about-content { flex: 1; }

.about-content h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content h3::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  margin-top: 12px;
  border-radius: 2px;
}

.about-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.85;
}

/* Philosophy pillars */
.philosophy-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.pillar {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(201,168,76,0.04);
  transition: var(--transition);
}

.pillar:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.pillar h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 6px;
}

.pillar p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ============================================================
   BUSINESS SECTION
   ============================================================ */
#business {
  scroll-margin-top: 80px;
}

.business-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 50%, rgba(201,168,76,0.08)),
              url("industry.jpg") center/cover no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 80px 6%;
}

.business-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.business-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
}

.contact-btn {
  margin-top: 24px;
  background: var(--gold);
  color: #0a0c10;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.contact-btn:hover { background: var(--gold-light); }

/* Business section (detail strip) */
.business-section {
  background: var(--bg2);
  padding: 70px 6%;
}

.business-section .about-section-container { max-width: 1200px; margin: 0 auto; }

.business-section img {
  width: 440px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.business-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.business-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.85;
}

/* Business card grid */
.business {
  padding: 70px 6%;
  background: var(--bg3);
}

.business-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.business-box {
  background: var(--bg2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.business-box:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--shadow-gold);
}

.business-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition);
}

.business-box:hover img { transform: scale(1.05); }

.business-box-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.business-box h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}

.business-box p {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ============================================================
   SPORTS SECTION
   ============================================================ */
.sportshero {
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 50%, rgba(0,229,255,0.06)),
              url("about-hero.png") center/cover no-repeat;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 80px 6%;
  position: relative;
}

.sportshero-content { max-width: 600px; }

.sportshero h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}

.sportshero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
  line-height: 1.7;
}

#sports {
  padding: 70px 6%;
  background: var(--bg2);
}

.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  color: var(--white);
  margin-bottom: 40px;
}

.section-title span { color: var(--gold); font-style: italic; }

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0;
}

.tab-btn {
  padding: 12px 28px;
  background: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.03em;
  border-radius: 0;
  margin-bottom: -1px;
}

.tab-btn:hover { color: var(--text); }

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeUp 0.4s ease; }

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

.content-box {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.content-box img {
  width: 380px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.content-box div { flex: 1; }

.content-box h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 14px;
}

.content-box p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 10px;
}

/* ============================================================
   ROTARY SECTION
   ============================================================ */
#rotary {
  scroll-margin-top: 80px;
}

.rotaryhero {
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 50%, rgba(201,168,76,0.06)),
              url('rotary_logo.png') center/cover no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 20px 6%;
}

.hero-content { max-width: 600px; }
.hero-content h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 14px;
}
.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 8px;
}

.buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.btn-primary {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  padding: 12px 26px;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,60,114,0.4); }

.btn-secondary {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #0a0c10;
  padding: 12px 26px;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

/* Rotary section */
.section {
  padding: 60px 6%;
  background: var(--bg2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 8px;
}

.section p.subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Projects */
.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.project {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
}

.project:hover {
  border-color: rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.03);
  transform: translateY(-3px);
}

.project img {
  width: 120px;
  height: 85px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.project h3 { font-size: 17px; color: var(--text); margin-bottom: 6px; }
.project p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Recognition */
.recognition {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.recognition img {
  width: 220px;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}
.recognition img:hover { transform: scale(1.04); box-shadow: var(--shadow-gold); }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.galleryhero {
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 10%, rgba(0,229,255,0.06)),
              url('gallery-hero.jpg') center/cover no-repeat;
  padding: 10px 4% 10px;
  min-height: auto;
  display: flex;
  align-items: flex-end;
}

.galleryhero h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  color: var(--white);
  margin-bottom: 14px;
}

.galleryhero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.gallerysection {
  padding: 60px 6%;
  max-width: 1400px;
  margin: 0 auto;
}

.gallerysection h2 {
  font-family: var(--font-display);
  font-size: 40px;
  text-align: center;
  color: var(--white);
  margin-bottom: 40px;
}

/* Album grid */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.album {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--bg2);
  transition: var(--transition);
}

.album:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), var(--shadow-gold);
}

.album img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform var(--transition);
}

.album:hover img { transform: scale(1.08); }

.album-title {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* Popup lightbox */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  backdrop-filter: blur(6px);
}

.popup img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
  object-fit: contain;
}

.popup button {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.popup button:hover { background: var(--gold); color: #0a0c10; }

.close-btn { top: 24px; right: 30px; font-size: 20px; }
.prev-btn { left: 30px; top: 50%; transform: translateY(-50%); }
.next-btn { right: 30px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   PRINT MEDIA SECTION
   ============================================================ */
.header {
  text-align: center;
  padding: 60px 6% 20px;
  background: var(--bg3);
}

.header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 8px;
}

.header p {
  font-size: 17px;
  color: var(--text-muted);
}

.printgallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  padding: 30px 6% 60px;
  background: var(--bg3);
}

.card {
  background: var(--bg2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: var(--shadow);
  transition: var(--transition);
  transform: translateY(40px);
  opacity: 0;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--shadow-gold);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition);
}

.card:hover img { transform: scale(1.05); }

.card-content { padding: 16px; }

.card-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.card-content p {
  font-size: 13px;
  color: var(--text-muted);
}



/* ===== PRINT MEDIA IMAGE POPUP ===== */
.img-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9600;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
}
.img-popup-overlay.active {
  display: flex;
  animation: imgPopupIn 0.3s ease;
}
@keyframes imgPopupIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.img-popup-modal {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Controls bar at the top */
.img-popup-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(10, 12, 16, 0.9);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  flex-shrink: 0;
  z-index: 2;
}
.img-popup-caption {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--white);
  font-style: italic;
}
.img-popup-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.img-popup-actions button {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.img-popup-actions button:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.img-popup-close-btn {
  background: rgba(255,80,80,0.1) !important;
  border-color: rgba(255,80,80,0.25) !important;
  color: #ff5252 !important;
  margin-left: 8px;
}
.img-popup-close-btn:hover {
  background: rgba(255,80,80,0.25) !important;
  border-color: #ff5252 !important;
  color: #ff5252 !important;
}
.zoom-level {
  font-size: 13px;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  min-width: 44px;
  text-align: center;
}

/* Image viewport — fills remaining height */
.img-popup-viewport {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: grab;
  user-select: none;
}
.img-popup-viewport.grabbing {
  cursor: grabbing;
}
.img-popup-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  transform-origin: center center;
  transition: transform 0.2s ease;
  pointer-events: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* Hint bar at the bottom */
.img-popup-hint {
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: var(--text-dim);
  background: rgba(10,12,16,0.8);
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}



/* ============================================================
   DIGITAL MEDIA SECTION
   ============================================================ */
.video-section {
  padding: 70px 6%;
  text-align: center;
  background: var(--bg2);
}

.video-section h2 {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  margin-bottom: 8px;
}

.video-section p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.video-card {
  background: var(--bg3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,229,255,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), var(--shadow-cyan);
}

.video-card iframe {
  width: 100%;
  height: 190px;
  border: none;
  display: block;
}

.video-card h4 {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   AWARDS SECTION
   ============================================================ */
   #awards {
  scroll-margin-top: 80px;
}
.awardshero {
  background: url('awardshero.png') center/cover no-repeat;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 80px 6%;
  position: relative;
}

.awardshero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 50%, rgba(201,168,76,0.08));
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--white);
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.awardssection {
  padding: 60px 6%;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.awardsheading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--white);
  margin-bottom: 12px;
}

.awardssection > p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 860px;
  transition-delay: 40ms;
  margin-bottom: 40px;
  line-height: 1.85;
}

.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Cards are shared between printmedia + awards — awards-specific overrides */
.awardssection .card {
  background: var(--bg2);
  border: 1px solid rgba(201,168,76,0.1);
  text-align: center;
  padding: 0;
}

.awardssection .card img {
  height: 180px;
  width: min-content;
}

.awardssection .card p {
  padding: 14px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.awardssection .card b { color: var(--gold); display: block; margin-bottom: 6px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
   #contact {
  scroll-margin-top: 80px;
}
.contacthero {
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 50%, rgba(0,229,255,0.05)),
              url("contacthero.jpg") center/cover no-repeat;
  padding: 100px 6% 70px;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
}

.contacthero h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  color: var(--white);
  margin-bottom: 14px;
}

.contacthero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  line-height: 1.7;
}

.contact {
  padding: 70px 6%;
  background: var(--bg2);
}

.contact h2 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 36px;
  text-align: center;
}

.contact form {
  max-width: 760px;
  margin: 0 auto 50px;
}

.contact form .input-box {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.contact form .input-box input {
  flex: 1;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact form input::placeholder,
.contact form textarea::placeholder {
  color: var(--text-dim);
}

.contact form input:focus,
.contact form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.contact form textarea {
  resize: vertical;
  min-height: 150px;
  margin-bottom: 16px;
}

.contact form .btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 16px;
}

/* Map */
.map {
  text-align: center;
  padding-bottom: 20px;
}

.map iframe {
  width: 90%;
  max-width: 900px;
  height: 380px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: #060810;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-text p {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-iconTop a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  color: var(--gold);
  font-size: 20px;
  transition: var(--transition);
}

.footer-iconTop a:hover {
  background: var(--gold);
  color: #0a0c10;
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.float-anim { animation: floatY 4s ease-in-out infinite; }

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Gold shimmer text effect */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dim) 25%, var(--gold-light) 50%, var(--gold-dim) 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Glowing pulse */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,229,255,0.2); }
  50%       { box-shadow: 0 0 40px rgba(0,229,255,0.45); }
}

.glow-pulse { animation: glowPulse 2.5s ease-in-out infinite; }

/* ============================================================
   DIVIDER UTILITY
   ============================================================ */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
  opacity: 0.4;
}

/* ============================================================
   ≥ 1200px  — Large desktop (default above)
   ============================================================ */

/* ============================================================
   ≤ 1200px  — Standard laptop / small desktop
   ============================================================ */
@media (max-width: 1200px) {
  .home-content h1 { font-size: 58px; }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .highlight-item:nth-child(4),
  .highlight-item:nth-child(5) { display: none; }

  .business-container { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .video-gallery { grid-template-columns: repeat(2, 1fr); }
  .about-section img { width: 340px; }
  .business-section img { width: 360px; }
  .content-box img { width: 320px; }
}

/* ============================================================
   ≤ 768px  — Tablet
   ============================================================ */
@media (max-width: 768px) {
  /* Disable custom cursor on touch devices */
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }


.search-overlay { padding: 40px 16px 32px; }
.search-input { font-size: 17px; padding: 15px 48px 15px 50px; }


  /* Navbar mobile */
  .toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    flex-direction: column;
    padding: 16px 0;
    gap: 0;
  }

  .nav-menu.active { display: flex; }

  .nav-menu li a { padding: 12px 24px; font-size: 15px; }

  .dropdown {
    position: static;
    background: var(--bg2);
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    animation: none;
    display: none;
  }

  .has-dropdown.active .dropdown { display: block; }

  /* Home */
  #home { padding: 50px 5% 40px; }

  .home-flex {
    flex-direction: column-reverse;
    text-align: center;
    gap: 32px;
  }

  .home-content { max-width: 100%; }
  .home-content p { margin: 0 auto 28px; }

  .home-image img { width: 260px; }

  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(4),
  .highlight-item:nth-child(5) { display: block; }

  /* About */
  .about-section-container {
    flex-direction: column;
    gap: 32px;
  }

  .about-section img { width: 100%; max-width: 480px; margin: 0 auto; }
  .philosophy-pillars { grid-template-columns: 1fr; }

  /* Business */
  .business-container { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .business-section img { width: 100%; max-width: 480px; margin: 0 auto; }

  /* Sports */
  .content-box { flex-direction: column; gap: 24px; }
  .content-box img { width: 100%; }

  /* Rotary */
  .projects { grid-template-columns: 1fr; }


  /* printmedia */
  .img-popup-caption { font-size: 14px; }
  .img-popup-actions button { width: 34px; height: 34px; font-size: 18px; }
  .img-popup-hint { display: none; }

  /* Awards */
  .grid { grid-template-columns: repeat(2, 1fr); }
  .awardssection .card img { height: 160px; }

  /* Video */
  .video-gallery { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact form .input-box { flex-direction: column; gap: 12px; }
}

/* ============================================================
   ≤ 480px  — Large phone
   ============================================================ */
@media (max-width: 480px) {
  .nav-container { padding: 0 4%; }

  .search-overlay { padding: 32px 12px 24px; }
  .search-input { font-size: 16px; }

  #home { padding: 44px 4% 32px; }
  .home-content h1 { font-size: 40px; }
  .home-content h2 { font-size: 17px; }
  .home-content p { font-size: 15px; }
  .home-image img { width: 220px; }

  .highlights-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .highlight-item { padding: 16px 10px; }
  .highlight-item h3 { font-size: 15px; }
  .highlight-item p { font-size: 12px; }

  .about-hero { padding: 60px 4% 40px; }
  .about-hero h2 { font-size: 34px; }
  .about-section { padding: 50px 4%; }

  .business-hero { padding: 60px 4%; }
  .business { padding: 50px 4%; }
  .business-section { padding: 50px 4%; }

  .sportshero { padding: 60px 4%; }
  #sports { padding: 50px 4%; }

  .galleryhero { padding: 60px 4% 44px; }
  .gallerysection { padding: 40px 4%; }
  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .printgallery { padding: 20px 4% 40px; }

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

  .img-popup-controls { padding: 10px 12px; }
  .img-popup-caption { display: none; }

  .awardshero { padding: 60px 4%; }
  .awardssection { padding: 40px 4%; }
  .grid { grid-template-columns: 1fr 1fr; }

  .contacthero { padding: 60px 4% 44px; }
  .contact { padding: 50px 4%; }
  .map iframe { width: 100%; height: 300px; }

  .footer { padding: 16px 4%; gap: 12px; }

  .tabs { gap: 0; overflow-x: auto; }
  .tab-btn { padding: 10px 16px; font-size: 14px; white-space: nowrap; }
}

/* ============================================================
   ≤ 360px  — Compact / small phone
   ============================================================ */
@media (max-width: 360px) {
  .home-content h1 { font-size: 34px; }
  .home-image img { width: 180px; }
  .btn { padding: 12px 22px; font-size: 13px; }

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

  .about-hero h2 { font-size: 28px; }
  .about-content h3 { font-size: 24px; }
  .philosophy-pillars { grid-template-columns: 1fr; }

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

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

  .section-title { font-size: 26px; }
  .gallerysection h2 { font-size: 28px; }

  .footer { flex-direction: column; text-align: center; gap: 10px; }
}















/* ===== Business Popup Modal ===== */
.business-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 8000;
  display: none;
  align-items: center;
  justify-content: center;
}

.business-popup-overlay.active {
  display: flex;
  animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.business-popup-modal {
  background: var(--bg2);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 90%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), var(--shadow-gold);
}

.business-popup-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
}

.business-popup-close:hover {
  background: var(--gold);
  color: #0a0c10;
}

.business-popup-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: -54px;   /* slides behind the close button row */
}

.business-popup-body {
  padding: 24px 28px 32px;
}

.business-popup-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.business-popup-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  margin-top: 10px;
  border-radius: 2px;
}

.business-popup-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  white-space: pre-line;
}

/* Responsive */
@media (max-width: 480px) {
  .business-popup-body { padding: 18px 18px 24px; }
  .business-popup-title { font-size: 22px; }
  .business-popup-img { height: 180px; }
}

/* ============================================================
   PERFORMANCE OPTIMISATIONS
   — content-visibility: auto tells the browser to skip
     rendering off-screen sections until the user scrolls near
     them, cutting initial render work significantly.
   — contain-intrinsic-size is an estimated height hint so the
     browser can still calculate scrollbar length correctly.
   ============================================================ */

.about-hero,
.about-section,
.business-hero,
.business-section,
.business,
.sportshero,
#sports-tabs,
.rotaryhero,
.video-section,
.awardshero,
.awardssection,
.contacthero,
.contact {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* Gallery section — larger hint because it contains many album cards */
#gallery {
  content-visibility: auto;
  contain-intrinsic-size: 0 900px;
}

/* Print media section */
#pmedia {
  content-visibility: auto;
  contain-intrinsic-size: 0 800px;
}

/* Album cover images — fixed aspect-ratio prevents layout shift
   (the browser knows the space to reserve before the image loads) */
.album img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

/* Award card images — same anti-layout-shift trick */
.awardssection .card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: contain;
}

/* Print media card images */
.printgallery .card img {
  aspect-ratio: 3 / 2;
  width: 100%;
  object-fit: cover;
}

/* Popup image — smooth fade-in when a new image loads */
#popupImg {
  transition: opacity 0.2s ease;
}


/* ============================================================
   SPORTS PERSON PAGE  (sportsachievements.html)
   PREFIX: sp-*
   ============================================================ */

/* ── Hero ── */
.sp-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 6% 72px;
  overflow: hidden;
}

/* Hero right-side image — shared by sp-hero and sa-hero */
.sp-hero-img-right {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: clamp(260px, 30vw, 420px);
  align-self: flex-end;
  margin-bottom: -16px;
  pointer-events: none;
}
.sp-hero-img-right img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.55));
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sp-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,12,16,0.97) 0%,
    rgba(10,12,16,0.65) 45%,
    rgba(10,12,16,0.2) 100%
  );
}
.sp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.sp-hero-content h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin: 14px 0 10px;
}
.sp-hero-content h2 em { color: var(--gold); font-style: italic; }
.sp-hero-content > p {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.sp-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 28px;
}
.sp-hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.sp-hstat:first-child { padding-left: 0; }
.sp-hstat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.sp-hstat-num sub, .sp-hstat-num sup { font-size: 0.52em; }
.sp-hstat-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
  white-space: nowrap;
}
.sp-hstat-div {
  width: 1px; height: 40px;
  background: rgba(201,168,76,0.25);
}
.sp-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  font-size: 32px;
  animation: spBounce 1.8s ease-in-out infinite;
  cursor: pointer;
}
@keyframes spBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Split layout ── */
.sp-split {
  display: flex;
  align-items: stretch;
  min-height: 520px;
  overflow: hidden;
}
.sp-split--rev { flex-direction: row-reverse; }

.sp-split-img {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}
.sp-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.sp-split-img:hover img { transform: scale(1.03); }
.sp-split-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(10,12,16,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.sp-split-badge--cyan { color: var(--cyan); border-color: rgba(0,229,255,0.35); }

.sp-split-text {
  flex: 1;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sp-split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 12px 0 18px;
}
.sp-split-text h2 em { color: var(--gold); font-style: italic; }
.sp-split-text p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
  max-width: 540px;
}
.sp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.sp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.22);
  white-space: nowrap;
}

/* ── Competition cards ── */
.sp-comps {
  padding: clamp(56px, 8vw, 96px) 6%;
  background: var(--bg3);
}
.sp-comps-inner { max-width: 1300px; margin: 0 auto; }
.sp-comps-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.sp-comps-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  margin: 10px 0 12px;
}
.sp-comps-header h2 em { color: var(--gold); font-style: italic; }
.sp-comps-header p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.sp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.sp-comp-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  transition: var(--transition);
  animation-delay: var(--d, 0s);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-comp-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), var(--shadow-gold);
}
.sp-comp-card.gold-card {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(140deg, var(--bg2) 0%, rgba(201,168,76,0.06) 100%);
}
.sp-comp-card.highlight {
  border-color: rgba(0,229,255,0.2);
}

.sp-comp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sp-comp-flag { font-size: 26px; line-height: 1; }
.sp-comp-year {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: white;
  text-transform: uppercase;
  display: block;
  text-align: right;
}
.sp-comp-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 100px;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.22);
  margin-top: 4px;
}
.sp-comp-tag.debut { background: rgba(0,229,255,0.08); color: var(--cyan); border-color: rgba(0,229,255,0.2); }
.sp-comp-tag.red   { background: rgba(255,82,82,0.1);  color: var(--danger); border-color: rgba(255,82,82,0.2); }

.sp-comp-card h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}
.sp-comp-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}
.sp-comp-card p strong { color: var(--text); font-weight: 500; }

.sp-comp-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.sp-score-main {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.sp-score-main sub { font-size: 0.55em; color: var(--gold-dim); }
.sp-score-main.gold-score { color: var(--gold); font-size: clamp(28px, 3.2vw, 36px); }
.sp-score-sub {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* Round bubbles */
.sp-rounds { display: flex; gap: 7px; margin-top: 8px; flex-wrap: wrap; }
.sp-round {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500;
  background: var(--bg3);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.07);
}
.sp-round.perfect {
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 0 10px rgba(201,168,76,0.2);
}

/* ── Historic record strip ── */
.sp-record {
  background: var(--bg2);
  padding: clamp(56px, 8vw, 96px) 6%;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.sp-record-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}
.sp-record-text { flex: 1; }
.sp-record-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  line-height: 1.2;
  margin: 12px 0 18px;
}
.sp-record-text h2 em { color: var(--gold); font-style: italic; }
.sp-record-text p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 520px;
}
.sp-record-text p strong { color: var(--text); font-weight: 500; }
.sp-quote {
  margin-top: 24px;
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--gold-light);
  line-height: 1.6;
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.sp-record-visual {
  flex: 0 0 clamp(260px, 36%, 440px);
  position: relative;
}
.sp-record-visual img {
  width: 100%; height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow);
}
.sp-record-score-badge {
  position: absolute;
  bottom: -20px; right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}
.sp-rsb-num {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: #0a0c10;
  line-height: 1;
}
.sp-rsb-den {
  font-size: 16px;
  color: rgba(10,12,16,0.7);
  font-weight: 600;
}
.sp-rsb-lbl {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10,12,16,0.65);
  margin-top: 6px;
  white-space: nowrap;
}

/* ── Achievements icon grid ── */
.sp-achievements {
  padding: clamp(56px, 8vw, 96px) 6%;
  background: var(--bg);
}
.sp-achievements-inner { max-width: 1200px; margin: 0 auto; }
.sp-ach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.sp-ach-item {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--bg2);
  transition: var(--transition);
  animation-delay: var(--d, 0s);
}
.sp-ach-item:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.sp-ach-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
}
.sp-ach-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}
.sp-ach-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Training list ── */
.sp-train-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-train-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.sp-train-list li i {
  color: var(--cyan);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Motorsport section ── */
.sp-motor {
  padding: clamp(56px, 8vw, 96px) 6%;
  background: var(--bg3);
}
.sp-motor-inner { max-width: 1200px; margin: 0 auto; }
.sp-motor-grid {
  display: flex;
  gap: clamp(24px, 4vw, 60px);
  align-items: flex-start;
  margin-top: 8px;
}
.sp-motor-img {
  flex: 0 0 clamp(220px, 36%, 400px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sp-motor-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.sp-motor-img:hover img { transform: scale(1.04); }
.sp-motor-events { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.sp-motor-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--bg2);
  transition: var(--transition);
  animation-delay: var(--d, 0s);
}
.sp-motor-card:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-gold);
  transform: translateX(4px);
}
.sp-motor-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--gold);
}
.sp-motor-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.sp-motor-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.sp-motor-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.sp-mbadge {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.sp-mbadge.gold   { background: rgba(201,168,76,0.1); color: var(--gold); border: 1px solid rgba(201,168,76,0.22); }
.sp-mbadge.silver { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.1); }

/* ── CTA Strip ── */
.sp-cta-strip {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(0,229,255,0.05));
  border-top: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  padding: 36px 6%;
}
.sp-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sp-cta-inner h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--white);
  margin-bottom: 4px;
}
.sp-cta-inner p { font-size: 14px; color: var(--text-muted); }


/* ============================================================
   SPORTS ADMINISTRATOR PAGE  (sportsadmin.html)
   PREFIX: sa-*
   ============================================================ */

/* ── Hero ── */
.sa-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 6% 72px;
  overflow: hidden;
}
.sa-hero-bg { position: absolute; inset: 0; z-index: 0; }
.sa-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.sa-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,12,16,0.97) 0%,
    rgba(10,12,16,0.55) 45%,
    rgba(10,12,16,0.15) 100%
  );
}
.sa-hero-content { position: relative; z-index: 1; max-width: 720px; }
.sa-hero-content h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 86px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin: 14px 0 10px;
}
.sa-hero-content h2 em { color: var(--gold); font-style: italic; }
.sa-hero-content > p {
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.sa-hero-roles {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.sa-role-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(10,12,16,0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
}

/* ── Roles section ── */
.sa-roles-section {
  padding: clamp(56px, 8vw, 96px) 6%;
  background: var(--bg2);
}
.sa-roles-inner { max-width: 1300px; margin: 0 auto; }

.sa-role-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 28px;
  margin-bottom: 32px;
}

.sa-role-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.sa-role-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-gold);
  transform: translateY(-4px);
}

.sa-role-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sa-role-card-img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  margin: auto;
  transition: transform var(--transition);
}
.sa-role-card:hover .sa-role-card-img img { transform: scale(1.04); }
.sa-role-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,12,16,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
}
.sa-role-org {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.sa-role-card-body { padding: 26px 28px 30px; }
.sa-role-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.sa-role-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--gold);
}
.sa-role-icon--cyan {
  background: rgba(0,229,255,0.08);
  border-color: rgba(0,229,255,0.2);
  color: var(--cyan);
}
.sa-role-title-row h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 4px;
}
.sa-role-org-tag {
  display: block;
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.04em;
}
.sa-role-card-body > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.sa-role-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.sa-role-list li {
  display: flex; gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.sa-role-list li i { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.sa-role-stat-row {
  display: flex;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sa-rstat { display: flex; flex-direction: column; }
.sa-rstat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.sa-rstat-num sup { font-size: 0.55em; }
.sa-rstat-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 3px;
}

/* E-Sports callout card */
.sa-esports-card {
  background: linear-gradient(135deg, rgba(0,229,255,0.05) 0%, rgba(201,168,76,0.05) 100%);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  transition: var(--transition);
}
.sa-esports-card:hover {
  border-color: rgba(0,229,255,0.4);
  box-shadow: var(--shadow-cyan);
}
.sa-esports-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 16px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: var(--cyan);
}
.sa-esports-body { flex: 1; min-width: 240px; }
.sa-esports-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--white);
  margin: 8px 0 10px;
}
.sa-esports-body p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin: 0; }
.sa-esports-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 6px;
  opacity: 0.5;
  flex-shrink: 0;
}
.sa-esports-big { font-size: 48px; }

/* ── Initiatives ── */
.sa-initiatives {
  padding: clamp(56px, 8vw, 96px) 6%;
  background: var(--bg);
}
.sa-init-inner { max-width: 1200px; margin: 0 auto; }
.sa-init-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.sa-init-card {
  position: relative;
  padding: 28px 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--bg2);
  transition: var(--transition);
  animation-delay: var(--d, 0s);
  overflow: hidden;
}
.sa-init-card:hover {
  border-color: rgba(201,168,76,0.28);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.sa-init-num {
  position: absolute;
  top: 18px; right: 20px;
  font-family: var(--font-accent);
  font-size: 48px;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.sa-init-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold);
  margin-bottom: 16px;
}
.sa-init-icon--gold { background: rgba(201,168,76,0.14); border-color: rgba(201,168,76,0.3); }
.sa-init-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}
.sa-init-card p { font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.sa-init-card p strong { color: var(--text); font-weight: 500; }
.sa-init-card p em { font-style: italic; color: var(--gold-light); }
.sa-init-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(0,229,255,0.08);
  color: var(--cyan);
  border: 1px solid rgba(0,229,255,0.2);
}

/* ── Event spotlight ── */
.sa-event {
  padding: clamp(56px, 8vw, 96px) 6%;
  background: var(--bg2);
}
.sa-event-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 80px);
}
.sa-event-text { flex: 1; }
.sa-event-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--white);
  line-height: 1.2;
  margin: 12px 0 16px;
}
.sa-event-text h2 em { color: var(--gold); font-style: italic; }
.sa-event-text > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 28px;
}
.sa-event-text > p strong { color: var(--text); font-weight: 500; }
.sa-guests h4 {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sa-guest-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--bg3);
  margin-bottom: 10px;
  transition: var(--transition);
}
.sa-guest-card:hover { border-color: rgba(201,168,76,0.25); }
.sa-guest-icon {
  font-size: 20px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}
.sa-guest-card strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 3px; }
.sa-guest-card span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.sa-event-img {
  flex: 0 0 clamp(240px, 38%, 460px);
  position: relative;
}
.sa-event-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow);
}
.sa-event-stat {
  position: absolute;
  bottom: -16px; right: 20px;
  background: linear-gradient(135deg, var(--cyan-dim), var(--cyan));
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,229,255,0.3);
}
.sa-event-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #0a0c10;
  line-height: 1;
}
.sa-event-num sup { font-size: 0.55em; }
.sa-event-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10,12,16,0.7);
  margin-top: 4px;
  display: block;
}

/* ── Recognition ── */
.sa-recognition {
  padding: clamp(56px, 8vw, 96px) 6%;
  background: var(--bg3);
}
.sa-recog-inner { max-width: 1200px; margin: 0 auto; }
.sa-recog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.sa-recog-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--bg2);
  transition: var(--transition);
  animation-delay: var(--d, 0s);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sa-recog-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.sa-recog-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold);
}
.sa-recog-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--white);
}
.sa-recog-card p { font-size: 13px; color: var(--text-muted); line-height: 1.75; }


/* ============================================================
   SPORTS PAGES — RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .sp-split, .sp-split--rev { flex-direction: column; }
  .sp-split-img { flex: none; min-height: 300px; }
  .sp-record-inner { flex-direction: column; }
  .sp-record-visual { flex: none; width: 100%; }
  .sp-record-visual img { height: 260px; }
  .sp-record-score-badge { bottom: 12px; right: 12px; }
  .sp-motor-grid { flex-direction: column; }
  .sp-motor-img { flex: none; }
  .sa-event-inner { flex-direction: column; }
  .sa-event-img { flex: none; width: 100%; }
  .sa-event-img img { aspect-ratio: 16/7; }
  .sa-event-stat { bottom: -12px; right: 12px; }
}

@media (max-width: 768px) {
  .sp-hero, .sa-hero { padding: 0 5% 56px; }
  .sa-hero { min-height: 50vh;}
  .sp-hero-stats { gap: 0; }
  .sp-hstat { padding: 0 14px; }
  .sp-hstat-div { height: 28px; }
  .sa-role-cards { grid-template-columns: 1fr; }
  .sa-esports-card { flex-direction: column; text-align: center; }
  .sa-esports-visual { display: none; }
  .sp-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .sp-hero-stats { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .sa-hero { min-height: 40vh;}
  .sp-hstat-div { display: none; }
  .sp-hstat { padding: 0 18px; border-right: none; }
  .sa-hero-roles { gap: 8px; }
  .sa-role-pill { font-size: 11px; padding: 6px 12px; }
  .sp-comp-card { padding: 16px 16px 18px; }
  .sp-motor-card { flex-direction: column; }
  .sp-motor-icon { width: 38px; height: 38px; font-size: 18px; }
}

@media (max-width: 360px) {
  .sp-hero-content h2, .sa-hero-content h2 { font-size: 36px; }
  .sp-cards-grid { grid-template-columns: 1fr; }
  .sa-role-card-body { padding: 18px 18px 22px; }
  .sa-hero { min-height: 30vh;}
}
