/* Focus Built — cinematic landing */

:root {
  --bg: #F5F2EC;
  --bg-soft: #ECE7DD;
  --paper: #FAF7F1;
  --ink: #1A1815;
  --muted: #7A736A;
  --rule: #D9D3C7;
  --accent: #1d3a52;
  --accent-soft: #2a4d6a;
  --photo-filter: none;
  --display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--bg); }
p { text-wrap: pretty; }
button { font-family: inherit; }

.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 720px) { .container { padding: 0 24px; } }

/* ── REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 1.1s var(--ease),
    transform 1.1s var(--ease),
    clip-path 1.4s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  transition:
    background 0.5s var(--ease),
    color 0.5s var(--ease),
    border-color 0.5s var(--ease),
    backdrop-filter 0.5s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav.nav-over-hero { color: rgba(255, 255, 255, 0.95); }
.nav.nav-on-page {
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  cursor: pointer;
}
.nav-brand-mark { width: 30px; height: 30px; display: grid; place-items: center; }
.nav-brand-text {
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 13.5px;
}
.nav-brand-text em {
  font-style: normal;
  opacity: 0.6;
  font-weight: 400;
  margin-left: 6px;
  display: inline-block;
}
@media (max-width: 540px) {
  .nav-brand-text em { display: none; }
}
.nav-cta {
  font-family: var(--body);
  font-size: 13px;
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
  padding: 11px 22px 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-over-hero .nav-cta:hover {
  background: #fff;
  color: var(--ink);
}
.nav-on-page .nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
}
.nav-cta-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.nav-cta:hover .nav-cta-arrow { transform: translateX(4px); }

/* ── CINEMATIC HERO ───────────────────────────────────── */
.hero-cine {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  color: #fff;
  background: #0a0a0a;
}
.hero-cine-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-cine-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: var(--photo-filter);
  animation: heroKenBurns 22s ease-out both;
  transform-origin: center center;
}
@keyframes heroKenBurns {
  from { transform: scale(1.18); }
  to   { transform: scale(1.04); }
}
.hero-cine-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.15) 36%,
      rgba(0,0,0,0.30) 70%,
      rgba(0,0,0,0.80) 100%);
}
.hero-cine-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    transparent 30%,
    rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.hero-cine-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 140px;
}
.hero-cine-eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  margin-bottom: 36px;
  animation: heroFadeIn 1.2s var(--ease) 0.2s both;
}
.hero-cine-eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  margin-right: 14px;
  animation: heroPulse 2.4s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-cine-tag {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7.4vw, 120px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 56px 0;
  max-width: 22ch;
}
.hero-cine-tag em {
  font-style: italic;
  color: rgba(255,255,255,1);
  background: linear-gradient(to right, #fff 0%, color-mix(in oklab, var(--accent-soft) 30%, #fff) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-cine-tag .hl {
  display: block;
  overflow: hidden;
}
.hero-cine-tag .hl > * { display: inline-block; }
/* line-by-line entrance */
.hero-cine-tag .hl {
  opacity: 0;
  transform: translate3d(0, 60%, 0);
  animation: heroLineUp 1.2s var(--ease) forwards;
}
.hero-cine-tag .hl:nth-child(1) { animation-delay: 0.4s; }
.hero-cine-tag .hl:nth-child(2) { animation-delay: 0.55s; }
.hero-cine-tag .hl:nth-child(3) { animation-delay: 0.7s; }
@keyframes heroLineUp {
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translate3d(0, 8px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero-cine-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s var(--ease) 1.0s both;
}

.btn-primary {
  background: #fff;
  color: var(--ink);
  border: none;
  padding: 16px 26px 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.btn-primary.on-dark { background: #fff; color: var(--ink); }
.btn-primary:hover {
  background: var(--accent);
  color: #fff;
}
.btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn-primary:hover .btn-arrow { transform: translateX(5px); }

.btn-ghost {
  font-size: 14px;
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s var(--ease);
}
.btn-ghost:hover { opacity: 1; }

.hero-cine-meta {
  position: absolute;
  bottom: 56px;
  left: 0; right: 0;
  z-index: 2;
  animation: heroFadeIn 1.2s var(--ease) 1.3s both;
}
.hero-cine-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-cine-meta-item .key {
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10.5px;
  margin-bottom: 8px;
}
.hero-cine-meta-item .val {
  color: rgba(255,255,255,0.95);
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 720px) {
  .hero-cine-meta-row { grid-template-columns: 1fr; gap: 18px; }
  .hero-cine-meta { bottom: 32px; }
}

.hero-cine-scroll {
  position: absolute;
  right: 64px;
  bottom: 56px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  animation: heroFadeIn 1.2s var(--ease) 1.6s both;
}
@media (max-width: 980px) { .hero-cine-scroll { display: none; } }
.hero-cine-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0));
  position: relative;
  overflow: hidden;
}
.hero-cine-scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: scrollSlide 2.4s var(--ease) infinite;
}
@keyframes scrollSlide {
  0% { top: -50%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ── INTRO ────────────────────────────────────────────── */
.intro {
  padding: 140px 0 100px;
  background: var(--bg);
}
.intro-eyebrow .eyebrow { margin-bottom: 36px; }
.intro-statement {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  max-width: 30ch;
  margin: 0 0 80px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 980px) { .intro-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-meta-k {
  color: var(--muted);
  margin-bottom: 12px;
}
.intro-meta-v {
  font-size: 16px;
  line-height: 1.45;
}
.intro-meta-v span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── MARQUEE ──────────────────────────────────────────── */
.marq {
  background: var(--ink);
  color: var(--bg);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marq-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marq-row {
  display: flex;
  gap: 56px;
  padding-right: 56px;
  align-items: center;
}
.marq-item {
  font-family: var(--body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 400;
}
.marq-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--accent-soft);
  border-radius: 50%;
  margin-right: 18px;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ── SECTION HEAD ─────────────────────────────────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 96px;
  align-items: end;
}
@media (max-width: 980px) { .section-head { grid-template-columns: 1fr; gap: 24px; } }
.section-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 20px 0 0 0;
  max-width: 14ch;
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head-blurb {
  font-size: 17px;
  line-height: 1.6;
  max-width: 42ch;
  margin: 0;
  color: var(--ink);
  padding-bottom: 8px;
}

section.work { padding: 100px 0 60px; }

/* ── PROJECTS ─────────────────────────────────────────── */
.projects {
  display: flex;
  flex-direction: column;
  gap: 180px;
}
@media (max-width: 980px) { .projects { gap: 96px; } }
.proj {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.proj:nth-child(even) { grid-template-columns: 5fr 7fr; }
.proj:nth-child(even) .proj-img-wrap { order: 2; }
.proj:nth-child(even) .proj-meta-col { order: 1; }
@media (max-width: 980px) {
  .proj, .proj:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .proj:nth-child(even) .proj-img-wrap { order: 0; }
  .proj:nth-child(even) .proj-meta-col { order: 1; }
}

.proj-img-wrap {
  /* clip-path entrance */
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s var(--ease), opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.proj-img-wrap.is-in { clip-path: inset(0 0 0 0); }
.proj:nth-child(even) .proj-img-wrap { clip-path: inset(0 0 0 100%); }
.proj:nth-child(even) .proj-img-wrap.is-in { clip-path: inset(0 0 0 0); }

.proj-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-soft);
}
.proj-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  will-change: transform;
}

.proj-meta-col {
  position: relative;
}
.proj-meta-sticky {
  position: sticky;
  top: 140px;
  padding-top: 12px;
}
.proj-counter {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.proj-counter-n { color: var(--accent); font-weight: 500; }
.proj-counter-line {
  width: 40px;
  height: 1px;
  background: var(--rule);
}
.proj-sector {
  font-family: var(--body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 18px;
}
.proj-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 52px);
  letter-spacing: -0.015em;
  line-height: 1.02;
  margin: 0 0 14px 0;
}
.proj-client {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 28px;
}
.proj-rule {
  height: 1px;
  background: var(--rule);
  width: 80px;
  margin-bottom: 24px;
}
.proj-scope {
  color: var(--muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10.5px;
}
.proj-summary {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 28px 0;
  max-width: 44ch;
}
.proj-year {
  color: var(--muted);
  font-size: 11.5px;
  letter-spacing: 0.08em;
}

/* ── STUDIO ───────────────────────────────────────────── */
.studio {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 140px 0;
}
.studio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: center;
  margin-bottom: 120px;
}
@media (max-width: 980px) { .studio-grid { grid-template-columns: 1fr; gap: 48px; } }
.studio-img-wrap {
  overflow: hidden;
}
.studio-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
}
.studio-text h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 20px 0 36px 0;
  max-width: 14ch;
}
.studio-text h2 em { font-style: italic; color: var(--accent); }
.studio-text p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 22px 0;
  max-width: 52ch;
}
.signature {
  margin-top: 36px;
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: 40px;
  line-height: 1;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  padding-top: 72px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 720px) { .principles { grid-template-columns: 1fr; gap: 40px; } }
