/* ============================================================
   SOVEREIGN SONS MC — STYLESHEET
   Dark motorcycle theme  |  Red & Gold accents
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --bg-black:   #0a0a0a;
  --bg-dark:    #111111;
  --bg-card:    #1a1a1a;
  --bg-card2:   #1f1f1f;
  --red:        #B91C1C;
  --red-bright: #EF4444;
  --gold:       #D97706;
  --gold-light: #F59E0B;
  --text:       #E5E5E5;
  --text-muted: #9CA3AF;
  --border:     rgba(255,255,255,0.07);
  --nav-h:      72px;
  --radius:     6px;
  --shadow-red: 0 0 32px rgba(185,28,28,0.35);
  --transition: 0.25s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-black);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--red-bright); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 52px;
}
.section-header.centered { text-align: center; }

.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-tag.light { color: var(--gold-light); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title.light { color: #fff; }

.title-bar {
  width: 60px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.title-bar.centered { margin: 0 auto; }

.section-desc {
  margin-top: 16px;
  color: var(--text-muted);
  max-width: 640px;
}
.section-desc.light { color: rgba(229,229,229,0.75); }
.section-desc a { color: inherit; text-decoration: underline; }

.lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: #fff;
  box-shadow: 0 4px 20px rgba(239,68,68,0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.btn-outline-red {
  background: transparent;
  color: var(--red-bright);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-1px);
}

.btn.full-width { width: 100%; justify-content: center; }

/* ---------- Nav ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(10,10,10,0.92);
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(185,28,28,0.5));
}

.nav-club-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-links .nav-cta {
  background: var(--red);
  color: #fff;
  padding: 7px 18px;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover { background: var(--red-bright); color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-black);
}

/* CSS ember/flame radial glow texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 80%, rgba(185,28,28,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 60%, rgba(217,119,6,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 70% 55%, rgba(185,28,28,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(0,0,0,0.8) 0%, transparent 70%);
  pointer-events: none;
}

/* subtle noise-like texture via repeating pattern */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 3px
    );
  pointer-events: none;
}

/* Ghost patch watermark behind hero content */
.hero-patch-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 720px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
}
.hero-patch-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(10,10,10,0) 0%, rgba(10,10,10,0.65) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 32px) 24px 64px;
  animation: heroFadeUp 1s ease both;
}

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

.hero-patch {
  width: 140px;
  height: 140px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 28px rgba(185,28,28,0.65));
  animation: patchPulse 4s ease-in-out infinite;
}
@keyframes patchPulse {
  0%, 100% { filter: drop-shadow(0 0 28px rgba(185,28,28,0.65)); }
  50%       { filter: drop-shadow(0 0 42px rgba(239,68,68,0.8)); }
}
.hero-patch img { width: 100%; height: 100%; object-fit: contain; }

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 12vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.7);
}
.hero-title span { color: var(--red-bright); }

.hero-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollCueFade 2s 1.5s ease both;
}
@keyframes scrollCueFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLinePulse 2s ease-in-out infinite;
}
@keyframes scrollLinePulse {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%       { transform: scaleY(1.15); opacity: 1; }
}

/* ---------- Next Event Section ---------- */
#next-event {
  position: relative;
  background: var(--bg-dark);
  padding: 80px 0 72px;
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--red);
}

.next-event-accent-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  background-size: 200% 100%;
  animation: stripShimmer 4s linear infinite;
}
@keyframes stripShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.next-event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.next-event-flyer {
  display: flex;
  justify-content: center;
}

.flyer-frame {
  position: relative;
  border: 3px solid var(--red);
  border-radius: 4px;
  box-shadow: 0 0 48px rgba(185,28,28,0.45), 0 8px 40px rgba(0,0,0,0.7);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}
.flyer-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(217,119,6,0.25);
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
}
.flyer-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.flyer-frame:hover img { transform: scale(1.015); }

.next-event-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.event-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  width: fit-content;
}

.event-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: #fff;
}

.event-note-line {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.em-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  padding-top: 2px;
  width: 28px;
  text-align: center;
}

.event-meta-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.event-meta-item strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.event-meta-item span {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}

/* Countdown */
.countdown-wrapper {
  background: var(--bg-black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.countdown-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.cd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--red-bright);
}

.cd-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.cd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
  animation: sepBlink 1s step-start infinite;
}
@keyframes sepBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.2; }
}

/* ---------- About ---------- */
#about {
  background: var(--bg-black);
  padding: 88px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about-text p strong { color: var(--text); }

.membership-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(185,28,28,0.08);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.mn-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--red-bright);
  padding-top: 1px;
}
.membership-notice p {
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}
.membership-notice p strong { color: var(--text); }

