/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #080808;
  --dark: #111111;
  --card: #161616;
  --border: #222222;
  --white: #ffffff;
  --grey: #888888;
  --light-grey: #cccccc;
  --red: #e63946;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===========================
   NAV
   =========================== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}

#nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #c0c0c0;
  transition: color 0.2s;
  letter-spacing: 0.5px;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  color: var(--white) !important;
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s !important;
}

.nav-cta:hover {
  border-color: var(--white) !important;
  background: rgba(255,255,255,0.05);
}

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

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 aspect ratio */
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(8,8,8,0.88) 40%, rgba(8,8,8,0.5) 100%),
    linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 36px;
}

.hero-sub {
  font-size: 22px;
  font-weight: 300;
  color: #d0d0d0;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: #c0c0c0;
  background: rgba(255,255,255,0.04);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c0c0c0;
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--grey);
}

/* ===========================
   STATS
   =========================== */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  background: var(--dark);
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c0c0c0;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===========================
   SECTION COMMONS
   =========================== */
section { padding: 120px 0; }

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 48px;
}

/* ===========================
   BRANDS
   =========================== */
.brands {
  padding: 80px 0;
  background: #000000;
  border-bottom: none;
}

.brand-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px 64px;
  margin-top: 48px;
}

.bl {
  display: block;
  object-fit: contain;
  transition: opacity 0.25s;
  flex-shrink: 0;
}

/* Dark-bg PNGs: show as-is, they blend with section background */
.bl-dark {
  height: 52px;
  max-width: 260px;
  opacity: 0.92;
}

.bl-dark:hover { opacity: 1; }

/* White SVGs and light-bg logos: invert to white */
.bl-white {
  height: 52px;
  max-width: 180px;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.bl-white:hover { opacity: 1; }

/* Wide composite logos (e.g. MSG composite) */
.bl-wide {
  height: 68px;
  max-width: 500px;
}

/* ===========================
   SERVICES
   =========================== */
.services { background: var(--black); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.service-card {
  background: #1e1e1e;
  padding: 40px;
  border: 1px solid #2a2a2a;
  transition: border-color 0.2s;
}

.service-card:hover { border-color: #c0c0c0; background: var(--dark); }

.service-icon {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--red);
  opacity: 0.4;
  margin-bottom: 20px;
  line-height: 1;
}

.service-stat {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: 1px;
}

.service-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #d0d0d0;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-card p {
  font-size: 15px;
  color: #d8d8d8;
  line-height: 1.75;
}

/* ===========================
   CASE STUDIES
   =========================== */
.cases { background: #ffffff; }

.case-card {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 48px;
  margin-bottom: 2px;
  transition: border-color 0.2s;
}

.case-card:hover { border-color: #d0d0d0; }

.case-card--full { width: 100%; }

.cases-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.case-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.case-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}

.case-year {
  font-size: 12px;
  color: #c0c0c0;
}

.case-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 1px;
  color: #111111;
  margin-bottom: 8px;
}

.case-company {
  font-size: 14px;
  color: #d0d0d0;
  margin-bottom: 20px;
}

.case-desc {
  font-size: 15px;
  color: #333333;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 36px;
}

.case-results {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.case-result {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-result strong {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--red);
  line-height: 1;
}

.case-result span {
  font-size: 12px;
  color: #d0d0d0;
  letter-spacing: 0.5px;
}

/* ===========================
   REEL
   =========================== */
.reel { background: var(--black); }

.reel-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.reel-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.reel-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  color: #c0c0c0;
}

.reel-note {
  font-size: 13px;
  color: var(--border);
}

/* ===========================
   TIMELINE
   =========================== */
.timeline { background: #f4f4f4; }

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 24px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid #e0e0e0;
}

.timeline-item:last-child { border-bottom: none; }

.timeline-left { padding-top: 4px; }

.timeline-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.5px;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.timeline-right h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
  line-height: 1.3;
}

.timeline-company {
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 10px;
}

.timeline-right p {
  font-size: 14px;
  color: #d0d0d0;
  line-height: 1.7;
  max-width: 560px;
}

/* ===========================
   AWARDS
   =========================== */
