/* ============================================================
   LANDO BREWINGTON — PORTFOLIO V2
   Bone-white editorial. Inspired by landonorris.com calm + sparse.
   Palette: cream / olive-dark / electric lime / black.
   ============================================================ */

:root {
  --c-bg: #f4f4ed;
  --c-panel: #282c20;
  --c-ink: #0d0d0d;
  --c-ink-dim: #6b6b66;
  --c-rule: rgba(13, 13, 13, 0.12);
  --c-lime: #d8ff5a;
  --c-lime-deep: #c9f000;
  --f-display: 'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  --f-sans: 'Inter', -apple-system, system-ui, 'Segoe UI', sans-serif;
  --f-mono: 'Space Mono', 'Menlo', monospace;
  --pad-x: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } .cursor-dot { display: none; } }

a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
em { font-family: var(--f-display); font-style: italic; font-weight: 400; }
.mono { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-ink); }

/* ===== Custom cursor ===== */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--c-ink); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.18s ease, height 0.18s ease, background 0.18s ease;
  mix-blend-mode: difference;
}
.cursor-dot.hover { width: 18px; height: 18px; background: var(--c-lime); }

/* ===== Persistent UI ===== */
.brand-mark {
  position: fixed; top: 22px; left: var(--pad-x);
  z-index: 100;
  display: flex; flex-direction: column; line-height: 1;
}
.brand-mark-line1 {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 18px; letter-spacing: -0.01em;
}
.brand-mark-line2 {
  font-family: var(--f-sans); font-weight: 700;
  font-size: 13px; letter-spacing: 0.18em;
  margin-top: 2px;
}

.monogram {
  position: fixed; top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: block;
}
.monogram svg { transition: transform 0.4s ease; }
.monogram:hover svg { transform: rotate(180deg); }

.cta-pill {
  position: fixed; top: 22px; right: var(--pad-x);
  z-index: 100;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--c-lime);
  color: var(--c-ink);
  font-family: var(--f-sans); font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(216, 255, 90, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(216, 255, 90, 0.7); }
.cta-pill-dot { width: 6px; height: 6px; background: var(--c-ink); border-radius: 50%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh; min-height: 720px;
  background: var(--c-bg);
  overflow: hidden;
}
.hero-topo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.55;
}
.hero-topo path {
  fill: none;
  stroke: var(--c-ink);
  stroke-width: 0.7;
  opacity: 0.32;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.7;
}

.hero-meta {
  position: absolute;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 5;
}
.hero-meta-tl { top: 90px; left: var(--pad-x); }
.hero-meta-tr { top: 90px; right: var(--pad-x); text-align: right; }

.hero-card {
  position: absolute; left: var(--pad-x); bottom: 80px;
  background: rgba(244, 244, 237, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--c-rule);
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 10px;
  border-radius: 4px;
  max-width: 320px;
  z-index: 5;
  transition: transform 0.4s ease;
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card-label { color: var(--c-ink-dim); }
.hero-card-row { display: flex; align-items: center; gap: 12px; }
.hero-card-thumb {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--c-panel), #4a5040);
  border-radius: 4px;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.hero-card-thumb::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 4px, rgba(216,255,90,0.18) 4px 5px);
}
.hero-card-name { font-family: var(--f-display); font-size: 18px; font-weight: 500; line-height: 1.1; }
.hero-card-tag { color: var(--c-ink-dim); margin-top: 4px; }

.hero-bottom {
  position: absolute; bottom: 28px; right: var(--pad-x);
  display: flex; align-items: center; gap: 14px;
  z-index: 5;
}
.hero-bottom-rule { width: 36px; height: 1px; background: var(--c-ink); }

@media (max-width: 768px) {
  .hero-meta-tr { display: none; }
  .hero-meta-tl { top: 80px; }
  .hero-card { bottom: 70px; max-width: calc(100% - 2 * var(--pad-x)); }
  .monogram { top: 14px; }
  .monogram svg { width: 40px; height: 40px; }
  .cta-pill { padding: 8px 14px; font-size: 11px; }
  .brand-mark-line1 { font-size: 16px; }
  .brand-mark-line2 { font-size: 11px; }
}

