/* =========================================================
   RED BULL TRIBUTE LANDING PAGE — STYLES
   ========================================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  --rb-red:     #FF0000;
  --rb-red-dk:  #CC0000;
  --rb-blue:    #0033FF;
  --rb-blue-dk: #0022CC;
  --rb-navy:    #0a0e27;
  --rb-dark:    #0d0d0d;
  --rb-mid:     #1a1a2e;
  --rb-grey:    #8a8a9a;
  --rb-light:   #e8e8f0;
  --rb-white:   #ffffff;

  --font-display: 'Arial Black', 'Impact', 'Haettenschweiler', sans-serif;
  --font-body:    'Arial', 'Helvetica Neue', sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--rb-dark);
  color: var(--rb-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.accent {
  color: var(--rb-red);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rb-red);
  margin-bottom: 12px;
}

.section-label.light {
  color: var(--rb-red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--rb-white);
}

.section-title.light {
  color: var(--rb-white);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--rb-grey);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.7;
}

.section-sub.light {
  color: rgba(255,255,255,0.7);
}

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

.section-header .section-sub {
  margin: 16px auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--rb-red);
  color: var(--rb-white);
  box-shadow: 0 4px 24px rgba(255,0,0,0.35);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(255,0,0,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--rb-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--rb-white);
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}

.btn-outline-white {
  background: transparent;
  color: var(--rb-white);
  border: 2px solid var(--rb-white);
}
.btn-outline-white:hover {
  background: var(--rb-white);
  color: var(--rb-dark);
}

.btn-red {
  background: var(--rb-red);
  color: var(--rb-white);
  box-shadow: 0 4px 24px rgba(255,0,0,0.4);
}
.btn-red:hover {
  background: var(--rb-red-dk);
  box-shadow: 0 8px 32px rgba(255,0,0,0.55);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 14, 39, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }

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

.nav-links li a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color var(--transition), background var(--transition);
}

.nav-links li a:hover {
  color: var(--rb-white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--rb-red) !important;
  color: var(--rb-white) !important;
  padding: 8px 20px !important;
  box-shadow: 0 2px 16px rgba(255,0,0,0.3);
}
.nav-cta:hover {
  background: var(--rb-red-dk) !important;
  box-shadow: 0 4px 24px rgba(255,0,0,0.5) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--rb-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slide backgrounds */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,14,39,0.85) 40%, rgba(10,14,39,0.2) 100%),
    linear-gradient(to top, rgba(10,14,39,0.9) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rb-red);
  border: 1px solid var(--rb-red);
  padding: 6px 16px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  color: var(--rb-white);
  animation: slideUp 0.8s ease 0.4s both;
}
.hero-title .line-2 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: rgba(255,255,255,0.7);
  animation: slideUp 0.8s ease 0.55s both;
}
.hero-title .line-3 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  color: var(--rb-red);
  text-shadow: 0 0 60px rgba(255,0,0,0.4);
  animation: slideUp 0.8s ease 0.7s both;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.85s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 1s both;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 1.5s both;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-arrow {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,0,0,0.8), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active {
  background: var(--rb-red);
  transform: scale(1.3);
}

/* =========================================================
   MARQUEE BAR
   ========================================================= */
.marquee-bar {
  background: var(--rb-red);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rb-white);
  margin-right: 32px;
}

.marquee-track .sep {
  color: rgba(255,255,255,0.5);
  font-size: 0.5rem;
  vertical-align: middle;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: 120px 0;
  background: var(--rb-dark);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,0,0,0.4), transparent);
}

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

.about-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: saturate(1.2);
  transition: transform var(--transition-slow);
}
.about-img-wrap:hover img { transform: scale(1.03); }

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--rb-red);
  padding: 16px 24px;
  border-radius: 2px;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--rb-white);
}
.badge-text {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* decorative corner */
.about-image-block::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--rb-red);
  border-left: 3px solid var(--rb-red);
}

.about-image-block {
  position: relative;
}

.about-text p {
  color: var(--rb-grey);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-text strong { color: var(--rb-white); }

.about-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
  cursor: default;
}
.pillar:hover {
  border-color: var(--rb-red);
  background: rgba(255,0,0,0.05);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  color: var(--rb-red);
}
.pillar-icon svg { width: 100%; height: 100%; }

.pillar span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  padding: 120px 0;
  background: var(--rb-mid);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,51,255,0.4), transparent);
}

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

.gallery-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(1.1);
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,39,0.95) 0%, rgba(10,14,39,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-sport-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rb-red);
  margin-bottom: 8px;
}

