:root {
  --cream: #f4f0e8;
  --ink: #1a1814;
  --brown: #8b6f47;
  --brown-light: #c4a574;
  --dark: #0a0806;
  --muted: rgba(244, 240, 232, 0.72);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: "Source Sans 3", system-ui, sans-serif;
  overflow-x: hidden;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  pointer-events: none;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: auto;
}
.nav-logo {
  height: 96px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}
.nav-email {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(244, 240, 232, 0.82);
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.65);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-email:hover {
  color: var(--cream);
}
.nav-tag {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ---------- Scrub section ---------- */
.scrub-section {
  position: relative;
  height: 550vh;
}
.scrub-section.scrub-mid {
  height: 380vh;
}
.scrub-section.scrub-lower {
  height: 360vh;
}

@media (max-width: 768px) {
  .scrub-section { height: 420vh; }
  .scrub-section.scrub-mid { height: 320vh; }
  .scrub-section.scrub-lower { height: 300vh; }
}
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}
.sticky canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(110% 85% at 50% 45%, transparent 50%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 22%, transparent 75%, rgba(0,0,0,0.65) 100%);
}

/* ---------- Loader ---------- */
.loader {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: grid;
  place-content: center;
  background: var(--dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  transition: opacity 0.6s;
}
.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ---------- Progress + hint ---------- */
.progress {
  position: absolute;
  left: 32px; right: 32px; bottom: 92px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  z-index: 12;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brown), var(--brown-light));
  box-shadow: 0 0 10px rgba(196, 165, 116, 0.5);
  transition: width 0.05s linear;
}
.scroll-hint {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(0.82rem, 1.7vw, 1.15rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.82);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85);
  text-align: center;
  line-height: 1.25;
  animation: bob 2s ease-in-out infinite;
  transition: opacity 0.4s;
  pointer-events: none;
}
.scroll-hint-line {
  font-weight: 400;
  letter-spacing: 0.28em;
  font-size: 0.78em;
  color: rgba(244, 240, 232, 0.7);
}
.scroll-hint strong {
  font-weight: 700;
  letter-spacing: 0.34em;
  font-size: 1.15em;
  color: var(--cream);
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Unified section headers ---------- */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 12px;
}
.carousel-header,
.section-divider {
  text-align: center;
  padding-left: clamp(20px, 4vw, 32px);
  padding-right: clamp(20px, 4vw, 32px);
}
.carousel-header h2,
.section-divider h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  letter-spacing: 0.03em;
  line-height: 1.08;
  color: var(--cream);
}