/* ===== INTRO ===== */
.intro {
  padding: 18vh var(--pad-x) 14vh;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.intro-copy {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.42;
  font-weight: 300;
  color: var(--c-ink);
  letter-spacing: -0.005em;
}
.intro-meta {
  margin-top: 60px;
  display: flex; justify-content: space-between;
  color: var(--c-ink-dim);
}

/* ===== MOOD BOARD (scattered Polaroids) ===== */
.moodboard {
  padding: 12vh var(--pad-x) 16vh;
  position: relative;
}
.moodboard-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--c-rule);
  padding-bottom: 18px;
}
.moodboard-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.moodboard-stage {
  position: relative;
  height: 720px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.polaroid {
  position: absolute;
  width: 200px;
  background: #fefefb;
  padding: 10px 10px 38px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s ease, z-index 0s 0s;
  cursor: pointer;
  will-change: transform;
}
.polaroid:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.06) !important;
  box-shadow: 0 22px 50px rgba(0,0,0,0.18), 0 6px 14px rgba(0,0,0,0.08);
  z-index: 50 !important;
}
.polaroid-img {
  width: 100%; height: 150px;
  object-fit: cover;
  background: #ddd;
  display: block;
}
.polaroid-cap {
  position: absolute; left: 12px; bottom: 10px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--c-ink);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .moodboard-stage { height: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .polaroid { position: static; width: 100%; transform: none !important; }
  .polaroid-img { height: 130px; }
}

/* ===== SELECTED WORK ===== */
.selected { padding: 8vh var(--pad-x) 6vh; }
.selected-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-bottom: 1px solid var(--c-rule);
  padding-bottom: 18px;
  margin-bottom: 60px;
}
.selected-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 12vh 0;
  border-top: 1px solid var(--c-rule);
}
.case-text { padding-right: 20px; }
.case-num {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-ink-dim);
  margin-bottom: 14px;
}
.case-name {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.case-name em { font-style: italic; }
.case-label {
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px;
  padding: 5px 12px;
  border: 1px solid var(--c-ink);
  border-radius: 999px;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}
.case-desc {
  font-family: var(--f-sans);
  font-size: 17px; line-height: 1.6;
  color: var(--c-ink-dim);
  max-width: 460px;
  margin-bottom: 30px;
}
.case-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: var(--c-lime);
  color: var(--c-ink);
  font-family: var(--f-sans); font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.case-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(216,255,90,0.5); }

.case-image {
  position: relative;
  aspect-ratio: 4/3;
  background: #e8e8df;
  overflow: hidden;
  border-radius: 4px;
}
.case-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.case:hover .case-image img { transform: scale(1.04); }
.case:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.case:nth-child(even) > * { direction: ltr; }

@media (max-width: 900px) {
  .case, .case:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 30px;
    padding: 8vh 0;
  }
  .case-text { padding-right: 0; }
}

/* ===== STATS ===== */
.stats {
  background: var(--c-panel);
  color: var(--c-bg);
  padding: 18vh var(--pad-x);
  position: relative;
  overflow: hidden;
}
.section-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.18;
  pointer-events: none;
}
.stats-row {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.stat { display: flex; flex-direction: column; gap: 14px; }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.stat-place-num { font-style: italic; font-weight: 300; }
.stat-label {
  color: rgba(244,244,237,0.65);
  border-top: 1px solid rgba(244,244,237,0.18);
  padding-top: 12px;
}
@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

/* ===== ALL WORK MASONRY ===== */
.allwork { padding: 16vh var(--pad-x); }
.allwork-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-bottom: 1px solid var(--c-rule);
  padding-bottom: 18px;
  margin-bottom: 60px;
}
.allwork-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.masonry {
  column-count: 4;
  column-gap: 24px;
}
@media (max-width: 1100px) { .masonry { column-count: 3; } }
@media (max-width: 720px)  { .masonry { column-count: 2; column-gap: 14px; } }
@media (max-width: 420px)  { .masonry { column-count: 1; } }

