/* Core Visuals NYC: alternative homepage.
   Full-viewport film hero, one layout rhythm, motion only where it carries meaning.
   Isolated from styles.css on purpose. */

:root {
  --ink: #0a0a0a;
  --ink-soft: #1f2937;
  --muted: #6b7280;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: #e4e2dc;
  --line-dark: rgba(255, 255, 255, 0.14);
  --gold: #d4af37;
  --gold-deep: #a8871f;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, p, figure, blockquote, address, ol, ul {
  margin: 0;
}
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
p {
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img, video {
  display: block;
  max-width: 100%;
}
address {
  font-style: normal;
}
a, button, summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}

.container {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  left: 16px;
  top: -100px;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 18px;
  z-index: 100;
  font-weight: 600;
}
.skip:focus {
  top: 16px;
}

/* ---------- Opening screen (JS only; hidden without it) ---------- */
.loading-screen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
html.js .loading-screen {
  display: flex;
  animation: color-flicker 0.8s infinite;
}
html.js .loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
}
@keyframes color-flicker {
  0% { background: var(--gold); }
  33% { background: #06b6d4; }
  66% { background: #ec4899; }
  100% { background: var(--gold); }
}
.loading-content {
  text-align: center;
}
.loading-percentage {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease;
}
.loading-word {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* Hero entrance waits for the opening screen to clear. */
html.js:not(.is-ready) .hero-video,
html.js:not(.is-ready) .h1-line,
html.js:not(.is-ready) .hero-eyebrow,
html.js:not(.is-ready) .hero .lead,
html.js:not(.is-ready) .hero-actions,
html.js:not(.is-ready) .hero-price,
html.js:not(.is-ready) .hero-scroll {
  animation-play-state: paused;
}

/* ---------- Header: transparent over the film, solid once you scroll ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  color: var(--white);
  transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out), box-shadow 0.35s;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  pointer-events: none;
  transition: opacity 0.35s;
}
.site-header.is-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-solid::after {
  opacity: 0;
}
.header-inner {
  position: relative;
  z-index: 1;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.wordmark {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.wordmark span {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-left: 8px;
  vertical-align: 2px;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links > a:not(.button) {
  position: relative;
  padding-block: 8px;
}
.nav-links > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transition: right 0.3s var(--ease-out);
}
.nav-links > a:not(.button):hover::after {
  right: 0;
}
.menu-toggle {
  display: none;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* ---------- Buttons and links ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 28px;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
}
.button:hover {
  background: #e2c257;
  border-color: #e2c257;
  transform: translateY(-2px);
}
.button-small {
  min-height: 44px;
  padding: 11px 20px;
  font-size: 14px;
}
.button-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}
.button-light {
  background: var(--white);
  border-color: var(--white);
}
.button-light:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  transition: gap 0.25s var(--ease-out), color 0.2s;
}
.text-link i {
  font-style: normal;
}
.text-link:hover {
  gap: 16px;
  color: var(--gold-deep);
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: max(640px, 100svh);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: hero-settle 6s var(--ease-out) forwards;
}
@keyframes hero-settle {
  to {
    transform: scale(1);
  }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 60%);
}
.hero-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 88px;
}
.hero-copy {
  max-width: 1040px;
}
.hero-eyebrow {
  color: var(--gold);
}
h1 {
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.h1-line {
  display: block;
  opacity: 0;
  transform: translateY(0.35em);
  animation: rise 0.9s var(--ease-out) forwards;
}
.h1-line:nth-child(2) {
  animation-delay: 0.1s;
}
.h1-line:nth-child(3) {
  animation-delay: 0.2s;
  color: var(--gold);
}
.hero-eyebrow,
.hero .lead,
.hero-actions,
.hero-price {
  opacity: 0;
  animation: rise 0.9s var(--ease-out) forwards;
}
.hero .lead {
  animation-delay: 0.35s;
}
.hero-actions {
  animation-delay: 0.45s;
}
.hero-price {
  animation-delay: 0.55s;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}
.hero .lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
  margin-top: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.hero-price {
  display: inline-block;
  margin-top: 26px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-price strong {
  color: var(--white);
  font-weight: 700;
}
.hero-price:hover {
  color: var(--white);
  border-color: var(--gold);
}
.hero-side {
  flex-shrink: 0;
}
.video-control {
  background: rgba(10, 10, 10, 0.55);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 10px 16px;
  min-height: 42px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s;
}
.video-control:hover {
  border-color: var(--gold);
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 22px;
  height: 36px;
  margin-left: -11px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  opacity: 0;
  animation: rise 1s 1s var(--ease-out) forwards;
}
.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--gold);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
  padding-block: 18px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-set {
  white-space: nowrap;
  padding-right: 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.marquee-set i {
  font-style: normal;
  color: var(--gold);
  padding-inline: 14px;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Sections ---------- */
.section {
  padding-block: 112px;
}
.section-tight {
  padding-top: 0;
}
.section-heading {
  margin-bottom: 48px;
  max-width: 720px;
}
h2 {
  font-size: clamp(34px, 4vw, 56px);
}
.section-lead {
  margin-top: 18px;
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
}
.heading-row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.heading-row > div {
  max-width: 720px;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
.service-grid > [data-reveal]:nth-child(2),
.work-grid > [data-reveal]:nth-child(2),
.quote-grid > [data-reveal]:nth-child(2),
.approach-list > [data-reveal]:nth-child(2) {
  transition-delay: 0.1s;
}
.service-grid > [data-reveal]:nth-child(3),
.work-grid > [data-reveal]:nth-child(3),
.quote-grid > [data-reveal]:nth-child(3),
.approach-list > [data-reveal]:nth-child(3) {
  transition-delay: 0.2s;
}

/* ---------- Services ---------- */
.service-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -28px rgba(10, 10, 10, 0.45);
}
.card-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.service-card:hover .card-media img {
  transform: scale(1.05);
}
.card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 28px 28px 30px;
}
.card-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.card-copy h3 {
  font-size: 24px;
  margin-top: 12px;
}
.card-copy p:not(.card-kicker) {
  margin-top: 12px;
  font-size: 15px;
  color: var(--muted);
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: gap 0.25s var(--ease-out);
}
.card-link i {
  font-style: normal;
}
.service-card:hover .card-link {
  gap: 16px;
}

/* ---------- Work ---------- */
.work-card {
  min-width: 0;
  display: block;
}
.work-media {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-soft);
}
.work-media img,
.preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-media img {
  transition: transform 0.9s var(--ease-out);
}
.work-card:hover .work-media img {
  transform: scale(1.04);
}
.preview-video {
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.work-card.is-previewing .preview-video {
  opacity: 1;
}
.work-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.6);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.work-caption {
  margin-top: 18px;
}
.work-caption h3 {
  font-size: 21px;
  letter-spacing: -0.02em;
}
.work-caption p {
  margin-top: 6px;
  font-size: 15px;
  color: var(--muted);
}

/* ---------- Films ---------- */
.films {
  background: var(--ink);
  color: var(--white);
}
.films .eyebrow {
  color: var(--gold);
}
.films .section-lead {
  color: rgba(255, 255, 255, 0.7);
}
.films-lead {
  margin-top: 0;
  max-width: 320px;
  font-size: 15px;
  text-align: right;
}
.film-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 34vw);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-inline: max(48px, calc((100% - 1240px) / 2));
  padding-bottom: 8px;
}
.film-strip::-webkit-scrollbar {
  display: none;
}
.film {
  scroll-snap-align: start;
  display: block;
  min-width: 0;
}
.film-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--ink-soft);
  transition: transform 0.6s var(--ease-out);
}
.film:hover .film-video {
  transform: scale(1.015);
}
.film-caption {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.film-caption h3 {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.film-caption p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ---------- Approach ---------- */
#approach {
  background: var(--paper);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: start;
}
.approach-grid .section-heading {
  margin-bottom: 0;
  position: sticky;
  top: calc(var(--header-h) + 32px);
}
.approach-list {
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.approach-list li {
  counter-increment: step;
  position: relative;
  padding: 34px 0 34px 72px;
  border-top: 1px solid var(--line);
}
.approach-list li:last-child {
  border-bottom: 1px solid var(--line);
}
.approach-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 38px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
}
.approach-list h3 {
  font-size: 26px;
  letter-spacing: -0.025em;
}
.approach-list p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
}

