:root {
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-500: #737373;
  --gray-400: #a3a3a3;
  --gray-700: #404040;
  --gray-900: #171717;
  --font: 'Montserrat', 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  overscroll-behavior-x: none;
}

html { overflow-x: hidden; max-width: 100vw; overscroll-behavior-x: none; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.hero-logo { width: 140px; height: 140px; object-fit: contain; margin-bottom: -0.5rem; }
.reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-stagger > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  /* Failsafe: if the scroll-observer never fires (JS error, no IntersectionObserver
     support), reveal anyway so content is NEVER permanently invisible. Delay is
     intentionally long — a short delay would force-reveal sections that are still
     off-screen before the user scrolls to them, killing the scroll-in effect. */
  animation: revealFailsafe 0.6s var(--ease) 20s forwards;
}
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.92); }
.reveal-stagger > * { transition-delay: calc(var(--i,0) * 0.12s); animation-delay: calc(20s + var(--i,0) * 0.12s); }
@keyframes revealFailsafe { to { opacity: 1; transform: none; } }
/* Scroll-observer path: JS adds .revealed (some builds .visible) -> instant reveal. */
.reveal.visible, .reveal.revealed,
.reveal-left.revealed, .reveal-right.revealed, .reveal-scale.revealed,
.reveal-stagger.revealed > * {
  opacity: 1; transform: none; animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-stagger > * { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ===== SPLIT LANDING ===== */
.split-landing {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; min-height: 100dvh;
}
.split-half {
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: flex-grow 0.6s var(--ease), background 0.4s var(--ease);
  padding: 3rem;
  text-align: center;
}
.split-half:first-child { background: var(--black); color: var(--white); }
.split-half:last-child { background: var(--white); color: var(--black); }
.split-content { z-index: 1; display: flex; flex-direction: column; align-items: center; }
.split-logo, .split-logo-text { height: 60px; width: auto; object-fit: contain; margin-bottom: 2rem; }
.split-logo-text { font-size: 120px; font-weight: 700; line-height: 0.9; }
.split-logo-text.sza { font-weight: 600; letter-spacing: -0.05em; }
.split-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.split-subtitle { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gray-400); }
.split-half:last-child .split-subtitle { color: var(--gray-700); }
.split-x {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 1.5rem; font-weight: 300; letter-spacing: -0.02em;
  color: var(--gray-400); opacity: 0.4; z-index: 2;
}
.split-half:last-child .split-x { color: var(--gray-400); }

/* ===== HERO LOGO TEXT (SZA Sports) ===== */
.hero-logo-text {
  font-size: 120px; font-weight: 700; letter-spacing: -0.04em;
  line-height: 1; margin-top: 4rem;
  filter: drop-shadow(0 0 60px rgba(255,255,255,0.1));
}
.hero-logo-sza { margin-bottom: 1rem; }

/* ===== CROSS PROMO ===== */
.cross-promo {
  display: block;
  padding: 4rem 3rem;
  border-top: 1px solid var(--gray-900);
}
.cross-promo-text {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-400);
}
.cross-promo-link {
  font-size: 0.7rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gray-400);
  transition: opacity 0.2s;
}
.cross-promo-link:hover { opacity: 0.7; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  mix-blend-mode: difference;
}
.logo-img { height: 28px; width: auto; }
@media (min-width: 901px) {
  img[src="images/sza-sports-logo.png"].logo-img { height: 28px; }
}
nav .nav-links { display: flex; gap: 2.5rem; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
nav .nav-links a { opacity: 0.7; transition: opacity 0.25s var(--ease); }
nav .nav-links a:hover { opacity: 1; }

/* Nav toggle (mobile) */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 101; position: relative; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s var(--ease); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav overlay (mobile) */
/* [M2] More transparent overlay — the page shows through subtly, blur keeps links legible. */
.nav-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(55,55,55,0.8); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; transition: opacity 0.3s var(--ease);
}
body.nav-open .nav-overlay { display: flex; opacity: 1; }
/* [M1] Menu links: site typography, thinner weight, uppercase + tracking like the nav. */
.nav-overlay a {
  font-family: var(--font);
  font-size: 1.2rem; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); opacity: 0.85; transition: opacity 0.2s;
  text-align: center; max-width: 85vw;
}
.nav-overlay a:hover { opacity: 1; }

/* ===== KEY FACTS ===== */
#key-facts { padding: 3rem; background: var(--white); color: var(--black); }
.key-facts-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.key-fact { text-align: center; }
.key-fact-value { display: block; font-size: 2rem; font-weight: 800; line-height: 1.1; margin-bottom: 0.3rem; }
.key-fact-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-700); }

/* ===== HERO ===== */
/* [H5] Hero shortened so the first content block (white facts bar) already
   peeks into the first viewport without scrolling. */
