/* ═══════════════════════════════════════════════════════════════
   NGD — Design System v4
   Warm cream base · Orange accent · Warm dark hero · No black
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body { background: var(--paper); color: var(--ink); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font: inherit; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --white:         #FAFAF8;
  --paper:         #F5F0E8;
  --paper-warm:    #EDE6D8;
  --cream:         #FAF7F2;

  --orange:        #E8500A;
  --orange-dark:   #C43D00;
  --orange-light:  #F2854A;
  --orange-pale:   #FDF0E8;
  --orange-wash:   #FBE9DC;

  --ink:           #1A1414;
  --ink-soft:      #2C2420;
  --warm-grey:     #9A8E85;
  --mid-grey:      #C4B8B0;

  --border:        rgba(26,20,20,0.08);
  --border-strong: rgba(26,20,20,0.15);

  --xs:  8px;
  --sm:  16px;
  --md:  24px;
  --lg:  40px;
  --xl:  64px;
  --2xl: 96px;

  --max-w:  1280px;
  --pad-x:  48px;
  --nav-h:  52px;
}

/* ─── BASE ───────────────────────────────────────────────────── */
body { font-family: 'DM Sans', system-ui, sans-serif; font-weight: 300; line-height: 1.8; }

/* ─── SCROLL MARGIN ──────────────────────────────────────────── */
#clients, #brands, #events, #strategy, #about {
  scroll-margin-top: calc(var(--nav-h) + 8px);
}

/* ─── SECTION VERTICAL SPACING ───────────────────────────────── */
#events, #strategy, #about {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media (max-width: 768px) {
  #events, #strategy, #about {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* ─── GEO DIVIDER ────────────────────────────────────────────── */
.geo-divider {
  height: 1px;
  background: var(--border);
  position: relative;
  flex-shrink: 0;
}
.geo-divider::after {
  content: '';
  position: absolute;
  left: 48px;
  top: -1px;
  width: 40px;
  height: 3px;
  background: var(--orange);
  display: block;
}

/* ─── GLOBAL CONTENT WRAPPER ─────────────────────────────────── */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .section-inner { padding: 0 24px; }
}

/* ─── SECTION SHARED ─────────────────────────────────────────── */
.section-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--ink);
  text-align: left;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION — warm cream editorial bar
   ══════════════════════════════════════════════════════════════ */
#top-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
  gap: var(--lg);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
#top-nav.loaded { opacity: 1; transform: none; }
#top-nav.scrolled {
  border-bottom-color: var(--border-strong);
  box-shadow: 0 1px 0 rgba(26,20,20,0.06);
}

.nav-logo {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  flex-shrink: 0;
  margin-right: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--xl);
}

.nav-link {
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-grey);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--orange); }
.nav-link.active { color: var(--orange); }