/* ---------- Pricing ---------- */
.pricing-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.pricing-intro .section-heading {
  margin-bottom: 0;
}
.pricing-intro .text-link {
  margin-top: 26px;
}
.price-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.price-card {
  padding: 30px 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}
.price-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.price-card h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.price {
  margin-top: 18px;
  font-size: clamp(38px, 3.6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.price-card p:not(.price) {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}
.questions {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
}
.questions > h3 {
  font-size: 30px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 500;
  color: var(--gold-deep);
  transition: transform 0.3s var(--ease-out), background 0.2s;
}
details[open] summary::after {
  transform: rotate(45deg);
  background: var(--paper);
}
details p {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
}
details p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink);
}

/* ---------- Feedback ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.quote {
  padding: 32px 30px;
  background: var(--paper);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.quote blockquote {
  font-size: 16px;
  line-height: 1.65;
  flex: 1;
}
.quote figcaption {
  margin-top: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
}
.quote-more {
  margin-top: 40px;
}

/* ---------- Contact ---------- */
.contact-section {
  background: var(--ink);
  color: var(--white);
  padding-block: 128px;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  right: -20vw;
  top: -30vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0) 65%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  text-align: center;
}
.contact-section .eyebrow {
  color: var(--gold);
}
.contact-section h2 {
  font-size: clamp(40px, 5.6vw, 84px);
}
.contact-lead {
  margin: 26px auto 0;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}
