/* ══════════════════════════════════════
   REDLINE EXTREME SPORTS — CSS
   Design: Dark premium sports aesthetic
   Palette: #0A0A0F (deep black), #E8000E (redline red), #F5F5F0 (off-white)
══════════════════════════════════════ */

:root {
  --red:    #E8000E;
  --red-dk: #B5000B;
  --dark:   #0A0A0F;
  --dark2:  #111117;
  --dark3:  #1A1A24;
  --mid:    #2A2A38;
  --muted:  #6B6B80;
  --light:  #A8A8C0;
  --white:  #F5F5F0;
  --accent: #00C2FF;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h: 72px;
  --r:     8px;
  --r-lg:  16px;
  --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

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

/* ── Logo image ── */
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.btn-primary:hover {
  background: var(--red-dk);
  border-color: var(--red-dk);
  box-shadow: 0 8px 24px rgba(232,0,14,0.35);
  transform: translateY(-2px);
}
.btn-primary.btn-large { padding: 18px 40px; font-size: 1.1rem; }
.btn-primary.btn-full   { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid rgba(245,245,240,0.3);
  cursor: pointer;
  transition: all var(--trans);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(245,245,240,0.08);
  transform: translateY(-2px);
}
.btn-ghost.btn-large { padding: 18px 40px; font-size: 1.1rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--r);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid rgba(245,245,240,0.25);
  cursor: pointer;
  transition: all var(--trans);
  width: 100%;
  margin-top: 24px;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

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

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 12px 0 16px;
}
.section-header p {
  color: var(--light);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}
.section-header--light h2, .section-header--light p { color: var(--white); }
.section-header--light p { color: rgba(245,245,240,0.7); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  padding: 6px 14px;
  border: 1px solid rgba(232,0,14,0.3);
  border-radius: 100px;
}
.section-tag--red { background: rgba(232,0,14,0.1); }

/* ══════════ NAVBAR ══════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo > span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.logo-red   { color: var(--red); }
.logo-white { color: var(--white); margin-left: 2px; }
.logo small {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.logo--footer { margin-bottom: 16px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links > a,
.nav-links > .dropdown > .drop-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--light);
  border-radius: var(--r);
  transition: color var(--trans), background var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.nav-links > a:hover,
.nav-links > .dropdown.open > .drop-trigger {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Dropdowns */
.dropdown { position: relative; }
.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--trans), transform var(--trans);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.dropdown.open .drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.drop-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--light);
  border-radius: 6px;
  transition: all var(--trans);
}
.drop-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  padding-left: 18px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--trans);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu.open { display: flex; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,15,0.85) 0%,
    rgba(10,10,15,0.6)  50%,
    rgba(10,10,15,0.3)  100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-h);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px var(--red); transform: scale(1); }
  50%       { box-shadow: 0 0 20px var(--red); transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,245,240,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.hero-scroll {
  position: absolute;
  right: 48px;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════ SPORTS ══════════ */
.sports {
  padding: 120px 0;
  background: var(--dark);
}

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

.sport-card {
  background: var(--dark2);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.sport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  border-color: rgba(232,0,14,0.3);
}
.sport-card--featured {
  border-color: rgba(232,0,14,0.2);
}

.sport-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--dark3);
}
.sport-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.sport-card:hover .sport-img img { transform: scale(1.07); }

.sport-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.8) 0%, transparent 60%);
}

.sport-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 1;
}

.sport-body { padding: 24px; }

.sport-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(232,0,14,0.3);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
}
.sport-icon svg { width: 24px; height: 24px; }

.sport-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sport-body p {
  font-size: 0.875rem;
  color: var(--light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.sport-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--trans);
}
.sport-link:hover { gap: 14px; }

/* ══════════ ABOUT ══════════ */
.about {
  padding: 120px 0;
  background: var(--dark2);
}

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