.nav-contact {
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  padding: 10px 22px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.nav-contact:hover { background: var(--orange-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--ink); transition: all 0.3s; }

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--ink-soft);
  z-index: 870;
  padding: var(--lg) var(--pad-x);
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
#mobile-nav.open { display: flex; }
.mobile-nav-item {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: var(--sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s;
  display: block;
}
.mobile-nav-item:hover { color: var(--orange-light); }

/* ══════════════════════════════════════════════════════════════
   INTRO OVERLAY
   ══════════════════════════════════════════════════════════════ */
.ngd-intro {
  position: fixed;
  inset: 0;
  background: #F0EBE1;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ngd-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.ngd-intro-wordmark {
  font-family: 'Arial Black', 'Franklin Gothic Heavy', 'Helvetica Neue', Impact, sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 20vw, 220px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #1A1414;
  opacity: 0;
  transform: scale(0.94);
  transition: none;
  text-align: center;
  user-select: none;
}
.ngd-intro-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 28px;
  overflow: hidden;
}
.tl-line {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 2.5vw, 22px);
  letter-spacing: 0.04em;
  color: #1A1414;
  opacity: 0;
  transform: translateY(12px);
  text-align: center;
}
.tl-line:first-child { font-weight: 500; color: #E8500A; }

/* ══════════════════════════════════════════════════════════════
   HERO — single dark band
   ══════════════════════════════════════════════════════════════ */
.hero {
  background: #2C2420;
  padding: 40px 48px 48px;
  position: relative;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.hero-eyebrow {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-eyebrow-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--white);
}
.hero-eyebrow-sep {
  color: var(--orange);
  font-size: 14px;
}
.hero-eyebrow-role {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-locations {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.hero-headline h1 {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hl {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(52px, 8vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #FAFAF8;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}
.hl2 { color: #E8500A; font-weight: 600; margin-bottom: 12px; }
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 32px;
}
.hero-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 420px;
  opacity: 0;
}
.hero-locations-mobile {
  display: none;
}
@media (max-width: 768px) {
  .hero { padding: 28px 24px 36px; min-height: auto; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .hero-top .hero-locations { display: none; }
  .hero-eyebrow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 24px;
  }
  .hero-eyebrow-name {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
  }
  .hero-eyebrow-sep { display: none; }
  .hero-eyebrow-subrole {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .hero-eyebrow-subrole .hero-eyebrow-sep {
    display: inline;
    font-size: 10px;
  }
  .hero-eyebrow-role {
    font-size: 10px;
    letter-spacing: 0.12em;
    display: inline;
  }
  .hero-locations-mobile {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-top: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hl1, .hl2, .hero-desc {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Capability tags — about section variant */
.cap-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.cap-tag-dark {
  border-color: var(--border-strong);
  color: var(--warm-grey);
  background: transparent;
}
.cap-tag-dark:hover { background: var(--orange-pale); color: var(--orange); border-color: var(--orange); }

/* Scroll reveal */
.reveal-from-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal-from-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal-from-left.visible,
.reveal-from-right.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   CLIENTS — work + talent merged
   ══════════════════════════════════════════════════════════════ */
#clients { background: var(--cream); }

.work-header-wrap { background: var(--cream); }
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.work-orange-bar {
  height: 2px;
  background: var(--orange);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Horizontal scroll container — replaced by grid */
.work-scroll-wrap { position: relative; }

.work-grid-featured,
.work-grid-expanded {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.work-grid-expanded {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
}

.work-btn-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  margin-top: 1px;
}
.work-teaser-row {
  position: relative;
  overflow: hidden;
  margin-top: 1px;
}
.work-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 768px) {
  .work-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .work-teaser-grid .work-teaser-card:last-child { display: none; }
}
.work-teaser-card {
  position: relative;
  overflow: hidden;
}
.work-teaser-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: grayscale(100%) brightness(0.85) contrast(1.05);
  transition: filter 0.4s ease;
}
.work-teaser-card:hover .work-teaser-img {
  filter: grayscale(80%) brightness(0.9);
}
.work-teaser-name {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
  z-index: 2;
}
.work-teaser-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, var(--paper) 100%);
  pointer-events: none;
  z-index: 3;
}

.work-expand-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px auto 0;
  background: var(--orange);
  color: #FAFAF8;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  animation: btnBounce 2s ease-in-out infinite;
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 10;
}
.work-expand-btn:hover { background: var(--orange-dark); animation: none; transform: scale(1.03); }
.btn-arrow { font-size: 16px; display: inline-block; animation: arrowBounce 2s ease-in-out infinite; }
@keyframes btnBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes arrowBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ─── CASE CARDS ─────────────────────────────────────────────── */
.case-card {
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  transition: opacity 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.case-card.card-featured { border-left: 3px solid var(--orange); }
.case-card.filtered-out { opacity: 0.2; pointer-events: none; }

.card-img {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  flex-shrink: 0;
  height: 300px;
}
.card-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.case-card:hover .card-img-bg { transform: scale(1.02); }

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,80,10,0);
  transition: background 0.3s ease;
}
.case-card:hover .card-img-overlay { background: rgba(232,80,10,0.82); }

.card-name-pill {
  position: absolute;
  bottom: 48px;
  left: 12px;
  background: var(--orange);
  color: #FAFAF8;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  z-index: 3;
  max-width: calc(100% - 24px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.card-tags {
  position: absolute;
  bottom: var(--sm);
  left: var(--sm);
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  z-index: 2;
}
.card-tag {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
}

.card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 4;
}
.case-card:hover .card-hover { opacity: 1; transform: none; }
.reveal-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 0 24px; }
.reveal-title { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 18px; letter-spacing: -0.02em; color: #FAFAF8; line-height: 1.2; }
.reveal-desc { font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 13px; line-height: 1.6; color: rgba(250,250,248,0.8); max-width: 280px; }

/* ══════════════════════════════════════════════════════════════
   TALENT SECTION
   ══════════════════════════════════════════════════════════════ */
#talent { background: var(--paper); }
.talent-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--xl) var(--pad-x);
}
.talent-header { margin-bottom: 0; }

.clients-header-bar {
  border-bottom: 1px solid var(--border);
  padding: 36px 0 24px;
}
.clients-header-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.clients-header-right {
  display: flex;
  align-items: center;
}
.clients-disclaimer {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--warm-grey);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  #clients { padding-top: 0; padding-bottom: 32px; }
  .clients-header-bar { padding: 20px var(--pad-x) 16px; margin-bottom: 0; gap: 12px; }
  .clients-header-bar-inner { flex-wrap: nowrap; align-items: center; gap: 12px; padding: 0; }
  .clients-header-bar .section-title { font-size: 28px; flex-shrink: 0; }
  .clients-disclaimer { padding: 8px 24px; margin: 0; font-size: 11px; }
  .talent-expand-btn {
    font-size: 9px;
    letter-spacing: 0.1em;
    padding: 7px 14px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    border-width: 1px;
    margin-top: 0;
  }
  .talent-expand-btn .talent-btn-text { font-size: 9px; letter-spacing: 0.1em; }
  .talent-expand-btn .talent-btn-arrow { font-size: 10px; }
  .work-grid-featured { margin-top: 0; padding-top: 0; }
}

.talent-expand-btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  background: transparent;
  padding: 12px 32px;
  border-radius: 0;
  cursor: pointer;
  margin-top: 24px;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.talent-expand-btn:hover { background: var(--orange); color: var(--white); }
.talent-roster-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--lg) var(--md);
  border-top: 1px solid var(--border);
  padding-top: var(--lg);
}
.talent-roster-head {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.talent-roster-name {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.9;
  display: block;
  transition: color 0.15s;
  cursor: default;
}
.talent-roster-name:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════════════════
   BRANDS SECTION — logo grid
   ══════════════════════════════════════════════════════════════ */
#brands {
  background: var(--white);
  padding: 52px 0;
  border-top: 1px solid var(--border);
}
.brands-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.brand-logo-cell,
.brand-cell {
  background: var(--white);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: background 0.2s;
  position: relative;
}
.brand-logo-cell:hover { background: var(--orange-wash); }
.brand-logo-cell img,
.brand-cell img {
  max-width: 120px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s;
  display: block;
}
.brand-logo-cell:hover img { filter: grayscale(0%) opacity(1); }
.brand-logo-fallback {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  border: 1px solid var(--border);
  padding: 8px 16px;
  line-height: 1.2;
}

