/* === Style Block 1 === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

:root {
  --w-side: 188px;
  --c-bg:    #000000;
  --c-s1:    #080808;
  --c-s2:    #0d0d0d;
  --c-s3:    #141414;
  --c-text:  #ffffff;
  --c-muted: #585858;
  --c-dim:   #303030;
  --c-line:  rgba(255,255,255,0.06);
  --c-line2: rgba(255,255,255,0.12);
  --c-body:  #c8c8c8;
  --c-gold:  #C8102E;
  --c-red:   #c0392b;
  --c-ink:   #0a0a0a;
  /* spacing tokens */
  --sp-section: 64px;
  --sp-block:   32px;
  --sp-item:    16px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  padding-top: 40px;
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── MOBILE TOPBAR ── */
.m-topbar {
  display: none;
  position: fixed; top: 0; left: 0; right: 0;
  height: 52px;
  background: var(--c-s1);
  border-bottom: 1px solid var(--c-line);
  z-index: 200;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  overflow: hidden;
  flex-wrap: nowrap;
}
.m-topbar-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px; font-weight: 900;
  letter-spacing: -0.5px; color: var(--c-text);
}
.m-topbar-logo span { color: var(--c-gold); }
.m-hamburger {
  width: 36px; height: 36px;
  background: none; border: 1px solid var(--c-line2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  cursor: pointer; padding: 0;
}
.m-hamburger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--c-text);
  transition: transform 0.25s, opacity 0.25s;
}
.m-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.m-hamburger.is-open span:nth-child(2) { opacity: 0; }
.m-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.m-drawer {
  display: none;
  position: fixed; top: 52px; left: 0; right: 0; bottom: 0;
  background: var(--c-s1);
  z-index: 190;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.m-drawer.is-open { transform: translateX(0); }

.m-drawer-nav {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 20px 20px;
  background: none; border: none;
  width: 100%; text-align: left;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-muted);
  display: flex; align-items: center; justify-content: space-between;
}
.m-drawer-nav.is-gold { background: var(--c-gold); color: var(--c-ink); }

.m-drawer-issue {
  padding: 20px 20px;
  border-bottom: 1px solid var(--c-line);
}
.m-drawer-cta {
  margin-top: auto;
  background: var(--c-gold);
  padding: 24px 20px;
  cursor: pointer;
}
.m-drawer-cta-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px; font-weight: 900;
  color: var(--c-ink); display: block; line-height: 1.2;
}
.m-drawer-cta-sub {
  font-size: 12px; color: rgba(0,0,0,0.55);
  display: block; margin-top: 6px;
}


@media (max-width: 1100px) {
  #stickyNav > div:last-child button:not(:last-child):not(:nth-last-child(2)) { display: none !important; }
}
@media (max-width: 960px) {
  #stickyNav > div:last-child button:first-child,
  #stickyNav > div:last-child button:nth-child(2) { display: none !important; }
}
@media (max-width: 768px) {
  .m-topbar { display: flex; }
  .m-drawer  { display: flex; }
  #stickyNav { display: none !important; }
  /* Hide AVM logo, About/Partners, Get in Touch, Browse on mobile */
  #stickyNav > div:first-child { display: none !important; }
  #stickyNav > div:last-child { display: none !important; }
  #stickyNav #browseWrap { display: none !important; }
  /* Center just the search pill */
  #stickyNav > div[style*="absolute"] {
    position: static !important;
    transform: none !important;
    display: flex !important;
    flex: 1;
    justify-content: center;
  }
  #stickyNav #navSearch {
    display: block !important;
    width: 100% !important;
    max-width: 340px !important;
    font-size: 16px !important;
    padding: 7px 16px 7px 34px !important;
  }
  #stickyNav {
    top: 52px !important;
    height: 44px !important;
    padding: 0 12px !important;
    background: #111 !important;
  }
  #stickyNav > div:first-child { display: none !important; }
  #stickyNav > div:last-child { display: none !important; }
  #stickyNav > div[style*="absolute"] {
    position: static !important;
    transform: none !important;
    display: flex !important;
    gap: 6px !important;
    flex: 1;
    justify-content: center;
  }
  #stickyNav #browseBtn {
    font-size: 10px !important;
    padding: 5px 10px !important;
  }
  #stickyNav #navSearch {
    width: 160px !important;
    font-size: 11px !important;
    padding: 5px 12px 5px 28px !important;
  }

  aside { display: none !important; }

  body { display: block; }
  main { margin-left: 0 !important; padding-top: 0; }
  /* hero */
  .hero { height: 320px; margin-top: 52px; }
  .hero-h1 { font-size: 32px; letter-spacing: -1px; }
  .hero-eyebrow { font-size: 8px; letter-spacing: 2px; white-space: nowrap; }
  .eyebrow-full  { display: none; }
  .eyebrow-short { display: inline; }
  .ft-mob { display: inline; }
  .ft-desk { display: none; }

  /* case studies — sandwich toggle matching work filter exactly */
  .feat-row1 { display: none !important; }
  .feat-tabs { display: flex !important; flex-direction: column; overflow: hidden; max-height: 48px; transition: max-height 0.3s ease; border-bottom: 1px solid var(--c-line); }
  .feat-tabs.is-open { max-height: 500px; }
  .feat-tabs .feat-tab { width: 100%; text-align: left; font-size: 11px; padding: 14px 20px; border: none !important; border-bottom: 1px solid var(--c-line) !important; border-radius: 0; box-shadow: none !important; display: none !important; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.55); background: none; white-space: normal; order: 0; }
  .feat-tabs .feat-tab .t-num { margin-left: auto; padding-left: 12px; color: var(--c-muted); font-size: 10px; }
  .feat-tabs .feat-tab.is-on { display: flex !important; order: -1; color: var(--c-gold) !important; border: 1px solid var(--c-gold) !important; }
  .feat-tabs .feat-tab.is-on::after { content: '↓'; font-size: 12px; color: var(--c-muted); padding-left: 12px; }
  .feat-tabs.is-open .feat-tab { display: flex !important; }
  .feat-tabs.is-open .feat-tab.is-on::after { content: '↑'; }
  .feat-mobile-nav { display: none !important; }
  .feat-frame { height: 260px; }
  .feat-title { font-size: 20px; }

  /* work grid — 1 col on phone, 2 on tablet */
  .work-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .work-card.is-mag { grid-column: span 2 !important; }

  /* work filter — collapsible toggle */
  .work-bar { display: block !important; padding: 0; border-bottom: 1px solid var(--c-line); }
  .work-bar-left { display: flex; flex-direction: column; gap: 0; overflow: hidden; max-height: 48px; transition: max-height 0.3s ease; }
  .work-bar-left.is-open { max-height: 500px; }
  .wf { width: 100%; text-align: left; font-size: 11px; padding: 14px 20px; border: none; border-bottom: 1px solid var(--c-line) !important; border-radius: 0; display: flex !important; justify-content: space-between; align-items: center; }
  .wf.is-on { order: -1; color: var(--c-gold); border-color: var(--c-gold) !important; }
  .wf.is-on::after { content: '↓'; font-size: 12px; color: var(--c-muted); }
  .work-bar-left.is-open .wf.is-on::after { content: '↑'; }
  .work-count { display: none; }

  /* about section */
  .about-grid { grid-template-columns: 1fr !important; }
  .about-right { border-left: none !important; border-top: 1px solid var(--c-line); }

  /* process */
  .proc-grid { grid-template-columns: 1fr !important; }

  /* contact */
  .contact-grid { grid-template-columns: 1fr !important; }
  .contact-r { border-left: none !important; border-top: 1px solid var(--c-line); }

  /* project detail panel */
  .project-panel { left: 0 !important; right: 0 !important; top: 0 !important; bottom: 0 !important; width: 100vw !important; z-index: 400; }
  /* hero - text overlays photo */
  .pd-hero { height: 265px !important; overflow: hidden !important; position: relative !important; display: block !important; }
  .pd-hero-img { height: 100% !important; width: 100%; object-fit: cover; object-position: center 20%; position: absolute !important; inset: 0; }
  .pd-hero-overlay { display: block !important; position: absolute !important; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%, transparent 100%) !important; }
  .pd-hero-content { position: absolute !important; left: 16px !important; right: 16px !important; bottom: 16px !important; top: auto !important; padding: 0; background: none !important; z-index: 2; animation: none; }
  .pd-eyebrow { font-size: 8px; letter-spacing: 2px; margin-bottom: 4px; }
  .pd-title { font-size: 20px !important; letter-spacing: -0.3px; line-height: 1.15; color: #fff; margin-bottom: 0; }
  .pd-headline { display: none !important; }
  .pd-client-row { padding-top: 6px; margin-top: 6px; margin-bottom: 0; }
  .pd-top { grid-template-columns: 1fr !important; gap: 0; }
  .pd-meta-col { border-left: none !important; border-top: 1px solid var(--c-line); padding: 12px 16px; }
  .pd-related-row { grid-template-columns: repeat(2, 1fr) !important; }
  .pd-related { padding: 24px 16px; }
  .pd-summary-col { padding: 12px 16px 20px; border-right: none; border-bottom: 1px solid var(--c-line); }
  .pd-details-toggle { padding: 10px 14px; font-size: 9px; margin: 6px 0; }
  .pd-back { position: sticky !important; top: 0; left: 0; right: 0; width: 100%; font-size: 9px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.9); backdrop-filter: blur(8px); z-index: 10; }
}

