/* =====================================================
   ELITE MEDIA GROUP | Main Stylesheet v3.0
   Monochrome — Black / White / Grays
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* =====================================================
   1. DESIGN TOKENS
   ===================================================== */
:root {
  /* EMG Brand Colors — Monochrome */
  --cream:       #FFFFFF;
  --cream-deep:  #F5F5F5;
  --navy:        #0A0A0A;
  --navy-mid:    #141414;
  --navy-light:  #1F1F1F;
  --gold:        #1A1A1A;
  --gold-light:  #555555;
  --gold-dark:   #111111;
  --gold-glow:   rgba(0, 0, 0, 0.07);
  --charcoal:    #222222;
  --slate:       #666666;
  --mist:        #C8C8C8;
  --fog:         #F0F0F0;

  /* Aliases */
  --black:       #0A0A0A;
  --white:       #FFFFFF;
  --gray-950:    #0A0A0A;
  --gray-900:    #141414;
  --gray-800:    #1F1F1F;
  --gray-750:    #2A2A2A;
  --gray-700:    #333333;
  --gray-600:    #555555;
  --gray-500:    #777777;
  --gray-400:    #999999;
  --gray-300:    #BBBBBB;
  --gray-200:    #D5D5D5;
  --gray-100:    #EEEEEE;
  --accent:      #1A1A1A;
  --accent-light:#555555;
  --accent-dark: #0A0A0A;
  --accent-glow: rgba(0, 0, 0, 0.07);

  /* Typography */
  --f-display: 'Plus Jakarta Sans', 'Helvetica Neue', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;

  /* Fluid type scale */
  --t-hero:    clamp(52px, 8.5vw, 140px);
  --t-display: clamp(40px, 6vw, 100px);
  --t-h1:      clamp(32px, 4.8vw, 76px);
  --t-h2:      clamp(24px, 3.6vw, 56px);
  --t-h3:      clamp(20px, 2.6vw, 38px);
  --t-h4:      clamp(17px, 1.9vw, 25px);
  --t-lg:      clamp(16px, 1.4vw, 20px);
  --t-base:    16px;
  --t-sm:      14px;
  --t-xs:      12px;
  --t-label:   11px;

  /* Spacing */
  --s-section: clamp(80px, 12vw, 180px);
  --s-px:      clamp(20px, 5vw, 80px);
  --s-card:    clamp(24px, 3vw, 48px);

  /* Container widths */
  --w-max:    1440px;
  --w-wide:   1280px;
  --w-reg:    1100px;
  --w-narrow: 760px;

  /* Easing */
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart:  cubic-bezier(0.25, 1, 0.5, 1);
  --ease-inout:  cubic-bezier(0.87, 0, 0.13, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Durations */
  --d-fast:   0.2s;
  --d-med:    0.5s;
  --d-slow:   0.9s;
  --d-slower: 1.4s;

  /* Border radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 9999px;

  /* Z-index */
  --z-base:   0;
  --z-raised: 10;
  --z-overlay:100;
  --z-sticky: 200;
  --z-nav:    500;
  --z-cursor: 1000;
  --z-loader: 2000;
}

/* =====================================================
   1b. DARK-CONTEXT COLOR OVERRIDES
   On dark backgrounds the accent becomes light gray so
   elements using var(--gold) remain legible.
   ===================================================== */
.section--dark,
.footer,
.loader,
.page-transition,
.mobile-menu,
.hero-split__right,
.revenue-callout,
.emg-work,
.ticker,
.ticker__track {
  --gold:      #AAAAAA;
  --gold-light:#CCCCCC;
  --gold-dark: #888888;
  --gold-glow: rgba(255, 255, 255, 0.08);
  --cream:     #FFFFFF;
}

/* =====================================================
   1c. LOGO IMAGE STYLES
   ===================================================== */

/* Nav (white bg): logo2.png has white background — matches naturally */
.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer (dark bg): logo.png has black background — matches naturally */
.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Loader (dark bg): logo.png has black background — matches naturally */
.loader__logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* =====================================================
   2. RESET
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-loading { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
::selection { background: var(--navy); color: var(--cream); }

/* =====================================================
   3. TYPOGRAPHY
   ===================================================== */
.t-hero    { font-size: var(--t-hero);    font-family: var(--f-display); font-weight: 800; line-height: 0.93; letter-spacing: -0.04em; }
.t-display { font-size: var(--t-display); font-family: var(--f-display); font-weight: 800; line-height: 0.95; letter-spacing: -0.035em; }
.t-h1      { font-size: var(--t-h1);      font-family: var(--f-display); font-weight: 700; line-height: 1.02; letter-spacing: -0.03em; }
.t-h2      { font-size: var(--t-h2);      font-family: var(--f-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
.t-h3      { font-size: var(--t-h3);      font-family: var(--f-display); font-weight: 600; line-height: 1.2;  letter-spacing: -0.015em; }
.t-h4      { font-size: var(--t-h4);      font-family: var(--f-display); font-weight: 600; line-height: 1.3;  letter-spacing: -0.01em; }
.t-lg      { font-size: var(--t-lg);      line-height: 1.65; }
.t-sm      { font-size: var(--t-sm);      line-height: 1.6; }
.t-xs      { font-size: var(--t-xs);      line-height: 1.5; letter-spacing: 0.02em; }
.t-label   { font-size: var(--t-label);   line-height: 1.4; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }

.text-accent  { color: var(--gold); }
.text-muted   { color: var(--slate); }
.text-center  { text-align: center; }
.text-balance { text-wrap: balance; }
.font-light   { font-weight: 300; }
.font-medium  { font-weight: 500; }

/* =====================================================
   4. LAYOUT
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--s-px);
}
.container--wide   { max-width: var(--w-wide); }
.container--reg    { max-width: var(--w-reg); }
.container--narrow { max-width: var(--w-narrow); }

.section { padding: var(--s-section) 0; }
.section--dark  { background: var(--navy); color: var(--cream); }
.section--mid   { background: var(--navy-mid); color: var(--cream); }
.section--card  { background: var(--cream-deep); }
.section--fog   { background: var(--fog); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 32px); }

.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }

.gap-4  { gap: 16px; }
.gap-6  { gap: 24px; }
.gap-8  { gap: 32px; }
.gap-12 { gap: 48px; }

.w-full { width: 100%; }

/* =====================================================
   5. LOADER
   ===================================================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.loader__logo {
  font-family: var(--f-display);
  font-size: clamp(14px, 2.5vw, 22px);
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
}
.loader__logo span { color: var(--gold); }
.loader__progress {
  width: clamp(160px, 30vw, 280px);
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.loader__progress-bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}
.loader__count {
  font-family: var(--f-display);
  font-size: var(--t-sm);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  position: absolute;
  bottom: 40px;
  right: var(--s-px);
}
.loader__curtain {
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(0);
  z-index: 1;
}
.loader.is-complete .loader__curtain {
  transform: translateY(-100%);
  transition: transform 0.9s var(--ease-expo);
}

/* =====================================================
   6. CUSTOM CURSOR
   ===================================================== */
.cursor { display: none; }
.cursor__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--navy);
  position: fixed;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: var(--z-cursor);
  transition: width 0.3s var(--ease-expo), height 0.3s var(--ease-expo), opacity 0.3s ease;
}
.cursor__ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.35);
  position: fixed;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: var(--z-cursor);
  transition: width 0.4s var(--ease-expo), height 0.4s var(--ease-expo), border-color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}