#hero {
  min-height: 88vh; min-height: 88dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 6rem 3rem 4rem; text-align: center;
  position: relative; overflow: hidden;
}
.hero-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; filter: brightness(0.78) saturate(1.05) blur(0.6px);
}
.hero-bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 1; }
#hero > *:not(.hero-bg-video):not(.hero-bg-overlay):not(.scroll-indicator) { position: relative; z-index: 2; }
#hero .hero-logo, #hero .hero-since, #hero .kicker, #hero .hero-title, #hero .hero-sub {
  text-shadow: 0 2px 20px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.9);
}
.hero-logo { width: 140px; height: 140px; object-fit: contain; margin-bottom: -0.5rem; }
.hero-since { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gray-400); margin-bottom: 1.5rem; }
.kicker {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--gray-400); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem; justify-content: center;
}
.kicker::before, .kicker::after { content: ''; display: block; width: 2rem; height: 1px; background: var(--gray-400); flex-shrink: 0; }
/* [H1] Big centered hero title (up to ~94px desktop), like the reference. */
.hero-title {
  font-size: clamp(2.75rem, 7vw, 5.9rem); font-weight: 800;
  line-height: 0.98; letter-spacing: -0.03em; max-width: 900px;
  text-wrap: balance;
}
.hero-title em { font-style: italic; font-weight: 300; }
/* [H3] Smaller hero subtitle, matching the reference proportions. */
.hero-sub {
  font-size: 0.9rem; color: var(--gray-400); max-width: 560px;
  margin-top: 1.5rem; line-height: 1.75;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  cursor: pointer; z-index: 5;
}
.scroll-indicator-text { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.5; }
/* [H4] Visible downward chevron that pulses to signal "scroll down". */
.scroll-indicator-arrow {
  display: block; width: 20px; height: 20px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  opacity: 0.55;
  animation: scrollPulse 1.8s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
  50%      { transform: rotate(45deg) translate(4px, 4px); opacity: 0.95; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator-arrow { animation: none; transform: rotate(45deg); opacity: 0.6; }
}

/* ===== SECTION BASE ===== */
section { padding: 7rem 3rem 5rem; }
section.light { background: var(--white); color: var(--black); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800;
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.section-body { font-size: 1rem; color: var(--gray-400); line-height: 1.7; max-width: 36rem; margin-top: 1.25rem; }
section.light .section-body { color: var(--gray-700); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--gray-900);
  margin-top: 3rem;
}
.service-card {
  padding: 2.5rem; border-right: 1px solid var(--gray-900);
  transition: background 0.3s var(--ease);
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: rgba(255,255,255,0.03); }
section.light .services-grid { border-top: 1px solid var(--gray-100); }
section.light .service-card { border-right: 1px solid var(--gray-100); }
section.light .service-card:hover { background: rgba(0,0,0,0.02); }
.service-number { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.service-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-desc { font-size: 0.85rem; color: var(--gray-400); line-height: 1.6; }
section.light .service-desc { color: var(--gray-700); }

/* ===== ARTISTS ===== */
.artists-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; margin-top: 3rem; }
.artists-grid .artist-card {
  padding: 2.5rem; border-top: 1px solid var(--gray-900);
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.artists-grid .artist-card:nth-child(odd) { border-right: 1px solid var(--gray-900); }
.artists-grid .artist-card:hover { background: rgba(255,255,255,0.03); }
.artist-image { width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.artist-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; }

/* Artist list (sz-artists page) */
#artists .section-label, #artists .section-title, #artists .section-body { padding: 0 3rem; }
.artist-list { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 3rem; width: 100%; }
.artist-card { position: relative; background: transparent; display: flex; flex-direction: column; }
.artist-card-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; width: 100%; background: #fff; }
.artist-card img { width: 100%; height: 100%; object-fit: cover; display: block; background: #fff; transition: transform 0.5s var(--ease); }
.artist-card-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(0,0,0,0.85) 100%); pointer-events: none; transition: background 0.4s var(--ease); }
.artist-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; pointer-events: none; }
.artist-card-type { display: block; font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; }
.artist-card-name { font-size: 1.4rem; font-weight: 700; color: #fff; line-height: 1; }
.artist-card-detail { font-size: 0.75rem; color: var(--gray-500); line-height: 1.5; padding: 1rem 1.5rem 1.5rem; margin: 0; width: 100%; }
.artist-card:hover .artist-card-img-wrap img { transform: scale(1.05); }
/* [S2] Agatino Romero's source photo has a thin crop artifact right at the
   top edge with no vertical slack to reposition away from it — a small
   permanent zoom pushes it out of frame instead. */
.artist-photo-nudge { transform: scale(1.05); }
.artist-card:hover .artist-card-img-wrap .artist-photo-nudge { transform: scale(1.09); }
/* Wide fisheye festival shot doesn't crop cleanly into a 4:5 card —
   cover would cut off the outer flame towers. Show the full frame
   instead, letterboxed against black. */
/* .artist-photo-contain removed — all artist images use object-fit: cover (default) */
.artist-card:hover .artist-card-overlay { background: linear-gradient(transparent 30%, rgba(0,0,0,0.9) 100%); }
@media (max-width: 768px) { .artist-list { grid-template-columns: repeat(2,1fr); } #artists .section-label, #artists .section-title, #artists .section-body { padding: 0 1.5rem; } }



/* ===== BRAND PARTNERSHIPS ===== */
.brand-stats { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--gray-900); margin-top: 3rem; }
.brand-stat { padding: 2.5rem; border-right: 1px solid var(--gray-900); text-align: center; }
.brand-stat:last-child { border-right: none; }
.brand-stat-number { font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: 0.5rem; }
.brand-stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); }
section.light .brand-stats { border-top: 1px solid var(--gray-100); }
section.light .brand-stat { border-right: 1px solid var(--gray-100); }
section.light .brand-stat-label { color: var(--gray-700); }