/* clickable brand cells */
.brand-cell { cursor: pointer; }
.brand-cell:hover { background: var(--orange-wash); }
.brand-cell:hover img { filter: grayscale(0%) opacity(1); }
.brand-cell.active {
  background: var(--orange-pale);
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}
.brand-cell.active img { filter: grayscale(0%) opacity(1); }
.brand-cell::after {
  content: 'Click to learn more';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  pointer-events: none;
}
.brand-cell:hover::after { opacity: 1; }
.brand-cell.active::after { opacity: 0; }

/* brand detail panel */
.brand-detail-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
  opacity: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  position: relative;
}
.brand-detail-panel.open { max-height: 600px; opacity: 1; }
.brand-detail-inner {
  padding: 32px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .brand-detail-inner { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .brand-detail-img,
  .brand-detail-inner > div:last-child > div { height: 220px; }
}
.brand-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--warm-grey);
  cursor: pointer;
  padding: 4px 8px;
}
.brand-detail-close:hover { color: var(--ink); }
.brand-detail-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.brand-detail-campaign {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.brand-detail-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: var(--warm-grey);
}
.brand-detail-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.brand-detail-img.logo-img {
  object-fit: contain;
  background: var(--paper);
  padding: 20px;
}
.brand-detail-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
}

/* ══════════════════════════════════════════════════════════════
   INDUSTRY EVENTS
   ══════════════════════════════════════════════════════════════ */
#events { background: var(--paper-warm); }
.events-head-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--lg);
}
.events-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: var(--md);
  border-bottom: 1px solid var(--border);
}
.events-head-row .section-title { line-height: 1; }