.cursor__ring.cursor--hover {
  width: 60px; height: 60px;
  border-color: var(--gold);
}
.cursor__ring.cursor--text {
  width: 90px; height: 90px;
  background: var(--navy);
  border-color: transparent;
}
.cursor__dot.cursor--text { opacity: 0; }
.cursor__label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.cursor__ring.cursor--text .cursor__label { opacity: 1; }

/* =====================================================
   7. PAGE TRANSITION
   ===================================================== */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-loader) - 1);
  background: var(--navy);
  transform: translateY(100%);
  pointer-events: none;
}
.page-transition.is-leaving {
  transform: translateY(0);
  transition: transform 0.6s var(--ease-expo);
}

/* =====================================================
   8. NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 18px var(--s-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: padding 0.4s var(--ease-expo), box-shadow 0.4s ease;
}
.nav.is-scrolled {
  padding: 12px var(--s-px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav__logo {
  display: flex;
  align-items: center;
  z-index: 10;
  flex-shrink: 0;
  gap: 0;
}
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav__logo-text {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.nav__logo-text span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  position: relative;
  transition: color 0.3s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-expo);
}
.nav__link:hover { color: var(--navy); }
.nav__link:hover::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.35s var(--ease-expo);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.btn--outline {
  border: 1.5px solid rgba(0,0,0,0.25);
  color: var(--navy);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-glow);
}
.btn--outline-light {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--cream);
}
.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(26,26,26,0.08);
}
.btn--ghost { color: var(--charcoal); }
.btn--ghost:hover { color: var(--navy); }
.btn--lg { padding: 16px 40px; font-size: var(--t-base); }
.btn__icon {
  width: 18px; height: 18px;
  transition: transform 0.3s var(--ease-expo);
}
.btn:hover .btn__icon { transform: translate(3px, -3px); }

/* Language switcher */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__lang-btn {
  background: none;
  border: none;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--slate);
  cursor: pointer;
  padding: 4px 2px;
  transition: color 0.25s ease;
}
.nav__lang-btn.is-active,
.nav__lang-btn:hover { color: var(--navy); }
.nav__lang-sep {
  font-size: 10px;
  color: var(--mist);
  pointer-events: none;
}

/* Nav dark context (for hero right panel / dark sections) */
.nav--dark-context .nav__logo-text { color: var(--cream); }
.nav--dark-context .nav__link { color: rgba(255,255,255,0.7); }
.nav--dark-context .nav__link:hover { color: var(--cream); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 10;
}
.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.4s var(--ease-expo);
  transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__link {
  font-family: var(--f-display);
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.5);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s ease, transform 0.3s var(--ease-expo);
  display: block;
  overflow: hidden;
}
.mobile-menu__link:hover { color: var(--cream); transform: translateX(12px); }
.mobile-menu__footer {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu__socials { display: flex; gap: 20px; }
.mobile-menu__social {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}
.mobile-menu__social:hover { color: var(--gold); }

/* =====================================================
   9. HERO SPLIT — EMG Version
   ===================================================== */
.hero-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 100vh;
  position: relative;
}