/* ===== ICON SUMMARY (teaser) + ICON SERVICES (detail page) ===== */
/* Small icon+label preview used in teaser sections, e.g. Tactical Analysis. */
.icon-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-top: 1.5rem; }
.icon-item { display: flex; align-items: center; gap: 0.75rem; }
.icon-item svg { width: 26px; height: 26px; flex-shrink: 0; }
.icon-item span { font-size: 0.75rem; font-weight: 600; letter-spacing: -0.01em; }

/* Full icon + heading + short description grid, used on detail subpages. */
.icon-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem 2rem; margin-top: 3rem; }
.icon-service-icon {
  width: 56px; height: 56px; border: 1px solid var(--gray-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.icon-service-icon svg { width: 26px; height: 26px; }
section.light .icon-service-icon { border-color: var(--gray-200); }
.icon-service h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.icon-service p { font-size: 0.82rem; line-height: 1.6; color: var(--gray-400); }
section.light .icon-service p { color: var(--gray-700); }

/* ===== TEASER SECTIONS ===== */
.teaser-cta {
  display: inline-block; margin-top: 1.75rem; padding: 0.8rem 2rem;
  border: 1px solid var(--white); font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; transition: all 0.3s var(--ease);
}
.teaser-cta:hover { background: var(--white); color: var(--black); }

#artist-teaser, #brand-teaser, #football-teaser {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 4rem; align-items: center;
}
#artist-teaser .teaser-content, #football-teaser .teaser-content { order: 1; }
#artist-teaser .teaser-images, #football-teaser .teaser-images {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  order: 2;
}
#brand-teaser { grid-template-columns: 1fr 1.6fr; padding: 7rem 3rem 5rem; gap: 2rem; }
#brand-teaser .brand-teaser-text { order: 1; max-width: 42rem; }
#brand-teaser .case-slider-wrapper { order: 2; }
#brand-teaser .teaser-images { order: 1; }
.teaser-images img, .brand-teaser-gallery img, .brand-gallery-grid img, .teaser-images video, .brand-teaser-gallery video, .brand-gallery-grid video {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px;
}
.teaser-img-wrap { position: relative; overflow: hidden; border-radius: 4px; }
.teaser-img-wrap img { border-radius: 0; transition: transform 0.5s var(--ease); }
.teaser-img-wrap:hover img { transform: scale(1.05); }
#artist-teaser .teaser-img-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(transparent 45%, rgba(0,0,0,0.55) 100%);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
#artist-teaser .teaser-img-wrap:hover .teaser-img-overlay { opacity: 1; }
/* [S1] Artist-management teaser images taller (portrait) so faces aren't cropped. */
#artist-teaser .teaser-images img {
  aspect-ratio: 3/4; object-position: center 22%;
}
.teaser-content { order: 1; max-width: 42rem; }
.teaser-content .section-title { margin-bottom: 1.25rem; }

/* Brand campaign gallery teaser */
.brand-teaser-gallery, .brand-gallery-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }

/* Brand gallery — hover/tap to reveal case title + keywords per item. */
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; }
.gallery-item img, .gallery-item video {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; display: block;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img, .gallery-item:hover video, .gallery-item.active img, .gallery-item.active video {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
}
.gallery-title {
  color: var(--white); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.gallery-tags {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
  max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
  transition: max-height 0.3s var(--ease), opacity 0.25s var(--ease), margin-top 0.3s var(--ease);
}
.gallery-item:hover .gallery-tags, .gallery-item.active .gallery-tags {
  max-height: 5rem; opacity: 1; margin-top: 0.6rem;
}
.gallery-tags span {
  font-size: 0.62rem; color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.4); border-radius: 2px;
  padding: 0.25rem 0.55rem; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ===== WORK / WHAT WE OFFER TILES ===== */
#brand-work { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.work-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
#brand-work .work-grid { margin-top: 0; }
.work-tile { display: flex; flex-direction: column; gap: 1.1rem; cursor: pointer; }
.work-tile-media {
  width: 100%; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; position: relative;
}
.work-tile-media img, .work-tile-media video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s var(--ease);
}
.work-tile:hover .work-tile-media img, .work-tile:hover .work-tile-media video { transform: scale(1.06); }
.work-tile-label {
  width: 100%; min-height: 3.6rem; box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 6px;
  padding: 1rem 1.25rem; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center;
  text-align: center; letter-spacing: 0.03em; line-height: 1.4;
  transition: all 0.3s var(--ease);
}
.work-tile:hover .work-tile-label { background: var(--white); color: var(--black); border-color: var(--white); }
.work-caption { margin-top: 2.5rem; font-size: 0.8rem; color: var(--gray-400); }

/* ===== GALLERY INFO MODAL ===== */
.gallery-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.gallery-modal.open { opacity: 1; visibility: visible; pointer-events: auto; }
.gallery-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); cursor: pointer; }
.gallery-modal-content {
  position: relative; z-index: 1;
  background: var(--black); color: var(--white);
  max-width: 640px; width: 100%; max-height: 85vh; overflow-y: auto;
  border-radius: 8px;
}
.gallery-modal-image { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.gallery-modal-body { padding: 2rem 2.25rem 2.25rem; }
.gallery-modal-tag {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-400); margin: 0 0 0.5rem;
}
.gallery-modal-title { font-size: 1.5rem; font-weight: 700; margin: 0 0 1.25rem; }
.gallery-modal-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.gallery-modal-list li {
  font-size: 0.85rem; line-height: 1.55; color: rgba(255,255,255,0.8);
  padding-left: 1.1rem; position: relative;
}
.gallery-modal-list li::before { content: '•'; position: absolute; left: 0; color: var(--white); }
.gallery-modal-close {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.5); color: var(--white); border: none;
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.gallery-modal-close:hover { background: rgba(0,0,0,0.8); }
@media (max-width: 600px) {
  .gallery-modal { padding: 1rem; }
  .gallery-modal-body { padding: 1.5rem 1.5rem 1.75rem; }
  .gallery-modal-title { font-size: 1.2rem; }
}

/* ===== TEASER KEYWORDS ===== */
.teaser-keywords {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.5rem;
}
.teaser-keywords span {
  font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--gray-700); border-radius: 0;
  padding: 0.4rem 1rem;
  transition: all 0.2s var(--ease);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.teaser-keywords span:hover { border-color: var(--white); }
/* Consulting / Creator & Brand Campaigns text columns are narrower than the full
   section width, so 4 keyword chips wrap unevenly (3+1). Force a clean 2-column
   grid, but size columns to content (not 1fr) so chips stay small/boxy. */
#consulting .teaser-keywords, #brand-teaser .brand-teaser-text .teaser-keywords {
  display: grid; grid-template-columns: max-content max-content; justify-content: flex-start; gap: 0.6rem;
}
section.light .teaser-keywords span { border-color: var(--gray-200); color: var(--gray-700); }
section.light .teaser-keywords span:hover { border-color: var(--black); color: var(--black); }

/* ===== FOOTBALL ===== */
#football {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
section.light#football .aside-block { border-left: 1px solid var(--gray-100); padding-left: 2rem; }

/* ===== CONSULTING ===== */
#consulting {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 4rem; align-items: center;
}
#consulting .consulting-image { order: 1; }
#consulting .teaser-content { order: 2; }
#consulting .consulting-image .teaser-img-wrap img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover; object-position: center 22%;
}