@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr !important; }
  .work-card.is-mag { grid-column: span 1 !important; }
  .hero-h1 { font-size: 26px; }
  .pd-related-row { grid-template-columns: 1fr !important; }
}

/* body copy gets the softer grey */
p, .feat-desc, .about-body, .about-r-body, .pd-summary, .pd-result { color: #c8c8c8; }

/* ── SIDEBAR ── */
aside {
  width: var(--w-side);
  min-height: 100vh;
  position: fixed; top: 56px; left: 0;
  background: var(--c-s1);
  border-right: 1px solid var(--c-line);
  display: flex; flex-direction: column;
  z-index: 100;
  transform: translateX(0);
  transition: top 0.45s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1);
  overflow: visible;
}
aside.is-hidden {
  transform: translateX(-100%);
}
#sideToggle {
  position: fixed;
  left: 184px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 9999;
  background: #2a2a2a;
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  width: 6px;
  height: 28px;
  cursor: pointer;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: left 0.4s cubic-bezier(0.16,1,0.3,1), background 0.2s, opacity 0.8s ease;
}
#sideToggle::before {
  content: '';
  display: block;
  width: 1px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
}
#sideToggle:hover { background: rgba(255,255,255,0.15); opacity: 1 !important; }
#sideToggle:hover::before { background: rgba(255,255,255,0.2); }
@media (max-width: 768px) { #sideToggle { display: none; } }

.s-logo {
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--c-line);
}
.s-logo img {
  width: 80%;
  display: block;
  filter: invert(1);
  opacity: 0.92;
}

.s-nav {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 16px 16px;
  background: none; border: none;
  width: 100%; text-align: left;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-muted);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.14s, color 0.14s, padding-left 0.2s;
}
.s-nav.is-on { background: var(--c-s3); color: var(--c-text); padding-left: 20px; }
.s-nav.is-on:hover { background: rgba(255,255,255,0.05); padding-left: 22px; }
.s-nav.is-gold { background: var(--c-gold); color: var(--c-ink); font-weight: 700; padding-left: 16px; }
.s-nav.is-gold:hover { opacity: 0.9; padding-left: 20px; }
.s-nav.is-white { background: #fff; color: #000; font-weight: 700; padding-left: 16px; transition: background 0.2s, color 0.2s, padding-left 0.2s; }
.s-nav.is-white:hover { background: var(--c-gold); color: #fff; padding-left: 20px; }
.s-arrow { font-size: 12px; opacity: 0.5; }

/* sidebar progress dividers */
.s-nav-divider {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: var(--c-bg);
  border-bottom: none;
}
.s-nav-step {
  font-family: 'Unbounded', sans-serif;
  font-size: 8px; font-weight: 700;
  color: var(--c-dim); letter-spacing: 1px;
  flex-shrink: 0;
}
.s-nav-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, var(--c-dim), transparent);
}
.s-nav-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-gold); opacity: 0.5;
  flex-shrink: 0;
}