/* Section title letter reveal */
.section-title {
  overflow: hidden;
}
.title-word {
  display: inline-block;
  white-space: nowrap;
}
.title-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  filter: blur(6px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i) * 0.038s);
}
.section-title.is-visible .title-letter {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .title-letter {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ---------- Carousel section — BIG & full bleed ---------- */
.carousel-section {
  padding: 0 0 clamp(48px, 6vh, 72px);
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.carousel-header {
  padding-top: clamp(56px, 7vh, 80px);
  padding-bottom: clamp(24px, 3.5vh, 36px);
  margin: 0 auto;
}

.carousel-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
}
.carousel-track {
  display: flex;
  gap: clamp(14px, 2vw, 32px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 clamp(20px, 3vw, 48px) 40px;
  width: 100%;
  align-items: center;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: center;
  background: var(--ink);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  will-change: transform;
}
.carousel-card--portrait {
  height: clamp(520px, 75vh, 880px);
  width: calc(clamp(520px, 75vh, 880px) * 9 / 16);
}
.carousel-card--landscape {
  width: clamp(480px, 58vw, 920px);
  aspect-ratio: 16 / 9;
  height: auto;
}
.carousel-card:hover {
  transform: scale(1.04);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.65), 0 0 40px rgba(196, 165, 116, 0.12);
  z-index: 2;
}
.carousel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-play {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(244, 240, 232, 0.95);
  color: var(--ink);
  display: grid;
  place-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.carousel-card:hover .card-play {
  opacity: 1;
  transform: scale(1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: rgba(244, 240, 232, 0.1);
  color: var(--cream);
  cursor: pointer;
  display: grid;
  place-content: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(244, 240, 232, 0.15);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.carousel-btn:hover {
  background: rgba(244, 240, 232, 0.2);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.carousel-prev { left: clamp(12px, 2vw, 28px); }
.carousel-next { right: clamp(12px, 2vw, 28px); }

/* ---------- Landscape grid (3 × 2, full width) ---------- */
.landscape-section {
  padding: 0 0 clamp(48px, 6vh, 72px);
  background: var(--dark);
  color: var(--cream);
}
.landscape-section .carousel-header {
  padding-top: clamp(56px, 7vh, 80px);
  padding-bottom: clamp(24px, 3.5vh, 36px);
}
#longform-showreel .carousel-header {
  padding-top: clamp(64px, 8vh, 96px);
}

/* ---------- Section divider ---------- */
.section-divider {
  padding-top: clamp(56px, 7vh, 80px);
  padding-bottom: clamp(32px, 4vh, 48px);
  background: var(--dark);
  color: var(--cream);
}

.landscape-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.2vw, 20px);
  padding: 0 clamp(10px, 1.5vw, 24px);
  width: 100%;
}
.landscape-grid-item {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--ink);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.landscape-grid-item:hover {
  transform: scale(1.025);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65), 0 0 40px rgba(196, 165, 116, 0.12);
  z-index: 2;
}
.landscape-grid-item--pending {
  cursor: default;
  border: 1px dashed rgba(244, 240, 232, 0.15);
  box-shadow: none;
}
.landscape-grid-item--pending:hover {
  transform: none;
  box-shadow: none;
}
.grid-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  background: rgba(255, 255, 255, 0.03);
}
.grid-placeholder span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.35);
}
.landscape-grid-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.landscape-grid-item .card-play {
  position: absolute;
  bottom: clamp(12px, 1.5vw, 20px);
  right: clamp(12px, 1.5vw, 20px);
  width: clamp(44px, 4vw, 52px);
  height: clamp(44px, 4vw, 52px);
  border: none;
  border-radius: 50%;
  background: rgba(244, 240, 232, 0.95);
  color: var(--ink);
  display: grid;
  place-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.landscape-grid-item:hover .card-play {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Video strip (21:9 looped) ---------- */
.video-strip {
  width: 100%;
  background: var(--dark);
  padding: 0 clamp(10px, 1.5vw, 24px);
  margin-bottom: clamp(48px, 6vh, 80px);
}
#workflow-banner {
  margin-bottom: clamp(48px, 6vh, 80px);
}
.what-we-do .video-strip {
  margin-bottom: 0;
  margin-top: clamp(32px, 4vh, 48px);
}
.video-strip-inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
}
.video-strip-inner > * {
  grid-area: 1 / 1;
}
.looped-banner-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: contain;
  background: var(--dark);
}
.video-strip-vignette {
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 6, 0.12) 0%,
    transparent 35%,
    transparent 65%,
    rgba(10, 8, 6, 0.15) 100%
  );
  align-self: stretch;
  justify-self: stretch;
}

/* ---------- What We Do ---------- */
.what-we-do {
  background: var(--dark);
  color: var(--cream);
  padding-bottom: clamp(48px, 6vh, 72px);
}
.services-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 24px);
  padding: 0 clamp(20px, 4vw, 48px);
  max-width: 1440px;
  margin: 0 auto;
}
.service-item {
  text-align: center;
  padding: clamp(20px, 3vw, 32px) clamp(12px, 1.5vw, 20px);
  border: 1px solid rgba(244, 240, 232, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.service-item:hover {
  border-color: rgba(196, 165, 116, 0.35);
  background: rgba(196, 165, 116, 0.05);
  transform: translateY(-4px);
}
.service-icon {
  display: block;
  font-size: 1.4rem;
  color: var(--brown-light);
  margin-bottom: 14px;
}
.service-item h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.service-item p {
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  line-height: 1.55;
  color: rgba(244, 240, 232, 0.55);
}

/* ---------- Contact banner ---------- */
.contact-banner {
  width: 100%;
  background: var(--dark);
  padding: 0 clamp(10px, 1.5vw, 24px);
}
.contact-banner-inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
}
.contact-banner-inner img,
.contact-banner-vignette {
  grid-area: 1 / 1;
}
.contact-banner-inner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 2560 / 1098;
  object-fit: contain;
  background: var(--dark);
}
.contact-banner-vignette {
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 6, 0.12) 0%,
    transparent 35%,
    transparent 65%,
    rgba(10, 8, 6, 0.15) 100%
  );
}

