:root {
  --ink: #1b1612;
  --ink-soft: #4a423a;
  --muted: #6f675e;
  --paper: #f4efe6;
  --paper-2: #ebe3d6;
  --sand: #e7d7c4;
  --cinema: #14110f;
  --cinema-2: #1e1814;
  --cream: #f8f3ea;
  --text: #f6f1ea;
  --accent: #c44a32;
  --accent-2: #e07a3d;
  --gold: #c6a15a;
  --line: rgba(27, 22, 18, 0.12);
  --line-light: rgba(246, 241, 234, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --gap: 1.25rem;
  --display: "Fraunces", "Times New Roman", serif;
  --sans: "Manrope", sans-serif;
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.has-cursor { cursor: none; }
body.menu-open,
body.modal-open { overflow: hidden; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: 0; }
button { cursor: pointer; }
ul, ol { list-style: none; }

.section-inner {
  width: min(1280px, calc(100% - var(--pad) * 2));
  margin: 0 auto;
}

section, .about, .hero { scroll-margin-top: 5rem; }

.theme-light {
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(224, 122, 61, 0.12), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  color: var(--ink);
}

.theme-warm {
  background:
    radial-gradient(800px 380px at 100% 10%, rgba(198, 161, 90, 0.18), transparent 50%),
    linear-gradient(160deg, #f0e4d2 0%, #e8d5be 52%, #f6efe4 100%);
  color: var(--ink);
}

.theme-cinema {
  background:
    radial-gradient(900px 480px at 90% 0%, rgba(196, 74, 50, 0.22), transparent 48%),
    radial-gradient(700px 400px at 0% 80%, rgba(198, 161, 90, 0.1), transparent 50%),
    linear-gradient(180deg, #171310 0%, #100e0c 100%);
  color: var(--cream);
}

.eyebrow,
.section-index {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.theme-cinema .section-index { color: var(--gold); }

.display {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.2vw, 4.6rem);
  line-height: 1.08;
  font-weight: 550;
  letter-spacing: -0.03em;
}

.display .accent,
.hero-manifesto .accent { color: var(--accent); }

.lede {
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.theme-cinema .lede,
.theme-cinema .section-help { color: #d8cfc3; }

.lede.muted {
  color: var(--muted);
  font-size: 1rem;
  font-style: italic;
  font-family: var(--display);
}

.section-head {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 1.5rem 2rem;
  align-items: start;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.theme-cinema .section-head { border-bottom-color: var(--line-light); }

.section-help {
  margin-top: 0.9rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1rem;
}

.cursor { display: none; }

body.has-cursor .cursor {
  display: block;
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 10000;
  pointer-events: none;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--accent);
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1px solid rgba(196, 74, 50, 0.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), margin 0.35s var(--ease), background 0.35s, border-color 0.35s;
}

.cursor-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  color: #fff;
}

.cursor.is-view .cursor-ring,
.cursor.is-play .cursor-ring {
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  background: var(--accent);
  border-color: var(--accent);
}

.cursor.is-view .cursor-label,
.cursor.is-play .cursor-label { opacity: 1; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(180deg, #1a1410, #0f0c0a);
  display: grid;
  place-items: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.loader.is-done { opacity: 0; visibility: hidden; }
.loader-logo { width: 140px; margin: 0 auto 1.5rem; }
.loader-line {
  width: 140px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.loader-line span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  animation: load 1.4s var(--ease) forwards;
}
@keyframes load { to { width: 100%; } }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem var(--pad);
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}

.nav.is-scrolled {
  background: rgba(246, 241, 234, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(27, 22, 18, 0.08);
}

.nav.is-scrolled .nav-links a,
.nav.is-scrolled .nav-cta,
.nav.is-scrolled .nav-toggle span { color: var(--ink); }

.nav.is-scrolled .nav-toggle span { background: var(--ink); }

.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #f3ece3;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f3ece3;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
}

.nav-toggle, .mobile-close { display: none; width: 44px; height: 44px; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  margin: 6px 0 0 auto;
}
.nav-toggle span:first-child { margin-top: 0; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: linear-gradient(180deg, #1a1410, #2a1c16);
  display: grid;
  place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
}
.mobile-menu.is-open { clip-path: inset(0 0 0 0); }
.mobile-close {
  position: absolute;
  top: 1.4rem;
  right: var(--pad);
  display: block;
  color: #f6f1ea;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-menu-inner { display: grid; gap: 1.2rem; text-align: center; }
.mobile-menu-inner a {
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  color: #f6f1ea;
}
.mobile-cta {
  margin-top: 1rem;
  color: var(--gold) !important;
  font-family: var(--sans) !important;
  font-size: 1rem !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0 1.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}

.btn-solid {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
}
.btn-solid:hover { filter: brightness(1.06); }

.btn-ghost {
  border-color: rgba(246, 241, 234, 0.35);
  color: #f6f1ea;
}
.theme-light .btn-ghost,
.theme-warm .btn-ghost {
  border-color: rgba(27, 22, 18, 0.2);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.arrow { display: inline-block; transition: transform 0.35s var(--ease); }
.btn:hover .arrow,
.text-link:hover .arrow,
.nav-cta:hover .arrow { transform: translateX(5px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.8rem;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #f6f1ea;
}

.hero-media, .hero-image, .hero-overlay { position: absolute; inset: 0; }
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.18) contrast(1.06) brightness(1.12);
  animation: kenburns 22s ease-out forwards;
}
@keyframes kenburns { to { transform: scale(1.16) translate3d(-2%, -1%, 0); } }

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.7) 0%, rgba(8, 8, 10, 0.22) 58%, rgba(8, 8, 10, 0.4) 100%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.12) 0%, rgba(8, 8, 10, 0.05) 48%, rgba(8, 8, 10, 0.72) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #f8f3ea);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - var(--pad) * 2));
  margin: 0 auto 6.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem 3rem;
  align-items: end;
}

.hero-kicker {
  grid-column: 1;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.hero-title {
  grid-column: 1;
  font-family: var(--display);
  font-size: clamp(3.1rem, 7.4vw, 7rem);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: #fff;
}

.hero-manifesto {
  grid-column: 2;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1.02;
  font-weight: 550;
  color: #fff;
}

.hero-help {
  margin-top: 1.1rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  color: #ddd4c8;
  max-width: 28rem;
}

.hero-meta, .hero-actions { grid-column: 1; }
.hero-meta {
  color: #c9bfb3;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

.hero-play {
  position: absolute;
  right: var(--pad);
  top: 44%;
  z-index: 3;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  background: rgba(20, 14, 12, 0.25);
  backdrop-filter: blur(8px);
}
.play-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(246, 241, 234, 0.45);
  border-radius: 50%;
  animation: pulse 3.4s ease-in-out infinite;
}
.play-label {
  position: relative;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.35;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.55; }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 3;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d8cfc3;
}
.hero-scroll span {
  display: inline-block;
  margin-left: 0.35rem;
  animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.clients { padding: 5.5rem 0 2.4rem; overflow: hidden; }
.clients .section-head { border-bottom: 0; padding-bottom: 0; margin-bottom: 2rem; }
.clients .display { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 3.8rem;
  width: max-content;
  animation: marquee 42s linear infinite;
  padding: 1.2rem 0 2.2rem;
}
.logo-track img {
  height: 48px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.86;
  transition: opacity 0.35s, filter 0.35s;
}
.logo-track img:hover { opacity: 1; filter: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}
.intro-copy .display { max-width: 14ch; margin-bottom: 1.6rem; }

.work, .videos { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

.work-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--gap);
}

.work-item,
.video-tile,
.t-video,
.showreel-stage,
.hero-play { cursor: none; }

body:not(.has-cursor) .work-item,
body:not(.has-cursor) .video-tile,
body:not(.has-cursor) .t-video,
body:not(.has-cursor) .showreel-stage,
body:not(.has-cursor) .hero-play { cursor: pointer; }

.work-item {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: var(--radius);
  background: #1a1512;
}
.work-large { grid-row: span 2; min-height: 700px; }
.work-side { min-height: 338px; }
.work-wide { grid-column: 1 / -1; min-height: 390px; }
.work-half { min-height: 360px; }

.work-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(16, 12, 10, 0.82));
  pointer-events: none;
}

.work-image { position: absolute; inset: 0; }
.work-image img,
.video-tile img,
.bts-item img,
.about-media img,
.showreel-stage img,
.t-video video,
.service-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.work-item:hover img,
.video-tile:hover img,
.showreel-stage:hover img { transform: scale(1.06); }

.work-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.4rem 1.4rem 1.3rem;
  transform: translateY(6px);
  transition: transform 0.5s var(--ease);
}
.work-item:hover .work-meta { transform: none; }
.work-meta h3 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 550;
}
.work-meta p {
  color: #d8cfc3;
  font-size: 0.82rem;
  margin-top: 0.25rem;
}
.work-arrow {
  position: absolute;
  right: 1.3rem;
  bottom: 1.4rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s, transform 0.4s var(--ease);
  color: var(--gold);
  font-size: 1.3rem;
}
.work-item:hover .work-arrow { opacity: 1; transform: none; }

.showreel { padding: clamp(4.5rem, 9vw, 7rem) 0; }
.showreel-title { max-width: 12ch; }
.showreel-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  display: block;
  border-radius: 22px;
}
.showreel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(16,12,10,0.5));
}
.showreel-play {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.services { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.service-list { border-top: 1px solid var(--line); }
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: padding 0.4s var(--ease);
}
.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 0.45s var(--ease);
}
.service-row:hover { padding: 1.8rem 0; }
.service-row:hover::before { width: 100%; }