.s-issue {
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-line);
}
.s-issue-label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-muted); display: block; margin-bottom: 8px;
}
.s-issue-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px; font-weight: 900;
  letter-spacing: -1px; color: var(--c-gold); line-height: 1;
  display: block;
}
.s-issue-title {
  font-size: 11px; color: var(--c-muted);
  display: block; margin-top: 4px; line-height: 1.4;
}

.s-cta {
  margin-top: auto; flex: 1; min-height: 130px;
  background: var(--c-gold);
  border-top: 1px solid var(--c-line);
  position: relative; cursor: pointer;
  transition: background 0.2s, padding 0.2s;
  display: flex; flex-direction: column;
}
.s-cta:hover { background: #a50d24; }
.s-cta-arr { position: absolute; top: 16px; right: 16px; font-size: 18px; color: var(--c-ink); opacity: 0.4; }
.s-cta-inner { margin-top: auto; padding: 18px 16px; }
.s-cta-label { font-family: 'Unbounded', sans-serif; font-size: 13px; font-weight: 900; color: var(--c-ink); display: block; line-height: 1.2; letter-spacing: -0.3px; }
.s-cta-sub { font-size: 11px; color: rgba(0,0,0,0.55); display: block; margin-top: 6px; font-weight: 500; }

/* ── MAIN ── */
main { margin-left: var(--w-side); flex: 1; min-width: 0; }
.cap { font-family: 'Unbounded', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.eyebrow-short { display: none; }

/* partners modal */
.pm-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
}
.pm-box {
  position: relative; z-index: 1;
  background: var(--c-s1);
  border: 1px solid var(--c-line2);
  width: 90%; max-width: 640px;
  animation: fadeUp 0.3s both;
}
.pm-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--c-line);
}
.pm-close {
  background: none; border: none;
  color: var(--c-muted); font-size: 16px;
  cursor: pointer; transition: color 0.15s;
}
.pm-close:hover { color: #fff; }
.pm-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--c-line);
}
.partner-slot {
  background: #000;
  display: flex; align-items: center; justify-content: center;
  min-height: 140px; padding: 0; position: relative; overflow: hidden;
  font-family: 'Unbounded', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--c-muted);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.partner-slot:hover {
  transform: scale(1.03);
  box-shadow: 0 0 0 1px var(--c-gold);
  z-index: 1;
}
.partner-slot img {
  transition: opacity 0.2s ease;
}
.partner-pending { background: var(--c-s2) !important; cursor: pointer; }
.partner-pending:hover { transform: scale(1.03) !important; box-shadow: 0 0 0 1px var(--c-gold) !important; }
.pending-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.pending-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-gold);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}
.pending-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 8px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-muted);
}
.partner-slot:hover img {
  opacity: 0.85;
}
.partner-slot img { width: 100%; height: 100%; object-fit: cover; opacity: 1; position: absolute; inset: 0; }
.partner-slot {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--c-muted);
  border: 1px dashed var(--c-line2);
  padding: 16px 28px;
  opacity: 0.5;
}
.ft-mob { display: none; }
.ft-desk { display: inline; }
.eyebrow-full  { display: inline; }
.feat-row1-arrow { display: none; }

/* ── MOBILE FEAT SWITCHER ── */
.feat-mobile-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-s1);
}
.feat-mn-btn {
  width: 48px; height: 48px;
  background: none; border: none;
  color: var(--c-muted);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--c-line);
  transition: color 0.14s, background 0.14s;
  flex-shrink: 0;
}
.feat-mn-btn:last-child { border-right: none; border-left: 1px solid var(--c-line); }
.feat-mn-btn:active { background: var(--c-s2); color: var(--c-text); }
.feat-mn-label {
  flex: 1; text-align: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px; font-weight: 700;
  color: var(--c-text); letter-spacing: 0.3px;
  padding: 0 8px;
}
.feat-mn-count {
  font-size: 9px; color: var(--c-muted);
  font-weight: 400; margin-left: 6px;
}

/* ── HERO ── */
.hero {
  height: 380px;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1400&q=80&auto=format&fit=crop') center/cover no-repeat;
  filter: saturate(0.25) brightness(0.22);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  animation: fadeUp 0.8s both;
}
.hero-eyebrow {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--c-gold); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: nowrap; white-space: nowrap;
  overflow: hidden; max-width: 100%;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 24px; height: 1px; background: var(--c-gold); opacity: 0.5;
}
.hero-h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 52px; font-weight: 900;
  line-height: 1.0; letter-spacing: -2px;
  color: var(--c-text);
}
.hero-h1 em { font-style: normal; color: var(--c-gold); }
.hero-sub {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-top: 16px;
}
.hero-play {
  position: absolute; bottom: 20px; right: 20px;
  width: 32px; height: 32px;
  border: 1px solid var(--c-line2); border-radius: 50%;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-muted); font-size: 10px;
  transition: border-color 0.14s, color 0.14s;
}
.hero-play:hover { border-color: var(--c-gold); color: var(--c-gold); }