.hero-split__left {
  background: var(--cream);
  padding: clamp(120px, 16vw, 200px) var(--s-px) clamp(60px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-split__label {
  font-size: var(--t-label);
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-split__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-split__headline {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--navy);
  max-width: 14ch;
  margin-bottom: 32px;
}
.hero-split__headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-split__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--slate);
  max-width: 44ch;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-split__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-split__right {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero-split__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-split__right-deco {
  position: absolute;
  inset: 0;
}

.hero-split__right-year {
  font-family: var(--f-display);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  line-height: 1;
  position: absolute;
  bottom: -20px;
  right: -10px;
  user-select: none;
}

.hero-split__right-content {
  position: relative;
  z-index: 2;
}

.hero-split__est {
  font-size: var(--t-label);
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.hero-split__right-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 18ch;
}

.hero-split__divider {
  display: none;
}

.hero-split__scroll {
  position: absolute;
  bottom: 40px;
  left: var(--s-px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: var(--t-label);
  letter-spacing: 0.14em;
  color: var(--mist);
}
.hero-split__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--mist));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.4; }
}

.hero-split__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  margin-top: 56px;
}
.hero-split__stat {
  background: var(--cream);
  padding: 24px 20px;
  text-align: center;
}
.hero-split__stat-num {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-split__stat-num em {
  font-style: normal;
  color: var(--gold);
  font-size: 0.75em;
}
.hero-split__stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
}

/* =====================================================
   10. TEXT TICKER
   ===================================================== */
.text-ticker {
  background: var(--navy);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0;
}
.text-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tickerScroll 35s linear infinite;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.text-ticker__item {
  font-family: var(--f-display);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 32px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 32px;
}
.text-ticker__sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* =====================================================
   11. LOGO CAROUSEL
   ===================================================== */
.logo-carousel-section {
  padding: var(--s-section) 0;
  background: #FFFFFF;
  overflow: hidden;
}
.logo-carousel-label {
  text-align: center;
  font-size: var(--t-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 48px;
}
.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoScroll 70s linear infinite;
  margin-bottom: 24px;
}
.logo-track--reverse { animation-direction: reverse; }
@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-track__item {
  height: clamp(44px, 5vw, 72px);
  width: auto;
  max-width: 160px;
  padding: 0 32px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.logo-track__item:hover { opacity: 1; }

/* Text marquee for clients */
.client-marquee {
  overflow: hidden;
  padding: 20px 0;
}
.client-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.client-marquee--reverse .client-marquee__track {
  animation-direction: reverse;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-marquee__item {
  font-family: var(--f-display);
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(0,0,0,0.25);
  padding: 0 32px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: color 0.3s ease;
}
.client-marquee__item:hover { color: var(--navy); }
.client-marquee__sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.5;
}

/* =====================================================
   12. SECTION HEADERS
   ===================================================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 6vw, 80px);
  gap: 32px;
}
.section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-label);
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section--dark .section-tag { color: var(--gold); }
.section--dark .section-tag::before { background: var(--gold); }

.section-link {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.section-link:hover { color: var(--gold-dark); }
.section-link svg { transition: transform 0.3s var(--ease-expo); }
.section-link:hover svg { transform: translate(3px, -3px); }
.section--dark .section-link { color: rgba(255,255,255,0.45); }
.section--dark .section-link:hover { color: var(--gold); }

/* =====================================================
   13. ABOUT / VALUE STATEMENT
   ===================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split__visual {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--navy-mid);
  border-radius: 2px;
  overflow: hidden;
}
.about-split__year-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 20px;
  text-align: center;
}
.about-split__year-badge strong {
  display: block;
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-split__year-badge span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* =====================================================
   14. SERVICES ACCORDION
   ===================================================== */
.svc-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.svc-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  overflow: hidden;
}
.svc-header {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 3vw, 32px) 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.svc-header:hover .svc-name { color: var(--gold-dark); }
.svc-num {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.svc-name {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  transition: color 0.3s ease;
}
.svc-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 300;
  color: var(--navy);
  transition: all 0.35s var(--ease-expo);
  line-height: 1;
}
.svc-item.is-open .svc-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
  transform: rotate(45deg);
}
.svc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-expo);
}
.svc-item.is-open .svc-body { max-height: 300px; }
.svc-body-inner {
  padding: 0 0 32px 76px;
  font-size: var(--t-base);
  color: var(--slate);
  line-height: 1.75;
  max-width: 62ch;
}

/* Dark section service list variant */
.section--dark .svc-list {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.section--dark .svc-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.section--dark .svc-name { color: var(--cream); }
.section--dark .svc-icon {
  border-color: rgba(255,255,255,0.2);
  color: var(--cream);
}
.section--dark .svc-item.is-open .svc-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.section--dark .svc-body-inner { color: rgba(255,255,255,0.6); }

/* Old svc-card-grid kept for compatibility */
.svc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.svc-card {
  background: var(--cream-deep);
  border: 1px solid rgba(0,0,0,0.08);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-md);
  transition: all 0.4s var(--ease-expo);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.svc-card:hover .svc-card__icon {
  background: var(--gold-glow);
  border-color: rgba(26,26,26,0.25);
}
.svc-card__title {
  font-family: var(--f-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--navy);
}
.svc-card__desc {
  font-size: var(--t-sm);
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap 0.3s ease;
}
.svc-card:hover .svc-card__link { gap: 10px; }

/* =====================================================
   14b. AGENCY SPLIT — Index homepage agency section
   ===================================================== */
.agency-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.agency-split__img { overflow: hidden; border-radius: 2px; }
.agency-split__img img { width: 100%; height: 520px; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .agency-split { grid-template-columns: 1fr; }
  .agency-split__img { order: -1; }
  .agency-split__img img { height: 300px; }
}

/* =====================================================
   15. WORK / PORTFOLIO — Editorial EMG
   ===================================================== */
.emg-work {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.emg-work-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(380px, 45vw, 600px);
  overflow: hidden;
  position: relative;
  cursor: none;
}
.emg-work-item:nth-child(even) { direction: rtl; }
.emg-work-item:nth-child(even) > * { direction: ltr; }

.emg-work-item__visual {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.emg-work-item__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-quart);
}
.emg-work-item:hover .emg-work-item__visual img { transform: scale(1.04); }

