/* ---------- Tokens ---------- */
:root {
  --black: #231F20;
  --red: #D91F2B;
  --white: #FFFFFF;
  --offwhite: #F5F4F2;
  --muted: #8a8586;
  --muted-light: #c9c6c6;

  --display: "Bebas Neue", "Archivo Narrow", "Arial Narrow", sans-serif;
  --body: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.65, 0, 0.35, 1);

  --edge: clamp(20px, 4vw, 64px);
  --header-h: 92px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; line-height: 0.92; letter-spacing: 0.005em; }
.dot { color: var(--red); }
.arrow {
  display: inline-block;
  width: 0.72em;
  height: 0.72em;
  vertical-align: -0.08em;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
a:hover .arrow, .cta-link:hover .arrow { transform: translate(3px, -3px); }

.section-index {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 20px;
  display: inline-block;
}
.section-index.light { color: var(--red); }

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 96px; height: 96px;
  margin-left: -48px; margin-top: -48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}
.cursor.active { opacity: 1; transform: scale(1); }
@media (max-width: 900px), (hover: none) {
  .cursor { display: none; }
}

/* ---------- Header ---------- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--white);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), color 0.5s var(--ease), transform 0.7s var(--ease);
  border-bottom: 1px solid transparent;
}
#site-header.hero-hidden { transform: translateY(-100%); }
#site-header.solid {
  background: rgba(35, 31, 32, 0.92);
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,0.08);
}
#site-header.on-light {
  background: rgba(245, 244, 242, 0.92);
  border-color: rgba(35,31,32,0.08);
  color: var(--black);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--edge);
}

.logo { position: relative; display: block; }
.logo img { height: 34px; width: auto; transition: opacity 0.4s var(--ease); }
.logo-light { position: absolute; top: 0; left: 0; opacity: 0; }
.logo-dark { opacity: 1; }
#site-header.on-light .logo-light { opacity: 1; }
#site-header.on-light .logo-dark { opacity: 0; }
/* on-light (off-white sections) shows the natural red/black logo;
   default (video/black) shows the red-circle + white-text variant so the
   wordmark stays legible without a flat white-out filter. */

.primary-nav { display: flex; align-items: center; gap: 44px; }
.primary-nav ul { display: flex; gap: 36px; }
.primary-nav ul a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.link-txt { position: relative; display: inline-block; }
.link-txt::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--red);
  transition: right 0.4s var(--ease);
}
.primary-nav ul a:hover .link-txt::after { right: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid currentColor;
  padding: 11px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  line-height: 1;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn-outline:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.nav-toggle {
  display: none;
  width: 34px; height: 34px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: currentColor; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--black);
  padding: 24px var(--edge) 40px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 199;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.mobile-nav ul a { font-family: var(--display); font-size: 42px; text-transform: uppercase; padding: 10px 0; display: block; }

/* ---------- Services mega menu ---------- */
.has-mega { position: relative; }
.mega-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  background: var(--offwhite);
  color: var(--black);
  border-top: 1px solid rgba(35, 31, 32, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0s linear 0.35s;
  z-index: 150;
}
.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0s;
}
.mega-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px var(--edge) 36px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
}
.mega-intro { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding-top: 4px; }
.mega-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; color: var(--red); }
.mega-intro h3 { font-family: var(--display); font-size: clamp(24px, 2vw, 32px); }
.mega-intro p { font-size: 13px; line-height: 1.5; color: #55504f; max-width: 250px; }
.mega-intro .cta-link { font-size: 11px; }

.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 20px; }
.mega-item { display: flex; flex-direction: column; gap: 6px; }
.mega-item-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #111; }
.mega-item-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.mega-item:hover .mega-item-media img { transform: scale(1.06); }
.mega-item-dash { display: block; width: 22px; height: 2px; background: var(--red); margin-top: 2px; }
.mega-item-title { font-family: var(--display); font-size: 16px; letter-spacing: 0.005em; }
.mega-item-desc {
  font-size: 11px;
  line-height: 1.45;
  color: #6b6665;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .mega-inner { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Video background helper ---------- */
[data-video-id], .work-video, .service-preview-video {
  position: relative;
  overflow: hidden;
}
/* Iframe is oversized top+bottom so the Vimeo chrome (title card, control
   bar) that free-tier accounts can't fully disable via player params gets
   clipped off by the container's overflow:hidden instead of sitting on top of it. */
[data-video-id] iframe, .work-video iframe, .service-preview-video iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.78vh;
  height: calc(56.25vw + 220px);
  min-width: 100%;
  min-height: calc(100% + 220px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 94vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: #000; }
.hero-video { position: absolute; inset: 0; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 35%, rgba(35,31,32,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--edge) 76px;
  max-width: 1120px;
  transition: transform 0.8s var(--ease), opacity 0.8s var(--ease);
}
.hero-content.hero-hidden { transform: translateX(-70px); opacity: 0; pointer-events: none; }
.eyebrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(52px, 9.5vw, 122px);
  color: var(--white);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; transform: translateY(105%); transition: transform 0.9s var(--ease); }
.hero.loaded h1 .line > span { transform: translateY(0); }
.hero h1 .line:nth-child(2) > span { transition-delay: 0.08s; }

.hero-sub {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-sub p { max-width: 420px; font-size: 16px; color: rgba(255,255,255,0.82); }
.cta-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  white-space: nowrap;
}
.cta-link:hover { color: var(--red); border-color: var(--red); }

.hero-scroll {
  position: absolute;
  left: var(--edge);
  bottom: 30px;
  z-index: 2;
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  letter-spacing: 0.18em;
}
.hero-scroll-cue { display: flex; align-items: center; gap: 10px; }
.hero-scroll-cue i { width: 1px; height: 34px; background: rgba(255,255,255,0.35); position: relative; overflow: hidden; }
.hero-scroll-cue i::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--red);
  animation: scrollLine 2.2s var(--ease-soft) infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }
