/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black:   #111111;
  --pink:    #FF0055;
  --lime:    #AADD00;
  --navy:    #1B2A4A;
  --white:   #FFFFFF;
  --muted:   #888888;
  --surface: #1a1a1a;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  transition: all 0.3s;
}
#nav.nav-scrolled {
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-size: 22px; font-weight: 900;
  color: var(--pink); letter-spacing: 2px;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--pink); color: var(--white) !important;
  padding: 8px 20px; border-radius: 6px; font-weight: 700 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }
.nav-hamburger {
  display: none; background: none; border: none;
  color: var(--white); font-size: 22px; cursor: pointer;
}
.nav-mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 24px; font-weight: 700; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  padding: 120px 48px 80px;
  gap: 48px;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,0,85,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(27,42,74,0.3) 0%, transparent 50%);
}
.hero-content { flex: 1; max-width: 580px; }
.hero-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pink); margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 24px;
}
.accent { color: var(--pink); }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.65);
  max-width: 460px; margin-bottom: 40px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--pink); color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  transition: opacity 0.2s, transform 0.2s; display: inline-block;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.3); color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-weight: 600; font-size: 15px;
  transition: border-color 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--white); }
.hero-reel { flex-shrink: 0; }
.reel-frame {
  width: 280px; height: 480px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  position: relative; overflow: hidden;
}
.reel-frame::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,0,85,0.12) 0%, transparent 60%);
}
.reel-frame::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(255,0,85,0.06), transparent);
}
.reel-play {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; padding-left: 4px;
  box-shadow: 0 0 40px rgba(255,0,85,0.4);
}
.reel-label {
  font-size: 13px; color: var(--muted); font-weight: 500;
}

/* ── STATS STRIP ── */
.stats-strip {
  display: flex; justify-content: center; align-items: center;
  padding: 40px 48px;
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 0;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 56px; gap: 6px;
}
.stat-number {
  font-size: 52px; font-weight: 900; color: var(--pink);
  line-height: 1; letter-spacing: -2px;
}
.stat-plus { font-size: 36px; }
.stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.stat-divider {
  width: 1px; height: 56px;
  background: rgba(255,255,255,0.08);
}

/* ── SECTIONS ── */
.section { padding: 100px 48px; }
.section-dark { background: var(--surface); }
.section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--pink); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900; margin-bottom: 60px; line-height: 1.1;
}

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-photo-frame { position: relative; }
.about-photo-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.about-accent-line {
  position: absolute; top: 32px; left: -16px; bottom: -16px; width: 3px;
  background: var(--pink); border-radius: 2px;
}
.about-text { }
.about-text .section-title { margin-bottom: 28px; }
.about-desc {
  font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.8;
  margin-bottom: 18px;
}
.about-desc em { color: var(--white); font-style: normal; font-weight: 600; }
.about-highlights { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.about-highlight {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75);
}
.highlight-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); flex-shrink: 0;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--pink);
}
.service-icon { font-size: 32px; margin-bottom: 20px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.services-cta { margin-top: 52px; text-align: center; }

/* ── PROCESS ── */
.process-steps {
  display: flex; align-items: stretch; gap: 0;
  flex-wrap: wrap;
}
.process-step {
  flex: 1; min-width: 180px;
  padding: 36px 28px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: border-color 0.2s;
}
.process-step:hover { border-color: var(--pink); }
.step-number {
  font-size: 52px; font-weight: 900;
  color: var(--pink); opacity: 0.25;
  line-height: 1; margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.process-connector {
  display: flex; align-items: center; justify-content: center;
  width: 36px; flex-shrink: 0; color: rgba(255,0,85,0.4);
  font-size: 18px; align-self: center;
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-bottom: 48px;
}
.portfolio-item {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s, border-color 0.2s;
  cursor: pointer;
}
.portfolio-item:hover { transform: scale(1.02); border-color: rgba(255,255,255,0.12); }
.portfolio-thumb {
  height: 220px;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
}
.portfolio-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.25s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--white);
  background: var(--pink); padding: 4px 10px; border-radius: 4px;
}
.portfolio-info { padding: 18px 20px; background: #1e1e1e; }
.portfolio-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.portfolio-info p { font-size: 12px; color: var(--muted); }
.portfolio-cta { text-align: center; }

/* ── CLIENTS ── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 14px;
}
.client-name {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 22px 16px;
  text-align: center; font-weight: 700; font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  letter-spacing: 0.3px;
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 68px;
}
.client-name:hover {
  color: var(--white);
  border-color: rgba(255,0,85,0.3);
  background: rgba(255,0,85,0.04);
}
.client-text {
  transition: opacity 0.25s;
  position: relative; z-index: 1;
}
.client-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 28px;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 2;
  pointer-events: none;
}
.client-name.has-logo:hover .client-text { opacity: 0 !important; }
.client-name.has-logo:hover .client-logo { opacity: 1 !important; }

/* ── GEAR ── */
.gear-intro {
  font-size: 16px; color: rgba(255,255,255,0.6);
  margin-top: -40px; margin-bottom: 52px; max-width: 540px; line-height: 1.7;
}
.gear-categories {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px 48px;
}
.gear-cat-title {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--pink);
  margin-bottom: 18px;
}
.gear-list { display: flex; flex-direction: column; }
.gear-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.gear-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); flex-shrink: 0;
}

