:root {
  --red: #D42B2B;
  --red-hot: #FF1E1E;
  --yellow: #F5C400;
  --black: #080808;
  --dark: #111111;
  --dark2: #1A1A1A;
  --grey: #2A2A2A;
  --light: #E8E8E8;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Barlow', sans-serif; overflow-x: hidden; }

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 999; opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}

/* ── HELPERS ── */
.red { color: var(--red-hot); }
.max { max-width: 1200px; margin: 0 auto; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--red); margin-bottom: 0.7rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem, 5.5vw, 4.6rem); line-height: 1; letter-spacing: 0.03em; }
section { padding: 5.5rem 5%; position: relative; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 0.55rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.85rem 2rem; text-decoration: none; transition: all 0.22s; clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px)); cursor: pointer; border: none; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-hot); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.28); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: #ffd700; transform: translateY(-2px); }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 68px; background: rgba(8,8,8,0.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(212,43,43,0.25); }
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.75rem; letter-spacing: 0.08em; color: var(--white); text-decoration: none; }
.nav-logo span { color: var(--red-hot); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light); text-decoration: none; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--yellow); transition: width 0.25s; }
.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 0.42rem 1.15rem; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-hot) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.25s; }

/* Mobile menu */
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: rgba(8,8,8,0.98); z-index: 850; flex-direction: column; padding: 1.5rem 5%; border-bottom: 1px solid rgba(212,43,43,0.25); gap: 0; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.4rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); text-decoration: none; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--yellow); }

/* ── HERO ── */
#hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 68px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 65% 55% at 68% 50%, rgba(212,43,43,0.16) 0%, transparent 70%), radial-gradient(ellipse 35% 40% at 15% 85%, rgba(245,196,0,0.07) 0%, transparent 60%), linear-gradient(155deg, #0f0f0f 0%, #080808 55%, #0d0404 100%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(212,43,43,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(212,43,43,0.055) 1px, transparent 1px); background-size: 90px 90px; mask-image: radial-gradient(ellipse at 65% 50%, black 15%, transparent 75%); }
.hero-stripe { position: absolute; left: 0; top: 52%; width: 30%; height: 3px; background: linear-gradient(90deg, transparent, var(--red), var(--yellow), transparent); opacity: 0.6; }
.hero-content { position: relative; z-index: 2; max-width: 860px; padding: 4rem 5%; }
.hero-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1.2rem; animation: fadeUp 0.7s ease both; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(4.5rem, 13vw, 12rem); line-height: 0.9; letter-spacing: 0.02em; color: var(--white); animation: fadeUp 0.7s 0.12s ease both; }
.hero-sub { font-family: 'Barlow Condensed', sans-serif; font-weight: 400; font-size: clamp(1rem, 2.2vw, 1.4rem); letter-spacing: 0.07em; color: rgba(232,232,232,0.62); margin-top: 1.4rem; max-width: 500px; line-height: 1.55; animation: fadeUp 0.7s 0.24s ease both; }
.hero-ctas { display: flex; gap: 1rem; margin-top: 2.4rem; animation: fadeUp 0.7s 0.36s ease both; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.8rem; margin-top: 3.8rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); animation: fadeUp 0.7s 0.5s ease both; flex-wrap: wrap; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.3rem; color: var(--yellow); line-height: 1; }
.stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(232,232,232,0.45); margin-top: 0.2rem; }

/* ── TICKER ── */
.ticker-wrap { background: var(--red); overflow: hidden; padding: 0.65rem 0; position: relative; z-index: 5; }
.ticker { display: flex; animation: ticker 28s linear infinite; white-space: nowrap; }
.ticker span { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.22em; padding: 0 2.5rem; color: var(--white); }
.ticker span.dot { color: var(--yellow); padding: 0; }