.hero-sound-btn {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  cursor: pointer;
}
.hero-sound-btn span {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.hero-sound-btn:hover span { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ---------- Reveal-on-scroll ---------- */
.reveal-lines .line { overflow: hidden; }
.reveal-lines .line > span { display: block; transform: translateY(110%); transition: transform 0.9s var(--ease); }
.reveal-lines.in-view .line > span { transform: translateY(0); }
.reveal-lines .line:nth-child(2) > span { transition-delay: 0.07s; }
.reveal-lines .line:nth-child(3) > span { transition-delay: 0.14s; }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Intro ---------- */
.intro {
  background: var(--offwhite);
  color: var(--black);
  padding: 160px var(--edge) 140px;
  position: relative;
  overflow: hidden;
}
.intro .section-index { position: relative; z-index: 1; }
.intro-inner { max-width: 1300px; margin: 0 auto; position: relative; z-index: 1; }
.intro-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.intro-head {
  max-width: 900px;
  text-align: left;
  font-size: clamp(52px, 9.5vw, 128px);
}
.intro-text {
  flex: 0 1 360px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 0.3em;
}
.intro-copy {
  text-align: left;
  font-size: 17px;
  color: #55504f;
}

/* ---------- Service page copy ---------- */
.service-copy { background: var(--offwhite); color: var(--black); padding: 150px var(--edge) 130px; }
.service-copy-inner { max-width: 1180px; margin: 0 auto; }
.service-copy-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.service-copy-head { max-width: 460px; text-align: left; font-size: clamp(42px, 6vw, 76px); flex: 0 0 auto; }
.service-copy-text { flex: 1 1 480px; max-width: 620px; display: flex; flex-direction: column; gap: 22px; }
.service-copy-text p { text-align: left; font-size: 16px; line-height: 1.75; color: #4a4544; }
.service-copy-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-copy-list li { position: relative; padding-left: 24px; font-size: 16px; font-weight: 600; color: #2c2827; }
.service-copy-list li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 14px; height: 2px; background: var(--red); }

.service-copy-blocks {
  margin-top: 64px;
  padding-top: 54px;
  border-top: 1px solid rgba(35,31,32,0.12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}
.service-copy-block { display: flex; flex-direction: column; gap: 12px; max-width: 460px; }
.service-copy-dash { display: block; width: 26px; height: 2px; background: var(--red); }
.service-copy-block h3 { font-family: var(--display); font-size: clamp(20px, 2vw, 26px); letter-spacing: 0.01em; }
.service-copy-block p { font-size: 15px; line-height: 1.7; color: #4a4544; }
.service-copy-block .service-copy-list { margin-top: 2px; }
.service-copy-block .service-copy-list li { font-size: 15px; }
.service-copy-blocks--3col { grid-template-columns: repeat(3, 1fr); }
.service-copy-closing {
  margin-top: 54px;
  padding-top: 44px;
  border-top: 1px solid rgba(35,31,32,0.12);
  max-width: 780px;
  font-size: 17px;
  line-height: 1.75;
  color: #2c2827;
}

@media (max-width: 1100px) {
  .service-copy-blocks--3col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .service-copy-row { flex-direction: column; gap: 34px; }
  .service-copy-head, .service-copy-text { max-width: 100%; }
  .service-copy-blocks { grid-template-columns: 1fr; gap: 36px; }
  .service-copy-blocks--3col { grid-template-columns: 1fr; }
  .service-copy-block { max-width: 100%; }
  .service-copy-closing { max-width: 100%; }
}

/* ---------- Selected work ---------- */
.work { background: var(--black); padding: 130px var(--edge) 60px; }
.work-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }
.work-heading h2 { font-size: clamp(48px, 8vw, 108px); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  --row1-h: clamp(360px, 38vw, 600px);
  --row2-h: clamp(260px, 27vw, 420px);
  --row3-h: clamp(300px, 30vw, 460px);
}
.work-item { display: block; position: relative; cursor: none; }
.work-media { position: relative; overflow: hidden; background: #111; width: 100%; height: 100%; }
.work-media img.work-poster { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 1; transition: opacity 0.5s var(--ease); }
.work-item.playing .work-poster { opacity: 0; }
.work-video { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s var(--ease); }
.work-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work-item.playing .work-video { opacity: 1; }
.work-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}
.work-media img, .work-video { transition: transform 1.2s var(--ease); }
.work-item:hover .work-media img, .work-item:hover .work-video { transform: scale(1.045); }

.work-meta { position: absolute; left: 22px; right: 22px; bottom: 18px; z-index: 2; }
.work-meta h3 { font-family: var(--display); font-size: clamp(20px, 2.2vw, 30px); color: var(--white); }
.work-meta p { font-size: 12px; color: var(--muted-light); margin-top: 4px; }
.work-meta span { font-size: 12px; color: var(--red); font-weight: 600; }

.work-feature { grid-column: span 8; height: var(--row1-h); }
.work-vert { grid-column: span 4; height: var(--row1-h); }
.work-square { grid-column: span 4; height: var(--row2-h); }
.work-wide { grid-column: span 8; height: var(--row2-h); }
.work-tall { grid-column: span 12; height: var(--row3-h); }

.work-more { margin-top: 40px; }

/* ---------- Work page (portfolio) ---------- */
.work-filter-bar { background: var(--black); padding: 46px var(--edge) 10px; }
.work-filter-nav { display: flex; flex-wrap: wrap; gap: 12px; }
.work-filter-nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 10px 20px;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.work-filter-nav a:hover { border-color: var(--red); background: var(--red); color: var(--white); }

.portfolio-section { background: var(--black); padding: 64px var(--edge); }
.portfolio-section .work-heading { margin-bottom: 44px; }
.portfolio-section .work-heading h2 { font-size: clamp(34px, 5vw, 58px); }

/* ---------- Services ---------- */
.services { background: var(--black); padding: 130px var(--edge) 100px; position: relative; }
.services-list { position: relative; z-index: 2; }
.service-row {
  display: block;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 34px 0;
  position: relative;
  cursor: pointer;
}
.services-list .service-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.service-link { display: flex; align-items: baseline; gap: 28px; }
.service-num { font-family: var(--display); font-size: 20px; color: var(--muted); transition: color 0.4s var(--ease); }
.service-title {
  font-family: var(--display);
  font-size: clamp(38px, 7vw, 92px);
  display: inline-flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.5s var(--ease), color 0.4s var(--ease);
}
.service-title .arrow { width: 0.4em; height: 0.4em; opacity: 0; transform: translate(-8px, 8px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.service-row:hover .service-num { color: var(--red); }
.service-row:hover .service-title { color: var(--red); transform: translateX(18px); }
.service-row:hover .service-title .arrow { opacity: 1; transform: translate(0,0); }
.service-details {
  margin-top: 10px;
  margin-left: 68px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s var(--ease), max-height 0.4s var(--ease);
}
.service-desc { font-size: 14px; color: var(--muted); }
.service-view { display: none; font-size: 11px; }
.service-row:hover .service-details { opacity: 1; max-height: 90px; }

.service-preview {
  position: fixed;
  z-index: 3;
  right: var(--edge);
  top: 50%;
  width: 340px;
  height: 190px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) scale(0.94);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
}
.service-preview.active { opacity: 1; transform: translateY(-50%) scale(1); }
.service-preview-video { position: absolute; inset: 0; }
.service-preview-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.3s ease; }
.service-preview-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Showreel modal ---------- */
.showreel-modal {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,10,10,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 6vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.showreel-modal.open { opacity: 1; pointer-events: auto; }
.showreel-modal-inner { position: relative; width: 100%; max-width: 1200px; aspect-ratio: 16/9; background: #000; }
.showreel-modal-inner iframe, .showreel-modal-inner video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.showreel-modal-inner video { object-fit: contain; background: #000; }

/* ---------- Video loading indicator ---------- */
.video-loader {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s var(--ease);
}
.video-loader.hidden { opacity: 0; pointer-events: none; }
.video-loader-ring {
  position: absolute;
  width: 84px; height: 84px;
  transform: rotate(-90deg);
}
.video-loader-track { fill: none; stroke: rgba(255,255,255,0.25); stroke-width: 3; }
.video-loader-bar {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.15s linear;
}
.video-loader-icon {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.video-loader-icon i {
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--white);
  margin-left: 3px;
}
.showreel-close {
  position: absolute; top: -50px; right: 0;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); display: flex; align-items: center; gap: 10px;
}
.showreel-close:hover { color: var(--red); }

/* ---------- Featured project ---------- */
.featured { background: var(--black); }
.featured-media { position: relative; height: 92vh; min-height: 520px; overflow: hidden; }
.featured-video { position: absolute; inset: 0; }
.featured-video video { width: 100%; height: 100%; object-fit: cover; }
.featured-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 45%); }
.featured-tag { position: absolute; left: var(--edge); bottom: 60px; z-index: 2; }
.featured-tag span { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; color: var(--red); }
.featured-tag h2 { font-size: clamp(44px, 8vw, 108px); margin-top: 12px; }
.featured-tag p { font-size: 14px; color: var(--muted-light); margin-top: 8px; }

.featured-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 90px var(--edge);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.breakdown-col .section-index { display: block; margin-bottom: 16px; }
.breakdown-col p { color: var(--muted-light); font-size: 15px; max-width: 340px; }

/* ---------- Photo booth ---------- */
.photobooth { background: var(--offwhite); color: var(--black); padding: 150px var(--edge) 70px; }
.photobooth-inner { max-width: 1300px; margin: 0 auto; }

.photobooth-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.photobooth-head {
  max-width: 780px;
  text-align: left;
  font-size: clamp(50px, 9vw, 118px);
  margin-top: 6px;
}
.photobooth-text {
  flex: 0 1 360px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  text-align: left;
}
.photobooth-copy { font-size: 16px; color: #55504f; }

.photobooth-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  height: clamp(420px, 42vw, 640px);
}
.pb-item { position: relative; overflow: hidden; background: #000; height: 100%; }
.pb-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.pb-item:hover img { transform: scale(1.045); }
.pb-large { grid-column: span 7; grid-row: span 3; }
.pb-small { grid-column: span 5; grid-row: span 1; }
.photobooth-grid .pb-item:nth-child(1) { transition-delay: 0s; }
.photobooth-grid .pb-item:nth-child(2) { transition-delay: 0.1s; }
.photobooth-grid .pb-item:nth-child(3) { transition-delay: 0.2s; }
.photobooth-grid .pb-item:nth-child(4) { transition-delay: 0.3s; }

/* ---------- Clients marquee ---------- */
.clients { background: var(--offwhite); padding: 50px 0 90px; overflow: hidden; }
.clients-label { display: block; text-align: center; font-size: 12px; letter-spacing: 0.2em; color: rgba(35, 31, 32, 0.5); margin-bottom: 36px; }
.marquee { overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track img {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.marquee-track img:hover { opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--black); padding: 160px var(--edge); text-align: center; position: relative; }
.quote-mark { display: block; font-family: var(--display); font-style: normal; font-size: 140px; color: var(--red); opacity: 0.35; line-height: 0.5; margin-bottom: 10px; }
.testimonial-track { position: relative; max-width: 980px; margin: 0 auto; min-height: 220px; }
.testimonial { position: absolute; inset: 0; opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); pointer-events: none; }
.testimonial.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.testimonial p { font-family: var(--display); font-size: clamp(28px, 4.4vw, 52px); line-height: 1.15; text-transform: uppercase; }
.testimonial cite { display: block; margin-top: 26px; font-style: normal; font-size: 12px; letter-spacing: 0.14em; color: var(--muted); }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 44px; }
.testimonial-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); transition: background 0.3s ease, transform 0.3s ease; }
.testimonial-dots button.active { background: var(--red); transform: scale(1.3); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--black);
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--edge);
  position: relative;
}
.final-cta h2 { font-size: clamp(52px, 9vw, 118px); color: rgba(255,255,255,0.55); }
.final-link { display: block; margin-top: 30px; }
.final-link .line-1, .final-link .line-2 {
  display: block;
  font-family: var(--display);
  font-size: clamp(58px, 10.5vw, 132px);
  line-height: 0.98;
  transition: color 0.4s var(--ease);
}
.final-link .arrow { color: var(--red); transition: transform 0.4s var(--ease); }
.final-link:hover .line-1, .final-link:hover .line-2 { color: var(--red); }
.final-link:hover .arrow { transform: translate(6px, -6px); }