.tv-form-slot {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  container-type: size;
  container-name: tv;
}
.tv-form {
  pointer-events: auto;
  position: absolute;
  /* Wider on X, compact on Y — sit on the CRT glass */
  left: 36.66%;
  top: 10.5%;
  width: 22.68%;
  height: 30.6%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.8%;
  padding: 3.6% 3.4% 3.6% 5.2%;
  box-sizing: border-box;
  font-family: "Source Sans 3", sans-serif;
  box-shadow: 0 0 28px rgba(110, 180, 255, 0.12);
  overflow: visible;
}
.tv-form-fields {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 4.2%;
  overflow: visible;
}
.tv-form label {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-height: 0;
}
.tv-form-message {
  flex: 1 1 auto;
  min-height: 0;
  width: 225%;
  max-width: none;
  align-self: flex-start;
}
.tv-form-caret {
  position: absolute;
  left: 0.9em;
  top: 0.75em;
  z-index: 5;
  width: 0.18cqw;
  min-width: 2px;
  height: 1.35cqw;
  min-height: 14px;
  background: #f4f8ff;
  box-shadow: 0 0 10px rgba(180, 230, 255, 0.95);
  pointer-events: none;
  opacity: 1;
  animation: tv-caret-blink 1.05s step-end infinite;
}
.tv-form-message:focus-within .tv-form-caret,
.tv-form-message:has(textarea:not(:placeholder-shown)) .tv-form-caret {
  opacity: 0;
  animation: none;
}
@keyframes tv-caret-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tv-form input,
.tv-form textarea {
  width: 100%;
  border: 1px solid rgba(190, 230, 255, 0.55);
  border-radius: 3px;
  background: rgba(6, 10, 16, 0.58);
  color: #e8f4ff;
  caret-color: #e8f4ff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.855cqw;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7em 0.9em;
  outline: none;
  box-shadow:
    0 0 6px rgba(160, 220, 255, 0.45),
    0 0 16px rgba(90, 170, 255, 0.28),
    inset 0 0 12px rgba(150, 220, 255, 0.12);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.tv-form textarea {
  flex: 1;
  min-height: 0;
  height: 100%;
  resize: none;
  overflow-x: hidden;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-word;
  letter-spacing: 0.08em;
  text-transform: none;
  line-height: 1.45;
}
.tv-form input::placeholder,
.tv-form textarea::placeholder {
  color: rgba(190, 220, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.tv-form input[type="email"] {
  text-transform: none;
  letter-spacing: 0.06em;
}
.tv-form input[type="email"]::placeholder {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.tv-form input:focus,
.tv-form textarea:focus {
  border-color: rgba(190, 230, 255, 0.85);
  background: rgba(8, 14, 22, 0.72);
  box-shadow:
    0 0 14px rgba(140, 210, 255, 0.45),
    0 0 28px rgba(80, 160, 255, 0.18),
    inset 0 0 12px rgba(160, 220, 255, 0.12);
}
.tv-form-send {
  align-self: center;
  flex: 0 0 auto;
  margin: 0;
  z-index: 2;
  position: relative;
  top: 1.1cqw;
  left: 0.7cqw;
  border: 1px solid rgba(170, 220, 255, 0.55);
  border-radius: 999px;
  background: rgba(10, 18, 28, 0.65);
  color: #e8f4ff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.702cqw;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 0.62em 2.1em;
  cursor: pointer;
  box-shadow:
    0 0 8px rgba(150, 220, 255, 0.4),
    0 0 18px rgba(90, 170, 255, 0.25),
    inset 0 0 10px rgba(140, 210, 255, 0.12);
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.tv-form-send:hover,
.tv-form-send:focus-visible {
  background: rgba(30, 70, 110, 0.75);
  border-color: rgba(210, 240, 255, 0.95);
  box-shadow:
    0 0 16px rgba(150, 220, 255, 0.55),
    0 0 32px rgba(80, 170, 255, 0.22);
}
.tv-form-send:disabled {
  opacity: 0.7;
  cursor: default;
}
.tv-form-send.is-sent,
.tv-form-send.is-sent:hover,
.tv-form-send.is-sent:focus-visible,
.tv-form-send.is-sent:disabled {
  opacity: 1;
  color: #f2fff6;
  border-color: rgba(140, 255, 180, 0.95);
  background: rgba(28, 130, 72, 0.88);
  box-shadow:
    0 0 10px rgba(90, 220, 140, 0.55),
    0 0 22px rgba(40, 180, 100, 0.35),
    inset 0 0 12px rgba(160, 255, 200, 0.18);
  cursor: default;
}
.tv-form-note {
  margin: 0.4em 0 0;
  padding: 0;
  width: 225%;
  max-width: none;
  align-self: flex-start;
  text-align: left;
  white-space: nowrap;
  font-size: 0.52cqw;
  letter-spacing: 0.06em;
  color: rgba(190, 230, 255, 0.9);
  text-shadow: 0 0 8px rgba(120, 200, 255, 0.5);
}

@media (max-width: 900px) {
  .contact-banner-inner {
    display: flex;
    flex-direction: column;
  }
  .contact-banner-inner > * {
    grid-area: auto;
  }
  .contact-banner-vignette { display: none; }
  .tv-form-slot {
    position: relative;
    inset: auto;
    pointer-events: auto;
    padding: 20px 16px 28px;
    background: #0a0806;
    container-type: normal;
  }
  .tv-form {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 8px 0 0;
  }
  .tv-form-fields {
    height: auto;
    gap: 12px;
  }
  .tv-form-message {
    width: 100%;
  }
  .tv-form-note {
    width: 100%;
    white-space: normal;
    font-size: 0.8rem;
  }
  .tv-form-send {
    align-self: center;
  }
  .tv-form input,
  .tv-form textarea {
    font-size: 1rem;
    padding: 12px 14px;
  }
  .tv-form textarea { min-height: 110px; }
  .tv-form-send {
    align-self: center;
    font-size: 0.8rem;
    padding: 12px 28px;
  }
}

/* ---------- CTA (kept for future form restore) ---------- */
.cta-section {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(72px, 10vh, 120px) clamp(24px, 5vw, 48px);
}
.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.cta-section .section-eyebrow {
  color: var(--brown);
}
.cta-section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}
.cta-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(26, 24, 20, 0.65);
  margin-bottom: 36px;
}
.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
}
.contact-form input,
.contact-form textarea {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid rgba(26, 24, 20, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.15);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.cta-button {
  align-self: center;
  margin-top: 8px;
  padding: 16px 48px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.cta-button:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 111, 71, 0.35);
}
.form-note {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  color: var(--brown);
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 8vh, 80px) clamp(24px, 4vw, 48px) 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: clamp(40px, 5vh, 56px);
  border-bottom: 1px solid rgba(244, 240, 232, 0.1);
}
.footer-logo {
  height: 88px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(244, 240, 232, 0.55);
  max-width: 320px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: rgba(244, 240, 232, 0.65);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--cream);
}
.footer-col li:not(:has(a)) {
  font-size: 0.92rem;
  color: rgba(244, 240, 232, 0.55);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(244, 240, 232, 0.4);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: rgba(244, 240, 232, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(244, 240, 232, 0.7);
}

@media (max-width: 600px) {
  .section-divider {
    padding-top: clamp(40px, 6vh, 56px);
    padding-bottom: clamp(24px, 3vh, 32px);
  }
  .carousel-header {
    padding-top: clamp(40px, 6vh, 56px);
    padding-bottom: clamp(20px, 3vh, 28px);
  }
  .landscape-section .carousel-header {
    padding-top: clamp(40px, 6vh, 56px);
  }
  #longform-showreel .carousel-header {
    padding-top: clamp(48px, 7vh, 64px);
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Video modal ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-content: center;
  background: rgba(10, 8, 6, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  padding: 24px;
}
.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.carousel-section--landscape {
  min-height: auto;
  padding: 80px 0 72px;
}
.carousel-section--landscape .carousel-wrap {
  min-height: auto;
}

.modal-panel {
  position: relative;
  background: var(--dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,0.55);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.35s ease;
}
.modal-panel[data-aspect="portrait"] {
  width: min(calc(82vh * 9 / 16), 88vw);
  max-height: 82vh;
}
.modal-panel[data-aspect="landscape"] {
  width: min(82vw, calc(82vh * 16 / 9));
  max-height: 82vh;
}
.video-modal.open .modal-panel {
  transform: scale(1) translateY(0);
}
.modal-panel video {
  width: 100%;
  height: auto;
  max-height: 82vh;
  display: block;
  object-fit: contain;
  background: #000;
}
.modal-panel[data-aspect="portrait"] video { aspect-ratio: 9 / 16; }
.modal-panel[data-aspect="landscape"] video { aspect-ratio: 16 / 9; }
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.8); }