.awards {
  background: #ffffff;
  padding: 80px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

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

.award-item {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.award-icon { font-size: 32px; }

.award-item h4 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: #111111;
}

.award-item p {
  font-size: 14px;
  color: #d0d0d0;
}

/* ===========================
   CONTACT
   =========================== */
.contact { background: #1a1a1a; }

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

.contact-photo-wrap {
  position: sticky;
  top: 100px;
}

.contact-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}

.contact-content {
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-photo-wrap {
    position: static;
    max-width: 320px;
  }
}

.contact-sub {
  font-size: 20px;
  color: #c0c0c0;
  max-width: 500px;
  margin-top: -40px;
  margin-bottom: 64px;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.contact-link:hover {
  border-color: #c0c0c0;
  background: #1a1a1a;
}

.contact-link-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c0c0c0;
  min-width: 80px;
}

.contact-link-val {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}

/* ===========================
   FOOTER
   =========================== */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: #111111;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
}

.footer-copy {
  font-size: 13px;
  color: #c0c0c0;
}

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

.footer-links a {
  font-size: 13px;
  color: #c0c0c0;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

/* ===========================
   PORTFOLIO
   =========================== */
.portfolio { background: var(--black); }

.portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  margin-top: -40px;
}

.pf-btn {
  background: none;
  border: 1px solid var(--border);
  color: #c0c0c0;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.pf-btn:hover, .pf-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.pv-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}

.pv-card:hover { border-color: #333; }

.pv-card.hidden { display: none; }

.pv-embed {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}

.pv-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pv-meta {
  padding: 24px 28px;
}

.pv-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}

.pv-meta h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pv-meta p {
  font-size: 13px;
  color: #c0c0c0;
  line-height: 1.6;
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   LIGHT SECTION TITLE OVERRIDES
   =========================== */
.cases .section-title {
  color: #111111;
}

/* ===========================
   AVAILABILITY TAG
   =========================== */
.availability-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--red);
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #d0d0d0;
  line-height: 1.5;
  margin-bottom: 40px;
  border-radius: 0 4px 4px 0;
  max-width: 600px;
}

/* ===========================
   KEYWORDS SECTION
   =========================== */
.keywords-section {
  padding: 60px 0;
  background: #eeeeee;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.keywords-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-pill {
  display: inline-block;
  padding: 7px 16px;
  background: #111111;
  color: #d0d0d0;
  border: 1px solid var(--red);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}

.keyword-pill:hover {
  background: var(--red);
  color: var(--white);
}

/* ===========================
   IN THE FIELD — CELEBRITY PHOTOS
   =========================== */
.field-photos {
  padding: 100px 0;
  background: #ffffff;
}

.field-photos .section-eyebrow {
  color: var(--red);
}

.field-photos .section-title {
  color: #111111;
  margin-bottom: 48px;
}

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

.field-card {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  background: #111111;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.field-card--wide .field-img-wrap {
  aspect-ratio: 16 / 9;
}

.field-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.22);
}

.field-grid--2col .field-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.field-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
}

.field-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.field-card:hover .field-img-wrap img {
  transform: scale(1.04);
}

.field-caption {
  padding: 16px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 2px solid var(--red);
}

.field-name {
  font-size: 15px;
  font-weight: 700;
  color: #d0d0d0;
  letter-spacing: 0.2px;
}

.field-context {
  font-size: 12px;
  color: #d0d0d0;
  letter-spacing: 0.3px;
}

/* ===========================
   EDUCATION & RECOGNITION
   =========================== */
.education {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.edu-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 28px 32px;
  border-radius: 4px;
}

.edu-degree {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.edu-school {
  font-size: 13px;
  color: #c0c0c0;
  letter-spacing: 0.2px;
}

.edu-note {
  font-size: 12px;
  color: #c0c0c0;
  margin-top: 6px;
  font-style: italic;
}

.edu-grid--narrow {
  grid-template-columns: 1fr;
  max-width: 480px;
}

/* ===========================
   CAREER CHAPTERS
   =========================== */
.chapters { padding-top: 0; }

.chapters-intro {
  padding: 80px 0 40px;
}

.chapter {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: var(--black);
}

.chapter--alt {
  background: var(--dark);
}

/* Chapter header — two columns */
.chapter-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.chapter-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}