.about-visual { position: relative; }

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.about-img-secondary {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  border: 4px solid var(--dark2);
  overflow: hidden;
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-card-float {
  position: absolute;
  top: 32px; right: -24px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.float-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.float-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 12px 0 20px;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-content > p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.about-features { margin-bottom: 40px; display: flex; flex-direction: column; gap: 24px; }

.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: var(--r);
  background: rgba(232,0,14,0.1);
  border: 1px solid rgba(232,0,14,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ══════════ TRAINING ══════════ */
.training {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.training-bg {
  position: absolute;
  inset: 0;
  background: var(--dark3);
}
.training-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(232,0,14,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(0,194,255,0.04) 0%, transparent 60%);
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.training-card {
  background: rgba(10,10,15,0.6);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  backdrop-filter: blur(10px);
}
.training-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,0,14,0.3);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.training-card--featured {
  background: rgba(232,0,14,0.06);
  border-color: rgba(232,0,14,0.25);
}

.training-badge {
  position: absolute;
  top: -12px; left: 32px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.training-level {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.training-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.training-card > p {
  font-size: 0.875rem;
  color: var(--light);
  line-height: 1.65;
  margin-bottom: 24px;
}

.training-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 8px;
}
.training-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--light);
}
.training-card li::before {
  content: '';
  width: 6px; height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* ══════════ PRODUCTS ══════════ */
.products {
  padding: 120px 0;
  background: var(--dark);
}

.product-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--light);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--trans);
}
.tab-btn:hover   { border-color: var(--red); color: var(--white); }
.tab-btn.active  { background: var(--red); border-color: var(--red); color: #fff; }

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

.product-card {
  background: var(--dark2);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--trans), box-shadow var(--trans);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

.product-img {
  height: 220px;
  position: relative;
}
.product-img--board   { background: linear-gradient(135deg, #0d2137, #1a4a7a); }
.product-img--sail    { background: linear-gradient(135deg, #0d2f0d, #1a5a1a); }
.product-img--harness { background: linear-gradient(135deg, #1f0d0d, #4a1a1a); }
.product-img--wetsuit { background: linear-gradient(135deg, #0d0d1f, #1a1a4a); }

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom right, rgba(255,255,255,0.06) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3) 100%);
}

.product-info { padding: 20px 20px; }
.product-brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}
.product-info h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 6px 0 14px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--trans);
}
.product-link:hover { color: var(--red); }

/* ══════════ PARTNERS ══════════ */
.partners {
  padding: 72px 0;
  background: var(--dark2);
}
.partners-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

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

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  background: #ffffff;
  border-radius: var(--r-lg);
  transition: box-shadow var(--trans), transform var(--trans);
  cursor: pointer;
}
.partner-logo:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}
.partner-logo img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter var(--trans), opacity var(--trans);
}
.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

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

/* ══════════ RENTAL ══════════ */
.rental {
  padding: 120px 0;
  background: var(--dark);
}

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

.rental-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 12px 0 20px;
}
.rental-content > p {
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.rental-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.rental-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--light);
}
.rental-feature svg { color: var(--red); flex-shrink: 0; }

.rental-visual { position: relative; }
.rental-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.rental-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.rental-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.rental-price-card {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--red);
  border-radius: var(--r);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-from {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.price-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.price-value small { font-size: 1rem; font-weight: 400; }
.price-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

/* ══════════ NEWS ══════════ */
.news {
  padding: 120px 0;
  background: var(--dark2);
}

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

.news-card {
  background: var(--dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  border-color: rgba(232,0,14,0.2);
}
.news-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.news-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--dark3);
}
.news-card--featured .news-img { height: 100%; min-height: 280px; }

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.news-card:hover .news-img img { transform: scale(1.05); }

.news-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.news-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.news-body { padding: 28px; }
.news-date {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 10px;
}
.news-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
}
.news-card--featured .news-body h3 { font-size: 1.7rem; }
.news-body p {
  font-size: 0.875rem;
  color: var(--light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.news-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  transition: letter-spacing var(--trans);
}
.news-link:hover { letter-spacing: 0.14em; }

/* ══════════ GALLERY ══════════ */
.gallery {
  padding-top: 120px;
  background: var(--dark);
}
.gallery .section-header { margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 280px 280px;
  gap: 6px;
  margin-top: 40px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--dark3);
}
.gallery-item:first-child { border-radius: var(--r-lg) 0 0 0; }
.gallery-item:last-child  { border-radius: 0 0 var(--r-lg) 0; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(232,0,14,0);
  transition: background var(--trans);
}
.gallery-item:hover .gallery-hover { background: rgba(232,0,14,0.18); }

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

.g1 { grid-column: span 2; }
.g4 { grid-column: span 2; }

/* ══════════ CONTACT ══════════ */
.contact {
  padding: 120px 0;
  background: var(--dark2);
}

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

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  margin: 12px 0 16px;
}
.contact-info > p {
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: var(--r);
  background: rgba(232,0,14,0.1);
  border: 1px solid rgba(232,0,14,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 2px; }
.contact-item span { font-size: 0.925rem; color: var(--white); }

.contact-social { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--trans);
}
.social-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(232,0,14,0.08);
}

/* Form */
.contact-form {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--trans), background var(--trans);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(232,0,14,0.04);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ══════════ FOOTER ══════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 12px;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ══════════ SCROLL ANIMATIONS ══════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1100px) {
  .sports-grid      { grid-template-columns: repeat(2, 1fr); }
  .product-grid     { grid-template-columns: repeat(2, 1fr); }
  .partners-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-grid       { gap: 48px; }
  .gallery-grid     { grid-template-columns: repeat(3, 1fr); grid-template-rows: 240px 240px; }
  .g1 { grid-column: span 1; }
  .g4 { grid-column: span 1; }
  .gallery-item--wide { grid-column: span 1; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid    { grid-template-columns: 1fr; }
  .about-visual  { display: none; }
  .rental-grid   { grid-template-columns: 1fr; }
  .rental-visual { display: none; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 60px; }

  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-scroll { display: none; }

  .sports-grid    { grid-template-columns: 1fr; }
  .training-grid  { grid-template-columns: 1fr; }
  .product-grid   { grid-template-columns: repeat(2, 1fr); }
  .news-grid      { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: 1; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; gap: 8px; text-align: center; }
  .form-row       { grid-template-columns: 1fr; }
  .contact-form   { padding: 24px; }
  .hero-actions   { flex-direction: column; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item--tall { grid-row: span 1; }
}