/* ── CASE STUDIES ── */
.feat-bar { background: var(--c-s1); border-bottom: 1px solid var(--c-line); }
.feat-row1 { padding: var(--sp-item) 24px; border-bottom: 1px solid var(--c-line); display: flex; align-items: center; justify-content: space-between; }
.feat-tabs { display: flex; border-bottom: 1px solid var(--c-line); overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.feat-tabs::-webkit-scrollbar { display: none; }
.feat-tab {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.35);
  padding: var(--sp-item) 24px;
  background: none; border: none;
  border-right: 1px solid var(--c-line);
  text-align: left;
  display: flex; align-items: center; gap: 10px;
  transition: background 0.12s, color 0.12s; line-height: 1;
  white-space: nowrap; cursor: pointer;
  flex: 0 0 auto;
  -webkit-tap-highlight-color: transparent;
}
.feat-tab:last-child { border-right: 1px solid var(--c-line); }
.feat-tab:hover { background: var(--c-s2); color: var(--c-text); }
.feat-tab.is-on { background: var(--c-s2); color: #fff; box-shadow: inset 0 -2px 0 var(--c-gold); }
.feat-tab .t-num { font-size: 10px; color: var(--c-dim); font-weight: 400; }

.feat-frame {
  height: 400px; position: relative; overflow: hidden;
  background: #000; cursor: pointer;
}
.feat-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: saturate(0.4) brightness(0.62);
  transition: filter 0.4s ease, transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.feat-frame:hover img { filter: saturate(0.9) brightness(0.88); transform: scale(1.025); }
.feat-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 36px;
}
.feat-info { flex: 1; }
.feat-issue { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--c-gold); margin-bottom: 6px; font-weight: 600; }
.feat-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.8px; color: #fff; line-height: 1.05;
}
.feat-desc { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 8px; max-width: 380px; line-height: 1.6; font-weight: 300; }
.feat-tag {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: #000;
  background: var(--c-gold);
  border: none;
  padding: 6px 12px; white-space: nowrap; align-self: flex-end;
  font-family: 'Unbounded', sans-serif; font-weight: 700;
}

/* ── WORK GRID ── */
.work-sec { background: var(--c-bg); border-top: 1px solid var(--c-line); }
.work-bar { padding: var(--sp-item) 24px; border-bottom: 1px solid var(--c-line); display: flex; align-items: center; justify-content: space-between; }
.work-bar-left { display: flex; gap: 6px; flex-wrap: wrap; }
.wf {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.5px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  background: none; color: rgba(255,255,255,0.65);
  transition: all 0.15s; cursor: pointer;
}
.wf:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); }
.wf.is-on { background: transparent; border-color: var(--c-gold); color: var(--c-gold); font-weight: 700; }
.work-count { font-size: 10px; color: var(--c-muted); }

/* dense editorial grid — 4 columns like their IG */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px; padding: 3px;
}
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(3,1fr); } }

.work-card {
  aspect-ratio: 1;
  position: relative; overflow: hidden;
  background: var(--c-s2); cursor: pointer;
}
.work-card.is-wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}
.work-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.55) brightness(0.88);
  transition: filter 0.4s, transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.work-card:hover img { filter: saturate(1) brightness(1); transform: scale(1.06); }
.work-card-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
  transition: background 0.28s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 11px;
}
.work-card:hover .work-card-over { background: rgba(10,10,10,0.62); }
.work-card-info { opacity: 1; transform: none; transition: all 0.22s; }
.work-card-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: -0.2px; color: #fff; line-height: 1.2;
}
.work-card-cat { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--c-gold); margin-top: 3px; }
.work-card.is-mag .work-card-cat { color: var(--c-gold); }
.mag-issue { color: var(--c-gold); }

/* mag-style card overlay (text heavy) */
.work-card.is-mag .work-card-over {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 40%, transparent 100%);
}
.work-card.is-mag:hover .work-card-over { background: linear-gradient(to top, rgba(0,0,0,0.96) 50%, rgba(0,0,0,0.2) 100%); }
.work-card.is-mag .work-card-info { opacity: 1; transform: none; }
.work-card.is-mag .work-card-name { font-size: 14px; }
.mag-issue { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: var(--c-gold); margin-bottom: 3px; display: block; }

/* ── ABOUT ── */
.about { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--c-line); }
.about-l {
  background: var(--c-s1); padding: var(--sp-section) 40px;
  border-right: 1px solid var(--c-line);
}
.about-h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px; font-weight: 900;
  letter-spacing: -1px; line-height: 1.1;
  color: var(--c-text); margin-bottom: var(--sp-block);
}
.about-h2 em { font-style: normal; color: var(--c-gold); }
.about-body { font-size: 13px; line-height: 1.75; color: var(--c-muted); max-width: 300px; font-weight: 300; }
.services { margin-top: var(--sp-block); border-top: 1px solid var(--c-line); }
.svc-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--c-line); font-size: 12px; color: var(--c-text); }
.svc-n { font-size: 9px; color: var(--c-dim); min-width: 18px; font-family: 'Unbounded', sans-serif; }
.svc-tag { margin-left: auto; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; background: rgba(212,168,67,0.08); color: var(--c-gold); border: 1px solid rgba(212,168,67,0.18); padding: 2px 7px; }

.about-r { background: var(--c-s2); padding: var(--sp-section) 40px; display: flex; flex-direction: column; justify-content: center; }
.about-h3 { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; color: var(--c-text); margin-bottom: 24px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-n { font-family: 'Unbounded', sans-serif; font-size: 40px; font-weight: 900; letter-spacing: -1.5px; line-height: 1; color: var(--c-gold); }
.stat-l { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #585858; margin-top: 5px; }
.about-r-pull { font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 700; color: #fff; line-height: 1.4; margin-top: var(--sp-block); padding-top: var(--sp-block); border-top: 1px solid var(--c-line); margin-bottom: 16px; letter-spacing: -0.3px; }
.about-r-body { font-size: 15px; line-height: 1.85; color: #e0e0e0; font-weight: 300; margin-top: 0; padding-top: 0; border-top: none; }

/* ── CONTACT ── */
.contact {
  background: var(--c-s2); border-top: 1px solid var(--c-line);
  padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.contact-h2 { font-family: 'Unbounded', sans-serif; font-size: 40px; font-weight: 900; letter-spacing: -1.5px; line-height: 1.0; color: var(--c-text); }
.contact-h2 em { font-style: normal; color: var(--c-gold); }
.contact-btn {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px; font-weight: 900;
  letter-spacing: 1px; text-transform: uppercase;
  background: var(--c-gold); color: var(--c-ink);
  border: none; padding: 18px 36px;
  white-space: nowrap; cursor: pointer;
  position: relative; overflow: hidden;
  transition: all 0.2s;
}
.contact-btn::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--c-ink);
  transition: width 0.25s ease;
}
.contact-btn:hover { background: #a50d24; padding-right: 44px; }
.contact-btn:hover::after { width: 100%; }

/* ── NARRATIVE ── */
.narrative-section {
  background: var(--c-s1);
  border-top: 1px solid var(--c-line);
  padding: 72px 48px;
}
.narrative-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; max-width: 100%;
}
.narrative-h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px; font-weight: 900;
  letter-spacing: -1.5px; line-height: 1.05;
  color: var(--c-text); margin-top: 16px;
}
.narrative-h2 em { font-style: normal; color: var(--c-gold); }
.narrative-body {
  font-size: 15px; line-height: 1.9;
  color: #e0e0e0;
  font-weight: 300;
  margin-top: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
}
.testimonials-header {
  padding: 24px 48px;
  border-bottom: 1px solid var(--c-line);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-bottom: 1px solid var(--c-line);
}
.testi-card {
  padding: 40px 36px;
  border-right: 1px solid var(--c-line);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px;
}
.testi-card:last-child { border-right: none; }
.testi-quote {
  font-size: 14px; line-height: 1.8;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  font-style: italic;
}
.testi-quote::before { content: '"'; color: var(--c-gold); font-size: 32px; font-style: normal; display: block; margin-bottom: 12px; font-family: 'Unbounded', sans-serif; line-height: 1; }
.testi-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--c-text); letter-spacing: -0.2px;
}
.testi-role {
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--c-muted);
  margin-top: 4px;
}