.principle-no { color: var(--muted); margin-bottom: 18px; }
.principle h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.012em;
  margin: 0 0 16px 0;
  line-height: 1.08;
}
.principle h3 em { font-style: italic; color: var(--accent); }
.principle p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 38ch;
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact { padding: 140px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 100px;
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 56px; } }
.contact-left h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 20px 0 32px 0;
  max-width: 14ch;
}
.contact-left h2 em { font-style: italic; color: var(--accent); }
.contact-blurb {
  font-size: 17px;
  line-height: 1.65;
  max-width: 42ch;
  margin: 0 0 44px 0;
}
.contact-info { border-top: 1px solid var(--rule); }
.contact-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  font-size: 15px;
}
.contact-k {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10.5px;
}
.contact-v.link-email {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  font-weight: 500;
  transition: opacity 0.2s var(--ease);
}
.contact-v.link-email:hover { opacity: 0.7; }

.form { display: grid; gap: 26px; }
.form .field { display: grid; gap: 8px; }
.form label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.form input, .form textarea {
  font-family: var(--body);
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s var(--ease);
  resize: vertical;
}
.form input:focus, .form textarea:focus { border-color: var(--accent); }
.form textarea { min-height: 130px; }
.form-bottom {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.form button {
  font-family: var(--body);
  font-size: 14px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 15px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.form button:hover { background: var(--accent); }
.form button:hover .btn-arrow { transform: translateX(5px); }
.form-note { color: var(--muted); font-size: 11.5px; }
.form-note a { color: var(--accent); border-bottom: 1px solid currentColor; }
.ok {
  font-family: var(--mono); font-size: 13px; color: var(--accent);
  padding: 16px; border: 1px solid var(--accent);
  background: color-mix(in oklab, var(--accent) 7%, transparent);
}

/* ── CLOSING TAGLINE ──────────────────────────────────── */
.closing {
  background: var(--ink);
  color: var(--bg);
  padding: 200px 0 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, color-mix(in oklab, var(--accent) 22%, transparent), transparent 50%),
    radial-gradient(circle at 80% 80%, color-mix(in oklab, var(--accent-soft) 18%, transparent), transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}
.closing > * { position: relative; z-index: 1; }
.closing-eyebrow {
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  display: inline-block;
}
.closing-tag {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}
.closing-tag em {
  font-style: italic;
  color: color-mix(in oklab, var(--accent-soft) 100%, #fff 35%);
}
.closing-signoff {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 720px) { .closing { padding: 120px 0 100px; } }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--rule);
  padding: 80px 0 40px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-blurb { font-size: 14px; color: var(--muted); max-width: 36ch; line-height: 1.55; margin: 0; }
.footer h4 {
  font-family: var(--body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 18px 0;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 8px; font-size: 14px; line-height: 1.5; }
.footer li a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--rule);
  font-size: 12px; color: var(--muted); font-family: var(--mono);
  flex-wrap: wrap; gap: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-cine-img,
  .hero-cine-tag .hl,
  .marq-track,
  .hero-cine-eyebrow-dot,
  .hero-cine-scroll-line::after,
  .reveal {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .proj-img-wrap { clip-path: inset(0 0 0 0) !important; }
}
