/* Pro Gentlemen — Mobile-first theme from logo */
:root {
  --navy: #111111;
  --navy-light: #1a1a1a;
  --navy-dark: #000000;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #9a7b15;
  --cream: #f5f0e1;
  --cream-muted: #c8c0aa;
  --red: #c41e3a;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-dark);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-light); text-decoration: none; }
a:hover { color: var(--gold); }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.nav-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  list-style: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  flex-direction: column;
  padding: 1rem 0;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-links.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-links a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-light);
  border-left-color: var(--gold);
}

.nav-wa { color: #25d366 !important; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

.btn-gold:hover { color: var(--navy-dark); box-shadow: 0 6px 28px rgba(201, 162, 39, 0.5); }

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}

.btn-outline:hover { background: rgba(201, 162, 39, 0.12); color: var(--gold-light); }

.btn-wa {
  background: #25d366;
  color: white;
  border-color: #1ebe57;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.btn-wa:hover { color: white; }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.78rem; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(196, 30, 58, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.icon-cricket { width: 16px; height: 16px; }

.hero-logo {
  width: min(220px, 60vw);
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.3), var(--shadow);
}

.hero-sub {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(201, 162, 39, 0.3);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  color: var(--gold-light);
  font-style: italic;
  margin: 0.75rem 0 2rem;
  letter-spacing: 0.05em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.stat-icon { font-size: 1.5rem; }
.stat strong {
  font-size: 0.82rem;
  color: var(--gold-light);
  line-height: 1.3;
}
.stat span {
  font-size: 0.72rem;
  color: var(--cream-muted);
  line-height: 1.45;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--cream-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Sections ── */
.section {
  padding: 4rem 0;
  position: relative;
}

.section:nth-child(even) { background: var(--navy); }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.icon-sm { width: 14px; height: 14px; }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.text-gold {
  color: var(--gold-light);
}

.section-desc {
  color: var(--cream-muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Vision ── */
.vision-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vision-quote {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 0.5rem;
}

.vision-quote p {
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.vision-quote strong { color: var(--gold-light); }

.vision-quote footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.quote-avatar {
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  object-fit: cover;
}

.vision-quote cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1rem;
}

.quote-role {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 0.15rem;
}

.quote-credentials {
  display: block;
  font-size: 0.8rem;
  color: var(--cream-muted);
  margin-top: 0.15rem;
}

.vision-quote footer span {
  font-size: 0.8rem;
  color: var(--cream-muted);
}

.vision-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pillar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}

.pillar:hover {
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-2px);
}

.pillar-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }

.pillar h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.pillar p { font-size: 0.85rem; color: var(--cream-muted); }

/* ── Squad ── */
.squad { background: var(--navy-dark); }

.squad-cta {
  text-align: center;
  margin-top: 2rem;
}

.squad-empty {
  text-align: center;
  color: var(--cream-muted);
  padding: 2rem 1rem;
  grid-column: 1 / -1;
}

.squad-page {
  min-height: 60svh;
  padding-top: calc(var(--header-h) + 1rem);
}

.squad-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.player-card {
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.player-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--gold);
}

.player-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(201, 162, 39, 0.06);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.player-photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.player-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  background: var(--navy-dark);
}

.player-jersey {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--navy);
}

.player-info h3 {
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.player-role-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.player-profession {
  font-size: 0.8rem;
  color: var(--cream-muted);
}

.player-oneliner {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--gold);
  margin: 0.2rem 0 0.35rem;
  line-height: 1.35;
}

.player-profession strong { color: var(--gold); }

.player-skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
}

.skill {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.78rem;
}

.skill-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }

.skill-label {
  display: block;
  font-size: 0.65rem;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.skill-value { color: var(--cream); font-weight: 500; }

.player-card-footer {
  padding: 0.75rem 1.25rem 1.25rem;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
}

/* ── Player Modal ── */
.player-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.player-modal.is-open {
  display: flex;
}

.player-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.player-modal-content {
  position: relative;
  background: var(--navy);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 520px;
  max-height: 90svh;
  overflow-y: auto;
  padding: 1.5rem;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.player-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-player-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.modal-player-header img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--gold);
}

.modal-player-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
}

.modal-section { margin-bottom: 1.25rem; }