/* ===== CONSULTING PAGE ===== */
#consulting-page.consulting-page-bg {
  position: relative; overflow: hidden;
  background: url('images/consulting-bg-2.jpg') center 4% / auto 140% no-repeat;
  padding: 10rem 3rem 6rem;
  color: var(--white);
}
#consulting-page.consulting-page-bg::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.62); z-index: 0;
}
#consulting-page.consulting-page-bg > * { position: relative; z-index: 1; }
#consulting-page.consulting-page-bg .section-body { color: rgba(255,255,255,0.85); max-width: 48rem; }
.consulting-intro-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 3rem; flex-wrap: wrap;
}
.consulting-intro-text { flex: 1 1 32rem; }
.consulting-logo-col {
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  flex: 0 0 auto;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 2.25rem 3.5rem;
}
.consulting-logo-col img {
  height: 10rem; width: auto; max-width: 30rem; object-fit: contain;
  transition: transform 0.3s var(--ease);
}
.consulting-logo-col img:hover { transform: scale(1.03); }
.consulting-services {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.consulting-services .section-title { margin-top: 0.75rem; }
section.light .consulting-services { border-top-color: var(--gray-100); }
#brand-partnerships { padding: 5.25rem 3rem 1.5rem; }

/* ===== BRAND GALLERY ===== */
#brand-gallery { padding: 0 3rem 7rem; }

/* ===== CASE SLIDER ===== */
#case-slider { padding: 0 3rem 5rem; }
.case-slider-wrapper {
  display: flex; align-items: center; gap: 0.75rem;
}
.case-slider-viewport {
  flex: 1; overflow: hidden; min-width: 0; touch-action: pan-y;
}
.case-slider-track {
  display: flex; gap: 1rem;
  transition: transform 0.5s var(--ease);
}
/* [S2] 2 slides + peek of 3rd on desktop. Clamped so slides stay a decent
   size relative to the (fixed-size) caption text on narrower desktop
   windows, instead of shrinking in lockstep with the viewport. */
.case-slide {
  flex: 0 0 clamp(280px, calc((100% - 1rem) / 2.04), 480px); min-width: 0;
  position: relative; overflow: hidden;
  border-radius: 4px; cursor: pointer;
}
.case-slide img, .case-slide video {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: transform 0.4s var(--ease);
}
.case-slide:hover img, .case-slide:hover video { transform: scale(1.03); }
/* [S3] .case-title used to just sit inline at the top-left of this box —
   .case-caption was defined for bottom-centered placement but never
   actually applied to the element. Made .case-overlay position it directly
   instead, bold and centered at the bottom, to match the gallery style. */
.case-overlay {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 1.5rem; text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.05) 100%);
}
.case-slider-arrow {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.case-slider-arrow svg { width: 12px; height: 12px; }
/* [S2] Centre the chevron icon inside the round arrow button (was pushed to the edge). */
.case-slider-prev { justify-content: center; padding-left: 0; }
.case-slider-next { justify-content: center; padding-right: 0; }
.case-slider-arrow:hover { transform: scale(1.1); }
.case-slider-arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }

/* Arrow boundary dimming */
.case-slider-left-fade, .case-slider-right-fade {
  position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s;
}
.case-slider-left-fade { left: 0; background: linear-gradient(to right, rgba(0,0,0,0.5), transparent); }
.case-slider-right-fade { right: 0; background: linear-gradient(to left, rgba(0,0,0,0.5), transparent); }

.label { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 0.5rem; }

/* ===== CONTACT ===== */
#contact { padding: 7rem 3rem 5rem; text-align: center; }
.contact-details { display: flex; justify-content: center; gap: 4rem; margin-top: 4rem; font-size: 0.8rem; color: var(--gray-400); }
.contact-details .label {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray-700); margin-bottom: 0.5rem;
}
.contact-details a {
  font-size: 0.8rem; color: var(--gray-400); transition: color 0.2s;
}
.contact-details a:hover { color: var(--white); }
section.light .contact-details a, .sza-section-light .contact-details a { color: var(--gray-700); }
section.light .contact-details a:hover, .sza-section-light .contact-details a:hover { color: var(--black); }
section.light .contact-details, .sza-section-light .contact-details { color: var(--gray-700); }
section.light .contact-details .label, .sza-section-light .contact-details .label { color: var(--gray-400); }

/* ===== FOOTER ===== */
footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem 3rem; font-size: 0.7rem; color: var(--gray-400);
  border-top: 1px solid var(--gray-900);
}
section.light + footer { border-top: 1px solid var(--gray-100); }
footer .footer-links { display: flex; gap: 2rem; }
footer a { transition: color 0.2s; }
footer a:hover { color: var(--gray-400); }

/* ===== SZA SPORTS SPECIFICS ===== */
/* [SP1] Same shortened hero as SZ Artists. [SP2] Full-bleed football-field + city
   background restored, with a dark overlay for text contrast. */