/* ── CONTACT FORM ── */
.contact-section {
  background: var(--c-s1);
  border-top: 1px solid var(--c-line);
  display: grid; grid-template-columns: 1fr 1fr;
}
.contact-left {
  padding: var(--sp-section) 48px;
  border-right: 1px solid var(--c-line);
}
.contact-h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px; font-weight: 900;
  letter-spacing: -1.5px; line-height: 1.0;
  color: var(--c-text); margin-bottom: 16px;
}
.contact-h2 em { font-style: normal; color: var(--c-gold); }
.contact-sub {
  font-size: 13px; color: var(--c-muted);
  font-weight: 300; line-height: 1.7;
  margin-bottom: var(--sp-block);
}
.contact-social { margin-top: var(--sp-section); padding-top: var(--sp-block); border-top: 1px solid var(--c-line); }
.social-links { display: flex; flex-direction: column; gap: 12px; }
.social-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.14s;
}
.social-link:hover { color: var(--c-gold); }
.social-link svg { flex-shrink: 0; }

.contact-right {
  padding: var(--sp-section) 48px;
  background: var(--c-s2);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.form-input {
  background: var(--c-s3);
  border: 1px solid var(--c-line2);
  color: var(--c-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 300;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--c-gold); }
.form-input::placeholder { color: var(--c-muted); }
.form-select {
  cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23585858' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-select option { background: #1c1c1c; color: #fff; }
.form-textarea {
  height: 120px; resize: vertical;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}
.form-submit {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px; font-weight: 900;
  letter-spacing: 1px; text-transform: uppercase;
  background: var(--c-gold); color: #000;
  border: none; padding: 16px 24px;
  cursor: pointer; align-self: flex-start;
  transition: background 0.15s;
  position: relative; overflow: hidden;
}
.form-submit:hover { background: #a50d24; }
.form-success {
  display: none; font-size: 12px;
  color: var(--c-gold); letter-spacing: 0.5px;
  padding: 12px 0;
}
.form-success.visible { display: block; }

/* ── FOOTER ── */
.site-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  padding: var(--sp-block) 48px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px; font-weight: 900;
  letter-spacing: -0.5px; color: var(--c-text);
}
.footer-sub {
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--c-muted);
  display: block; margin-top: 4px;
}
.footer-left { display: flex; flex-direction: column; }
.footer-center { display: flex; gap: 24px; }
.footer-link {
  font-size: 11px; color: var(--c-muted);
  text-decoration: none; cursor: pointer;
  transition: color 0.14s; letter-spacing: 0.5px;
}
.footer-link:hover { color: var(--c-text); }
.footer-copy { font-size: 10px; color: var(--c-dim); }

/* mobile responsive additions */
@media (max-width: 768px) {
  .narrative-inner { grid-template-columns: 1fr; gap: 32px; }
  .narrative-section { padding: 40px 24px; }
  .narrative-h2 { font-size: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card { border-right: none; border-bottom: 1px solid var(--c-line); padding: 28px 24px; }
  .testi-card:last-child { border-bottom: none; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 1px solid var(--c-line); padding: 32px 24px; }
  .contact-right { padding: 32px 24px; }
  .contact-h2 { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-header { padding: 16px 24px; }
  .site-footer { flex-direction: column; align-items: flex-start; padding: 24px; gap: 16px; }
  .footer-center { flex-wrap: wrap; gap: 16px; }
}

@keyframes fadeUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE — ≤768px
═══════════════════════════════════════ */
@media (max-width: 768px) {

  /* sidebar becomes top nav bar */
  body { flex-direction: column; }

  aside {
    width: 100%; min-height: auto;
    position: fixed; top: 0; left: 0; right: 0;
    flex-direction: row; align-items: center;
    height: 52px; z-index: 200;
    border-right: none;
    border-bottom: 1px solid var(--c-line);
  }

  .s-logo {
    padding: 0 14px;
    border-bottom: none;
    border-right: 1px solid var(--c-line);
    height: 52px;
    display: flex; align-items: center;
    flex-shrink: 0;
  }
  .s-logo img { width: 60px; }
  .s-logo-sub { display: none; }

  .s-nav {
    padding: 0 14px;
    height: 52px;
    border-bottom: none;
    border-right: 1px solid var(--c-line);
    width: auto; flex-shrink: 0;
    font-size: 11px;
  }
  .s-arrow { display: none; }

  .s-cta {
    flex: 1; min-height: auto; height: 52px;
    border-top: none;
    border-left: 1px solid var(--c-line);
    flex-direction: row; align-items: center;
  }
  .s-cta-arr { display: none; }
  .s-cta-inner {
    margin: 0; padding: 0 14px;
    display: flex; align-items: center; gap: 8px;
  }
  .s-cta-label { font-size: 10px; line-height: 1; }
  .s-cta-sub { display: none; }

  /* main shifts down below fixed top nav */
  main { margin-left: 0; padding-top: 0; }

  /* hero shrinks */
  .hero { height: 320px; margin-top: 52px; }
  .hero-h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-sub { font-size: 9px; letter-spacing: 2px; margin-top: 12px; }
  .hero-reel-label { display: none; }

  /* featured — collapsible (handled in primary block) */
  .feat-row1 { padding: 10px 16px; }
  .feat-frame { height: 280px; }
  .feat-title { font-size: 22px; letter-spacing: -0.5px; }
  .feat-desc { font-size: 11px; display: none; }
  .feat-grad { padding: 20px; }
  .feat-tag { font-size: 8px; padding: 4px 8px; }


  /* grid goes 2 columns */
  .work-grid { grid-template-columns: repeat(2,1fr); }

  /* about stacks */
  .about { grid-template-columns: 1fr; }
  .about-l { border-right: none; border-bottom: 1px solid var(--c-line); padding: 32px 24px; }
  .about-r { padding: 32px 24px; }
  .about-h2 { font-size: 26px; }
  .about-h3 { font-size: 18px; }
  .stat-n { font-size: 28px; }
  .about-body { max-width: 100%; }

  /* contact stacks */
  .contact { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
  .contact-h2 { font-size: 28px; letter-spacing: -1px; }
  .contact-btn { width: 100%; text-align: center; padding: 14px; }

  /* project detail panel — full width */
  .project-panel { left: 0 !important; right: 0 !important; top: 0 !important; bottom: 0 !important; width: 100vw !important; z-index: 400; }
  .pd-hero { height: auto; }
  .pd-title { font-size: 20px; letter-spacing: -0.3px; line-height: 1.15; }
  .pd-hero-content { position: relative; top: auto; bottom: auto; left: auto; right: auto; padding: 16px; }
  .pd-headline { display: none; }
  .pd-back { top: 0; left: 0; right: 0; width: 100%; font-size: 9px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .pd-top { grid-template-columns: 1fr; }
  .pd-summary-col { border-right: none; border-bottom: 1px solid var(--c-line); padding: 12px 16px 20px; }
  .pd-meta-col { padding: 24px 20px; }
  .pd-related { padding: 24px 20px; }
  .pd-related-grid { grid-template-columns: repeat(2,1fr); }
  .pd-title { font-size: 18px; }
  .pd-eyebrow { font-size: 8px; letter-spacing: 2px; margin-bottom: 6px; }
  .pd-client-row { padding-top: 8px; margin-top: 8px; margin-bottom: 6px; }
  .pd-client-label { font-size: 8px; }
  .pd-client-val { font-size: 11px; }
  .pd-details-toggle { padding: 10px 14px; font-size: 9px; }
  .pd-video-label-row { padding: 10px 16px; margin: 0 -16px; width: calc(100% + 32px); }
  .pd-meta-col { padding: 16px; }

  /* feat tabs on mobile — show as horizontal scroll */
}

@media (max-width: 480px) {
  .hero { height: 260px; }
  .hero-h1 { font-size: 28px; }
  .work-grid { grid-template-columns: repeat(2,1fr); gap: 1px; padding: 1px; }
  .feat-frame { height: 220px; }
  .s-nav.is-gold .s-arrow { display: none; }
}



/* ── INSIGHT PANEL ── */
#insightPanel { background: #0d0d0d !important; overflow-y: auto; }
.ip-bar {
  position: sticky; top: 0; z-index: 10;
  background: rgba(13,13,13,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 52px;
}
.ip-back { font-family:'Unbounded',sans-serif; font-size:9px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,0.45); background:none; border:none; cursor:pointer; transition:color 0.15s; }
.ip-back:hover { color:#fff; }
.ip-logo { font-family:'Unbounded',sans-serif; font-size:13px; font-weight:900; color:#fff; }
.ip-logo span { color:#C8102E; }
.ip-follow { font-family:'Unbounded',sans-serif; font-size:9px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:rgba(255,255,255,0.4); text-decoration:none; transition:color 0.15s; }
.ip-follow:hover { color:#fff; }

.ip-wrap { max-width: 640px; margin: 0 auto; padding: 32px 20px 80px; }

/* thread header */
.ip-thread-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.ip-thread-tabs { display: flex; gap: 32px; }
.ip-thread-tab { font-size: 15px; font-weight: 600; color: #fff; padding-bottom: 12px; border-bottom: 1.5px solid #fff; cursor: pointer; }
.ip-thread-tab.dim { color: rgba(255,255,255,0.35); border-color: transparent; font-weight: 400; }

/* post card */
.ip-post {
  display: flex; gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ip-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.ip-post-right { flex: 1; min-width: 0; }
.ip-post-top { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.ip-handle { font-size: 14px; font-weight: 600; color: #fff; }
.ip-time { font-size: 13px; color: rgba(255,255,255,0.35); }
.ip-text { font-size: 15px; color: #e0e0e0; line-height: 1.55; white-space: pre-line; }
.ip-text strong { color: #fff; }

/* stat card inside post */
.ip-stat-card {
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 20px;
  margin-top: 14px;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center;
}
.ip-stat-col { display: flex; flex-direction: column; gap: 4px; }
.ip-stat-label { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 500; }
.ip-stat-num { font-family:'Unbounded',sans-serif; font-size: 26px; font-weight: 900; color: #C8102E; line-height: 1; }
.ip-stat-sub { font-size: 11px; color: rgba(255,255,255,0.3); line-height: 1.4; }
.ip-stat-vs { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.25); text-align: center; }

/* actions */
.ip-actions { display: flex; gap: 20px; margin-top: 14px; }
.ip-action { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.35); cursor: pointer; transition: color 0.15s; background: none; border: none; }
.ip-action:hover { color: rgba(255,255,255,0.7); }

/* insight label */
.ip-insight-tag {
  display: inline-block; background: rgba(200,16,46,0.12);
  color: #C8102E; font-family:'Unbounded',sans-serif; font-size:8px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase; padding: 3px 10px; border-radius:4px;
  margin-bottom: 10px;
}

/* cta */
.ip-cta {
  margin-top: 40px; padding: 24px; background:#111;
  border: 1px solid rgba(255,255,255,0.08); border-radius:12px;
  display: flex; align-items: center; gap: 14px;
}
.ip-cta-avatar { width:44px; height:44px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.ip-cta-text { flex:1; }
.ip-cta-text p { font-size:13px; color:rgba(255,255,255,0.5); margin-bottom:6px; }
.ip-cta-btn {
  display:inline-block; background:#fff; color:#000;
  font-family:'Unbounded',sans-serif; font-size:10px; font-weight:700;
  letter-spacing:1px; text-transform:uppercase;
  padding: 10px 20px; text-decoration:none; border-radius:100px; transition:opacity 0.15s;
}
.ip-cta-btn:hover { opacity:0.85; }

@media (max-width:768px) {
  .ip-follow { display:none; }
  .ip-wrap { padding:24px 16px 60px; }
  .ip-stat-card { grid-template-columns:1fr; }
  .ip-stat-vs { text-align:left; }
}



/* === Lavanderlam Case Study Styles === */

    .cs-topbar { position:sticky;top:0;background:rgba(0,0,0,0.92);backdrop-filter:blur(12px);border-bottom:1px solid rgba(255,255,255,0.07);height:52px;display:flex;align-items:center;justify-content:space-between;padding:0 40px;z-index:10; }
    .cs-back { font-family:'Unbounded',sans-serif;font-size:9px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:#585858;background:none;border:none;cursor:pointer;transition:color 0.15s; }
    .cs-back:hover { color:#fff; }
    .cs-topbar-logo { font-family:'Unbounded',sans-serif;font-size:14px;font-weight:900; }
    .cs-topbar-tag { font-family:'Unbounded',sans-serif;font-size:9px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;background:#C8102E;color:#fff;padding:6px 14px; }
    .lav-hero { position:relative;height:100vh;overflow:hidden; }
    .lav-hero img { width:100%;height:100%;object-fit:cover;filter:brightness(0.35); }
    .lav-hero-overlay { position:absolute;inset:0;background:linear-gradient(to bottom,transparent 40%,rgba(0,0,0,0.95) 100%); }
    .lav-hero-content { position:absolute;bottom:60px;left:56px;right:56px; }
    .lav-hero-eye { font-family:'Unbounded',sans-serif;font-size:9px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:#C8102E;margin-bottom:12px; }
    .lav-hero-title { font-family:'Unbounded',sans-serif;font-size:52px;font-weight:900;letter-spacing:-2px;line-height:1.0; }
    .lav-hero-sub { margin-top:16px;font-size:14px;color:#c8c8c8;max-width:560px;line-height:1.8; }
    .lav-wrap { padding:0 56px 80px; }
    .lav-sec { padding:56px 0;border-bottom:1px solid rgba(255,255,255,0.06); }
    .lav-sec:last-child { border-bottom:none; }
    .lav-lbl { font-family:'Unbounded',sans-serif;font-size:8px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:#C8102E;display:block;margin-bottom:20px; }
    .lav-body { font-size:14px;color:#c8c8c8;line-height:1.9;max-width:700px; }
    .lav-full { margin:32px -56px 0; overflow:hidden; }
    .lav-full img { width:100%;height:600px;object-fit:cover;display:block;transition:transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
    .lav-full:hover img { transform:scale(1.02); }
    .lav-duo { display:grid;grid-template-columns:1fr 1fr;gap:4px;margin:4px -56px 0; }
    .lav-duo > div { overflow:hidden; }
    .lav-duo img { width:100%;height:480px;object-fit:cover;display:block;transition:transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
    .lav-duo > div:hover img { transform:scale(1.03); }
    .lav-trio { display:grid;grid-template-columns:repeat(3,1fr);gap:4px;margin:4px -56px 0; }
    .lav-trio > div { overflow:hidden; }
    .lav-trio img { width:100%;height:380px;object-fit:cover;display:block;transition:transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
    .lav-trio > div:hover img { transform:scale(1.03); }
    .lav-asymm { display:grid;grid-template-columns:1fr 1.5fr;gap:4px;margin:4px -56px 0; }
    .lav-asymm > div { overflow:hidden; }
    .lav-asymm img { width:100%;height:520px;object-fit:cover;display:block;transition:transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
    .lav-asymm > div:hover img { transform:scale(1.03); }
    .lav-caption { font-family:'Unbounded',sans-serif;font-size:7px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#585858;margin-top:16px; }
    .lav-quote { font-family:'Unbounded',sans-serif;font-size:24px;font-weight:900;line-height:1.4;color:#fff;max-width:680px;margin:0 0 24px;letter-spacing:-0.5px; }
    .lav-quote span { color:#C8102E; }
    .cs-cta-bar { background:#0d0d0d;border-top:1px solid rgba(255,255,255,0.06);padding:32px 56px;display:flex;align-items:center;justify-content:space-between; }
    .cs-cta-text { font-family:'Unbounded',sans-serif;font-size:18px;font-weight:900;color:#fff; }
    .cs-cta-btn { font-family:'Unbounded',sans-serif;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;background:#C8102E;color:#fff;border:none;padding:14px 28px;cursor:pointer; }
    @media(max-width:768px){ .lav-hero-title{font-size:32px;} .lav-hero-content{left:24px;right:24px;bottom:40px;} .lav-wrap{padding:0 24px 60px;} .lav-full,.lav-duo,.lav-trio,.lav-asymm{margin-left:-24px;margin-right:-24px;} .lav-duo,.lav-trio,.lav-asymm{grid-template-columns:1fr;} .lav-full img{height:380px;} .lav-duo img,.lav-asymm img{height:300px;} .lav-trio img{height:260px;} .cs-cta-bar{flex-direction:column;gap:16px;padding:24px;} }
  

/* ── PROJECT DETAIL PANEL ── */
.project-panel {
  position: fixed;
  top: 0; left: var(--w-side); right: 0; bottom: 0;
  background: var(--c-bg);
  z-index: 300;
  transition: left 0.4s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.project-panel.is-open { transform: translateX(0); }

/* hero */
.pd-hero {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #000;
}
.pd-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.55);
  transition: filter 0.4s;
  background: #111;
}
.pd-hero:hover .pd-hero-img { filter: saturate(0.7) brightness(0.65); }
.pd-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.pd-hero-content {
  position: absolute; bottom: 16px; left: 40px; right: 280px;
  animation: fadeUp 0.5s both;
}
.pd-eyebrow {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 12px;
}
.pd-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px; font-weight: 900;
  letter-spacing: -1.5px; color: #fff;
  line-height: 1.0; margin-bottom: 10px;
}
.pd-headline {
  font-size: 14px; color: rgba(255,255,255,0.55);
  line-height: 1.65; max-width: 500px; font-weight: 300;
  margin-bottom: 20px;
}
.pd-client-row {
  display: flex; align-items: center; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 10px;
  margin-bottom: 10px;
}
.pd-client-label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-muted);
}
.pd-client-val {
  font-size: 12px; color: var(--c-text); font-weight: 500;
}
.pd-back {
  position: sticky; top: 0; left: 0;
  display: flex; align-items: center;
  width: 100%;
  font-size: 10px; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px;
  transition: color 0.14s;
  white-space: nowrap;
  z-index: 10;
}
.pd-back:hover { color: var(--c-gold); border-color: var(--c-gold); }

/* body */
.pd-body { padding: 0; }

/* details toggle */
.pd-details-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; cursor: pointer;
  border: 1px solid var(--c-gold);
  font-family: 'Unbounded', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--c-gold);
  margin: 4px 0 8px;
  transition: opacity 0.15s;
}
.pd-details-toggle:hover { opacity: 0.75; }
.pd-details-arrow { transition: transform 0.25s; }
.pd-details-toggle.is-open .pd-details-arrow { transform: rotate(180deg); }
.pd-details-toggle.is-open + .pd-details-body { max-height: 600px; opacity: 1; }
.pd-details-body { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease; }

/* grab grid */
.pd-grab-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
  margin-top: 3px;
}
.pd-grab-item {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: var(--c-s2); cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pd-grab-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.pd-grab-item:hover { transform: scale(1.02); box-shadow: 0 0 0 1.5px var(--c-gold); z-index: 1; }
.pd-grab-item:hover img { transform: scale(1.05); }
.pd-grab-dl {
  position: absolute; bottom: 6px; right: 6px;
  background: rgba(0,0,0,0.75); color: #fff;
  font-family: 'Unbounded', sans-serif; font-size: 8px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 10px; text-decoration: none;
  opacity: 0; transition: opacity 0.2s;
}
.pd-grab-item:hover .pd-grab-dl { opacity: 1; }
.pd-top {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 0;
  border-bottom: 1px solid var(--c-line);
}
.pd-summary-col {
  padding: 0 40px 0;
  border-right: 1px solid var(--c-line);
}
.pd-section-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 14px; display: block;
}
.pd-summary {
  font-size: 14px; line-height: 1.8;
  color: #c8c8c8;
  font-weight: 300; max-width: 560px;
}
.pd-result-box {
  margin-top: var(--sp-block); padding: 20px;
  background: var(--c-s2);
}
.pd-result {
  font-size: 13px; line-height: 1.7;
  color: rgba(240,237,230,0.65); font-weight: 300;
}

/* video sits inside summary col right after results */
.pd-video-section {
  border-top: 1px solid var(--c-line);
  margin-top: 0;
  margin-bottom: 0;
}
.pd-video-label-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 0;
}
.pd-video-tabs { display: flex; gap: 16px; }
.pd-vtab {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px; font-weight: 700;
  color: var(--c-muted); cursor: pointer;
  transition: color 0.14s;
}
.pd-vtab.is-on { color: #fff; }
.pd-vtab:hover { color: rgba(255,255,255,0.7); }
.pd-video-frame {
  position: relative; width: 100%;
  padding-bottom: 56.25%;
  background: #000; overflow: hidden;
}
.pd-video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background: #0a0a0a;
}
.pd-video-play {
  width: 52px; height: 52px;
  border: 1px solid var(--c-line2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--c-muted);
}
.pd-video-coming {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--c-muted);
}

.pd-meta-col {
  padding: var(--sp-section) 28px;
  display: flex; flex-direction: column; gap: var(--sp-block);
}
.pd-meta-block {}
.pd-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.pd-list li {
  font-size: 12px; color: var(--c-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--c-line);
  display: flex; align-items: center; gap: 8px;
  font-weight: 300;
}
.pd-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--c-gold);
  border-radius: 50%; flex-shrink: 0;
}

.pd-cta-block {
  margin-top: auto;
  padding: 20px;
  background: var(--c-s2);
  border: 1px solid var(--c-line);
}
.pd-cta-btn {
  font-size: 11px; font-weight: 900;
  letter-spacing: 1px; text-transform: uppercase;
  background: var(--c-gold); color: var(--c-ink);
  border: none; padding: 14px 18px;
  width: 100%;
  font-family: 'Unbounded', sans-serif;
  transition: background 0.2s; cursor: pointer;
}
.pd-cta-btn:hover { background: #d4112a; }

/* related section */
.pd-related { padding: var(--sp-section) 40px; border-top: 1px solid var(--c-line); }
.pd-related-header { margin-bottom: 24px; }

/* horizontal card row like MasterClass */
.pd-related-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.pd-rel-card {
  position: relative; cursor: pointer;
  background: var(--c-s2);
  border-radius: 4px; overflow: hidden;
  transition: transform 0.2s;
}
.pd-rel-card:hover { transform: translateY(-3px); }
.pd-rel-num {
  position: absolute; top: 10px; left: 10px;
  width: 26px; height: 26px;
  background: var(--c-gold); color: #000;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px; font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.pd-rel-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pd-rel-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.5) brightness(0.8);
  transition: filter 0.3s, transform 0.4s;
}
.pd-rel-card:hover .pd-rel-img-wrap img {
  filter: saturate(0.9) brightness(1);
  transform: scale(1.04);
}
.pd-rel-info {
  padding: 12px;
  background: var(--c-s2);
}
.pd-rel-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px; font-weight: 700;
  color: #fff; line-height: 1.3;
  letter-spacing: -0.2px;
}
.pd-rel-cat {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-gold); margin-top: 4px;
}