.tile {
  display: block;
  break-inside: avoid;
  margin-bottom: 24px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.tile:hover { transform: translateY(-6px); }
.tile-img {
  width: 100%;
  background: #e8e8df;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.tile-img img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.tile:hover .tile-img img { transform: scale(1.05); }
.tile-cap {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 4px 0;
  gap: 10px;
}
.tile-name {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}
.tile-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--c-ink-dim);
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
  padding: 16vh var(--pad-x);
  background: var(--c-bg);
}
.services-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-bottom: 1px solid var(--c-rule);
  padding-bottom: 18px;
  margin-bottom: 60px;
}
.services-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.svc {
  display: flex; flex-direction: column; gap: 14px;
  padding: 32px 26px 26px;
  background: #fefefb;
  border: 1px solid var(--c-rule);
  border-radius: 6px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-height: 240px;
}
.svc:hover {
  transform: translateY(-4px);
  border-color: var(--c-ink);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.svc-num { color: var(--c-ink-dim); }
.svc-name {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.svc-blurb {
  font-size: 14.5px;
  color: var(--c-ink-dim);
  line-height: 1.5;
  flex-grow: 1;
}
.svc-cta {
  color: var(--c-ink);
  border-top: 1px solid var(--c-rule);
  padding-top: 14px;
  letter-spacing: 0.16em;
}

/* ===== CONTACT ===== */
.contact {
  padding: 22vh var(--pad-x) 18vh;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.contact .section-canvas { opacity: 0.4; mix-blend-mode: multiply; }
.contact-head { color: var(--c-ink-dim); margin-bottom: 30px; position: relative; z-index: 2; }
.contact-headline {
  font-family: var(--f-display);
  font-size: clamp(70px, 14vw, 200px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 50px;
  position: relative; z-index: 2;
}
.contact-actions {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 80px;
  position: relative; z-index: 2;
}
.contact-mail {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition: color 0.3s ease;
  display: inline-block;
  width: fit-content;
}
.contact-mail:hover { color: var(--c-lime-deep); }
.contact-cal {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  width: fit-content;
  border-bottom: 1px solid var(--c-ink);
  padding-bottom: 4px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  border-top: 1px solid var(--c-rule);
  padding-top: 30px;
  position: relative; z-index: 2;
}
.contact-label { color: var(--c-ink-dim); margin-bottom: 8px; }
.contact-value {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--c-rule);
  padding: 30px var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
}
.footer-mark { display: flex; flex-direction: column; line-height: 1; }
.footer-meta { display: flex; flex-direction: column; gap: 4px; color: var(--c-ink-dim); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--c-ink); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color 0.2s ease; }
.footer-links a:hover { border-bottom-color: var(--c-ink); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(13, 13, 13, 0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: 40px 20px;
  overflow-y: auto;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  background: var(--c-bg);
  max-width: 1100px; width: 100%;
  border-radius: 6px; overflow: hidden;
  max-height: 90vh; display: flex; flex-direction: column;
}
.lightbox-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 20px 26px;
  border-bottom: 1px solid var(--c-rule);
}
.lightbox-label { color: var(--c-ink-dim); margin-bottom: 6px; }
.lightbox-name {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.lightbox-close {
  background: transparent; border: 0;
  font-size: 32px; line-height: 1;
  cursor: pointer; color: var(--c-ink);
  padding: 0 8px;
}
.lightbox-imgs {
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px 26px 30px;
  overflow-y: auto;
}
.lightbox-imgs img {
  width: 100%; height: auto;
  border: 1px solid var(--c-rule);
  border-radius: 4px;
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .polaroid, .case-image img, .tile, .tile-img img, .svc, .cta-pill { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none !important; }
  .hero-video { display: none; }
}

/* ===== V2.5: REAL VIDEO HERO + ABOUT + MARQUEE ===== */

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  filter: contrast(1.05) saturate(0.85) brightness(0.92);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 50%, rgba(244,244,237,0.4) 0%, rgba(244,244,237,0.85) 55%, rgba(244,244,237,0.95) 100%),
    linear-gradient(180deg, rgba(244,244,237,0.5) 0%, rgba(244,244,237,0.62) 60%, rgba(244,244,237,0.92) 100%);
  pointer-events: none;
}
.hero-meta-tl, .hero-meta-tr, .hero-card, .hero-bottom { position: relative; z-index: 3; }
.hero-card { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); background: rgba(244,244,237,0.78); }
.hero-topo, #hero-canvas { display: none !important; }