.events-scroll-outer { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: var(--xl); }
.events-scroll-outer::-webkit-scrollbar { display: none; }
.events-scroll-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.events-scroll-row {
  display: flex;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  width: max-content;
}
.event-card {
  width: 280px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--cream);
  transition: background 0.15s;
  display: flex;
  flex-direction: column;
}
.event-card:hover { background: var(--orange-pale); }
.event-card-img { height: 180px; background-size: cover; background-position: center; background-repeat: no-repeat; background-color: var(--paper-warm); position: relative; flex-shrink: 0; }
.event-card-img.has-photo::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background: linear-gradient(to bottom, transparent, rgba(240,235,225,0.4)); pointer-events: none; }
.event-card-body { padding: var(--sm); flex: 1; display: flex; flex-direction: column; }
.event-card-name { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 6px; line-height: 1.4; border-top: 1px solid var(--border); padding-top: 12px; }
.event-card-desc { font-size: 12px; font-weight: 300; color: var(--warm-grey); line-height: 1.5; flex: 1; }
.event-card-partner { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); min-height: 44px; }
.event-card-partner-label { font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-grey); white-space: nowrap; flex-shrink: 0; }
.event-card-partner-logo { max-height: 20px; max-width: 90px; width: auto; object-fit: contain; filter: grayscale(100%) opacity(0.55); transition: filter 0.2s ease; }
.event-card-partner-logo.logo-large { max-height: 32px; max-width: 120px; }
.event-card:hover .event-card-partner-logo { filter: grayscale(0%) opacity(1); }

/* ══════════════════════════════════════════════════════════════
   360 STRATEGY SECTION — warm light island
   ══════════════════════════════════════════════════════════════ */