.service-num {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.35s, transform 0.4s var(--ease);
}
.service-row:hover .service-num {
  color: var(--accent);
  transform: translateY(-4px);
}
.service-body h3 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  font-weight: 550;
}
.service-body p {
  color: var(--ink-soft);
  max-width: 40rem;
  margin-top: 0.4rem;
  font-size: 0.98rem;
}
.service-arrow {
  opacity: 0;
  transform: translateX(-8px);
  color: var(--accent);
  font-size: 1.5rem;
  transition: opacity 0.4s, transform 0.4s var(--ease);
}
.service-row:hover .service-arrow { opacity: 1; transform: none; }
.service-preview {
  position: absolute;
  right: 4.2rem;
  top: 50%;
  width: 170px;
  height: 104px;
  overflow: hidden;
  border-radius: 12px;
  opacity: 0;
  transform: translate(14px, -50%);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s var(--ease);
}
.service-row:hover .service-preview {
  opacity: 1;
  transform: translate(0, -50%);
}

.process { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.process-line {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold), transparent);
  margin: 0 0 2rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.process-steps li {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(27, 22, 18, 0.08);
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.6rem;
  min-height: 100%;
}
.process-steps span {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.process-steps h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  margin-bottom: 0.6rem;
}
.process-steps p { color: var(--ink-soft); font-size: 0.95rem; }

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 82vh;
}
.about-media { overflow: hidden; min-height: 100%; }
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.8rem, 6vw, 5.5rem);
}
.about-copy .display { max-width: 11ch; margin: 1.1rem 0 1.5rem; }
.about-copy .lede + .lede { margin-top: 1.1rem; }