.final-details { margin-top: 70px; display: flex; flex-wrap: wrap; gap: 34px 44px; }
.final-details a { font-size: 13px; letter-spacing: 0.06em; color: var(--muted-light); border-bottom: 1px solid transparent; padding-bottom: 3px; transition: color 0.3s ease, border-color 0.3s ease; }
.final-details a:hover { color: var(--red); border-color: var(--red); }

/* ---------- Blog ---------- */
.blog-hero { position: relative; min-height: 64vh; display: flex; align-items: flex-end; overflow: hidden; background: #000; }
.blog-hero-media { position: absolute; inset: 0; }
.blog-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.2) 40%, rgba(35,31,32,0.92) 100%); }
.blog-hero-content { position: relative; z-index: 2; padding: calc(var(--header-h) + 48px) var(--edge) 64px; max-width: 900px; }
.blog-hero-content .eyebrow { margin-bottom: 18px; }
.blog-hero-content h1 { font-size: clamp(38px, 6.5vw, 84px); color: var(--white); line-height: 1; }

.blog-article { background: var(--offwhite); color: var(--black); padding: 100px var(--edge) 110px; }
.blog-article-inner { max-width: 740px; margin: 0 auto; }
.blog-article-inner p { font-size: 17px; line-height: 1.8; color: #3d3938; margin-bottom: 26px; }
.blog-article-inner h2 { font-family: var(--display); font-size: clamp(26px, 3.4vw, 38px); margin: 56px 0 20px; color: var(--black); }
.blog-article-inner h2:first-child { margin-top: 0; }

.blog-listing-hero { background: var(--black); padding: 190px var(--edge) 70px; }
.blog-listing-hero h1 { font-size: clamp(52px, 9vw, 118px); color: var(--white); max-width: 700px; }
.blog-listing-hero p { margin-top: 26px; max-width: 480px; font-size: 16px; color: rgba(255,255,255,0.72); }

.blog-grid { background: var(--black); padding: 20px var(--edge) 140px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
.blog-related { background: var(--black); padding: 110px var(--edge) 0; }
.blog-related .work-heading { margin-bottom: 0; }
.blog-related .blog-grid { padding: 44px 0 0; }
.blog-card { display: flex; flex-direction: column; gap: 18px; }
.blog-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #111; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-meta { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--red); text-transform: uppercase; }
.blog-card h3 { font-family: var(--display); font-size: clamp(20px, 2.2vw, 26px); line-height: 1.05; }
.blog-card p { font-size: 14px; line-height: 1.6; color: var(--muted-light); }
.blog-card .cta-link { font-size: 11px; margin-top: auto; }

.blog-state { grid-column: 1 / -1; padding: 40px 0; font-size: 15px; color: var(--muted-light); }

.blog-pagination { background: var(--black); display: flex; justify-content: center; align-items: center; gap: 10px; padding: 0 var(--edge) 140px; }
.pagination-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted-light);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.pagination-btn:hover:not(:disabled) { border-color: var(--red); color: var(--white); }
.pagination-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.pagination-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.pagination-arrow { font-size: 14px; }

@media (max-width: 1080px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article { padding: 70px var(--edge) 80px; }
}

/* ---------- Contact / multi-step form ---------- */
.contact-hero { padding-bottom: 30px; }

.contact-form-section { background: var(--black); padding: 10px var(--edge) 130px; }
.contact-form-wrap { max-width: 640px; }

.form-progress { display: flex; align-items: center; gap: 18px; margin-bottom: 56px; }
.form-progress-track { flex: 1; height: 2px; background: rgba(255,255,255,0.12); border-radius: 999px; overflow: hidden; }
.form-progress-fill { display: block; height: 100%; width: 16.6667%; background: var(--red); transition: width 0.5s var(--ease); }
.form-progress-count { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--muted-light); white-space: nowrap; }

