/* ============================================================
   AE PRODUCTION — Main Stylesheet
   Fonts: Gotham Bold (local) / Montserrat fallback + DM Sans (300, 400, 500)
   Brand Colors: #0173BD / #000000 / #DAD7D5
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #000000;
  --dark:    #0D0D0D;
  --mid:     #161616;
  --surface: #1E1E1E;
  --border:  #2A2A2A;
  --gray:    #555555;
  --warm:    #DAD7D5;
  --blue:    #0173BD;
  --blue-dk: #015fa0;
  --white:   #FFFFFF;

  --font-display: 'Gotham', 'Montserrat', Arial, sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-h: 72px;
  --container: 1240px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--warm);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── Typography ───────────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  transition: all 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-ghost {
  background: transparent;
  color: rgba(218,215,213,0.65);
  border: 1px solid rgba(218,215,213,0.2);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-large {
  font-size: 0.82rem;
  padding: 1.1rem 2.75rem;
}

.btn-phone {
  background: transparent;
  color: var(--warm);
  border: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0;
  transition: color 0.2s;
}
.btn-phone:hover { color: var(--white); }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav.scrolled {
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 75px;
  width: auto;
  mix-blend-mode: lighten;
}
/* Fallback text if logo image missing */
.nav-logo-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text em {
  font-style: normal;
  color: var(--blue);
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
}

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem clamp(2rem, 8vw, 5rem);
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.nav-mobile.open { transform: none; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  color: var(--white);
  line-height: 1.15;
}
.nav-mobile a:hover { color: var(--blue); }
.nav-mobile-phone {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm);
  letter-spacing: 0.05em;
}
.nav-close {
  position: absolute;
  top: 2rem; right: 2rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.2s;
}
.nav-close:hover { color: var(--white); }

/* Services dropdown (desktop) */
.nav-has-dropdown { position: relative; }
.nav-caret {
  display: inline-block;
  margin-left: 0.35em;
  font-size: 0.7em;
  opacity: 0.65;
  transition: transform 0.2s ease;
}
.nav-has-dropdown:hover .nav-caret,
.nav-has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(6px);
  min-width: 240px;
  margin: 0;
  padding: 0.5rem 0;
  background: var(--dark);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 210;
}
/* invisible bridge so the menu doesn't close in the gap */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -8px; left: 0; right: 0; height: 8px;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li { display: block; }
.nav-dropdown a {
  display: block;
  padding: 0.65rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--warm);
}
.nav-dropdown a:hover { color: var(--blue); background: var(--mid); }

/* Services sub-links (mobile drawer) */
.nav-mobile-sub {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0.25rem 0 0.5rem 0.2rem;
  padding-left: 1.1rem;
  border-left: 1px solid var(--border);
}
.nav-mobile .nav-mobile-sub a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm);
  line-height: 1.3;
}
.nav-mobile .nav-mobile-sub a:hover { color: var(--blue); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.5) 45%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem) clamp(4rem, 8vw, 6rem);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.75rem, 9vw, 9.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-phone-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--warm);
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
  transition: color 0.2s;
}
.hero-phone-link:hover { color: var(--white); }

/* ── Proof Bar ────────────────────────────────────────────── */
.proof-bar {
  background: var(--mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.proof-bar-inner span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
}
.proof-bar-inner .dot { color: var(--blue); }
.proof-bar-inner .highlight {
  color: var(--warm);
}

/* ── Reel Section ─────────────────────────────────────────── */
.reel-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.reel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.reel-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  color: var(--white);
  line-height: 1.1;
}
.reel-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  overflow: hidden;
}
.reel-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.reel-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--surface);
  color: var(--gray);
}
.reel-placeholder span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.play-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--blue);
  margin-left: 4px;
}
.reel-cta {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.reel-cta-copy {
  font-size: 0.85rem;
  color: rgba(218,215,213,0.5);
}

/* ── Work Grid ────────────────────────────────────────────── */
.featured-work { border-bottom: 1px solid var(--border); }
.work-grid-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  background: var(--border);
  border: 1px solid var(--border);
}
.work-card--large {
  grid-column: auto;
}

.work-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 6;
  background: var(--mid);
}

.vimeo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--gray);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  transition: background 0.3s;
}
.work-card:hover .vimeo-placeholder { background: var(--mid); }

.work-card-media iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.work-card-info {
  background: var(--dark);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.work-client {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
}
.work-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.work-type {
  font-size: 0.68rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  margin-left: auto;
}

/* Featured-work supporting lede */
.section-lede {
  margin-top: 1rem;
  max-width: 520px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--warm);
}