/* ── ABOUT ── */
#about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-corner { position: absolute; top: -14px; left: -14px; width: 55%; height: 55%; border-top: 3px solid var(--red); border-left: 3px solid var(--red); pointer-events: none; z-index: 2; }
.about-frame { width: 100%; aspect-ratio: 3/4; overflow: hidden; clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px)); }
.about-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; filter: contrast(1.05) saturate(1.1); }
.about-badge { position: absolute; bottom: -12px; right: -12px; z-index: 3; background: var(--yellow); color: var(--black); font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.12em; padding: 0.7rem 1.1rem; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); }
.about-text .section-title { margin-bottom: 1.4rem; }
.about-text p { font-size: 1rem; line-height: 1.82; color: rgba(232,232,232,0.72); margin-bottom: 1.1rem; }
.about-text p strong { color: var(--white); }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.8rem; }
.tag { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.38rem 0.95rem; border: 1px solid rgba(212,43,43,0.45); color: rgba(232,232,232,0.65); }

/* ── GALLERY ── */
.gallery-section { background: var(--black); padding: 5.5rem 0; }
.gallery-header { padding: 0 5%; margin-bottom: 2.5rem; }
.gallery-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 4px; padding: 0 5%; }
.g-item { overflow: hidden; position: relative; cursor: pointer; }
.g-item.g-tall { grid-row: span 2; }
.g-item.g-wide { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.4s ease; filter: saturate(0.88); display: block; }
.g-item:hover img { transform: scale(1.06); filter: saturate(1.2); }
.g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(212,43,43,0.4) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; }
.g-item:hover .g-overlay { opacity: 1; }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 88vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.15em; color: var(--white); cursor: pointer; opacity: 0.6; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: var(--white); cursor: pointer; opacity: 0.4; background: none; border: none; padding: 1rem; line-height: 1; transition: opacity 0.2s; }
.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.4); text-transform: uppercase; }

/* ── SR MEDIA ── */
#sr-media { background: var(--dark); }
.sr-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.sr-wordmark { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 7rem); line-height: 1; letter-spacing: 0.05em; }
.sr-desc { max-width: 340px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.98rem; line-height: 1.6; color: rgba(232,232,232,0.55); text-align: right; }
.sr-line { width: 100%; height: 1px; background: linear-gradient(90deg, var(--red), var(--yellow), transparent); margin-bottom: 2.8rem; opacity: 0.45; }
.sr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(255,255,255,0.04); }
.sr-card { background: var(--dark2); padding: 2.4rem 1.9rem; position: relative; overflow: hidden; transition: background 0.3s; }
.sr-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--red); transition: height 0.3s; }
.sr-card:hover { background: #1e1212; }
.sr-card:hover::before { height: 100%; }
.sr-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: rgba(212,43,43,0.13); line-height: 1; margin-bottom: 0.9rem; }
.sr-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.7rem; }
.sr-card p { font-size: 0.88rem; line-height: 1.72; color: rgba(232,232,232,0.52); }