.modal-section h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.modal-section p { font-size: 0.88rem; color: var(--cream-muted); line-height: 1.65; }

.modal-skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.modal-pro-meta {
  margin-bottom: 0.75rem;
}

.modal-skill-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-size: 0.82rem;
}

.modal-skill-item small {
  display: block;
  color: var(--cream-muted);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.achievements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.achievements-list li {
  font-size: 0.85rem;
  color: var(--cream);
  padding-left: 1.25rem;
  position: relative;
}

.achievements-list li::before {
  content: '🏏';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
}

.modal-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.modal-photo-grid a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.modal-photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}

.modal-photo-grid a:hover img {
  transform: scale(1.05);
}

.modal-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.modal-video-grid video {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: #000;
}

.modal-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold);
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ── Gallery ── */
.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-tabs::-webkit-scrollbar { display: none; }

.gallery-tab {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--cream-muted);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.gallery-tab.active,
.gallery-tab:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-size: 0.72rem;
  color: var(--cream);
  line-height: 1.3;
}

.gallery-item-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(201, 162, 39, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy-dark);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(201, 162, 39, 0.4); }

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
}

.lightbox-prev { left: 0.75rem; }
.lightbox-next { right: 0.75rem; }

.lightbox-content {
  max-width: 100%;
  max-height: 70svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img,
.lightbox-video {
  max-width: 100%;
  max-height: 70svh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--cream);
  font-size: 0.9rem;
  text-align: center;
  max-width: 500px;
}

.lightbox-counter {
  margin-top: 0.5rem;
  color: var(--cream-muted);
  font-size: 0.8rem;
}

/* ── Contact ── */
.contact-card {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-captain {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(201, 162, 39, 0.08);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.contact-avatar {
  border-radius: 50%;
  border: 3px solid var(--gold);
  flex-shrink: 0;
  object-fit: cover;
}

.contact-captain h3 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.15rem;
}

.contact-role { font-size: 0.85rem; color: var(--gold); }

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
  color: var(--cream);
  transition: background 0.2s;
  text-decoration: none;
}

a.contact-link {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(201, 162, 39, 0.25);
}

a.contact-link:active {
  background: rgba(201, 162, 39, 0.1);
}

.contact-link-phone strong {
  color: var(--gold-light);
}

.contact-call-hint {
  display: block;
  font-size: 0.68rem;
  color: var(--gold);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.contact-link:last-child { border-bottom: none; }
.contact-link:hover { background: rgba(201, 162, 39, 0.06); color: var(--cream); }

.contact-link-icon { font-size: 1.4rem; flex-shrink: 0; }

.contact-link small {
  display: block;
  font-size: 0.7rem;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-link strong { font-size: 0.95rem; color: var(--cream); }

/* ── WhatsApp ── */
.whatsapp { background: var(--navy); }

.wa-banner {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.wa-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.wa-text h2 {
  font-family: var(--font-display);
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.wa-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  max-width: 400px;
}

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  padding: 2.5rem 0 5rem;
  text-align: center;
}

.footer-logo {
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin: 0 auto 1rem;
}

.footer-name {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  color: var(--cream-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-links span { color: var(--cream-muted); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(200, 192, 170, 0.5);
}

/* ── Mobile hero stats stack ── */
@media (max-width: 599px) {
  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

/* ── Tablet+ ── */
@media (min-width: 600px) {
  .nav-title { display: block; }

  .hero-stats { max-width: 720px; }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  .vision-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .squad-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .player-modal {
    align-items: center;
  }

  .player-modal-content {
    border-radius: var(--radius-lg);
    max-height: 85svh;
  }
}

/* ── Desktop ── */
@media (min-width: 900px) {
  .nav-toggle { display: none; }

  .hero-stats { max-width: 920px; }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    border: none;
    padding: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    gap: 0.25rem;
  }

  .nav-links a {
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
  }

  .nav-links a:hover {
    border-left-color: transparent;
    border-bottom-color: var(--gold);
  }

  .vision-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .vision-pillars {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .wa-banner {
    flex-direction: row;
    text-align: left;
    padding: 2.5rem;
  }

  .wa-text { flex: 1; }

  .lightbox-prev { left: 2rem; }
  .lightbox-next { right: 2rem; }
}

@media (min-width: 1100px) {
  .squad-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }
}