#hero.sza-hero {
  min-height: 100vh; min-height: 100dvh;
  position: relative;
  background: url('images/sza-sports-bg.jpg') center center / cover no-repeat;
}
.sza-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.62); z-index: 0;
}
.sza-hero > * { position: relative; z-index: 1; }
.sza-hero .hero-title { font-weight: 600; letter-spacing: -0.04em; }
.sza-hero .kicker, .sza-hero .hero-sub { color: rgba(255,255,255,0.85); }
#hero.sza-hero .hero-logo, #hero.sza-hero .hero-since, #hero.sza-hero .kicker,
#hero.sza-hero .hero-title, #hero.sza-hero .hero-sub {
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
/* [SP4] Square (not rounded) keyword boxes on the SZA sections. */
.sza-sports-body .teaser-keywords span { border-radius: 0; }
.sza-dark-bg { background: var(--black); color: var(--white); }
.sza-section-light { background: var(--white); color: var(--black); }
.sza-section-light .section-body { color: var(--gray-700); }
.sza-section-light .teaser-cta {
  border-color: var(--black) !important;
  color: var(--black) !important;
  opacity: 1 !important;
}
.sza-section-light .teaser-cta:hover { background: var(--black) !important; color: var(--white) !important; }
.sza-section-light .teaser-keywords span { border-color: var(--gray-200); color: var(--gray-700); }
.sza-section-light .teaser-keywords span:hover { border-color: var(--black); color: var(--black); }
section.light .cross-promo-link, .sza-section-light .cross-promo-link { color: var(--gray-700); }

/* SZA Scroll Indicator */
.sza-hero .scroll-indicator { position: absolute; }
.sza-hero .scroll-indicator-text { opacity: 0.3; }

/* ===== COMPONENT CLASSES ===== */
/* [H2] Accent word: italic, light (300), grey rgb(163,163,163) — like the reference slogan. */
.accent { color: var(--gray-400); font-weight: 300; font-style: italic; }
.brand-teaser-text { margin-bottom: 1.5rem; }
.case-title {
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.2;
}
.section-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-400); margin-bottom: 0.5rem; }

/* [S3 / SP5] Contact email as a bordered UPPERCASE box, like the reference. */
.contact-cta {
  display: inline-block; margin-top: 2rem;
  padding: 1rem 3rem;
  border: 1px solid var(--white);
  font-size: 0.85rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.12em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.contact-cta:hover { background: var(--white); color: var(--black); opacity: 1; }
section.light .contact-cta, .sza-section-light .contact-cta { border-color: var(--black); }
section.light .contact-cta:hover, .sza-section-light .contact-cta:hover { background: var(--black); color: var(--white); }
/* Grey intro line under the contact headline. */
.contact-intro { font-size: 0.95rem; color: var(--gray-400); max-width: 34rem; margin: 1rem auto 0; line-height: 1.75; }
section.light .contact-intro, .sza-section-light .contact-intro { color: var(--gray-700); }
.cross-promo-inner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; }
.cross-promo-card { display: flex; flex-direction: column; align-items: center; gap: 1rem; cursor: pointer; padding: 2rem 3rem; border: 1px solid var(--gray-900); border-radius: 4px; transition: border-color 0.2s; }
.cross-promo-card:hover { border-color: var(--gray-500); }
/* [M3] Unified cross-promo logo size on both pages (same width, contained). */
.cross-promo-logo { width: 100px; height: auto; max-height: 40px; object-fit: contain; }
.footer-logo { height: 20px; width: auto; opacity: 0.5; }
img[src*="sza-sports-logo"].footer-logo { height: 20px; }


/* ===== NAV BACK (subpages) ===== */
.nav-back { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; transition: opacity 0.2s; }
.nav-back:hover { opacity: 1; }

/* ===== LABEL PARTNERS ===== */
.label-caption {
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gray-400); text-align: center; margin-bottom: 1.5rem;
}
.label-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2px;
}
.label-item {
  flex: 1 1 200px; max-width: calc(25% - 1.5px);
  height: 100px;
  background-color: #ffffff;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  position: relative;
  transition: all 0.3s var(--ease);
}
.label-item:nth-child(1),
.label-item:nth-child(3) {
  background-size: 50% auto;
}
.label-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.25);
  transition: opacity 0.3s var(--ease);
}
.label-item:hover::after {
  opacity: 0;
}
.label-item:hover {
  border-color: var(--gray-400);
}
@media (max-width: 1000px) {
  .label-item { max-width: calc(33.333% - 1.5px); }
}
@media (max-width: 700px) {
  .label-item { max-width: calc(50% - 1px); height: 80px; }
}
@media (max-width: 480px) {
  .label-item { max-width: 100%; }
}

/* ===== ARTIST PAGE ===== */


/* ===== BRAND PARTNERSHIPS DETAIL ===== */
.numbers-grid { display: grid; grid-template-columns: repeat(6,1fr); margin-top: 3rem; }
#brand-numbers .numbers-grid { grid-template-columns: repeat(5,1fr); }
.number-item { text-align: center; padding: 2.5rem 1.5rem; display: flex; flex-direction: column; align-items: center; }
.number-value { font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 0.75rem; letter-spacing: -0.03em; }
.number-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-400); max-width: 8rem; }
section.light .number-label { color: var(--gray-700); }
.brand-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.brand-tags span {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--gray-700); border-radius: 0;
  padding: 0.5rem 1.1rem;
  transition: all 0.2s var(--ease);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.brand-tags span:hover { border-color: var(--white); }