#strategy {
  background: var(--paper-warm);
}
.strategy-section-inner {
  display: grid;
  grid-template-columns: 4fr 8fr;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  gap: var(--xl);
  align-items: start;
}
.strategy-left { position: sticky; top: calc(var(--nav-h) + var(--lg)); }
.strategy-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: var(--md) 0 var(--md);
}
.strategy-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.8;
  margin-bottom: var(--lg);
}
.strategy-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
}
@media (max-width: 1024px) {
  .strategy-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .strategy-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
}
.strategy-deck {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.strategy-deck-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-warm);
}
.strategy-deck-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.95);
}
.strategy-deck:hover .strategy-deck-img img {
  transform: scale(1.03);
  filter: brightness(1);
}
.strategy-deck-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0 0;
}
.strategy-deck-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.strategy-deck-type {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--warm-grey);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════════════════════ */
#about { background: var(--cream); }
.about-section-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  gap: var(--xl);
  align-items: start;
}
.about-left { position: sticky; top: calc(var(--nav-h) + var(--lg)); }
.about-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 24px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 768px) {
  .about-photo { max-width: 100%; aspect-ratio: 4/5; }
}
.about-name {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-top: 8px;
  margin-bottom: var(--md);
}
.about-caps { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; margin-bottom: 20px; }
.about-right { display: flex; flex-direction: column; gap: var(--md); padding-top: 28px; }
.about-bio-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.8;
  opacity: 0.75;
}
.about-contact { margin-top: var(--sm); display: flex; flex-direction: column; gap: 6px; }
.about-email {
  font-size: 16px;
  font-weight: 300;
  color: var(--orange);
  transition: opacity 0.15s;
}
.about-email:hover { opacity: 0.75; }
.about-location {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* ══════════════════════════════════════════════════════════════
   CONTACT — warm light
   ══════════════════════════════════════════════════════════════ */
#contact {
  background: var(--paper-warm);
  color: var(--ink);
  border-top: 3px solid var(--orange);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--xl) var(--pad-x);
  gap: var(--xl);
  align-items: center;
}
.contact-hed { font-size: 72px; font-weight: 300; letter-spacing: -0.04em; line-height: 0.92; color: var(--ink); }
.contact-right { display: flex; flex-direction: column; align-items: flex-end; gap: var(--md); }
.contact-email { font-size: 16px; font-weight: 300; color: var(--orange); transition: color 0.15s; }
.contact-email:hover { color: var(--orange-dark); }
.contact-location { font-size: 12px; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-grey); }
.contact-btn {
  display: inline-block;
  background: transparent;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  padding: 12px 28px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.contact-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ══════════════════════════════════════════════════════════════
   FOOTER BAR — warm light close
   ══════════════════════════════════════════════════════════════ */
#footer-bar {
  background: var(--paper-warm);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  border-top: 1px solid var(--border);
}
.footer-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-ngd {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--orange);
}
.footer-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
  :root { --pad-x: 20px; }

  .nav-links { display: none; }
  .nav-contact { display: none; }
  .nav-hamburger { display: flex; }

  .work-header { flex-direction: column; align-items: flex-start; gap: var(--sm); }

  .work-grid-featured,
  .work-grid-expanded { grid-template-columns: repeat(2, 1fr); }
  .card-img { height: 200px; }

  .talent-grid-expanded { padding: 0; }
  .talent-roster-grid { grid-template-columns: 1fr; gap: 0; padding: 24px 24px 32px; }
  .talent-roster-col { margin-bottom: 32px; }
  .talent-names-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .talent-roster-name { font-size: 14px; padding: 5px 0; line-height: 1.5; }
  .talent-roster-head { grid-column: 1 / -1; margin-bottom: 12px; }

  .brand-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-logo-cell { padding: 24px 20px; min-height: 80px; }
  .brand-logo-cell img { max-width: 90px; max-height: 36px; }

  .events-head-wrap { padding: 0 var(--pad-x) var(--md); }
  .events-head-row { flex-direction: column; align-items: flex-start; gap: var(--sm); }


  .strategy-section-inner { grid-template-columns: 1fr; }
  .strategy-left { position: static; }

  .about-section-inner { grid-template-columns: 1fr; gap: var(--lg); }
  .about-left { position: static; }
  .about-name { font-size: 36px; }
  .about-right { padding-top: 0; }

  .contact-inner { grid-template-columns: 1fr; gap: var(--lg); }
  .contact-hed { font-size: 48px; }
  .contact-right { align-items: flex-start; }

  .geo-divider::after { left: 24px; }
  #clients > .geo-divider,
  .geo-divider:has(+ #clients) { display: none; }

  /* Universal section title sizing */
  .section-title {
    font-size: 28px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    padding: 0;
  }

  /* Section inner padding */
  .section-inner { padding-left: 24px; padding-right: 24px; }

  /* Strategy — long tagline headline reduced */
  .strategy-tagline {
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .strategy-left { padding: 0 0 24px 0; }

  /* Events / About section title bottom margin */
  #events .section-title,
  #about .section-title { margin-bottom: 16px; }

  /* About bio */
  .about-bio {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
  }

  /* Contact headline */
  .contact-hed {
    font-size: 36px;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
}

@media (max-width: 480px) {
  .case-card { width: calc(100% - 0px); }
  .brand-logo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════════
   CASE STUDY MODALS
   ══════════════════════════════════════════════════════════════ */
.case-card { cursor: pointer; }

#caseModal {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  max-width: 960px;
  height: 88vh;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
#caseModal.modal-open {
  display: flex;
  opacity: 1;
}
#modalHero { height: 360px; }
#modalScroll {
  flex: 1;
  min-height: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
@media (max-width: 768px) {
  #caseModal {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 90vh;
    transform: none;
    border-radius: 0;
  }
  #caseModal.modal-open { display: flex; }
  #modalHero { height: 220px; }
  #modalScroll { overflow-y: scroll; -webkit-overflow-scrolling: touch; }
}
#modalBackdrop { opacity: 0; transition: opacity 0.3s ease; }
#modalBackdrop.modal-open { opacity: 1; }
#modalClose:hover { background: #E8500A !important; }
.modal-stat-cell {
  padding: 18px 20px;
  border-right: 1px solid rgba(15,15,15,0.1);
  border-bottom: 1px solid rgba(15,15,15,0.1);
}
.modal-stat-number {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #E8500A;
  line-height: 1;
  margin-bottom: 4px;
}
.modal-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9A948C;
}
.modal-press-btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A1414;
  border: 1px solid rgba(15,15,15,0.2);
  padding: 8px 16px;
  cursor: pointer;
  background: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  display: inline-block;
}
.modal-press-btn:hover { background: #E8500A; border-color: #E8500A; color: #fff; }
.modal-gallery-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