.emg-work-item__visual-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.emg-work-item__visual-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  font-family: var(--f-display);
  font-size: 120px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.emg-work-item__content {
  background: var(--cream-deep);
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.emg-work-item:nth-child(odd) .emg-work-item__content { background: var(--cream-deep); }
.emg-work-item:nth-child(even) .emg-work-item__content { background: var(--fog); }

.emg-work-item__tag {
  font-size: var(--t-label);
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.emg-work-item__tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.emg-work-item__title {
  font-family: var(--f-display);
  font-size: clamp(24px, 3.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 20px;
}
.emg-work-item__desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--slate);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: 32px;
}
.emg-work-item__quote {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 24px;
  font-size: var(--t-sm);
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
}
.emg-work-item__quote-author {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.emg-work-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap 0.3s ease, color 0.3s ease;
}
.emg-work-item__cta:hover { gap: 14px; color: var(--gold-dark); }
.emg-work-item__status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: rgba(26,26,26,0.12);
  border: 1px solid rgba(26,26,26,0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

/* Old work-grid kept for portfolio page */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
}
.work-card {
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
  cursor: none;
}
.work-card--span-7 { grid-column: span 7; }
.work-card--span-5 { grid-column: span 5; }
.work-card--span-8 { grid-column: span 8; }
.work-card--span-4 { grid-column: span 4; }
.work-card--span-6 { grid-column: span 6; }

.work-card__visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.work-card--tall .work-card__visual { aspect-ratio: 3/4; }
.work-card--wide .work-card__visual { aspect-ratio: 16/9; }

.work-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-quart);
}
.work-card:hover .work-card__img { transform: scale(1.05); }

.work-card__thumb {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.8s var(--ease-quart);
}
.work-card:hover .work-card__thumb { transform: scale(1.03); }