/* ── LINKS ── */
.links-grid {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 560px; margin: 0 auto;
}
.link-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 20px 24px;
  transition: border-color 0.2s, transform 0.15s;
}
.link-card:hover { border-color: var(--pink); transform: translateX(4px); }
.link-card-accent { border-color: var(--pink); background: rgba(255,0,85,0.08); }
.link-icon { font-size: 24px; flex-shrink: 0; }
.link-title { font-size: 15px; font-weight: 700; }
.link-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.link-arrow { margin-left: auto; font-size: 18px; color: var(--muted); }

/* ── CONTACT ── */
.contact-sub {
  font-size: 18px; color: rgba(255,255,255,0.6);
  margin-top: -40px; margin-bottom: 52px;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 14px 16px;
  color: var(--white); font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-color: var(--pink);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form textarea { resize: vertical; }
.contact-form select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.contact-form select option { background: #1a1a1a; color: var(--white); }
.contact-form .btn-primary { border: none; cursor: pointer; font-family: inherit; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pink);
}
.contact-item a,
.contact-item span { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.8); }
.contact-item a:hover { color: var(--white); }
.contact-note {
  padding: 20px; margin-top: 4px;
  background: rgba(255,0,85,0.05);
  border: 1px solid rgba(255,0,85,0.15);
  border-radius: 10px;
}
.contact-note p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── FOOTER ── */
.footer {
  background: #0a0a0a;
  padding: 32px 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 20px;
}
.footer-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-logo { font-size: 18px; font-weight: 900; color: var(--pink); letter-spacing: 2px; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-center { display: flex; gap: 24px; }
.footer-center a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-center a:hover { color: var(--white); }
.footer-right { display: flex; gap: 24px; }
.footer-right a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-right a:hover { color: var(--white); }

/* ── REEL BADGE ── */
.reel-frame { position: relative; }
.reel-badge {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.7); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 20px;
  backdrop-filter: blur(8px); z-index: 3;
}

/* ── BRANDS TICKER ── */
.brands-ticker {
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 48px;
  display: flex; align-items: center; gap: 24px;
  overflow: hidden;
}
.brands-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pink); white-space: nowrap; flex-shrink: 0;
}
.brands-scroll {
  display: flex; overflow: hidden; flex: 1;
}
.brands-list {
  flex-shrink: 0;
  font-size: 12px; color: rgba(255,255,255,0.35);
  font-weight: 600; letter-spacing: 0.5px; white-space: nowrap;
  animation: brands-marquee 32s linear infinite;
}
@keyframes brands-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ── PORTFOLIO FEATURED ── */
.portfolio-featured {
  grid-column: span 2;
}
.portfolio-featured .portfolio-thumb {
  height: 380px;
  cursor: default;
}
.portfolio-overlay-featured {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.portfolio-featured-title {
  font-size: 24px; font-weight: 900; color: var(--white);
  margin: 10px 0 8px; line-height: 1.2;
}
.portfolio-featured-desc {
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 1.6; max-width: 540px;
}
.portfolio-info p {
  font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.5;
}

/* ── GEAR BENEFITS ── */
.gear-benefits {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.gear-benefit-card {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.gear-benefit-card:hover { border-color: var(--pink); transform: translateY(-4px); }
.gear-benefit-icon { font-size: 32px; margin-bottom: 18px; }
.gear-benefit-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.gear-benefit-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 16px; }
.gear-tech {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,0,85,0.6);
}

/* ── PORTFOLIO YT THUMB ── */
.yt-thumb {
  background-size: cover !important;
  background-position: center !important;
}
.yt-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,0,85,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; padding-left: 3px;
  transition: transform 0.2s, background 0.2s;
  z-index: 2;
}
.portfolio-item:hover .yt-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--pink);
}
a.portfolio-item { display: block; color: inherit; }

/* ── INSTAGRAM FEED ── */
.ig-feed-section {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 48px;
}
.ig-feed-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 28px;
}
.ig-feed-label a { color: var(--pink); }
.ig-placeholder { text-align: center; padding: 16px 0; }