/* Placeholder work card (e.g. Apple F1 — video pending) */
.work-card--placeholder .work-card-media {
  background: var(--surface);
}
.work-card-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--surface);
}
.work-card-placeholder-logo {
  width: clamp(90px, 12vw, 140px);
  height: auto;
  opacity: 0.35;
}
.work-card-placeholder-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── Brands ───────────────────────────────────────────────── */
.brands {
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
  background: var(--dark);
}
.brands-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  margin-bottom: 2.5rem;
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 3.5rem;
}
.brands-grid span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(218,215,213,0.3);
  transition: color 0.2s;
}
.brands-grid span:hover { color: var(--warm); }

/* ── What We Do ───────────────────────────────────────────── */
.what-we-do-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.what-we-do-text .section-title { margin-bottom: 1.25rem; }
.what-we-do-text p {
  color: rgba(218,215,213,0.55);
  max-width: 40ch;
  line-height: 1.8;
}

.services-list {
  display: flex;
  flex-direction: column;
}
.services-list li {
  display: flex;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}
.services-list li:first-child { border-top: 1px solid var(--border); }
.svc-num {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--blue);
  padding-top: 6px;
  flex-shrink: 0;
  width: 2.5rem;
}
.services-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.services-list p {
  font-size: 1rem;
  color: rgba(218,215,213,0.55);
  line-height: 1.7;
}

/* ── Inline CTA Strip ─────────────────────────────────────── */
.cta-strip {
  background: var(--blue);
  padding: 2.5rem 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  line-height: 1.15;
}
.cta-strip-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.35rem;
}
.cta-strip .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  flex-shrink: 0;
}
.cta-strip .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ── Testimonial / Statement ──────────────────────────────── */
.statement {
  padding: clamp(5rem, 9vw, 8rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.statement-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.statement-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  max-width: 760px;
  color: var(--warm);
}

/* About — "We Are" rotating headline */
.about-we-are .page-title {
  color: var(--blue);
}
.rotator-word {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.rotator-word.is-fading {
  opacity: 0;
  transform: translateY(0.25em);
}

/* About — positioning body copy */
.about-positioning-body {
  max-width: 820px;
  margin-top: 2.5rem;
}
.about-positioning-body p {
  margin-bottom: 1.25rem;
}

/* ── Final CTA Section ────────────────────────────────────── */
.cta-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  border-top: 1px solid var(--border);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
/* About / Services / Work CTA: center the contact block */
.cta-inner .cta-contact-details {
  align-items: center;
  text-align: center;
}
.cta-contact-details a {
  font-size: 0.88rem;
  color: rgba(218,215,213,0.5);
  transition: color 0.2s;
}
.cta-contact-details a:hover { color: var(--warm); }
.cta-contact-details .cta-phone {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--white);
  font-weight: 400;
}
.cta-contact-details .cta-phone:hover { color: var(--blue); }
/* Keep CTA buttons styled as buttons, not as faded text links */
.cta-contact-details a.btn {
  font-size: 0.78rem;
  color: var(--white);
  align-self: center;
}
.cta-contact-details a.btn:hover { color: var(--white); }

/* ── Homepage CTA + Form ──────────────────────────────────── */
.cta-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.cta-section-left .section-title { margin-bottom: 2rem; }
.cta-section-left .cta-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0;
}

@media (max-width: 960px) {
  .cta-section-inner { grid-template-columns: 1fr; }
}

/* ── Page Header (inner pages) ───────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem)) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.page-subtitle {
  font-size: 1rem;
  color: rgba(218,215,213,0.5);
  max-width: 50ch;
}

/* Video hero (services + service detail pages) */
.page-header--video {
  position: relative;
  overflow: hidden;
  border-bottom: none;
  min-height: clamp(440px, 62vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.page-header--video > .container { position: relative; z-index: 2; width: 100%; }
.page-header-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 0;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.25) 100%
  );
}