.work-card__mockup {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-card);
}
.work-card:hover .work-card__overlay { opacity: 1; }
.work-card__info {
  padding: 20px var(--s-card);
  background: var(--cream-deep);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.work-card__category {
  font-size: var(--t-label);
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.work-card__title {
  font-family: var(--f-display);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.work-card__arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: all 0.3s var(--ease-expo);
  color: var(--navy);
}
.work-card:hover .work-card__arrow {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

/* Mock backgrounds for portfolio */
.mock-bg-1 { background: linear-gradient(135deg, #E8E5DD 0%, #F0EDE6 50%, #E2DFDA 100%); }
.mock-bg-2 { background: linear-gradient(135deg, #EAE7DF 0%, #F2EFE8 50%, #E4E1D9 100%); }
.mock-bg-3 { background: linear-gradient(135deg, #E5E2DA 0%, #EDEAD3 50%, #DFE0D8 100%); }
.mock-bg-4 { background: linear-gradient(135deg, #E8E3DC 0%, #EEEAE3 50%, #E2DDD7 100%); }
.mock-bg-5 { background: linear-gradient(135deg, #EBE8DF 0%, #F2EFE8 50%, #E5E2DA 100%); }
.mock-bg-6 { background: linear-gradient(135deg, #E6E3DB 0%, #ECEAE2 50%, #E0DDD8 100%); }

.mock-screen {
  width: 80%;
  aspect-ratio: 16/10;
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
}
.mock-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24px;
  background: var(--fog);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mock-screen::after {
  content: '';
  position: absolute;
  top: 8px; left: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  box-shadow: 12px 0 0 rgba(0,0,0,0.08), 24px 0 0 rgba(0,0,0,0.06);
}
.mock-content {
  position: absolute;
  top: 24px; left: 0; right: 0; bottom: 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow: hidden;
}
.mock-bar { height: 7px; border-radius: 4px; background: rgba(0,0,0,0.06); }
.mock-bar--accent { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); width: 60%; }
.mock-bar--short { width: 40%; }
.mock-bar--medium { width: 70%; }
.mock-bar--wide { width: 90%; }

/* =====================================================
   15b. IMAGE MARQUEE — Two-row infinite scroll ticker
   ===================================================== */
.img-marquee {
  overflow: hidden;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 3px 0;
}
.img-marquee__row {
  display: flex;
  gap: 3px;
  width: max-content;
}
.img-marquee__row--fwd {
  animation: marquee-fwd 36s linear infinite;
}
.img-marquee__row--rev {
  animation: marquee-rev 40s linear infinite;
}
.img-marquee:hover .img-marquee__row { animation-play-state: paused; }
.img-marquee__item {
  width: 320px;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}
.img-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.img-marquee__row:hover .img-marquee__item:hover img { transform: scale(1.06); }

@keyframes marquee-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

@media (max-width: 768px) {
  .img-marquee__item { width: 220px; height: 160px; }
}
@media (max-width: 480px) {
  .img-marquee__item { width: 150px; height: 110px; }
}

/* =====================================================
   16. STATS (Revenue callout style)
   ===================================================== */
.revenue-callout {
  padding: var(--s-section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}
.revenue-callout__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(100px, 20vw, 280px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.revenue-callout__label {
  font-size: var(--t-label);
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
}
.revenue-callout__num {
  font-family: var(--f-display);
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--cream);
  position: relative;
}
.revenue-callout__num em {
  color: var(--gold);
  font-style: normal;
  font-size: 0.55em;
}
.revenue-callout__desc {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.55);
  max-width: 52ch;
  margin: 20px auto 48px;
  line-height: 1.7;
}
.revenue-callout__stats {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 100px);
  flex-wrap: wrap;
}
.revenue-stat__val {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}
.revenue-stat__val em {
  color: var(--gold);
  font-style: normal;
  font-size: 0.65em;
}
.revenue-stat__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

/* Horizontal stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}
.stat-item {
  padding: clamp(32px, 5vw, 64px) clamp(24px, 4vw, 48px);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 1s var(--ease-expo);
}
.stat-item.is-visible::before { width: 100%; }
.stat-value {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.stat-suffix {
  font-size: 0.5em;
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  font-size: var(--t-sm);
  color: var(--slate);
  letter-spacing: 0.04em;
}
.stat-sub { font-size: var(--t-xs); color: var(--mist); margin-top: 4px; }

/* =====================================================
   17. PROCESS GRID
   ===================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.process-item {
  padding: clamp(40px, 5vw, 64px);
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.process-item:hover { background: var(--navy-light); }
.process-num {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s ease;
}
.process-item:hover .process-num { color: rgba(26,26,26,0.15); }
.process-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.process-desc {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 42ch;
}

/* =====================================================
   18. TESTIMONIALS
   ===================================================== */
.testimonials { position: relative; overflow: hidden; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.testi-card {
  background: var(--cream-deep);
  border: 1px solid rgba(0,0,0,0.07);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-md);
  position: relative;
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s ease;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testi-star {
  width: 14px; height: 14px;
  color: var(--gold);
}
.testi-quote {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-quote::before { content: '\201C'; color: var(--gold); font-size: 1.4em; font-style: normal; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: var(--t-sm);
  color: var(--navy);
  margin-bottom: 2px;
}
.testi-role { font-size: 12px; color: var(--slate); }

/* Testimonial slider variant */
.testimonial-slider { position: relative; }
.testimonial-slide { display: none; animation: fadeInUp 0.6s var(--ease-expo) forwards; }
.testimonial-slide.is-active { display: block; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testimonial-quote {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 40px;
  font-style: italic;
  max-width: 68ch;
}
.testimonial-quote::before { content: '\201C'; color: var(--gold); font-size: 1.3em; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid rgba(26,26,26,0.2);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
}
.testimonial-name { font-weight: 600; font-size: var(--t-base); color: var(--cream); margin-bottom: 2px; }
.testimonial-role { font-size: var(--t-sm); color: rgba(255,255,255,0.45); }
.testimonial-controls { display: flex; align-items: center; gap: 12px; margin-top: 48px; }
.testimonial-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}
.testimonial-btn:hover { border-color: var(--gold); color: var(--gold); }
.testimonial-dots { display: flex; gap: 6px; margin-left: 8px; }
.testimonial-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}
.testimonial-dot.is-active {
  width: 24px;
  border-radius: 2px;
  background: var(--gold);
}

/* =====================================================
   19. FAQ
   ===================================================== */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question-text {
  font-family: var(--f-display);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
  transition: all 0.35s var(--ease-expo);
  color: var(--navy);
}
.faq-item.is-open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-expo);
}
.faq-item.is-open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  font-size: var(--t-base);
  color: var(--slate);
  line-height: 1.75;
  padding-bottom: 24px;
  max-width: 70ch;
}

/* Dark section FAQ */
.section--dark .faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.section--dark .faq-question-text { color: var(--cream); }
.section--dark .faq-icon { border-color: rgba(255,255,255,0.2); color: var(--cream); }
.section--dark .faq-item.is-open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.section--dark .faq-answer-inner { color: rgba(255,255,255,0.55); }
.section--dark .faq-question:hover { color: var(--gold); }

/* =====================================================
   20. BLOG CARDS
   ===================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.blog-card { display: flex; flex-direction: column; }
.blog-card__img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--cream-deep);
  margin-bottom: 20px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
}
.blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-quart); }
.blog-card:hover .blog-card__img { transform: scale(1.05); }
.blog-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.blog-card__category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(26,26,26,0.25);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.blog-card__title {
  font-family: var(--f-display);
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--navy);
  transition: color 0.3s ease;
  flex: 1;
}
.blog-card:hover .blog-card__title { color: var(--gold-dark); }
.blog-card__meta { display: flex; align-items: center; gap: 12px; font-size: var(--t-xs); color: var(--slate); }
.blog-card__meta-sep { width: 2px; height: 2px; border-radius: 50%; background: var(--mist); }
.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: 14px;
  transition: gap 0.3s ease;
}
.blog-card:hover .blog-card__read-more { gap: 10px; }

/* =====================================================
   21. CTA BANNER
   ===================================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(80px, 12vw, 160px) var(--s-px);
  background: var(--navy);
  color: var(--cream);
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.cta-banner__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(26,26,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner__pre {
  font-size: var(--t-label);
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.cta-banner__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 6vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--cream);
  max-width: 20ch;
  margin: 0 auto 20px;
}
.cta-banner__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.55);
  max-width: 44ch;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-banner__group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =====================================================
   22. FOOTER
   ===================================================== */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(64px, 10vw, 120px) 0 40px;
  position: relative;
  overflow: hidden;
}
.footer__bg-text {
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: var(--f-display);
  font-size: clamp(80px, 20vw, 280px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
}
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: clamp(48px, 7vw, 80px);
}
.footer__brand {}
.footer__logo {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-block;
  margin-bottom: 20px;
}
.footer__logo-img { height: 44px; width: auto; display: block; margin-bottom: 20px; }
.footer__logo span { color: var(--gold); }
.footer__tagline {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 32ch;
  margin-bottom: 28px;
}
.footer__contact-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer__contact-item { display: flex; align-items: center; gap: 10px; }
.footer__contact-icon { color: var(--gold); flex-shrink: 0; }
.footer__contact-link {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease;
}
.footer__contact-link:hover { color: var(--cream); }
.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}
.footer__social:hover { border-color: var(--gold); color: var(--gold); }
.footer__col-title {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}
.footer__link:hover { color: var(--cream); }
.footer__newsletter {}
.footer__newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.footer__newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-pill);
  color: var(--cream);
  font-size: var(--t-sm);
  transition: border-color 0.3s ease;
}
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.footer__newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
}
.footer__newsletter-btn {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--r-pill);
  font-size: var(--t-sm);
  font-weight: 700;
  transition: background 0.3s ease, transform 0.3s ease;
}
.footer__newsletter-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal-link {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.28);
  transition: color 0.3s ease;
}
.footer__legal-link:hover { color: rgba(255,255,255,0.6); }

/* =====================================================
   23. MARQUEE (generic)
   ===================================================== */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 16px 0;
  background: var(--cream-deep);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-size: var(--t-label);
  letter-spacing: 0.14em;
  color: var(--slate);
  white-space: nowrap;
}
.marquee__item--large {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.1);
  padding: 0 48px;
}
.marquee__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* =====================================================
   24. CAREERS TEASER
   ===================================================== */
.careers-teaser {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: var(--navy);
}
.careers-teaser__bg { position: absolute; inset: 0; }
.careers-teaser__bg-accent {
  position: absolute;
  top: -20%; right: -10%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,26,26,0.05) 0%, transparent 70%);
  filter: blur(60px);
}
.careers-teaser__content { position: relative; z-index: 1; max-width: 700px; }
.careers-teaser__perks { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 40px; }
.perk-tag {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}
.perk-tag:hover { border-color: rgba(26,26,26,0.25); color: var(--gold); }