section.light .brand-tags span { border-color: var(--gray-200); color: var(--gray-700); }
section.light .brand-tags span:hover { border-color: var(--black); color: var(--black); }

/* ===== CONSULTING DETAIL ===== */
.consulting-trusted-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 1rem; }

/* ===== FOOTBALL / PLAYERS ===== */
#players { display: flex; justify-content: space-between; align-items: center; gap: 3rem; }
.players-content { max-width: 36rem; }
.players-image { width: 320px; flex-shrink: 0; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; }
.players-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
#players .teaser-cta {
  margin-top: 2.5rem;
  padding: 1.35rem 2.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
}
#players .teaser-cta:hover { background: var(--white); color: var(--black); }

/* ===== SPLIT LANDING EXTRA ===== */
.split-body { }
.split-half:last-child .split-body { color: var(--gray-700); }
.split-left { background: var(--black); color: var(--white); }
.split-right { background: var(--white); color: var(--black); }
.split-enter { display: inline-block; padding: 0.5rem 1.5rem; border: 1px solid var(--white); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2rem; transition: all 0.3s var(--ease); }
.split-right .split-enter { border-color: var(--black); }
.split-enter:hover { background: var(--white); color: var(--black); }
.split-right .split-enter:hover { background: var(--black); color: var(--white); }
.split-logo-sza { font-size: 120px; font-weight: 600; letter-spacing: -0.05em; line-height: 0.9; }

/* ===== SZA SPORTS EXTRA ===== */
.sza-sports-body { }
.sza-section-dark { background: var(--black); color: var(--white); padding: 7rem 3rem 5rem; }
.sza-section-inner { max-width: 1200px; margin: 0 auto; }
/* Athlete Brand Partnerships teaser — text + carousel, like Creator & Brand Campaigns on SZ Artists. */
#sports-marketing.sza-brand-teaser {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 2rem; align-items: center;
}
#sports-marketing.sza-brand-teaser .sza-section-inner { max-width: none; margin: 0; }
#football-agency .sza-section-inner { max-width: none; margin: 0; }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 900px) {
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  #brand-numbers .numbers-grid { grid-template-columns: repeat(2,1fr); }
  #sports-marketing.sza-brand-teaser { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .number-item { padding: 1.5rem 1rem; }
  .number-value { font-size: 2rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: block; margin-left: auto; }
  img[src="images/logo.png"].logo-img { height: 22px; }
  .icon-services-grid { grid-template-columns: repeat(2,1fr); }
  nav .nav-links { display: none; }
  .nav-overlay { display: none; }
  body.nav-open .nav-overlay { display: flex; }
  #hero { padding: 5rem 1.5rem 3.5rem; min-height: 85vh; min-height: 85dvh; }
  #hero.sza-hero { min-height: 100vh; min-height: 100dvh; }
  #key-facts { padding: 1rem 1.5rem; }
  .key-facts-grid { gap: 0.75rem; }
  .key-fact-value { font-size: 1rem; }
  .key-fact-label { font-size: 0.5rem; }
  .hero-sub { font-size: 0.8rem; max-width: 28rem; margin-top: 2rem; line-height: 1.6; }
  section { padding: 4rem 1.5rem; }
  section[style*="padding: 0"] { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr; border-top: none; }
  .service-card { padding: 2rem 0 !important; border-right: none; border-bottom: 1px solid var(--gray-900); }
  section.light .service-card { border-bottom: 1px solid var(--gray-100); }
  .brand-stats { grid-template-columns: 1fr; border-top: none; }
  .brand-stat { padding: 2rem 0 !important; border-right: none; border-bottom: 1px solid var(--gray-100); }
  .artists-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .artist-card { padding: 0 !important; }
  .artist-image { width: 100% !important; }
  #football { grid-template-columns: 1fr; gap: 3rem; }
  #football .aside-block { border-left: none; padding-left: 0; border-top: 1px solid var(--gray-900); padding-top: 2rem; }
  section.light#football .aside-block { border-top: 1px solid var(--gray-100); }
  .teaser-keywords { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.6rem; }
  .teaser-keywords span { text-align: center; }
  /* The desktop-only max-content 2-col grid below doesn't shrink for long
     tags like "Networking & Partnerships", overflowing narrow viewports —
     same specificity, later in the cascade, so this wins on mobile. */
  #consulting .teaser-keywords, #brand-teaser .brand-teaser-text .teaser-keywords {
    grid-template-columns: repeat(2,1fr);
  }
  .brand-tags { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.6rem; }
  .brand-tags span { text-align: center; }
  #artist-teaser, #brand-teaser, #football-teaser { grid-template-columns: 1fr; gap: 3rem; }
  #artist-teaser { gap: 1.5rem; }
  #artist-teaser .teaser-content { display: contents; }
  /* display:contents removes this element's own box, which breaks IntersectionObserver
     for it and its reveal-stagger children (never intersects -> stuck at opacity:0
     until the failsafe timer). Force it visible on mobile instead of scroll-revealing. */
  #artist-teaser .teaser-content.reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none; animation: none; }
  #artist-teaser .section-title { order: 1; }
  #artist-teaser .teaser-images { order: 2; }
  #artist-teaser .section-body { order: 3; }
  #artist-teaser .teaser-keywords { order: 4; }
  #artist-teaser .teaser-cta { order: 5; justify-self: start; width: auto; }
  #consulting { grid-template-columns: 1fr; gap: 1.5rem; }
  #brand-teaser .teaser-images { order: 2; }
  #brand-teaser .teaser-content { order: 1; }
  .teaser-images { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .brand-teaser-gallery { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .brand-gallery-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 0.75rem; }
  .case-slide { flex: 0 0 calc(50% - 0.5rem); min-width: 200px; }
  #consulting-page.consulting-page-bg {
    /* The mobile section is much taller than it is wide (all the text
       stacks), so even `cover` still has to scale the image up enough
       that both faces get pushed past the edges. Sizing to a fraction of
       the section height instead keeps more of the photo's width in
       frame, at the cost of not filling the full section height. */
    background-size: auto 75%;
    background-position: center 3%;
    padding: 6rem 1.5rem 3rem;
  }
  #consulting-page.consulting-page-bg::before { background: rgba(0,0,0,0.72); }
  .consulting-second-para { margin-top: 5rem; }
  .consulting-intro-row { flex-direction: column; align-items: center; gap: 0.75rem; }
  /* `flex: 1 1 32rem` on .consulting-intro-text sets a WIDTH basis for the
     desktop row layout. In this column layout that basis applies to
     height instead — Safari reserves the full 32rem (512px) of vertical
     space for the text regardless of actual content height, leaving a
     large blank gap before the logo box. Reset it to the content's own
     height here. */
  .consulting-intro-text { flex: 0 0 auto; }
  .consulting-logo-col { padding: 0.85rem 1.5rem; gap: 0.5rem; max-width: 90vw; }
  .consulting-logo-col img { height: 7rem; max-width: 80vw; }
  .consulting-services { margin-top: 1.5rem; padding-top: 1.5rem; }
  #brand-work { padding-top: 1.5rem; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
  #brand-work .work-grid { margin-top: 0; }
  .work-tile { gap: 0.75rem; }
  .work-tile-label { font-size: 0.68rem; padding: 0.75rem 0.85rem; min-height: 3.4rem; }
  #players { flex-direction: column; text-align: center; }
  .players-image { width: 100%; max-width: 360px; margin: 0 auto; }
  .contact-details { flex-direction: column; gap: 2rem; align-items: center; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
}