/* ── QUOTE ── */
.quote-section { text-align: center; }
.quote-block { max-width: 760px; margin: 0 auto; }
.quote-mark {
  font-size: 80px; line-height: 0.6; color: var(--pink);
  font-family: Georgia, serif; margin-bottom: 24px; display: block;
}
blockquote {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600; line-height: 1.5;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.3px;
  margin-bottom: 32px;
}
.quote-author {
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pink);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 28px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(255,0,85,0.3); }
.testimonial-quote {
  font-size: 15px; color: rgba(255,255,255,0.7);
  line-height: 1.75; font-style: italic;
}
.testimonial-name { font-size: 15px; font-weight: 700; }
.testimonial-role {
  font-size: 12px; color: var(--pink); font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-top: 4px;
}

/* ── ANIMATIONS (GSAP handles opacity/transform) ── */
.fade-up { will-change: transform, opacity; }

/* ── PORTFOLIO BENTO GRID ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 48px;
}
.portfolio-featured {
  grid-column: 1;
  grid-row: 1 / 3;
}
.portfolio-featured .portfolio-thumb {
  height: 100%;
  min-height: 460px;
}
.portfolio-grid > *:nth-child(6) {
  grid-column: 1 / 4;
}

/* ── BUTTON MICRO-INTERACTIONS (Emil Kowalski) ── */
.btn-primary:active { transform: scale(0.97) !important; transition-duration: 0.1s !important; }
.btn-ghost:active { transform: scale(0.97) !important; transition-duration: 0.1s !important; }
.nav-cta:active { transform: scale(0.97) !important; }
.link-card:active { transform: scale(0.98) !important; }

/* ── SERVICE CARD STAGGER ── */
.service-card.fade-up:nth-child(1) { transition-delay: 0ms; }
.service-card.fade-up:nth-child(2) { transition-delay: 55ms; }
.service-card.fade-up:nth-child(3) { transition-delay: 110ms; }
.service-card.fade-up:nth-child(4) { transition-delay: 165ms; }
.service-card.fade-up:nth-child(5) { transition-delay: 220ms; }
.service-card.fade-up:nth-child(6) { transition-delay: 275ms; }
.service-card.fade-up:nth-child(7) { transition-delay: 330ms; }
.service-card.fade-up:nth-child(8) { transition-delay: 385ms; }

/* ── PROCESS STEP STAGGER ── */
.process-step.fade-up:nth-child(odd) { transition-delay: 0ms; }
.process-step.fade-up:nth-child(even) { transition-delay: 80ms; }

/* ── HOVER ONLY ON POINTER DEVICES ── */
@media (hover: hover) and (pointer: fine) {
  .service-card:hover { border-color: var(--pink); transform: translateY(-4px); }
  .portfolio-item:hover { transform: scale(1.02); border-color: rgba(255,255,255,0.12); }
  .portfolio-item:hover .portfolio-overlay { opacity: 1; }
  .portfolio-item:hover .yt-play { transform: translate(-50%,-50%) scale(1.1); background: var(--pink); }
  .gear-benefit-card:hover { border-color: var(--pink); transform: translateY(-4px); }
  .process-step:hover { border-color: var(--pink); }
  .client-name:hover { color: var(--white); border-color: rgba(255,0,85,0.3); background: rgba(255,0,85,0.04); }
  .client-name.has-logo:hover .client-text { opacity: 0 !important; }
  .client-name.has-logo:hover .client-logo { opacity: 1 !important; }
  .link-card:hover { border-color: var(--pink); transform: translateX(4px); }
  .nav-links a:hover { color: var(--white); }
  .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
  .btn-ghost:hover { border-color: var(--white); }
  .testimonial-card:hover { border-color: rgba(255,0,85,0.3); }
}

/* ── PREFERS-REDUCED-MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .brands-list { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-strip { padding: 36px 24px; }
  .stat-item { padding: 0 32px; }
  .about-grid { gap: 48px; }
}
@media (max-width: 768px) {
  #nav { padding: 16px 24px; }
  #nav.nav-scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .hero {
    flex-direction: column; padding: 100px 24px 60px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-reel { display: none; }

  .stats-strip { gap: 28px; padding: 32px 20px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .stat-number { font-size: 40px; }

  .section { padding: 72px 24px; }
  .section-title { margin-bottom: 40px; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { display: none; }

  .process-steps { flex-direction: column; gap: 12px; }
  .process-connector { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer { padding: 24px; flex-direction: column; text-align: center; }
  .footer-center { display: none; }

  .gear-categories { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-featured { grid-column: 1; grid-row: auto; }
  .portfolio-featured .portfolio-thumb { min-height: 280px; height: 280px; }
  .portfolio-grid > *:nth-child(6) { grid-column: 1; }
}

@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .gear-categories { grid-template-columns: 1fr; }
  .brands-ticker { padding: 12px 24px; }
}
