/* ============================================
   FUNKICK GRD — MASTER STYLESHEET
   Brand: Urban Dance Fitness / Street Energy
   Palette: Charcoal / Amber / Coral / White
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --bg-primary: #0e0e0e;
  --bg-secondary: #141414;
  --bg-surface: #1a1a1a;
  --bg-card: #1e1e1e;
  --bg-card-hover: #242424;

  --accent-amber: #f5a623;
  --accent-amber-light: #ffc145;
  --accent-amber-dark: #d4891a;
  --accent-coral: #e8583a;
  --accent-coral-light: #ff6b50;
  --accent-gold: #d4a017;

  --text-primary: #f2f0eb;
  --text-secondary: #b8b4ac;
  --text-muted: #6e6b64;
  --text-inverse: #0e0e0e;

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Gradients */
  --gradient-amber: linear-gradient(135deg, #f5a623 0%, #e8583a 100%);
  --gradient-amber-soft: linear-gradient(135deg, #ffc145 0%, #f5a623 100%);
  --gradient-dark: linear-gradient(180deg, #141414 0%, #0e0e0e 100%);
  --gradient-hero: linear-gradient(135deg, #0e0e0e 0%, #1a1410 50%, #0e0e0e 100%);
  --gradient-community: linear-gradient(135deg, #1a0e05 0%, #2a1608 100%);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;
  --space-3xl: 120px;

  /* Layout */
  --max-width: 1320px;
  --header-height: 72px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-amber: 0 8px 32px rgba(245, 166, 35, 0.2);
  --shadow-coral: 0 8px 32px rgba(232, 88, 58, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  line-height: 1.1;
  font-weight: 700;
}

h1 { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 7rem); letter-spacing: 0.02em; }
h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4.5rem); letter-spacing: 0.02em; }
h3 { font-family: var(--font-heading); font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; letter-spacing: 0.01em; }
h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.75; color: var(--text-secondary); }

.highlight-text {
  background: var(--gradient-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-amber);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
  background: rgba(245, 166, 35, 0.08);
}

.light-tag {
  color: var(--accent-amber-light);
  border-color: rgba(255, 193, 69, 0.4);
  background: rgba(255, 193, 69, 0.1);
}

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.section-title {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.white-title {
  color: #fff;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-amber);
  color: var(--text-inverse);
  box-shadow: var(--shadow-amber);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.35);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-medium);
}

.btn-outline:hover {
  border-color: var(--accent-amber);
  color: var(--accent-amber);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--text-inverse);
}

.btn-white:hover {
  background: var(--accent-amber-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--gradient-amber);
  color: var(--text-inverse);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-amber);
}

.btn-primary-sm:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-medium);
  transition: all var(--transition-base);
}

.btn-outline-sm:hover {
  border-color: var(--accent-amber);
  color: var(--accent-amber);
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: background var(--transition-slow), backdrop-filter var(--transition-slow), box-shadow var(--transition-slow);
}

.site-header.scrolled {
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-lg);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  flex-shrink: 0;
}

.logo-fun { color: var(--text-primary); }
.logo-kick { color: var(--accent-amber); }
.logo-grd { color: var(--accent-coral); }

.main-nav { display: flex; }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-amber);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--text-primary);
  background: var(--bg-surface);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.mobile-close:hover {
  background: var(--bg-card-hover);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.mobile-link:hover {
  color: var(--accent-amber);
}

.mobile-cta {
  margin-top: var(--space-sm);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-amber);
  opacity: 0;
  animation: particleFloat linear infinite;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-amber);
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.hero-headline {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  line-height: 0.95;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-frame {
  position: relative;
  width: 480px;
  max-width: 100%;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(245, 166, 35, 0.12);
  position: relative;
  z-index: 2;
  object-fit: cover;
  min-height: 540px;
  background: var(--bg-surface);
}

.hero-visual-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.vbadge-icon {
  font-size: 1.2rem;
}

.vbadge-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.hero-visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.15);
  z-index: 0;
}

.ring-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
  width: 580px;
  height: 580px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(232, 88, 58, 0.08);
  animation: ringPulse 4s ease-in-out infinite 1s;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  z-index: 1;
}

.hero-scroll-hint span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== MARQUEE BAND ===== */
.marquee-band {
  background: var(--gradient-amber);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--text-inverse);
}

.marquee-dot {
  opacity: 0.5;
  font-size: 0.5rem !important;
}

/* ===== WHAT SECTION ===== */
.what-section {
  background: var(--bg-secondary);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.what-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  animation-delay: var(--delay, 0s);
}

.what-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245, 166, 35, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.what-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.what-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.what-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ===== CLASSES SECTION ===== */
.classes-section {
  background: var(--bg-primary);
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}

.class-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  animation-delay: var(--delay, 0s);
}

.class-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}

.featured-class {
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 0 40px rgba(245, 166, 35, 0.08);
  transform: scale(1.02);
}

.featured-class:hover {
  transform: scale(1.02) translateY(-6px);
}

.class-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg-surface);
}