/* ===== ABOUT SECTION (CINEMA CONTACT SHEET) ===== */
.about {
  padding: 8rem var(--pad-x, 4rem);
  max-width: 1320px;
  margin: 0 auto;
  background: var(--c-bg, #f4f4ed);
  border-top: 1px solid var(--c-rule, rgba(13,13,13,0.08));
  overflow: visible;
}
.about-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.16em;
  color: var(--c-ink-dim, #6b6b66);
  border-bottom: 1px solid var(--c-rule, rgba(13,13,13,0.08));
  padding-bottom: 1.1rem;
  margin-bottom: 2.5rem;
}
.about-meta-mid { color: var(--c-ink, #0d0d0d); font-weight: 700; }
.about-title {
  font-family: var(--f-display, 'Fraunces', serif);
  font-size: clamp(2.4rem, 6.5vw, 5.8rem);
  font-weight: 350;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 4rem 0;
  max-width: 18ch;
  color: var(--c-ink, #0d0d0d);
}
.about-title em { font-style: italic; font-weight: 300; }

/* CINEMA CONTACT SHEET */
.cinema-strip {
  position: relative;
  background: #0d0d0d;
  padding: 38px 0 30px;
  margin: 0 calc(var(--pad-x, 4rem) * -1) 4.5rem;
  overflow: visible;
  transform: rotate(-0.5deg);
  box-shadow: 0 24px 60px -20px rgba(13,13,13,0.25);
}
.cinema-track {
  display: flex;
  gap: 10px;
  padding: 0 32px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.cf {
  margin: 0;
  background: #1a1a1a;
  padding: 6px 6px 4px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.cf img {
  display: block;
  width: 18vw;
  max-width: 220px;
  min-width: 100px;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.cf figcaption {
  display: block;
  text-align: center;
  font-size: 8.5px;
  letter-spacing: 0.14em;
  color: rgba(244,244,237,0.5);
  margin-top: 5px;
  font-family: var(--f-mono, 'Space Mono', monospace);
}
.cf-1 { transform: rotate(-2.4deg) translateY(12px); opacity: 0.78; }
.cf-2 { transform: rotate(0.6deg) translateY(4px); opacity: 0.92; }
.cf-3 {
  transform: scale(1.18) translateY(-14px);
  z-index: 3;
  padding: 8px 8px 6px;
  background: #f4f4ed;
  box-shadow: 0 14px 30px -8px rgba(0,0,0,0.45);
}
.cf-3 img { filter: contrast(1.08) saturate(1.05); }
.cf-3 figcaption { color: rgba(13,13,13,0.6); font-weight: 700; }
.cf-4 { transform: rotate(-0.8deg) translateY(6px); opacity: 0.92; }
.cf-5 { transform: rotate(2.2deg) translateY(14px); opacity: 0.78; }

.cf:hover { transform: scale(1.04) translateY(-6px); z-index: 4; opacity: 1; }
.cf-3:hover { transform: scale(1.22) translateY(-18px); }

/* sprocket holes top/bottom */
.cinema-sprocket {
  position: absolute;
  left: 0; right: 0;
  height: 16px;
  background:
    radial-gradient(circle at 16px 8px, rgba(244,244,237,0.92) 0 4.5px, transparent 5.5px) 0 0/32px 16px repeat-x,
    #0d0d0d;
  pointer-events: none;
  z-index: 1;
}
.cinema-sprocket-top { top: 0; }
.cinema-sprocket-bot { bottom: 0; }

.cinema-stamp {
  position: absolute;
  bottom: 8px; right: 28px;
  display: flex; gap: 0.6rem; align-items: center;
  font-size: 8.5px; letter-spacing: 0.14em;
  color: rgba(216,255,90,0.85);
  z-index: 4;
}

/* About body — 2 cols below the strip */
.about-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.about-lead {
  font-family: var(--f-display, 'Fraunces', serif);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.22;
  margin: 0;
  color: var(--c-ink, #0d0d0d);
}
.about-cols {
  display: flex; flex-direction: column; gap: 1.2rem;
  max-width: 58ch;
}
.about-cols p {
  font-size: 1.05rem;
  line-height: 1.62;
  margin: 0;
  color: var(--c-ink, #0d0d0d);
}
.about-stamp {
  display: flex; gap: 1rem; align-items: center;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--c-rule, rgba(13,13,13,0.08));
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--c-ink-dim, #6b6b66);
  grid-column: 1 / -1;
}
.lime-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d8ff5a; box-shadow: 0 0 8px rgba(216,255,90,0.6);
  animation: pulse-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@media (max-width: 900px) {
  .about { padding: 4rem 1.5rem; }
  .about-meta-row { font-size: 0.6rem; }
  .about-meta-mid { display: none; }
  .about-title { font-size: clamp(2rem, 8vw, 3.4rem); margin-bottom: 2rem; }
  .cinema-strip { margin: 0 -1.5rem 2.5rem; padding: 28px 0 20px; transform: rotate(-0.4deg); }
  .cinema-track { padding: 0 16px; gap: 6px; overflow-x: auto; overflow-y: visible; justify-content: flex-start; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .cinema-track::-webkit-scrollbar { display: none; }
  .cf img { width: 28vw; min-width: 88px; }
  .cf-3 { transform: scale(1.04) translateY(-2px); }
  .about-body { grid-template-columns: 1fr; gap: 1.5rem; }
  .cinema-stamp { right: 14px; bottom: 4px; }
}

/* ===== MARQUEE BANDS ===== */
.marquee {
  width: 100%;
  overflow: hidden;
  background: #0d0d0d;
  color: #f4f4ed;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(244,244,237,0.08);
  border-bottom: 1px solid rgba(244,244,237,0.08);
}
.marquee-light { background: #f4f4ed; color: #0d0d0d; border-color: rgba(13,13,13,0.06); }
.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  align-items: center;
  font-family: var(--f-display, 'Fraunces', serif);
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  white-space: nowrap;
  animation: marquee-scroll 38s linear infinite;
  padding-left: 100%;
}
.marquee-track-rev { animation-direction: reverse; animation-duration: 32s; }
.marquee-track em { font-style: italic; font-weight: 300; }
.marquee-sep {
  font-family: var(--f-mono, 'Space Mono', monospace);
  font-size: 0.85em;
  opacity: 0.55;
  letter-spacing: 0.1em;
}
.marquee-track > span { flex-shrink: 0; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