@media (max-width: 600px) {
  .contact-cta { padding: 1rem 1.5rem; word-break: break-word; }
  .brand-tags span, .teaser-keywords span { word-break: break-word; }
  .kicker { font-size: 0.6rem; letter-spacing: 0.18em; flex-wrap: wrap; flex-direction: column; gap: 0.5rem; }
  .kicker::after { display: none; }
  .kicker::before { width: 1.5rem; }
  .hero-logo { width: 100px; height: 100px; margin-bottom: 2rem; }
  #hero.sza-hero { background-image: url('images/sza-sports-bg.jpg'); }
  .hero-title { max-width: none; }
  #hero { padding-top: 6rem; }
  .scroll-indicator { bottom: 0.5rem; }
  .scroll-indicator-arrow { width: 16px; height: 16px; }
  .scroll-indicator-text { font-size: 0.5rem; }
  .artists-grid { grid-template-columns: 1fr; }
  .artist-list { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .case-slider-wrapper { position: relative; gap: 0; }
  .case-slider-viewport { flex: 1; position: relative; z-index: 1; }
  .case-slider-track { gap: 0.75rem; }
  .case-slide { flex: 0 0 90%; min-width: 0; }
  .case-slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 32px; height: 32px; z-index: 3; opacity: 0.75 !important;
    pointer-events: auto !important;
    box-shadow: 0 1px 6px rgba(0,0,0,0.4);
  }
  .case-slider-prev { left: 0.35rem; }
  .case-slider-next { right: 0.35rem; }
  .case-slider-arrow:hover { transform: translateY(-50%) scale(1.1); }
}

/* ===== SPLIT LANDING RESPONSIVE ===== */
@media (max-width: 768px) {
  .split-landing { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .split-center { display: none; }
  .split-logo, .split-logo-text { height: 44px; width: auto; font-size: 80px; }
  .split-half { padding: 2rem; }
}