/* ════════════════════════════════════════════════════════════
   Made2Fly FC — Main Stylesheet (LIGHT THEME)
   Brand: White · Black · Red (#cc1111)
   Fonts: Bebas Neue (display) · Barlow Condensed · Barlow (body)
════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ───────────────────────────────────── */
:root {
  --black: #111111;
  --dark: #f7f7f7;
  --dark-2: #eeeeee;
  --dark-3: #e5e5e5;
  --red: #cc1111;
  --red-dark: #a50d0d;
  --red-glow: rgba(204, 17, 17, 0.25);
  --white: #111111;
  --off-white: #1a1a1a;
  --grey: #666666;
  --grey-light: #555555;
  --border: rgba(0, 0, 0, 0.08);

  --bg-primary: #ffffff;
  --bg-secondary: #f7f7f7;
  --text-primary: #111111;
  --text-body: #444444;

  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Gotham', 'Barlow Condensed', sans-serif;
  --font-body: 'Gotham', 'Barlow', sans-serif;

  --transition: 0.35s ease;
  --radius: 4px;
}

/* ── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

main {
  overflow-x: clip;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}


/* ── LOADER ──────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease;
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader-badge {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  animation: loaderPulse 1.8s ease-in-out infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 12px var(--red-glow));
  }

  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 28px var(--red-glow));
  }
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: var(--dark-3);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  background: var(--red);
  animation: loaderBar 1.2s ease-in-out forwards;
}

@keyframes loaderBar {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}


/* ── HEADER / NAV ────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform var(--transition);
}

.header-logo:hover img {
  transform: scale(1.08);
}

.header-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1;
  transition: color var(--transition);
}

#site-header.scrolled .header-logo-text {
  color: var(--text-primary);
}

.header-logo-text span {
  color: var(--red);
}

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

.nav-link {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
}

#site-header.scrolled .nav-link {
  color: var(--grey);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: #ffffff;
}

#site-header.scrolled .nav-link:hover {
  color: var(--text-primary);
}

#site-header.scrolled .nav-link.active {
  color: var(--text-primary);
}

.nav-cta {
  background: var(--red);
  color: #ffffff !important;
  padding: 8px 18px;
  margin-left: 8px;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

#site-header.scrolled .nav-toggle span {
  background: var(--text-primary);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 20px 40px 28px;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mob-link {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mob-link:last-child {
  border-bottom: none;
}

.mob-link:hover {
  color: var(--red);
}


/* ── HERO (stays dark) ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  height: 100vh;
  background: #0d0d0d;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 76px 40px 40px;
  gap: 0;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(204, 17, 17, 0.08) 0%, transparent 65%),
    rgba(0, 0, 0, 0.85);
  pointer-events: none;
}

.hero-badge {
  width: clamp(100px, 12vw, 160px);
  height: clamp(100px, 12vw, 160px);
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 28px rgba(204, 17, 17, 0.25));
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.hero-badge.visible {
  opacity: 1;
  transform: scale(1);
}

.hero-wrapper {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #aaaaaa;
  margin-bottom: 14px;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.8s, transform 0.7s ease 0.8s;
}

.hero-eyebrow.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 120px);
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 0.88;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease 1s, transform 0.8s ease 1s;
  display: inline-block;
}

.hero-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title .red {
  color: var(--red);
}

.hero-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.26em;
  letter-spacing: 0.42em;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
}

.hero-divider {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 16px auto;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.6s ease 1.4s, transform 0.6s ease 1.4s;
  transform-origin: left;
}

.hero-divider.visible {
  opacity: 1;
  transform: scaleX(1);
}

.hero-sub {
  font-family: var(--font-condensed);
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaaaaa;
  margin-bottom: 28px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 1.5s, transform 0.7s ease 1.5s;
}

.hero-sub.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 1.7s, transform 0.7s ease 1.7s;
}

.hero-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--red);
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 17, 17, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: scrollHintFade 1s ease 2.5s forwards;
}

@keyframes scrollHintFade {
  to {
    opacity: 0.4;
  }
}

.hero-scroll-hint span {
  font-family: var(--font-condensed);
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid #888;
  border-bottom: 1px solid #888;
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(5px);
  }
}


/* ── TICKER / MARQUEE ────────────────────────────────────── */
.ticker {
  background: #111111;
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: tickerScroll 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.ticker-item::after {
  content: '•';
  font-size: 10px;
  opacity: 0.6;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ── SECTION SHARED ──────────────────────────────────────── */
.section-label {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.section-heading span {
  color: var(--red);
}

.section-body {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 580px;
}

.wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ── ABOUT / INTRO SECTION ───────────────────────────────── */
.about-section {
  background: var(--bg-secondary);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: 'M2F';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 320px;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

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

.about-left .section-heading {
  margin-bottom: 24px;
}

.about-left .section-body {
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 16px;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}

.about-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(204, 17, 17, 0.1);
}

.about-image img {
  width: 100%;
  height: clamp(350px, 35vw, 500px);
  object-fit: cover;
  display: block;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}


/* ── PILLARS / VALUES ────────────────────────────────────── */
.values-section {
  background: var(--bg-primary);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.values-header {
  text-align: center;
  margin-bottom: 72px;
}

.values-header .section-body {
  margin: 20px auto 0;
  text-align: center;
}

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

.value-card {
  background: var(--bg-secondary);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: default;
}

.value-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover {
  background: var(--dark-3);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(204, 17, 17, 0.12), rgba(204, 17, 17, 0.04));
  border: 1px solid rgba(204, 17, 17, 0.15);
  border-radius: 16px;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 26px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.08), -2px -2px 8px rgba(255, 255, 255, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.value-card:hover .value-icon {
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  color: #ffffff;
  border-color: var(--red);
  box-shadow: 0 6px 20px rgba(204, 17, 17, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.value-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.value-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--grey);
}


/* ── VISION & MISSION ───────────────────────────────────── */
.vision-mission-section {
  background: var(--bg-primary);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.vm-card {
  background: var(--bg-secondary);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
}

.vm-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(204, 17, 17, 0.12), rgba(204, 17, 17, 0.04));
  border: 1px solid rgba(204, 17, 17, 0.15);
  border-radius: 16px;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 26px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.08), -2px -2px 8px rgba(255, 255, 255, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.vm-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.vm-text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 520px;
}


/* ── CLUB PROFILE ───────────────────────────────────────── */
.club-profile-section {
  background: var(--bg-secondary);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.profile-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.profile-item {
  background: var(--bg-primary);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--transition);
}

.profile-item:hover {
  background: var(--dark-3);
}

.profile-label {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1;
  text-transform: uppercase;
  color: var(--red);
}

.profile-value {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.5;
}


/* ── VALUES 3-COL VARIANT ───────────────────────────────── */
.values-grid--three {
  grid-template-columns: repeat(3, 1fr);
}


/* ── MANIFESTO ──────────────────────────────────────────── */
.manifesto-section {
  background: var(--bg-secondary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.manifesto-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  pointer-events: none;
}

.manifesto-section::before {
  content: 'M2F';
  position: absolute;
  right: -40px;
  bottom: -60px;
  font-family: var(--font-display);
  font-size: clamp(200px, 30vw, 500px);
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

.manifesto-section>.wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Editorial grid layout */
.manifesto-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left column — big statement */
.manifesto-left {
  padding-right: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.manifesto-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 24px;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.manifesto-headline span {
  color: var(--red);
}

.manifesto-accent-line {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin-bottom: 28px;
}

.manifesto-pull-quote {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-style: italic;
}

/* Right column — body copy */
.manifesto-right {
  padding-left: 20px;
}

.manifesto-lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px) !important;
  color: #ffffff !important;
  line-height: 1.7 !important;
  margin-bottom: 20px !important;
  font-weight: 500;
}

.manifesto-right p {
  font-family: var(--font-body);
  font-size: clamp(12.5px, 1.1vw, 14px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.manifesto-right p:last-child {
  margin-bottom: 0;
}

.manifesto-right p strong {
  color: #ffffff;
}

.manifesto-closing {
  color: #ffffff !important;
  font-size: clamp(13.5px, 1.3vw, 15.5px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px !important;
  margin-top: 8px !important;
}

.manifesto-closing strong {
  color: var(--red);
  font-size: 1.05em;
}

.manifesto-tagline {
  font-family: var(--font-condensed) !important;
  font-size: clamp(11px, 1.2vw, 14px) !important;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red) !important;
  margin-top: 20px !important;
}


/* ── CONTACT DETAILS (in join section) ──────────────────── */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

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

.contact-item>i {
  color: var(--red);
  font-size: 16px;
  width: 20px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-label {
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 12.5px;
  color: var(--text-body);
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--red);
}


/* ── VISION QUOTE (stays red) ────────────────────────────── */
.vision-section {
  background: #000000;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 400px;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.vision-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.1;
  max-width: 1000px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.vision-source {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  position: relative;
  z-index: 1;
}


/* ── JOIN THE JOURNEY ────────────────────────────────────── */
.join-section {
  background: var(--bg-primary);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

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

.join-left .section-heading {
  margin-bottom: 20px;
}

.join-left .section-body {
  margin-bottom: 32px;
}

.join-social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.join-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--grey);
  font-size: 16px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.join-social a:hover {
  color: #ffffff;
  border-color: var(--red);
  background: var(--red);
}

.join-form-wrap {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px 40px;
}

.join-form-wrap h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.join-form-wrap p {
  font-size: 12.5px;
  color: var(--grey);
  margin-bottom: 28px;
}

.interest-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

.field-group input,
.field-group select,
.field-group textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 12.5px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #aaa;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--red);
}

.field-group select option {
  background: var(--bg-primary);
}

.field-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  margin-top: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--red);
  padding: 15px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 17, 17, 0.35);
}

.form-msg {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 12.5px;
  line-height: 1.5;
  display: none;
}

.form-msg.success {
  display: block;
  background: rgba(42, 107, 42, 0.1);
  border-left: 3px solid #2a6b2a;
  color: #1a7a1a;
}

.form-msg.error {
  display: block;
  background: rgba(204, 17, 17, 0.06);
  border-left: 3px solid var(--red);
  color: #cc1111;
}


/* ── FOOTER (stays dark) ────────────────────────────────── */
#site-footer {
  background: #111111;
  overflow-x: clip;
  color: #cccccc;
}

.footer-cta {
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0;
}

.footer-cta .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-cta-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: #ffffff;
  letter-spacing: 0.03em;
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-club-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.footer-club-name span {
  color: var(--red);
}

.footer-tagline {
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}

.footer-desc {
  font-size: 12px;
  line-height: 1.7;
  color: #888888;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: #888888;
  font-size: 15px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer-social a:hover {
  color: #ffffff;
  border-color: var(--red);
  background: rgba(204, 17, 17, 0.1);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col h5 {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col a,
.footer-address {
  font-size: 12px;
  color: #888888;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--red);
}

.footer-address {
  font-style: normal;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 10.5px;
  color: #888888;
  letter-spacing: 0.05em;
}

.footer-motto {
  font-family: var(--font-condensed);
  font-weight: 500;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15) !important;
  font-size: 9px !important;
}

.footer-bottom a {
  color: var(--red);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: #ffffff;
}


/* ── SCROLL ANIMATIONS (JS-driven classes) ───────────────── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.anim-fade-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.anim-fade-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.anim-fade-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.anim-delay-1 {
  transition-delay: 0.1s;
}

.anim-delay-2 {
  transition-delay: 0.2s;
}

.anim-delay-3 {
  transition-delay: 0.3s;
}

.anim-delay-4 {
  transition-delay: 0.4s;
}

.anim-delay-5 {
  transition-delay: 0.5s;
}

.anim-delay-6 {
  transition-delay: 0.6s;
}


/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-inner {
    gap: 60px;
  }

  .join-inner {
    gap: 60px;
  }

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

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-left .section-body {
    max-width: 100%;
  }

  .about-stats {
    justify-content: center;
  }

  .about-right {
    order: -1;
  }

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

  .join-inner {
    grid-template-columns: 1fr;
  }

  .join-left {
    text-align: center;
  }

  .join-left .section-body {
    max-width: 100%;
  }

  .join-social {
    justify-content: center;
  }

  .contact-details {
    align-items: flex-start;
  }

  .manifesto-editorial {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .manifesto-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
  }

  .manifesto-right {
    padding-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: left;
  }

  .footer-brand-top {
    justify-content: flex-start;
  }

  .footer-desc {
    margin-left: 0;
    margin-right: auto;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-cta .wrapper {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 24px;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .wrapper {
    padding: 0 24px;
  }

  #site-header {
    width: 100%;
  }

  .hero {
    padding: 76px 0 32px;
    height: 100svh;
    background-position: left;
  }

  .hero-wrapper {
    justify-content: center;
  }

  .hero>* {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    font-size: 0.25em;
  }

  .about-section {
    padding: 80px 0;
  }

  .about-section::before {
    display: none;
  }

  .vision-mission-section {
    padding: 80px 0;
  }

  .club-profile-section {
    padding: 80px 0;
  }

  .values-section {
    padding: 80px 0;
  }

  .manifesto-section {
    padding: 60px 0;
    min-height: auto;
  }

  .manifesto-section::before {
    font-size: 150px;
  }

  .manifesto-editorial {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .manifesto-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
  }

  .manifesto-right {
    padding-left: 0;
  }

  .manifesto-headline {
    font-size: clamp(32px, 8vw, 52px);
  }

  .manifesto-right p {
    font-size: 14px;
  }

  .manifesto-closing {
    font-size: 15px !important;
  }

  .manifesto-tagline {
    font-size: 12px !important;
  }

  .manifesto-pull-quote {
    font-size: clamp(15px, 3vw, 20px);
  }

  .vision-section {
    padding: 80px 0;
  }

  .vision-section::before {
    font-size: 200px;
  }

  .join-section {
    padding: 80px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .values-grid--three {
    grid-template-columns: 1fr;
  }

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

  .vm-card {
    padding: 40px 28px;
  }

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

  .join-form-wrap {
    padding: 36px 24px;
  }

  .join-left {
    text-align: center;
  }

  .contact-details {
    align-items: flex-start;
  }

  .contact-item {
    text-align: left;
  }

  .contact-label {
    text-align: left;
  }

  /* Mobile text size bumps */
  .hero-eyebrow {
    font-size: 11px;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-sub {
    font-size: 12px;
  }

  .btn-primary,
  .btn-outline {
    font-size: 12px;
    padding: 13px 26px;
  }

  .mob-link {
    font-size: 13px;
  }

  .section-label {
    font-size: 0.75rem;
  }

  .section-body {
    font-size: 14px;
  }

  .ticker-item {
    font-size: 12px;
  }

  .value-title,
  .vm-title {
    font-size: 24px;
  }

  .value-desc {
    font-size: 13.5px;
  }

  .vm-text {
    font-size: 14px;
  }

  .profile-label {
    font-size: 0.8rem;
  }

  .profile-value {
    font-size: 14px;
  }

  .contact-label {
    font-size: 10px;
  }

  .contact-item a,
  .contact-item span {
    font-size: 13.5px;
  }

  .join-form-wrap p {
    font-size: 13.5px;
  }

  .field-group label {
    font-size: 10px;
  }

  .field-group input,
  .field-group select,
  .field-group textarea {
    font-size: 14px;
  }

  .form-submit {
    font-size: 12px;
  }

  .footer-tagline {
    font-size: 10px;
  }

  .footer-desc {
    font-size: 13px;
  }

  .footer-col h5 {
    font-size: 0.75rem;
  }

  .footer-col a,
  .footer-address {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 11.5px;
  }

  .footer-motto {
    font-size: 10px !important;
  }

  .footer-cta {
    padding: 40px 0;
  }

  .footer-cta .wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: left;
  }

  .footer-brand-top {
    justify-content: flex-start;
  }

  .footer-desc {
    margin-left: 0;
    margin-right: auto;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    width: 100px;
    height: 100px;
  }

  .about-stats {
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .footer-col {
    text-align: left;
  }

  .header-logo-text {
    font-size: 16px;
  }
}