/* ── Filter Bar ───────────────────────────────────────────── */
.filter-bar {
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  position: sticky;
  top: var(--nav-h);
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 50;
}
.filter-bar-inner {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0.5rem 1.25rem;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.filter-btn:hover { color: var(--warm); }
.filter-btn.active {
  color: var(--blue);
  border-color: var(--blue);
}

/* ── Work Archive Grid ────────────────────────────────────── */
.work-archive { border-bottom: 1px solid var(--border); }
.work-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem clamp(1.5rem, 3vw, 2.5rem);
}
.archive-media {
  position: relative;
  aspect-ratio: 16 / 7;
  background: var(--surface);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.archive-media iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.archive-info {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Services Page ────────────────────────────────────────── */
.svc-primary { border-bottom: 1px solid var(--border); }
.svc-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-block:first-child { border-top: 1px solid var(--border); }
.svc-block-num {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--blue);
  padding-top: 8px;
}
.svc-block-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.svc-block-body p {
  color: rgba(218,215,213,0.5);
  max-width: 60ch;
  line-height: 1.8;
}

.svc-specialty {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.svc-specialty-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.svc-specialty-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.svc-specialty-list li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.svc-specialty-list li p {
  font-size: 0.88rem;
  color: rgba(218,215,213,0.45);
  line-height: 1.75;
}

.tech-section { border-bottom: 1px solid var(--border); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.tech-item {
  background: var(--dark);
  padding: 2rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(218,215,213,0.85);
  transition: background 0.2s, color 0.2s;
}
.tech-item:hover { background: var(--surface); color: var(--white); }

/* ── About Page ───────────────────────────────────────────── */
.about-story { border-bottom: 1px solid var(--border); }
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.img-placeholder {
  aspect-ratio: 4 / 5;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.about-story-text .lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.about-story-text p {
  color: rgba(218,215,213,0.5);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-stats {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stat {
  background: var(--dark);
  padding: 3rem 2rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.about-diff { border-bottom: 1px solid var(--border); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem clamp(2rem, 4vw, 4rem);
  margin-top: 3rem;
}
.diff-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.diff-item p {
  font-size: 0.86rem;
  color: rgba(218,215,213,0.45);
  line-height: 1.75;
}

.about-awards { border-bottom: 1px solid var(--border); padding: clamp(4rem, 7vw, 6rem) 0; }
.awards-list {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
  margin-top: 2rem;
}
.award-item strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-section { border-bottom: 1px solid var(--border); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.5rem;
}
.contact-info-block .section-label { margin-bottom: 0.5rem; }
.contact-info-block a,
.contact-info-block address {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.5;
  transition: color 0.2s;
}
.contact-info-block a:hover { color: var(--blue); }
.contact-info-phone {
  font-size: 1.6rem !important;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--dark);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-bottom: 3rem;
}
.footer-brand .nav-logo {
  margin-bottom: 1rem;
  display: inline-flex;
}
.footer-brand p {
  font-size: 0.83rem;
  color: rgba(218,215,213,0.62);
  line-height: 1.75;
  max-width: 30ch;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(218,215,213,0.72);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact a {
  font-size: 0.85rem;
  color: rgba(218,215,213,0.72);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom span,
.footer-bottom address {
  font-size: 0.7rem;
  color: rgba(218,215,213,0.85);
  letter-spacing: 0.06em;
}

/* ── Work Card Video & Play Button ───────────────────────── */
.work-card-media video,
.archive-media video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.work-card-play,
.archive-card .work-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.25s;
  cursor: pointer;
  z-index: 2;
}
.work-card:hover .work-card-play,
.archive-card:hover .work-card-play {
  background: rgba(0,0,0,0.35);
}
.work-card-play .play-icon,
.archive-card .work-card-play .play-icon {
  width: 64px; height: 64px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.25s, transform 0.25s, background 0.25s;
  background: rgba(1,115,189,0.6);
}
.work-card:hover .work-card-play .play-icon,
.archive-card:hover .work-card-play .play-icon {
  opacity: 1;
  transform: scale(1);
  background: rgba(1,115,189,0.85);
}
.work-card-play .play-icon::after,
.archive-card .work-card-play .play-icon::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid white;
  margin-left: 4px;
}

/* ── Vimeo Lightbox ───────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  width: 90vw;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
}
.lightbox-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
  line-height: 1;
  padding: 0.5rem;
}
.lightbox-close:hover { color: var(--white); }

/* ── Sticky Mobile CTA ────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(0,0,0,0.97);
  border-top: 1px solid var(--border);
  padding: 0.875rem 1.25rem;
  gap: 0.75rem;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* ── Fade-up Animation ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-right { gap: 1rem; }
  .nav-right .btn { display: none; }

  .mobile-cta-bar { display: flex; }

  body { padding-bottom: 68px; }

  .work-grid { grid-template-columns: 1fr; }
  .work-card--large { grid-column: auto; }
  .work-archive-grid { grid-template-columns: 1fr; }

  .what-we-do-inner { grid-template-columns: 1fr; }
  .svc-specialty-inner { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .svc-block { grid-template-columns: 1fr; }
  .reel-header { flex-direction: column; align-items: flex-start; }
  .work-grid-header { flex-direction: column; align-items: flex-start; }
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-section { }
.faq-list { max-width: 820px; margin: 3rem auto 0; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.5rem 0; text-align: left; color: inherit;
  font: inherit; font-size: 1.1rem; font-weight: 600;
}
.faq-q::after { content: "+"; font-size: 1.5rem; line-height: 1; opacity: 0.6; }
.faq-item.open .faq-q::after { content: "–"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding: 0 0 1.5rem; margin: 0; line-height: 1.7; opacity: 0.8; }