.form-step { animation: form-step-in 0.5s var(--ease); }
@keyframes form-step-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-question {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.form-optional { font-family: var(--body); font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: none; color: var(--muted); vertical-align: middle; margin-left: 4px; }

.form-input {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 10px 2px 16px;
  font-family: var(--body);
  font-size: 20px;
  color: var(--white);
  transition: border-color 0.3s ease;
}
.form-input::placeholder { color: var(--muted); }
.form-input:focus { outline: none; border-color: var(--red); }
.form-textarea { resize: vertical; min-height: 140px; font-size: 16px; line-height: 1.6; }
.form-step.invalid .form-input { border-color: var(--red); }

.form-error { min-height: 20px; margin-top: 10px; font-size: 12px; letter-spacing: 0.04em; color: var(--red); opacity: 0; transition: opacity 0.25s ease; }
.form-step.invalid .form-error { opacity: 1; }

.form-nav { display: flex; align-items: center; gap: 22px; margin-top: 44px; }
.form-back {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.form-back:hover { color: var(--white); border-color: var(--white); }
.form-nav .btn-outline:disabled { opacity: 0.4; cursor: not-allowed; }

.form-fail { max-width: 480px; }
.form-fail p { font-size: 16px; line-height: 1.6; color: var(--muted-light); }
.form-fail a { color: var(--red); border-bottom: 1px solid currentColor; }

.contact-final-cta { min-height: auto; padding: 0 var(--edge) 120px; justify-content: flex-start; }

.thank-you-section {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--header-h) + 40px) var(--edge) 80px;
  max-width: 720px;
}
.thank-you-section h1 { font-size: clamp(64px, 11vw, 140px); color: var(--white); margin: 8px 0 26px; }
.thank-you-section p { font-size: 17px; line-height: 1.6; color: var(--muted-light); max-width: 480px; margin-bottom: 40px; }