.chapter-company {
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.chapter-role {
  font-size: 14px;
  color: #c0c0c0;
  letter-spacing: 0.3px;
}

.chapter-header-right {
  padding-top: 6px;
}

.chapter-header-right p {
  font-size: 17px;
  color: #d0d0d0;
  line-height: 1.7;
}

/* Project rows */
.project {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.project:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.project--flip {
  grid-template-columns: 1.2fr 1fr;
}

.project--flip .project-info { order: 2; }
.project--flip .project-videos { order: 1; }

.project-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.project-name {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.project-desc {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Project stats */
.project-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pstat strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.pstat span {
  font-size: 12px;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Video embeds */
.project-videos { display: flex; flex-direction: column; gap: 12px; }

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
  border: 1px solid var(--border);
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.video-embed--sm {
  padding-bottom: 40%;
  margin-top: 4px;
}

.video-label {
  font-size: 12px;
  color: #c0c0c0;
  letter-spacing: 0.3px;
  margin-top: -4px;
}

.video-label--sm { margin-bottom: 4px; }

/* CLG franchise tags */
.franchise-block { margin-top: 20px; }

.franchise-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c0c0c0;
  margin-bottom: 10px;
}

.franchise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.franchise-tags span {
  background: var(--card);
  border: 1px solid var(--border);
  color: #d0d0d0;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 3px;
}

/* CLG brand partners */
.clg-brand-partners {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
}

.brand-partners-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c0c0c0;
  margin-bottom: 16px;
}

.brand-partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.bp-item {
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 3px;
}

.video-coming-soon {
  font-size: 13px;
  color: #c0c0c0;
  font-style: italic;
  margin-top: 8px;
}

/* Revenue Growth Card */
.revenue-growth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
}

.rgb-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c0c0c0;
  margin-bottom: 24px;
}

.rgb-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.rgb-from, .rgb-to {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.rgb-val {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.rgb-from .rgb-val {
  color: #c0c0c0;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.3);
}

.rgb-to .rgb-val {
  color: var(--white);
}

.rgb-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c0c0c0;
}

.rgb-arrow {
  font-size: 2rem;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 20px;
}

.rgb-growth {
  display: inline-block;
  background: rgba(139, 0, 0, 0.15);
  border: 1px solid rgba(139, 0, 0, 0.4);
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 3px;
}

/* Barstool photo card */
.chapter-photo-card {
  border-radius: 6px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--border);
}

.chapter-photo-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: left 30%;
  display: block;
}

/* Awards block */
.awards-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.award-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.award-icon { font-size: 18px; line-height: 1.4; }

.award-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.award-item strong {
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
}

.award-item span {
  font-size: 12px;
  color: #c0c0c0;
}

/* Project blurb sub-sections */
.project-blurb {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.blurb-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  color: var(--red);
}

.project-blurb p {
  font-size: 15px;
  color: #d0d0d0;
  line-height: 1.75;
}

/* ===========================
   YOUTUBE SHORT CARD
   =========================== */
.cs-media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.cs-video-half {
  padding-bottom: 56.25%;
}

.short-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  text-decoration: none;
}

.short-card:hover {
  transform: translateY(-2px);
  border-color: var(--red);
}

.short-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000;
}

.short-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.short-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.2s;
}

.short-card:hover .short-play { opacity: 1; }

.short-stats {
  display: flex;
  justify-content: space-around;
  padding: 10px 8px;
  background: var(--card);
  border-top: 2px solid var(--red);
}