@media (max-width: 900px) {
  .nav-logo { height: 80px; }
  .carousel-header h2,
  .section-divider h2 { font-size: clamp(2rem, 7vw, 3.2rem); }
  .landscape-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 12px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .nav { padding: 14px 18px; }
  .nav-logo { height: 72px; }
  .nav-tag { display: none; }
  .nav-email { font-size: 11px; letter-spacing: 0.04em; }
  .progress { left: 18px; right: 18px; }
  .carousel-section { padding: 0 0 40px; }
  .landscape-section { padding: 0 0 36px; }
  .landscape-grid {
    grid-template-columns: 1fr;
    padding: 0 12px;
    gap: 12px;
  }
  .landscape-grid-item .card-play { opacity: 1; transform: scale(1); width: 44px; height: 44px; }
  .carousel-header { padding-left: 20px; padding-right: 20px; }
  .carousel-header h2,
  .section-divider h2 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .section-eyebrow { font-size: 10px; letter-spacing: 0.3em; }
  .carousel-btn { width: 44px; height: 44px; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .carousel-track { padding: 12px 16px 32px; gap: 12px; }
  .carousel-card--portrait {
    height: clamp(380px, 62vh, 600px);
    width: calc(clamp(380px, 62vh, 600px) * 9 / 16);
  }
  .card-play { opacity: 1; transform: scale(1); width: 44px; height: 44px; }
  .modal-panel[data-aspect="portrait"] { width: min(92vw, calc(75vh * 9 / 16)); }
  .modal-panel[data-aspect="landscape"] { width: 92vw; }
}