@media (max-width: 640px) {
  .contact-form-section { padding-bottom: 90px; }
  .form-input { font-size: 18px; }
  .form-nav { flex-wrap: wrap; }
}

/* ---------- Photography ---------- */
.hero-photo { position: absolute; inset: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.photo-overview {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 90px;
}
.photo-overview-card { display: flex; flex-direction: column; gap: 16px; }
.photo-overview-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #111; }
.photo-overview-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform 0.8s var(--ease); }
.photo-overview-card:hover .photo-overview-media img { transform: scale(1.05); }
.photo-overview-card h3 { font-family: var(--display); font-size: clamp(18px, 1.8vw, 22px); line-height: 1.05; color: var(--white); }
.photo-overview-card p { font-size: 13px; line-height: 1.55; color: var(--muted-light); }

.photo-cat { padding-top: 64px; border-top: 1px solid rgba(255,255,255,0.08); }
.photo-cat:first-of-type { padding-top: 0; border-top: none; }
.photo-cat-head { margin-bottom: 28px; }
.photo-cat-head h3 { font-family: var(--display); font-size: clamp(28px, 3.2vw, 42px); color: var(--white); }
.photo-cat-head p { max-width: 620px; margin-top: 10px; font-size: 14px; line-height: 1.6; color: var(--muted-light); }