.video-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: var(--gap);
}
.video-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #1a1512;
}
.video-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16, 12, 10, 0.78));
}
.video-a { grid-column: 1 / 6; grid-row: span 2; }
.video-b { grid-column: 6 / 10; }
.video-c { grid-column: 10 / 13; }
.video-d { grid-column: 6 / 13; }
.video-e { grid-column: 1 / 5; }
.video-f { grid-column: 5 / 9; }
.video-g { grid-column: 9 / 13; }
.video-h { grid-column: 1 / 7; }
.video-i { grid-column: 7 / 13; }
.video-info {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
}
.video-info h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 550; }
.video-info p { color: #d8cfc3; font-size: 0.78rem; }

.bts { padding: 0 0 clamp(4rem, 8vw, 6.5rem); overflow: hidden; }
.bts .section-inner { margin-bottom: 2rem; }
.bts-track {
  display: flex;
  align-items: flex-end;
  gap: 0.9rem;
  overflow-x: auto;
  padding: 0 var(--pad) 0.6rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.bts-track::-webkit-scrollbar { display: none; }
.bts-item {
  flex: 0 0 300px;
  height: 390px;
  overflow: hidden;
  border-radius: 16px;
  scroll-snap-align: start;
}
.bts-item.tall { flex-basis: 260px; height: 470px; }
.bts-item.wide { flex-basis: 480px; }
.bts-item:hover img { transform: scale(1.05); }

.testimonials { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.testimonial-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: var(--gap);
}
.quote-card {
  grid-column: 1;
  grid-row: 1 / 3;
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  border-radius: 22px;
  background: linear-gradient(160deg, #2a1c16 0%, #171310 100%);
  color: #f6f1ea;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
}
.quote {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.35;
  font-weight: 500;
}
.quote-author { margin-top: 1.6rem; font-weight: 700; }
.quote-source {
  color: #c9bfb3;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.t-video {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 16px;
  background: #1a1512;
}
.t-video-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(16, 12, 10, 0.86));
  color: #f6f1ea;
}
.play-mini {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.t-video-meta h3 { font-size: 1rem; }
.t-video-meta p { color: #d8cfc3; font-size: 0.8rem; }

.finale {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.finale-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 80%, rgba(196, 74, 50, 0.28), transparent 46%),
    radial-gradient(ellipse at 90% 10%, rgba(198, 161, 90, 0.16), transparent 42%),
    linear-gradient(180deg, #171310, #100e0c);
}
.finale-inner { position: relative; padding: 7rem 0; }
.finale-ask {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.finale .display { max-width: 13ch; color: #fff; }
.finale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.contact { padding: clamp(4.5rem, 9vw, 7rem) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-copy .display { max-width: 11ch; margin: 1rem 0 1.3rem; }
.contact-details { display: grid; gap: 1rem; margin-top: 1.8rem; }
.contact-details span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.contact-details a { border-bottom: 1px solid transparent; font-weight: 600; }
.contact-details a:hover { border-bottom-color: var(--accent); }

.enquiry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.1rem;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(27, 22, 18, 0.08);
  border-radius: 22px;
  padding: 1.6rem;
}
.enquiry label { display: grid; gap: 0.4rem; }
.enquiry label.full, .enquiry .btn { grid-column: 1 / -1; }
.enquiry span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.enquiry input,
.enquiry select,
.enquiry textarea {
  width: 100%;
  padding: 0.75rem 0.2rem;
  border-bottom: 1px solid rgba(27, 22, 18, 0.16);
  outline: none;
}
.enquiry input:focus,
.enquiry select:focus,
.enquiry textarea:focus { border-bottom-color: var(--accent); }
.enquiry select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6f675e 50%), linear-gradient(135deg, #6f675e 50%, transparent 50%);
  background-position: calc(100% - 12px) 18px, calc(100% - 7px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.enquiry textarea { resize: vertical; min-height: 110px; }
.enquiry .btn { justify-content: center; margin-top: 0.4rem; color: #fff; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: 0.88rem; }

.footer {
  padding: 2.6rem 0 1.3rem;
  background: #171310;
  color: #f6f1ea;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-bottom: 1.6rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.85rem; }
.footer-brand img { height: 46px; }
.footer-brand p,
.footer-nav,
.footer-social,
.footer-bottom {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-nav, .footer-social { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-nav a:hover, .footer-social a:hover { color: var(--gold); }
.footer-bottom {
  width: min(1280px, calc(100% - var(--pad) * 2));
  margin: 0 auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(246, 241, 234, 0.1);
  display: flex;
  justify-content: space-between;
  color: #b4aaa0;
}
.footer-sample { color: #7d746c; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 10, 8, 0.94);
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem 2rem;
}
.modal[hidden] { display: none; }
.modal-close {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  color: #f6f1ea;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.modal-frame {
  width: min(1200px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.modal-frame iframe,
.modal-frame video { width: 100%; height: 100%; border: 0; }

.reveal { --delay: 0s; opacity: 0; transform: translateY(24px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); transition-delay: var(--delay); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-line { display: block; overflow: hidden; padding: 0.08em 0.03em 0.06em 0; }
.reveal-line span { display: block; transform: translateY(110%); transition: transform 0.95s var(--ease); transition-delay: var(--delay); }
.reveal-line.is-in span { transform: none; }
.reveal-media { clip-path: inset(8% 8% 8% 8%); transition: clip-path 1.1s var(--ease); }
.reveal-media.is-in { clip-path: inset(0 0 0 0); }

@media (max-width: 1100px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: grid; place-content: center; }
  .hero-content { grid-template-columns: 1fr; margin-bottom: 6rem; }
  .hero-title, .hero-kicker, .hero-manifesto, .hero-meta, .hero-actions { grid-column: 1; }
  .hero-play { top: auto; bottom: 5.4rem; width: 96px; height: 96px; }
  .section-head,
  .intro-grid,
  .about,
  .contact-grid { grid-template-columns: 1fr; }
  .about-media { min-height: 48vh; }
  .work-layout,
  .process-steps,
  .testimonial-layout { grid-template-columns: 1fr 1fr; }
  .work-large, .work-wide, .quote-card { grid-column: 1 / -1; grid-row: auto; }
  .work-large { min-height: 480px; }
  .service-preview { display: none; }
  .video-wall { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .video-a, .video-b, .video-c, .video-d, .video-e,
  .video-f, .video-g, .video-h, .video-i { grid-column: auto; grid-row: auto; }
  .video-a, .video-d, .video-h { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero { height: auto; padding: 6.4rem 0 5.2rem; }
  .hero-content { margin-bottom: 5rem; }
  .hero-title { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero-manifesto { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-actions .btn { width: 100%; }
  .work-layout,
  .process-steps,
  .testimonial-layout,
  .enquiry,
  .footer-inner,
  .footer-bottom,
  .video-wall { grid-template-columns: 1fr; }
  .video-a, .video-d, .video-h { grid-column: auto; }
  .work-large, .work-wide, .work-half, .work-side { min-height: 300px; }
  .service-row { grid-template-columns: 42px 1fr; }
  .service-arrow { display: none; }
  .bts-item, .bts-item.wide, .bts-item.tall { flex-basis: 78vw; height: 340px; }
  .showreel-stage { aspect-ratio: 16 / 11; }
  .quote-card { min-height: 0; }
  .enquiry { padding: 1.2rem; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 38px; }
  .hero-play { width: 84px; height: 84px; bottom: 6rem; }
  .logo-track img { height: 36px; max-width: 108px; }
}

@media (hover: none), (pointer: coarse) {
  body.has-cursor { cursor: auto; }
  .cursor { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