.gallery-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--rb-white);
  margin-bottom: 8px;
}

.gallery-info p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.gallery-caption {
  padding: 16px;
  background: rgba(10,14,39,0.8);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sport-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
.sport-label.skate { background: var(--rb-blue); color: #fff; }
.sport-label.bmx   { background: var(--rb-red);  color: #fff; }
.sport-label.surf  { background: #0077cc; color: #fff; }
.sport-label.moto  { background: #ff6600; color: #fff; }

.gallery-caption h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rb-white);
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.4);
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,39,0.97) 0%, rgba(10,14,39,0.92) 100%);
}

.stats .container {
  position: relative;
  z-index: 1;
}

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

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rb-red);
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}

.stat-card:hover {
  border-color: rgba(255,0,0,0.3);
  background: rgba(255,0,0,0.04);
  transform: translateY(-4px);
}
.stat-card:hover::before { transform: scaleX(1); }

.stat-card.featured {
  background: rgba(255,0,0,0.06);
  border-color: rgba(255,0,0,0.3);
  grid-column: 1;
}
.stat-card.featured::before { transform: scaleX(1); }

.stat-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--rb-red);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  color: var(--rb-white);
  border-bottom-left-radius: 4px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  color: var(--rb-red);
  margin: 0 auto 20px;
}
.stat-icon svg { width: 100%; height: 100%; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--rb-white);
  line-height: 1;
  display: inline-block;
}

.stat-unit {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--rb-red);
  display: inline-block;
  margin-left: 4px;
  vertical-align: super;
  font-size: 1rem;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 12px 0 8px;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--rb-grey);
  line-height: 1.5;
}

/* Record Feature */
.record-feature {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.record-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}

.record-left {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.record-left h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--rb-white);
}

.record-left p {
  color: var(--rb-grey);
  line-height: 1.7;
  font-size: 0.95rem;
}

.record-stats-mini {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}
.record-stats-mini div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.record-stats-mini strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--rb-red);
  line-height: 1;
}
.record-stats-mini span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rb-grey);
}

.record-right {
  overflow: hidden;
}
.record-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
  transition: transform var(--transition-slow);
}
.record-right:hover img { transform: scale(1.04); }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: saturate(0.3);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,51,255,0.7) 0%, rgba(10,14,39,0.95) 60%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.cta-inner {
  max-width: 680px;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--rb-white);
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 48px;
}

.cta-form {
  width: 100%;
}

.form-group {
  display: flex;
  gap: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.4);
}

.form-group input[type="email"] {
  flex: 1;
  padding: 18px 24px;
  background: rgba(255,255,255,0.95);
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--rb-dark);
  border-radius: 0;
}

.form-group input[type="email"]::placeholder {
  color: rgba(0,0,0,0.4);
}

.form-group .btn-primary {
  border-radius: 0;
  white-space: nowrap;
  padding: 18px 32px;
}

.form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
  letter-spacing: 0.03em;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 16px 24px;
  background: rgba(0,200,100,0.15);
  border: 1px solid rgba(0,200,100,0.3);
  border-radius: 2px;
  font-size: 0.9rem;
  color: #00c864;
  font-weight: 600;
}

.form-success.visible { display: block; }

.cta-divider {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin: 48px auto;
}

.cta-store p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #050810;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  padding: 80px 0;
}

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

.footer-brand img.footer-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--rb-grey);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.social-links a:hover {
  background: var(--rb-red);
  border-color: var(--rb-red);
  color: var(--rb-white);
}

.social-links a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rb-white);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--rb-grey);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--rb-white); }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* =========================================================
   ANIMATIONS & KEYFRAMES
   ========================================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes scrollPulse {
  0%   { opacity: 1; transform: scaleY(1); }
  50%  { opacity: 0.4; transform: scaleY(0.6); }
  100% { opacity: 1; transform: scaleY(1); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

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

  .stat-card.featured {
    grid-column: auto;
  }

  .record-feature-inner {
    grid-template-columns: 1fr;
  }
  .record-right {
    height: 280px;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-wrap img {
    height: 360px;
  }

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

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--rb-navy);
    padding: 80px 24px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: 999;
  }

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

  .nav-links li a {
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }

  .nav-cta {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav-toggle { display: flex; }

  .hero-content { padding-top: 100px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .record-left {
    padding: 36px 28px;
  }

  .record-stats-mini {
    flex-wrap: wrap;
    gap: 20px;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group input[type="email"],
  .form-group .btn-primary {
    width: 100%;
    border-radius: 2px;
  }

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

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-dots {
    bottom: 24px;
    right: 20px;
  }
}