.contact-email {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.contact-email:hover {
  border-color: var(--gold);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid var(--line-dark);
  padding: 64px 0 36px;
  font-size: 14px;
}
.site-footer .wordmark {
  color: var(--white);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
}
.footer-brand p {
  margin-top: 18px;
  max-width: 320px;
  line-height: 1.7;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-label {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-links address {
  line-height: 1.6;
  margin-top: 4px;
}
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}
.footer-bottom a:hover {
  color: var(--gold);
}

/* ---------- Responsive ---------- */
@media (min-width: 861px) and (max-height: 800px) {
  h1 {
    font-size: clamp(40px, 6vw, 84px);
  }
  .hero-inner {
    padding-top: calc(var(--header-h) + 36px);
    padding-bottom: 60px;
  }
  .hero .lead {
    margin-top: 20px;
  }
  .hero-actions {
    margin-top: 26px;
  }
  .hero-price {
    margin-top: 20px;
  }
}

@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .film-strip {
    padding-inline: 32px;
    grid-auto-columns: minmax(280px, 46vw);
  }
  .approach-grid,
  .pricing-panel,
  .questions {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 68px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 12px 20px 24px;
    background: var(--white);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links > a:not(.button) {
    padding-block: 14px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links > a:not(.button)::after {
    display: none;
  }
  .nav-links .button {
    margin-top: 16px;
  }
  .site-header.is-open {
    color: var(--ink);
    background: var(--white);
  }
  .site-header.is-open::after {
    opacity: 0;
  }

  .hero {
    min-height: max(600px, 100svh);
  }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 72px;
    gap: 24px;
  }
  .hero-video {
    object-position: center 40%;
  }
  h1 {
    font-size: clamp(40px, 11vw, 64px);
  }
  .hero .lead {
    font-size: 16px;
    margin-top: 20px;
  }
  .hero-actions {
    margin-top: 26px;
    width: 100%;
  }
  .hero-actions .button {
    flex: 1 1 auto;
  }
  .hero-side {
    order: -1;
    align-self: flex-end;
  }
  .hero-scroll {
    display: none;
  }
  .marquee {
    padding-block: 14px;
  }
  .marquee-set {
    font-size: 12px;
  }

  .section {
    padding-block: 72px;
  }
  .section-heading {
    margin-bottom: 32px;
  }
  .section-lead {
    font-size: 16px;
  }
  .heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .films-lead {
    text-align: left;
  }
  .service-grid,
  .work-grid,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .card-copy {
    padding: 22px 22px 24px;
  }
  .film-strip {
    padding-inline: 20px;
    grid-auto-columns: minmax(260px, 78vw);
    gap: 14px;
  }
  .film-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .approach-grid,
  .pricing-panel,
  .questions {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .approach-grid .section-heading {
    position: static;
  }
  .approach-list li {
    padding: 26px 0 26px 52px;
  }
  .approach-list li::before {
    top: 30px;
  }
  .approach-list h3 {
    font-size: 22px;
  }
  .price-options {
    grid-template-columns: 1fr;
  }
  .questions {
    margin-top: 56px;
    padding-top: 40px;
  }
  .questions > h3 {
    font-size: 26px;
  }
  summary {
    font-size: 16px;
    padding: 18px 0;
  }
  .contact-section {
    padding-block: 88px;
  }
  .contact-lead {
    font-size: 17px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero-actions .button {
    width: 100%;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-video {
    transform: none;
  }
  .h1-line,
  .hero-eyebrow,
  .hero .lead,
  .hero-actions,
  .hero-price,
  .hero-scroll,
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .marquee-track {
    animation: none;
  }
}

@media print {
  .site-header,
  .video-control,
  .hero-scroll,
  .marquee,
  .films,
  .preview-video {
    display: none;
  }
  .hero {
    min-height: auto;
    color: var(--ink);
    background: var(--white);
  }
  .hero-media {
    display: none;
  }
  .contact-section,
  .site-footer {
    background: var(--white);
    color: var(--ink);
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