/* =====================================================
   25. CONTACT FORM
   ===================================================== */
.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-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-input, .form-textarea {
  padding: 14px 18px;
  background: var(--cream-deep);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--r-md);
  color: var(--navy);
  font-size: var(--t-base);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(26,26,26,0.1);
}
.form-textarea { resize: vertical; min-height: 140px; }

/* =====================================================
   26. REEL / VIDEO SECTION
   ===================================================== */
.reel-section {
  padding: var(--s-section) 0;
  background: var(--navy);
  text-align: center;
  color: var(--cream);
}
.reel-section__inner { }
.reel-label {
  font-size: var(--t-label);
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 16px;
}
.reel-title {
  font-family: var(--f-display);
  font-size: clamp(24px, 3.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--cream);
  max-width: 24ch;
  margin: 0 auto 48px;
}
.reel-player {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-mid);
}
.reel-player__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
}
.reel-play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring), background 0.3s ease;
}
.reel-player:hover .reel-play-btn { transform: scale(1.1); }
.reel-player__text {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

/* =====================================================
   27. PORTFOLIO PAGE SPECIFICS
   ===================================================== */
.work-filter {
  display: flex;
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 0;
  position: sticky;
  top: 64px;
  z-index: 90;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
}
.work-filter::-webkit-scrollbar { display: none; }
.work-filter__btn {
  flex: 1;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 20px 20px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.work-filter__count {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  color: rgba(0,0,0,0.07);
  transition: color 0.35s ease;
  line-height: 1;
}
.work-filter__btn.is-active .work-filter__count { color: var(--navy); }
.work-filter__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color 0.35s ease;
}
.work-filter__btn.is-active .work-filter__label { color: var(--navy); }
.work-filter__btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.45s var(--ease-expo);
  transform-origin: left;
}
.work-filter__btn.is-active::after { transform: scaleX(1); }

.work-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.work-stat {
  background: var(--cream);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.work-stat__num {
  font-family: var(--f-display);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
}
.work-stat__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
}

/* Portfolio page item image grid */
.port-item__img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%; height: 100%;
  gap: 2px;
}
.port-item__img-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* =====================================================
   28. SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-expo), transform 0.75s var(--ease-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.75s var(--ease-expo), transform 0.75s var(--ease-expo);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.75s var(--ease-expo), transform 0.75s var(--ease-expo);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.75s var(--ease-expo), transform 0.75s var(--ease-expo);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* =====================================================
   29. HERO (legacy) — kept for interior pages
   ===================================================== */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__atmosphere {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,26,26,0.04) 0%, transparent 60%),
              radial-gradient(ellipse 100% 100% at 50% 50%, rgba(0,0,0,0.6) 0%, var(--navy) 100%);
}
.hero__grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grainShift 0.8s steps(2) infinite;
  pointer-events: none;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-5%, -10%); }
  50%  { transform: translate(-10%, 5%); }
  75%  { transform: translate(5%, -5%); }
  100% { transform: translate(-5%, 10%); }
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 30%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--s-px) clamp(40px, 6vw, 60px);
  color: var(--cream);
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-label);
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.16em;
}
.hero__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--f-display);
  font-size: var(--t-hero);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.hero__title-line { display: block; }