/* ── SHOP ── */
#shop { background: var(--black); }
.shop-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.8rem; flex-wrap: wrap; gap: 1rem; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(255,255,255,0.04); margin-bottom: 2rem; }
.shop-card { background: var(--dark2); overflow: hidden; position: relative; transition: transform 0.28s; }
.shop-card:hover { transform: scale(1.015); z-index: 2; }
.shop-img { aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; position: relative; }
.shop-img-1 { background: linear-gradient(135deg, #1c0808, #2e0f0f); }
.shop-img-2 { background: linear-gradient(135deg, #0a0a0a, #1a1500); }
.shop-img-3 { background: linear-gradient(135deg, #080a08, #121a12); }
.shop-img-label { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.18em; color: rgba(255,255,255,0.1); text-align: center; padding: 1rem; }
.cs-badge { position: absolute; top: 1rem; right: 1rem; background: var(--yellow); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.28rem 0.65rem; }
.shop-info { padding: 1.15rem 1.4rem; }
.shop-info h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.28rem; }
.shop-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: var(--yellow); }
.shop-sub { font-size: 0.72rem; color: rgba(232,232,232,0.38); margin-top: 0.18rem; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; }
.shop-notify { text-align: center; padding: 1.4rem; background: var(--dark2); border: 1px solid rgba(245,196,0,0.14); }
.shop-notify p { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; letter-spacing: 0.1em; color: rgba(232,232,232,0.48); text-transform: uppercase; }
.shop-notify a { color: var(--yellow); text-decoration: none; }

/* ── INSTAGRAM ── */
#instagram { background: var(--dark); }
.insta-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.insta-handle { display: inline-flex; align-items: center; gap: 0.6rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); text-decoration: none; border: 1px solid rgba(245,196,0,0.3); padding: 0.5rem 1.2rem; transition: all 0.2s; }
.insta-handle:hover { background: rgba(245,196,0,0.08); border-color: var(--yellow); }
.insta-wrap { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); padding: 2rem; }
.insta-note { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; letter-spacing: 0.12em; color: rgba(232,232,232,0.35); text-transform: uppercase; margin-bottom: 1.2rem; }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.insta-thumb { display: block; aspect-ratio: 1/1; overflow: hidden; position: relative; }
.insta-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s, filter 0.4s; filter: saturate(0.85); }
.insta-thumb:hover img { transform: scale(1.08); filter: saturate(1.2); }
.insta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.insta-thumb:hover .insta-overlay { background: rgba(212,43,43,0.35); }
.insta-overlay span { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.15em; color: var(--white); opacity: 0; transition: opacity 0.3s; }
.insta-thumb:hover .insta-overlay span { opacity: 1; }
.insta-tip { margin-top: 1rem; font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 0.12em; color: rgba(232,232,232,0.22); text-transform: uppercase; text-align: center; }
.insta-tip strong { color: rgba(232,232,232,0.38); }

/* ── SPONSORS ── */
#sponsors { background: var(--black); }
.sponsors-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 2.8rem; }
.sponsors-left p { font-size: 1rem; line-height: 1.82; color: rgba(232,232,232,0.68); margin-bottom: 1.1rem; }
.sponsors-left p strong { color: var(--white); }
.perk-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.perk-list li { display: flex; align-items: center; gap: 1rem; font-family: 'Barlow Condensed', sans-serif; font-size: 0.98rem; letter-spacing: 0.05em; color: rgba(232,232,232,0.78); }
.perk-list li::before { content: ''; width: 18px; height: 2px; background: var(--red); flex-shrink: 0; }
.deck-card { background: var(--dark2); clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px)); border: 1px solid rgba(245,196,0,0.18); overflow: hidden; }
.deck-top { background: var(--red); padding: 2rem 2rem 1.5rem; }
.deck-top-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.deck-top h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; letter-spacing: 0.06em; line-height: 1; }
.deck-top p { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-top: 0.5rem; line-height: 1.5; }
.deck-body { padding: 1.8rem 2rem; }
.deck-stat { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.9rem; }
.deck-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--yellow); }
.deck-stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; letter-spacing: 0.08em; color: rgba(232,232,232,0.6); text-transform: uppercase; }
.deck-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 1.2rem 0; }
.deck-who { font-family: 'Barlow Condensed', sans-serif; font-size: 0.88rem; line-height: 1.65; color: rgba(232,232,232,0.6); margin-bottom: 1.5rem; }
.deck-mission { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; line-height: 1.6; color: rgba(232,232,232,0.48); font-style: italic; border-left: 2px solid var(--red); padding-left: 1rem; margin-bottom: 1.5rem; }
.current-sponsors { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.current-sponsors h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.42em; text-transform: uppercase; color: rgba(232,232,232,0.3); margin-bottom: 1.4rem; text-align: center; }
.sponsor-logos { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; }
.sponsor-pill { background: var(--dark2); border: 1px solid rgba(255,255,255,0.07); padding: 0.55rem 1.5rem; font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.45); transition: all 0.2s; }
.sponsor-pill:hover { border-color: var(--red); color: var(--white); }