.class-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.class-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(14, 14, 14, 0.8);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-medium);
}

.badge-hot {
  background: rgba(245, 166, 35, 0.9) !important;
  color: var(--text-inverse) !important;
  border-color: transparent !important;
}

.badge-fire {
  background: rgba(232, 88, 58, 0.9) !important;
  color: #fff !important;
  border-color: transparent !important;
}

.class-info {
  padding: var(--space-lg);
}

.class-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.class-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.class-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.class-meta span {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
  padding: 0;
}

.community-bg-strip {
  background: var(--gradient-community);
  padding: var(--space-3xl) 0;
}

.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.community-text {
  padding-right: var(--space-lg);
}

.community-desc {
  color: rgba(242, 240, 235, 0.7);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.community-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
}

.community-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.community-photo:hover img {
  transform: scale(1.04);
}

.p1 { grid-row: span 2; min-height: 360px; }
.p2 { min-height: 170px; }
.p3 { min-height: 170px; }
.p4 { grid-column: span 2; min-height: 140px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg-secondary);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: all var(--transition-base);
  animation-delay: var(--delay, 0s);
}

.testimonial-card:hover {
  border-color: rgba(245, 166, 35, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent-amber);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: var(--space-sm);
}

.testimonial-card > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-surface);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #1a0e05 0%, #241508 50%, #1a0e05 100%);
  border-top: 1px solid rgba(245, 166, 35, 0.15);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
  padding: var(--space-xl) 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.cta-band-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.cta-band-text p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.cta-band-btn {
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0a0a;
  padding-top: var(--space-3xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand .logo {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-amber);
  color: var(--text-inverse);
  border-color: var(--accent-amber);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-amber);
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.footer-contact a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--accent-amber);
}

.footer-bottom {
  padding: var(--space-lg) 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding-top: calc(var(--header-height) + var(--space-xl));
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.about-hero { background: linear-gradient(135deg, #0e0e0e 0%, #1a1008 100%); }
.contact-hero { background: linear-gradient(135deg, #0e0e0e 0%, #0e0a14 100%); }
.legal-hero { background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%); }

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-content {
  max-width: 760px;
}

.page-hero-title {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
}

/* ===== ABOUT PAGE ===== */
.story-section {
  background: var(--bg-secondary);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.story-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-surface);
}

.story-img-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.story-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 4px;
  background: var(--gradient-amber);
}

.story-text-col p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.8;
}

.story-text-col .section-title {
  margin-bottom: var(--space-lg);
}

.values-section {
  background: var(--bg-primary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  animation-delay: var(--delay, 0s);
}

.value-card:hover {
  border-color: rgba(245, 166, 35, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(245, 166, 35, 0.15);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.value-card h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.value-card p {
  font-size: 0.95rem;
}

.team-section {
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  animation-delay: var(--delay, 0s);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.2);
}

.team-img {
  height: 240px;
  overflow: hidden;
  background: var(--bg-surface);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.team-info {
  padding: var(--space-md);
}

.team-info h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-amber);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.team-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.milestones-section {
  padding: 0;
}

.milestones-inner {
  padding: var(--space-3xl) 0;
}

.milestones-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.milestone {
  animation-delay: var(--delay, 0s);
}

.milestone-year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent-amber);
  margin-bottom: var(--space-sm);
}

.milestone h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.milestone p {
  font-size: 0.88rem;
  color: rgba(242, 240, 235, 0.55);
  line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: var(--bg-secondary);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info h2 {
  font-size: 2.4rem;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.contact-detail {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-detail a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.contact-detail a:hover {
  color: var(--accent-amber);
}

.contact-socials {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  animation-delay: var(--delay, 0s);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-amber);
  background: rgba(245, 166, 35, 0.04);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

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

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--accent-amber);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-check label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-check label a {
  color: var(--accent-amber);
  text-decoration: underline;
}

.form-success {
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-success span {
  font-size: 1.3rem;
}

.form-success p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
  background: var(--bg-secondary);
}

.legal-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.legal-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.legal-nav a:hover {
  background: rgba(245, 166, 35, 0.08);
  color: var(--accent-amber);
}

.legal-content {
  animation-delay: var(--delay, 0s);
}

.legal-block {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-block h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.legal-block p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-block ul {
  list-style: none;
  margin-bottom: var(--space-md);
}

.legal-block ul li {
  color: var(--text-secondary);
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-amber);
  font-size: 0.85rem;
}

.legal-block a {
  color: var(--accent-amber);
  text-decoration: underline;
  text-decoration-color: rgba(245, 166, 35, 0.4);
  transition: text-decoration-color var(--transition-fast);
}

.legal-block a:hover {
  text-decoration-color: var(--accent-amber);
}

.policy-intro-box,
.rules-intro-box {
  background: rgba(245, 166, 35, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.policy-intro-box h3,
.rules-intro-box h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-amber-light);
  margin-bottom: var(--space-sm);
}

.policy-intro-box p,
.rules-intro-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
/* ENDFILE */