.hero__title-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.hero__sub {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 36px;
  gap: 40px;
}
.hero__desc {
  font-size: var(--t-lg);
  color: rgba(255,255,255,0.6);
  max-width: 36ch;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
}
.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(20px);
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: var(--s-px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  font-size: var(--t-label);
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__letterbox-top,
.hero__letterbox-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}
.hero__letterbox-top { top: 0; background: linear-gradient(to bottom, var(--navy), transparent); }
.hero__letterbox-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
  height: 200px;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
  pointer-events: none;
}
.hero__orb--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,26,26,0.04) 0%, transparent 70%);
  top: -80px; right: -80px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,47,69,0.2) 0%, transparent 70%);
  bottom: 0; left: 0;
  animation-delay: -6s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(24px, -24px) scale(1.08); }
}

/* Services list (detailed page) */
.services-list { display: flex; flex-direction: column; }
.service-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: start;
  gap: 32px;
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  cursor: default;
  transition: all 0.4s var(--ease-expo);
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,26,0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-item:hover::before { opacity: 1; }
.service-item:hover { padding-left: 16px; }
.service-num {
  font-family: var(--f-display);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 6px;
}
.service-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  transition: color 0.3s ease;
}
.service-item:hover .service-title { color: var(--charcoal); }
.service-desc {
  font-size: var(--t-sm);
  color: var(--slate);
  line-height: 1.7;
  max-width: 40ch;
  margin-top: 8px;
  display: none;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; display: none; }
.service-tag {
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(0,0,0,0.1);
  font-size: var(--t-xs);
  color: var(--slate);
}
.service-item:hover .service-desc { display: block; }
.service-item:hover .service-tags { display: flex; }
.service-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.service-item:hover .service-icon {
  background: var(--gold-glow);
  border-color: rgba(26,26,26,0.2);
}

/* =====================================================
   30. PRICING
   ===================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
}
.pricing-card {
  background: var(--cream-deep);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  transition: background 0.3s ease, transform 0.4s var(--ease-expo);
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(0,0,0,0.08);
  transition: background 0.3s ease;
}
.pricing-card--featured { background: var(--cream); }
.pricing-card--featured::before { background: var(--gold); }
.pricing-card:hover { background: var(--cream); transform: translateY(-4px); }
.pricing-card:hover::before { background: var(--gold); }
.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: rgba(26,26,26,0.1);
  border: 1px solid rgba(26,26,26,0.2);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pricing-tier { font-family: var(--f-display); font-size: var(--t-h4); font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.pricing-desc { font-size: var(--t-sm); color: var(--slate); margin-bottom: 28px; line-height: 1.6; }
.pricing-price { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.pricing-amount {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-currency { font-size: 0.5em; font-weight: 500; color: var(--slate); align-self: flex-start; padding-top: 8px; }
.pricing-period { font-size: var(--t-sm); color: var(--slate); margin-top: 4px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--t-sm);
  color: var(--charcoal);
  line-height: 1.4;
}
.pricing-feature__check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(26,26,26,0.1);
  border: 1px solid rgba(26,26,26,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold-dark);
  font-size: 9px;
}
.pricing-feature--muted { color: var(--mist); }
.pricing-feature--muted .pricing-feature__check {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
  color: var(--mist);
}

/* =====================================================
   31. RESULTS PROOF GALLERY
   ===================================================== */
.results-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.results-proof__card {
  background: var(--cream-deep);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s ease;
}
.results-proof__card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.results-proof__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-dark);
  padding: 12px 16px 8px;
}
.results-proof__card img {
  width: 100%;
  height: auto;
  display: block;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.results-proof__stat {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  padding: 8px 16px 14px;
}
.results-proof__stat span { color: var(--navy); font-weight: 700; }

/* =====================================================
   32. LOGO WALL (text-based for EMG clients section)
   ===================================================== */
.logos-section { padding: var(--s-section) 0; }
.logos-header { text-align: center; margin-bottom: 48px; }
.logos-marquee-wrap { overflow: hidden; }
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.logo-item:hover { opacity: 0.7; }
.logo-item svg, .logo-item img {
  height: clamp(24px, 3vw, 36px);
  width: auto;
  filter: grayscale(100%) brightness(0);
}
.logo-text {
  font-family: var(--f-display);
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  white-space: nowrap;
}

/* =====================================================
   33. CASE STUDY INNER PAGE
   ===================================================== */
.case-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.case-hero__imgs {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.case-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}
.case-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%);
}
.case-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--s-px) 64px;
  color: var(--cream);
}
.case-meta-bar {
  background: var(--cream-deep);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.case-meta-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
}
.case-meta-item {
  padding: 28px var(--s-px);
  background: var(--cream-deep);
}
.case-meta-item__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.case-meta-item__value {
  font-family: var(--f-display);
  font-size: var(--t-h4);
  font-weight: 700;
  color: var(--navy);
}