/* ── CONTACT ── */
#contact { background: var(--dark); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 2.8rem; }
.contact-info > p { font-size: 1rem; line-height: 1.8; color: rgba(232,232,232,0.65); margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1.5px; background: rgba(255,255,255,0.04); }
.c-card { background: var(--dark2); padding: 1.5rem 1.8rem; text-decoration: none; color: var(--white); transition: background 0.22s; display: flex; align-items: center; gap: 1.2rem; }
.c-card:hover { background: #1a1010; }
.c-icon { font-size: 1.5rem; flex-shrink: 0; }
.c-card h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); margin-bottom: 0.2rem; }
.c-card p { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; color: rgba(232,232,232,0.75); }
.contact-form { background: var(--dark2); padding: 2.5rem; border: 1px solid rgba(255,255,255,0.06); }
.contact-form h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.form-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; letter-spacing: 0.1em; color: rgba(232,232,232,0.4); text-transform: uppercase; margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(232,232,232,0.5); }
.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); color: var(--white); font-family: 'Barlow', sans-serif; font-size: 0.9rem; padding: 0.75rem 1rem; outline: none; transition: border-color 0.2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group select option { background: var(--dark2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; font-size: 0.95rem; }
.form-success { display: none; background: rgba(212,43,43,0.15); border: 1px solid var(--red); padding: 1.2rem; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; letter-spacing: 0.1em; color: var(--white); margin-top: 1rem; }

/* ── FOOTER ── */
footer { background: var(--black); padding: 1.8rem 5%; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.f-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.08em; color: var(--white); }
.f-logo span { color: var(--red); }
.f-sub { font-size: 0.85rem; color: rgba(255,255,255,0.18); margin-left: 0.4rem; font-family: 'Bebas Neue', sans-serif; }
.f-copy { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 0.18em; color: rgba(232,232,232,0.28); text-transform: uppercase; }
.f-links { display: flex; gap: 1.2rem; }
.f-links a { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(232,232,232,0.35); text-decoration: none; transition: color 0.2s; }
.f-links a:hover { color: var(--yellow); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { max-width: 340px; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g-item.g-tall { grid-row: span 1; }
  .g-item.g-wide { grid-column: span 1; }
  .sr-grid { grid-template-columns: 1fr 1fr; }
  .sr-header { flex-direction: column; align-items: flex-start; }
  .sr-desc { text-align: left; max-width: 100%; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsors-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .sr-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}

/* Track Kit nav link */
.nav-kit { background: rgba(245,196,0,0.12) !important; color: var(--yellow) !important; padding: 0.42rem 1rem; border: 1px solid rgba(245,196,0,0.3); }
.nav-kit::after { display: none !important; }
.nav-kit:hover { background: rgba(245,196,0,0.22) !important; color: var(--yellow) !important; }

/* Aim / Club nav links */
.nav-aim { background: rgba(245,196,0,0.08) !important; color: var(--yellow) !important; padding: 0.42rem 1rem; border: 1px solid rgba(245,196,0,0.2); }
.nav-aim::after { display: none !important; }
.nav-aim:hover { background: rgba(245,196,0,0.18) !important; }
.nav-club { background: rgba(212,43,43,0.1) !important; color: var(--red-hot) !important; padding: 0.42rem 1rem; border: 1px solid rgba(212,43,43,0.25); }
.nav-club::after { display: none !important; }
.nav-club:hover { background: rgba(212,43,43,0.2) !important; }

/* ── SPONSOR LOGOS ── */
.sponsor-logos { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; align-items: center; }

.sponsor-logo-link {
  display: flex; align-items: center; justify-content: center;
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.07);
  padding: 0.8rem 1.6rem; height: 72px; min-width: 140px;
  transition: border-color 0.25s, background 0.25s;
  text-decoration: none;
}

.sponsor-logo-link:hover { border-color: var(--red); background: #1a1010; }

.sponsor-logo-link img {
  max-height: 44px; max-width: 160px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.4);
  transition: filter 0.25s;
}

.sponsor-logo-link:hover img { filter: grayscale(0%) brightness(1); }

/* Powerbronze SVG — white version, no bg needed */
.sponsor-logo-svg { background: rgba(255,255,255,0.04); }
.sponsor-logo-svg img { filter: brightness(1); max-height: 36px; }
.sponsor-logo-svg:hover img { filter: brightness(1.1); }

/* Garagewerx has dark background already */
.sponsor-logo-dark img { filter: grayscale(0%) brightness(0.85); }
.sponsor-logo-dark:hover img { filter: grayscale(0%) brightness(1); }

/* ── NOTIFY FORM ── */
.notify-form { display: flex; gap: 0; margin-top: 1rem; max-width: 420px; margin-left: auto; margin-right: auto; }
.notify-form input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-right: none; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 0.9rem; padding: 0.75rem 1rem; outline: none; transition: border-color 0.2s; }
.notify-form input:focus { border-color: var(--red); }
.notify-form input::placeholder { color: rgba(232,232,232,0.25); }
.notify-form button { background: var(--red); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.75rem 1.4rem; border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.notify-form button:hover { background: var(--red-hot); }