.photo-mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.photo-mosaic-item { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #111; cursor: pointer; }
.photo-mosaic-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform 0.8s var(--ease); }
.photo-mosaic-item:hover img { transform: scale(1.05); }
.photo-cat-more { margin-top: 20px; }
.photo-view-all {
  background: none;
  border: none;
  border-bottom: 1px solid currentColor;
  padding: 0 0 4px;
  font-family: inherit;
  color: var(--white);
  cursor: pointer;
}

@media (max-width: 1080px) {
  .photo-overview { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .photo-mosaic { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .photo-overview { grid-template-columns: 1fr; margin-bottom: 60px; }
  .photo-mosaic { grid-template-columns: 1fr; }
  .photo-cat { padding-top: 48px; }
}

/* ---------- Photo lightbox ---------- */
body.lightbox-open { overflow: hidden; }
.photo-lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,10,10,0.96);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 90px var(--edge) 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.photo-lightbox.open { opacity: 1; pointer-events: auto; }
.photo-lightbox-stage { position: relative; flex: 1; width: 100%; min-height: 0; display: flex; align-items: center; justify-content: center; }
.photo-lightbox-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.photo-lightbox-close {
  position: absolute; top: 26px; right: var(--edge); z-index: 2;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white);
}
.photo-lightbox-close:hover { color: var(--red); }
.photo-lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.photo-lightbox-nav:hover { border-color: var(--red); color: var(--red); }
.photo-lightbox-prev { left: var(--edge); }
.photo-lightbox-next { right: var(--edge); }
.photo-lightbox-footer {
  width: 100%; max-width: 1200px; margin-top: 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.photo-lightbox-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.photo-filter-btn {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.photo-filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }
.photo-filter-btn.active { color: var(--black); background: var(--white); border-color: var(--white); }
.photo-lightbox-count { font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); white-space: nowrap; }