/* =====================================================
   34. RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split__right {
    min-height: 300px;
  }
  .hero-split__video { object-position: center center; }
  .hero-split__stats { grid-template-columns: repeat(3, 1fr); }

  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .emg-work-item { grid-template-columns: 1fr; direction: ltr !important; }
  .emg-work-item:nth-child(even) { direction: ltr; }
  .emg-work-item:nth-child(even) > * { direction: ltr; }

  .process-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .results-proof__grid { grid-template-columns: repeat(2, 1fr); }
  .work-stats { grid-template-columns: repeat(2, 1fr); }
  .case-meta-bar__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 12px var(--s-px); }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__lang { display: none; }

  .hero-split__left { padding-top: 100px; padding-bottom: 48px; }
  .hero-split__right { min-height: 260px; }
  .hero-split__stats { grid-template-columns: 1fr 1fr 1fr; gap: 1px; }
  .hero-split__stat-num { font-size: 22px; }
  .hero-split__stat-label { font-size: 9px; }

  .svc-header { grid-template-columns: 36px 1fr auto; gap: 16px; }
  .svc-body-inner { padding-left: 52px; }

  .emg-work-item { min-height: auto; }
  .emg-work-item__content { padding: 32px 24px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .results-proof__grid { grid-template-columns: 1fr; }
  .work-stats { grid-template-columns: repeat(2, 1fr); }

  .footer__main { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .logo-track__item { padding: 0 20px; }

  .hero-split__scroll { display: none; }
  .case-meta-bar__inner { grid-template-columns: 1fr 1fr; }
  .case-hero__imgs { grid-template-columns: repeat(2, 1fr); }

  .work-grid { grid-template-columns: 1fr; }
  .work-card--span-4,
  .work-card--span-5,
  .work-card--span-6,
  .work-card--span-7,
  .work-card--span-8 { grid-column: span 1; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-split__left { padding-top: 80px; padding-bottom: 40px; }
  .hero-split__stats { grid-template-columns: 1fr 1fr; gap: 2px; }
  .hero-split__stat { display: flex; flex-direction: column; align-items: center; }
  .hero-split__headline { font-size: 38px; }
  .hero-split__sub { font-size: 15px; }
  .hero-split__ctas { flex-direction: column; align-items: stretch; }
  .hero-split__ctas .btn { width: 100%; justify-content: center; }

  .section { padding: clamp(56px, 10vw, 80px) 0; }

  .emg-work-item__content { padding: 28px 20px; }
  .emg-work-item__visual { min-height: 240px; }

  .agency-split__img img { height: 220px; }

  .about-photo-strip { grid-template-columns: 1fr 1fr; height: 180px; }

  .svc-detail-header { grid-template-columns: 40px 1fr auto; gap: 12px; }
  .svc-detail-name { font-size: 18px; }

  .footer__main { gap: 28px; }
  .footer__newsletter-form { flex-direction: column; gap: 8px; }
  .footer__newsletter-input { border-radius: 6px; }
  .footer__newsletter-btn { border-radius: 6px; width: 100%; padding: 12px; }

  .cta-banner__group { flex-direction: column; align-items: stretch; }
  .cta-banner__group .btn { width: 100%; justify-content: center; }

  .img-marquee__item { width: 150px; height: 110px; }
  .img-marquee { gap: 2px; padding: 2px 0; }

  .revenue-callout__stats { gap: 20px; }

  .testi-card { padding: clamp(24px, 5vw, 40px); }
  .cap-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .page-hero__title { font-size: clamp(36px, 10vw, 56px); }
}

/* =====================================================
   35. UTILITIES
   ===================================================== */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.no-scroll { overflow: hidden; }
.pointer-none { pointer-events: none; }

/* =====================================================
   36. PORTFOLIO ITEM (legacy port-item)
   ===================================================== */
.port-item {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
  cursor: none;
}
.port-item__visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--navy-mid);
}
.port-item--tall .port-item__visual { aspect-ratio: 3/4; }
.port-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-quart);
}
.port-item:hover .port-item__img { transform: scale(1.04); }
.port-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: var(--s-card);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream);
}
.port-item:hover .port-item__overlay { opacity: 1; }
.port-item__info {
  padding: 16px var(--s-card);
  border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--cream-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.port-item__cat {
  font-size: var(--t-label);
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.port-item__name {
  font-family: var(--f-display);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.port-item__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.port-item__tag {
  padding: 3px 10px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 11px;
  color: var(--slate);
}
.port-item__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.port-item:hover .port-item__arrow {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

/* =====================================================
   37. INTERIOR PAGE HERO
   ===================================================== */
.page-hero {
  position: relative;
  padding: clamp(140px, 20vw, 220px) 0 clamp(60px, 8vw, 100px);
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(26,26,26,0.04) 0%, transparent 60%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
}
.page-hero__subtitle {
  font-size: var(--t-label);
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero__subtitle::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}
.page-hero__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.93;
  color: var(--cream);
  max-width: 18ch;
  margin-bottom: 24px;
}
.page-hero__desc {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.65);
  max-width: 50ch;
  line-height: 1.7;
}
.page-hero .text-accent { color: rgba(255,255,255,0.75); }

/* =====================================================
   38. CONTACT PAGE
   ===================================================== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}
.contact-info {
  position: sticky;
  top: 100px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.contact-info-value {
  font-family: var(--f-display);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.contact-info-link {
  transition: color 0.3s ease;
}
.contact-info-link:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--cream);
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--r-lg);
}
.contact-form-wrap .t-h3 { color: var(--navy); }

.form-select {
  padding: 14px 18px;
  background: var(--cream-deep);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--r-md);
  color: var(--navy);
  font-size: var(--t-base);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232C3A4A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(26,26,26,0.1);
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(26,26,26,0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin: 0 auto 20px;
}
.form-success__title {
  font-family: var(--f-display);
  font-size: var(--t-h3);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-success__desc { font-size: var(--t-base); color: var(--slate); line-height: 1.7; }

.map-placeholder {
  position: relative;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-placeholder__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.map-placeholder__pin {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}