.short-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.short-stat-num {
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.short-stat-lbl {
  font-size: 9px;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.short-label {
  font-size: 10px;
  color: #c0c0c0;
  text-align: center;
  padding: 6px 8px;
  background: var(--card);
  letter-spacing: 0.3px;
}

/* ===========================
   GIF / AUTOPLAY VIDEO CARDS
   =========================== */
.gif-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 12px;
}

.gif-video {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.gif-stat-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 6px 12px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.gif-stat-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.gif-stat-label {
  font-size: 10px;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   CASE STUDIES
   =========================== */
.case-studies { padding-top: 0; }

.cs-intro {
  padding: 80px 0 40px;
}

.cs {
  padding: 72px 0;
  border-top: 1px solid var(--border);
  background: var(--black);
}

.cs--alt { background: var(--dark); }

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.cs-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.cs-company {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.cs-tagline {
  font-size: 13px;
  color: #c0c0c0;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.cs-block {
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.cs-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c0c0c0;
  display: block;
  margin-bottom: 8px;
}

.cs-obj {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}

.cs-tactics {
  list-style: none;
  counter-reset: tactic;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-tactics li {
  counter-increment: tactic;
  display: flex;
  gap: 12px;
  font-size: 15.5px;
  color: #e0e0e0;
  font-weight: 500;
  color: #d0d0d0;
  line-height: 1.65;
  align-items: flex-start;
}

.cs-tactics li::before {
  content: counter(tactic);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.cs-result {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(230, 57, 70, 0.06);
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0;
  border-top: 1px solid var(--border);
}

.cs-result .cs-label { margin-bottom: 4px; }

.cs-link {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(230,57,70,0.3);
  transition: border-color 0.2s;
}
.cs-link:hover { border-color: var(--red); }

.cs-result strong {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.cs-result span {
  font-size: 14px;
  color: #c0c0c0;
  letter-spacing: 0.4px;
}

/* SSA stats showcase card */
.ssa-showcase {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 32px;
  text-align: center;
}

.ssa-showcase-nums {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}

.ssa-num {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.ssa-num--from {
  color: #c0c0c0;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.2);
}

.ssa-num--to { color: var(--white); }

.ssa-arr {
  font-size: 24px;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 16px;
}

.ssa-showcase-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c0c0c0;
  margin-bottom: 24px;
}

.ssa-showcase-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.ssa-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ssa-mini strong {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}

.ssa-mini span {
  font-size: 10px;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   SPORTS & BRANDED CONTENT
   =========================== */
.branded-section {
  background: var(--dark);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.branded-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.branded-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.branded-co {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.branded-role {
  font-size: 12px;
  color: #c0c0c0;
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

.branded-stats {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.branded-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.branded-stat strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.branded-stat span {
  font-size: 10px;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.branded-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.branded-photo {
  border-radius: 4px;
  overflow: hidden;
  background: #111;
}

.branded-photo img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.branded-photo span {
  display: block;
  font-size: 10px;
  color: #c0c0c0;
  padding: 6px 4px;
  letter-spacing: 0.3px;
}

.branded-avail {
  font-size: 12px;
  color: var(--border);
  font-style: italic;
  margin-top: 10px;
}

/* ===========================
   RESUME / TIMELINE
   =========================== */
.resume-timeline {
  background: var(--black);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.rt-list {
  margin-top: 48px;
  position: relative;
}

.rt-list::before {
  content: '';
  position: absolute;
  left: 160px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.rt-item {
  display: grid;
  grid-template-columns: 160px 24px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.rt-item:last-child { border-bottom: none; }

.rt-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.3px;
  text-align: right;
  padding-top: 4px;
}

.rt-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  margin: 0 auto;
  margin-top: 6px;
  flex-shrink: 0;
}

.rt-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.rt-body p {
  font-size: 15px;
  color: #c0c0c0;
  letter-spacing: 0.2px;
}

/* ===========================
   SSA SIMPLIFIED LAYOUT
   =========================== */
.ssa-stats {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ssa-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 0 24px;
}

.ssa-stat strong {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}

.ssa-stat span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c0c0c0;
}

.ssa-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.ssa-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.ssa-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  padding: 28px 32px;
  border-radius: 4px;
}

.ssa-block h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.ssa-block p {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.75;
}

.ssa-channels {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ssa-channel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c0c0c0;
  flex-shrink: 0;
}

.ssa-channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .field-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .edu-grid { grid-template-columns: 1fr 1fr; }
  .stats .container { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .chapter-header { grid-template-columns: 1fr; gap: 24px; }
  .project { grid-template-columns: 1fr; gap: 40px; }
  .project--flip .project-info { order: 1; }
  .project--flip .project-videos { order: 2; }
  .chapter-company { font-size: 40px; }
  .ssa-blocks { grid-template-columns: 1fr; }
  .ssa-stats { flex-wrap: wrap; justify-content: center; gap: 24px; padding: 24px 0; }
  .ssa-stat-divider { display: none; }
  .ssa-channels { flex-direction: column; align-items: flex-start; gap: 12px; }
  .brand-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 32px; }
  .cs-grid { grid-template-columns: 1fr; gap: 40px; }
  .cs-company { font-size: 28px; }
  .branded-grid { grid-template-columns: 1fr; }
  .rt-list::before { display: none; }
  .rt-item { grid-template-columns: 100px 16px 1fr; gap: 12px; }
  .rt-date { font-size: 11px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px; }
  .contact-link { flex-direction: column; align-items: flex-start; gap: 8px; padding: 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero-content { padding: 120px 20px 80px; }
  .nav-links { gap: 20px; }
  .chapter-company { font-size: 32px; }
  .project-stats { flex-wrap: wrap; gap: 16px; }
  .edu-grid { grid-template-columns: 1fr; }
}

/* ===========================
   VISUAL ENERGY PASS
   =========================== */

/* Bigger section padding for breathing room */
section { padding: 140px 0; }

/* Stronger chapter section feel */
.cs {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}

.cs + .cs { border-top: 1px solid var(--border); }

/* Glow on case study company names */
.cs-company {
  text-shadow: 0 0 60px rgba(230, 57, 70, 0.15);
}

/* Red left-border accent on chapter headers */
.chapter-header {
  border-left: 4px solid var(--red);
  padding-left: 32px;
  border-bottom: 1px solid var(--border);
}

/* Stats bar stronger */
.stats {
  padding: 56px 0;
}

.stat-num {
  text-shadow: 0 0 40px rgba(230,57,70,0.2);
}

/* Section title — tighter tracking for more impact */
.section-title {
  letter-spacing: -1px;
}

/* Stronger eyebrow */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

/* Bigger chapter eyebrow */
.chapter-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
}

/* Project tags more visible */
.project-tag, .cs-cat {
  font-size: 12px;
  letter-spacing: 2px;
}

/* CS label bigger */
.cs-label {
  font-size: 11px;
  letter-spacing: 2.5px;
}

/* Branded stat numbers bigger */
.branded-stat strong {
  font-size: 22px;
}

/* Resume timeline item padding */
.rt-item {
  padding: 32px 0;
}

/* Stronger branded card */
.branded-card {
  padding: 36px;
}

/* Section divider feel on alternating chapters */
.chapter--alt {
  border-top: 3px solid var(--red);
}

/* Short stat card bolder */
.short-stat-num {
  font-size: 20px;
}

/* Service card more generous */
.service-card {
  padding: 48px;
}

/* ===========================
   PAST CLIENTS — 2-ROW LAYOUT
   =========================== */
.pc-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  margin-top: 56px;
}

.pc-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.pc-row--nowrap {
  flex-wrap: nowrap;
  gap: 28px;
}

.pc-logo {
  display: block;
  object-fit: contain;
  transition: opacity 0.2s;
}

.pc-logo--dark {
  height: 64px;
  max-width: 260px;
  opacity: 0.95;
}

.pc-logo--white {
  height: 64px;
  max-width: 200px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.pc-logo--comp {
  height: 72px;
  max-width: 360px;
}

.pc-logo:hover { opacity: 1; }

@media (max-width: 900px) {
  .pc-row { gap: 40px; }
  .pc-logo--dark, .pc-logo--white { height: 44px; }
  .pc-logo--comp { height: 60px; max-width: 320px; }
}

/* Brands section title — white on pure black */
.brands-title {
  color: var(--white);
  margin-bottom: 48px;
}

/* Slim short card — horizontal, below the main video */
.short-card--slim {
  display: block;
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  text-decoration: none;
  transition: border-color 0.2s;
}

.short-card--slim:hover { border-color: var(--red); }

.short-card--slim-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 120px;
}

.short-thumb--slim {
  position: relative;
  width: 140px;
  min-width: 140px;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
}

.short-thumb--slim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.short-stats--horiz {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  flex: 1;
  flex-wrap: wrap;
}

.short-stats--horiz .short-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.short-stats--horiz .short-stat-num { font-size: 22px; }
.short-stats--horiz .short-stat-lbl { font-size: 11px; }

.short-lbl-inline {
  font-size: 11px;
  color: #c0c0c0;
  letter-spacing: 0.3px;
  margin-left: auto;
  padding-right: 4px;
}


/* ===========================
   AMAZON PROOF CARD
   =========================== */
.amz-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
  gap: 20px;
}

.amz-card:hover { border-color: #ff9900; }

.amz-left { display: flex; flex-direction: column; gap: 6px; flex: 1; }

.amz-badge {
  font-size: 13px;
  font-weight: 800;
  color: #ff9900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.amz-product {
  font-size: 13px;
  color: #c0c0c0;
  font-weight: 500;
}

.amz-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.amz-star-num {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
}

.amz-stars-icons {
  color: #ff9900;
  font-size: 16px;
  letter-spacing: 1px;
}

.amz-review-count {
  font-size: 12px;
  color: #888;
  text-decoration: underline;
}

.amz-tag {
  font-size: 11px;
  color: #666;
  letter-spacing: 0.5px;
}

.amz-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.amz-big {
  font-family: var(--font-display);
  font-size: 52px;
  color: #ff9900;
  line-height: 1;
}

.amz-big span { font-size: 36px; }

.amz-sub {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   SERVICE CARDS — FORCE WHITE BOLD
   =========================== */
.service-card h3 {
  color: #ffffff !important;
  font-weight: 800 !important;
}

.service-card p {
  color: #ffffff !important;
  font-weight: 600 !important;
}

.service-stat-label {
  color: #aaaaaa !important;
}

/* ===========================
   FIELD PHOTOS — 2x2 GRID + ARROWS
   =========================== */
.field-grid--2col {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Unified cinematic color profile across all field photos */
.field-img-wrap img {
  filter: contrast(1.1) brightness(0.88) saturate(0.85);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.field-card:hover .field-img-wrap img {
  filter: contrast(1.05) brightness(0.95) saturate(0.9);
  transform: scale(1.04);
}


  50%       { transform: translateX(-50%) translateY(-5px); }
}

/* Balance brands section — smaller title, bigger logos */
.brands-title {
  font-size: clamp(36px, 5vw, 64px) !important;
  margin-bottom: 32px !important;
}

.pc-logo--dark  { height: 90px  !important; max-width: 320px !important; }
.pc-logo--white { height: 90px  !important; max-width: 260px !important; }
.pc-logo--comp  { height: 110px !important; max-width: 520px !important; }

/* ===========================
   MOBILE RESPONSIVE — FULL PASS
   =========================== */
@media (max-width: 768px) {

  /* Nav — stack or shrink links */
  .nav-links { gap: 12px; flex-wrap: wrap; }
  .nav-links a { font-size: 11px; letter-spacing: 0.5px; }
  .nav-cta { display: none; }

  /* Section titles — pull back on mobile */
  .section-title {
    font-size: clamp(36px, 10vw, 64px) !important;
    line-height: 1;
  }
  .brands-title { font-size: clamp(28px, 8vw, 48px) !important; }

  /* Past Clients — allow wrapping on mobile */
  .pc-row--nowrap {
    flex-wrap: wrap !important;
    gap: 24px !important;
    justify-content: center;
  }
  .pc-logo--dark, .pc-logo--white { height: 52px !important; max-width: 180px !important; }
  .pc-logo--comp { height: 64px !important; max-width: 100% !important; }
  .pc-grid { gap: 32px; }

  /* Case studies — single column */
  .cs-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .cs-company { font-size: 30px; }

  /* Branded section — single column */
  .branded-grid { grid-template-columns: 1fr !important; }

  /* SSA blocks — single column */
  .ssa-blocks { grid-template-columns: 1fr !important; }
  .ssa-stats { flex-direction: column; gap: 16px; }
  .ssa-stat-divider { display: none; }

  /* Chapter headers — single column */
  .chapter-header { grid-template-columns: 1fr !important; padding-left: 16px; }
  .chapter-company { font-size: 36px; }

  /* Projects — single column */
  .project { grid-template-columns: 1fr !important; }
  .project--flip .project-info { order: 1; }
  .project--flip .project-videos { order: 2; }

  /* Service cards — single column */
  .services-grid { grid-template-columns: 1fr !important; }
  .service-card { padding: 28px !important; }

  /* Field photos — 2 across on mobile */
  .field-grid--2col { grid-template-columns: repeat(2, 1fr) !important; }

  /* Resume timeline */
  .rt-list::before { display: none; }
  .rt-item { grid-template-columns: 80px 16px 1fr; gap: 8px; }
  .rt-date { font-size: 11px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr !important; gap: 32px; }

  /* Stats showcase */
  .ssa-showcase-nums { flex-direction: column; gap: 4px; }
  .ssa-num { font-size: 28px; }

  /* Short card */
  .short-stats--horiz { gap: 12px; padding: 0 12px; }
  .short-lbl-inline { display: none; }

  /* Chapter padding */
  .chapter { padding: 48px 0; }
  .cs { padding: 48px 0; }
  section { padding: 80px 0; }

  /* Container padding */
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .field-grid--2col { grid-template-columns: 1fr !important; }
  .pc-logo--comp { height: 52px !important; }
}

/* Logo rows — stack sooner (tablet landscape) */
@media (max-width: 1100px) {
  .pc-row--nowrap {
    flex-wrap: wrap !important;
    gap: 32px !important;
    justify-content: center;
  }
  .pc-logo--dark  { height: 72px !important; max-width: 260px !important; }
  .pc-logo--white { height: 72px !important; max-width: 220px !important; }
  .pc-logo--comp  { height: 88px !important; max-width: 420px !important; }
}

/* Results label — top of every right column */
.cs-results-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ===========================
   BRANDED SECTION — REDESIGN
   =========================== */
.branded-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.branded-strip-co {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 32px;
}

.branded-strip-co:first-child { padding-left: 0; }
.branded-strip-co:last-child  { padding-right: 0; }

.branded-strip-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

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

@media (max-width: 900px) {
  .branded-strip { grid-template-columns: 1fr; gap: 32px; }
  .branded-strip-divider { display: none; }
  .branded-strip-co { padding: 0 !important; }
  .branded-videos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .branded-videos { grid-template-columns: 1fr; }
}

/* Field photos — fix oversized images */
.field-grid--2col .field-img-wrap {
  aspect-ratio: unset !important;
  height: 220px !important;
  overflow: hidden !important;
}

.field-grid--2col .field-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.field-grid--2col .field-card--wide .field-img-wrap {
  height: 220px !important;
}

/* Hero — no top padding, video fills from top */
section.hero { padding: 0 !important; }

/* === NUCLEAR HERO TOP FIX === */
html, body { margin: 0; padding: 0; }
body > section:first-of-type,
.hero { margin-top: 0 !important; padding-top: 0 !important; }
.hero-content { padding-top: 48px !important; }

/* === FIELD PHOTOS — SMALL THUMBNAILS === */
.field-grid--2col { gap: 8px !important; }
.field-grid--2col .field-card { border-radius: 4px; overflow: hidden; }
.field-grid--2col .field-img-wrap,
.field-grid--2col .field-card--wide .field-img-wrap {
  height: 160px !important;
  aspect-ratio: unset !important;
  overflow: hidden !important;
}
.field-grid--2col .field-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Case study grid — equal height columns */
.cs-grid { align-items: stretch !important; }
.cs-info { display: flex; flex-direction: column; }
.cs-info .cs-block:last-of-type { flex: 1; }

/* CLG videos — side by side */
.cs-videos-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Kill the last black line — bleed video wrap above container */
html { overflow-x: hidden; }
.hero { overflow: visible !important; }
.hero-video-wrap {
  top: -4px !important;
  left: -4px !important;
  right: -4px !important;
  bottom: 0 !important;
  height: calc(100% + 4px) !important;
}