.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--red-bright);
  line-height: 1;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-patch-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.patch-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.patch-frame img {
  max-width: 220px;
  filter: drop-shadow(0 0 20px rgba(185,28,28,0.45));
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.highlight-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.hi-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---------- Mission ---------- */
#mission {
  position: relative;
  background: var(--bg-dark);
  padding: 88px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.mission-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(185,28,28,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.mission-card:hover {
  border-color: rgba(185,28,28,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.mission-card.featured {
  border-color: var(--red);
  background: var(--bg-card2);
  box-shadow: 0 0 32px rgba(185,28,28,0.2);
}

.mc-icon { font-size: 2.2rem; margin-bottom: 16px; }

.mission-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 12px;
}

.mission-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}
.mission-card.featured p strong { color: var(--gold-light); }

.causes-banner {
  background: var(--bg-black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.causes-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.causes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cause-tag {
  background: rgba(185,28,28,0.12);
  border: 1px solid rgba(185,28,28,0.28);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 100px;
}

/* ---------- Events / Calendar ---------- */
#events {
  background: var(--bg-black);
  padding: 88px 0;
}

.calendar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calendar-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.calendar-frame iframe {
  display: block;
  width: 100%;
}

.calendar-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.cal-note-icon { font-size: 1.5rem; flex-shrink: 0; }
.calendar-note strong { color: var(--text); }
.calendar-note a { color: var(--red-bright); }
.calendar-note a:hover { color: var(--gold-light); }

/* ---------- Community ---------- */
#community {
  background: var(--bg-dark);
  padding: 88px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.comm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.comm-card:hover {
  border-color: rgba(185,28,28,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.comm-icon { font-size: 2rem; }

.comm-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: #fff;
}

.comm-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  flex: 1;
}

/* ---------- Gallery ---------- */
#gallery {
  position: relative;
  background: var(--bg-black);
  padding: 88px 0;
  overflow: hidden;
}

.gallery-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(185,28,28,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.gallery-social-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  transition: all var(--transition);
}

.social-btn.fb {
  background: #1877F2;
}
.social-btn.fb:hover { background: #0c6bdf; color: #fff; transform: translateY(-2px); }

.social-btn.ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-btn.ig:hover { opacity: 0.88; color: #fff; transform: translateY(-2px); }

/* Masonry-ish grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

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

.gallery-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px dashed rgba(255,255,255,0.12);
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color var(--transition);
}
.gallery-item.placeholder:hover { border-color: rgba(185,28,28,0.4); }

/* Instagram feed embed */
.instagram-feed-wrapper {
  width: 100%;
}
.instagram-feed-wrapper iframe,
.instagram-feed-wrapper .lightwidget-widget {
  width: 100%;
  border: 0;
  overflow: hidden;
  display: block;
}

/* Shown until LightWidget code is pasted in */
.ig-feed-placeholder {
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 64px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  text-align: center;
}
.ig-placeholder-inner svg {
  opacity: 0.4;
}
.ig-placeholder-inner p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Contact ---------- */
#contact {
  background: var(--bg-dark);
  padding: 88px 0;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-item:hover { border-color: rgba(185,28,28,0.3); }

.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(185,28,28,0.12);
  border: 1px solid rgba(185,28,28,0.24);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red-bright);
}

.contact-item > div:not(.ci-icon) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-item strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-item a,
.contact-item span {
  font-size: 0.95rem;
  color: var(--text);
}
.contact-item a:hover { color: var(--red-bright); }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(156,163,175,0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(185,28,28,0.15);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ---------- Footer ---------- */
#footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 24px 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(185,28,28,0.4));
}
.footer-club-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: #fff;
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-content: end;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col li {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-col a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--red-bright); }

.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--red-bright); }
.footer-disclaimer {
  font-style: italic;
  font-size: 0.75rem !important;
  opacity: 0.65;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 4px 20px rgba(185,28,28,0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--red-bright); color: #fff; }

/* ---------- Link highlight ---------- */
.link-red { color: var(--red-bright); }
.link-red:hover { color: var(--gold-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .next-event-grid { grid-template-columns: 1fr; gap: 40px; }
  .next-event-flyer { order: -1; }
  .flyer-frame { max-width: 500px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-patch-block { order: -1; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .mission-cards { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--border);
    gap: 0;
    z-index: 899;
  }
  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 14px 28px;
    border-radius: 0;
    font-size: 1.1rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta {
    background: transparent;
    border-radius: 0;
    color: var(--red-bright);
  }

  /* Sections */
  #next-event,
  #about,
  #mission,
  #events,
  #community,
  #gallery,
  #contact { padding: 60px 0; }

  .section-title { font-size: 2rem; }
  .hero-title { font-size: 4rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item.wide { grid-column: span 1; }

  .form-row { grid-template-columns: 1fr; }

  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .countdown { flex-wrap: wrap; }
  .cd-unit { min-width: 48px; }
  .cd-num { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .hero-badges { gap: 8px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }

  .footer-links { grid-template-columns: 1fr; }

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

  .contact-form { padding: 24px 18px; }
}