@media (max-width: 780px) {
  .photo-lightbox { padding: 80px 20px 24px; }
  .photo-lightbox-nav { width: 40px; height: 40px; font-size: 18px; }
  .photo-lightbox-prev { left: 8px; }
  .photo-lightbox-next { right: 8px; }
  .photo-lightbox-footer { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---------- Footer ---------- */
footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.1); padding: 40px var(--edge) 28px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 26px; }
.footer-logo { height: 26px; opacity: 0.95; }
.footer-top nav { display: flex; gap: 26px; }
.footer-top nav a, .footer-social a { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-light); }
.footer-top nav a:hover, .footer-social a:hover { color: var(--red); }
.footer-social { display: flex; gap: 22px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- Magnetic buttons ---------- */
.magnetic { transition: transform 0.3s var(--ease); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .work-feature, .work-vert, .work-square, .work-wide, .work-tall {
    grid-column: span 12;
    height: clamp(280px, 52vw, 440px);
  }
  .featured-breakdown { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .photobooth-grid { display: flex; flex-direction: column; height: auto; }
  .pb-item { height: clamp(220px, 60vw, 340px); }
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .service-preview { display: none; }
  .service-details { max-height: 120px; opacity: 1; margin-left: 0; }
  .service-view { display: inline-block; }
}

@media (max-width: 640px) {
  .hero { height: 100vh; align-items: flex-end; }
  .hero-content { padding-bottom: 120px; }
  .work-feature, .work-vert, .work-square, .work-wide, .work-tall {
    height: clamp(240px, 80vw, 360px);
  }
  .final-details { flex-direction: column; gap: 16px; }
}
