/* ANIM 04 THUMBS — "Unified Vocabulary" + hover thumbnails */
@font-face { font-family: "Cal Sans"; src: url("../assets/fonts/CalSans-SemiBold.woff2") format("woff2"); font-weight: 600; font-display: swap; }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body { background: #0a0908; color: #fff; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; overflow-x: hidden; }
:root {
  --h: "Cal Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --b: "Inter", sans-serif;
  --e: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dark: #0a0908;
  --cream: #F2F0E9;
  --moss: #E0E5DF;
  --tan: #C8C1B8;
  --charcoal: #1a1917;
  --pad: clamp(2rem, 5vw, 4rem);
}
.grain { position: fixed; inset: 0; z-index: 9999; pointer-events: none; mix-blend-mode: overlay; opacity: 0.04; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem var(--pad); mix-blend-mode: difference; }
.nav-brand { font-family: var(--h); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 0.4rem; }
.brand-logo { width: 1.4rem; height: 1.4rem; position: relative; top: -0.1rem; }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); text-decoration: none; overflow: hidden; position: relative; display: inline-block; }
.nav-links a .nav-text { display: block; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.nav-links a:hover .nav-text { transform: translateY(-100%); }
.nav-links a .nav-text::after { content: attr(data-text); position: absolute; top: 100%; left: 0; color: #fff; }

/* ── HAMBURGER + MOBILE MENU ── */
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 301; }
.nav-burger span { display: block; width: 20px; height: 1.5px; background: #fff; transition: transform 0.4s var(--e), opacity 0.3s; }
.nav-burger span + span { margin-top: 6px; }
.nav-burger.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 250; background: rgba(10,9,8,0.97);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.5s var(--e);
  backdrop-filter: blur(12px);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--h); font-size: clamp(2rem, 8vw, 3rem); font-weight: 600;
  color: #fff; text-decoration: none; letter-spacing: -0.02em;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--e), transform 0.5s var(--e);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }

/* ── CLIP MASK UTILITY ── */
.line-mask { overflow: clip; padding: 0.15em 0; margin: -0.15em 0; }
.line-mask .line { display: block; will-change: transform; }

/* ── PER-CHARACTER SPLIT ── */
.split-word { position: relative; display: inline-block; }
.split-char { position: relative; display: inline-block; will-change: transform; }

/* ═══ 1. HERO ═══ */
.hero { position: relative; height: 100vh; height: 100svh; overflow: hidden; display: flex; align-items: flex-end; padding: 0 var(--pad) 12vh; }
.hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0; transition: opacity 0.6s ease-out; }
.hero video.loaded { opacity: 0.4; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(10,9,8,0.7) 0%, rgba(10,9,8,0.1) 40%, rgba(10,9,8,0.05) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.hero h1 { font-family: var(--h); font-weight: 600; font-size: clamp(5rem, 14vw, 14rem); line-height: 0.85; letter-spacing: -0.05em; display: flex; flex-direction: column; }
.hero h1 .line-mask { display: block; }
.hero-tagline { font-family: var(--b); font-size: 0.8rem; opacity: 0; max-width: 22ch; line-height: 1.6; text-align: right; z-index: 2; flex-shrink: 0; align-self: flex-end; margin-bottom: -1.8em; }
.hero-scroll-cue { position: absolute; bottom: calc(2.6vh + env(safe-area-inset-bottom, 0px)); left: 50%; transform: translateX(-50%); z-index: 3; width: 6px; height: 44px; opacity: 0; pointer-events: none; filter: drop-shadow(0 1px 8px rgba(0,0,0,0.65)); }
.hero-scroll-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0.6) 70%, rgba(255,255,255,0) 100%); overflow: visible; }
.hero-scroll-line::after { content: ''; position: absolute; left: 50%; top: 0; width: 6px; height: 6px; margin-left: -3px; border-radius: 50%; background: #fff; animation: hero-cue-travel 2.4s cubic-bezier(0.65, 0, 0.35, 1) infinite; will-change: transform, opacity; }
@keyframes hero-cue-travel { 0% { transform: translateY(-3px) scale(0.6); opacity: 0; } 18% { opacity: 1; transform: translateY(4px) scale(1); } 78% { opacity: 1; } 100% { transform: translateY(40px) scale(0.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll-line::after { animation: none; opacity: 0.85; top: 50%; transform: translateY(-50%); } }

/* ═══ 2. EXPERIMENTS ═══ */
.experiments { background: var(--cream); color: var(--dark); display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(3rem, 6vw, 6rem); padding: clamp(8rem, 14vh, 12rem) var(--pad); align-items: start; position: relative; z-index: 2; }
.exp-text-col { position: sticky; top: clamp(8rem, 12vh, 10rem); }
.exp-label { font-size: 0.48rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(10,9,8,0.2); margin-bottom: 2rem; }
.exp-statement { font-family: var(--h); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.18; }
.exp-statement .split-word { line-height: 1.18; }
/* ── NEURAL LOOM ANIMATION ── */
.exp-logo-anim { margin-top: clamp(2.5rem, 5vh, 4rem); width: 100%; max-width: 320px; aspect-ratio: 16/9; }
.exp-logo-anim svg { width: 100%; height: 100%; }

.exp-list { list-style: none; display: flex; flex-direction: column; }
.exp-item { padding: clamp(1rem, 2vh, 1.6rem) 0; border-bottom: 1px solid rgba(10,9,8,0.06); display: flex; flex-direction: column; position: relative; cursor: pointer; }
.exp-item:first-child { border-top: 1px solid rgba(10,9,8,0.06); }
.exp-item::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--dark); transform: scaleX(0); transform-origin: left center; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.exp-item:hover::after { transform: scaleX(1); }
.exp-item:not(:hover)::after { transform-origin: right center; }
.exp-item-inner { display: flex; justify-content: space-between; align-items: baseline; width: 100%; }
.exp-name { font-family: var(--h); font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-weight: 600; letter-spacing: -0.01em; position: relative; }
.exp-name::before { content: "●"; font-size: 0.55em; position: absolute; right: calc(100% + 0.6em); top: 50%; translate: 0 -50%; opacity: 0; scale: 0; transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), scale 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.exp-item:hover .exp-name::before { opacity: 1; scale: 1; }
.exp-tag { font-size: 0.42rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(10,9,8,0.2); overflow: hidden; position: relative; display: inline-block; }
.exp-tag .tag-text { display: block; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.exp-item:hover .tag-text { transform: translateY(-100%); }
.exp-tag .tag-text::after { content: attr(data-text); position: absolute; top: 100%; left: 0; color: var(--dark); }

/* ── EXPERIMENT THUMBNAIL STRIP ── */
.exp-thumb {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.exp-thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.exp-item:hover .exp-thumb {
  height: 80px;
}
.exp-item:hover .exp-thumb img {
  opacity: 1;
  transform: scale(1);
}

/* ── EXPERIMENT VISIT INDICATOR (mobile only) ── */
.exp-visit {
  display: none; align-items: center; gap: 0.5rem;
  padding: 0.6rem 0 0.2rem;
  font-size: 0.5rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(10,9,8,0.3);
  opacity: 0; transform: translateY(-4px);
  transition: opacity 0.4s var(--e), transform 0.4s var(--e);
}
.exp-visit::after { content: "→"; font-size: 0.7rem; position: relative; top: -0.11em; transition: transform 0.3s var(--e); }
.exp-item:hover .exp-visit { opacity: 1; transform: translateY(0); }
.exp-item:hover .exp-visit::after { transform: translateX(3px); }

/* ═══ 3. VIDEO BREAK ═══ */
.cinema-break { position: relative; z-index: 2; height: 100vh; height: 100svh; background: var(--charcoal); overflow: hidden; }
.cinema-break video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.cinema-break-overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background: linear-gradient(rgba(10,9,8,0.15), rgba(10,9,8,0.35)); }
.cinema-break-num { font-family: var(--h); font-size: 0.85rem; font-weight: 600; color: #fff; margin-bottom: 1rem; }
.cinema-break-statement { font-family: var(--h); font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.08; color: #fff; max-width: 16ch; }
.cinema-break-statement .line-mask { display: block; text-align: center; }
.cinema-break-sub { font-family: var(--b); font-size: clamp(0.85rem, 1vw, 1rem); font-weight: 500; color: #fff; margin-top: 1.5rem; max-width: 36ch; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

/* ═══ 4. VIDEO GALLERY ═══ */
.video-zone { position: relative; z-index: 2; background: var(--dark); overflow: hidden; line-height: 0; }
.mq-track { display: flex; gap: 0; width: max-content; will-change: transform; }
.mq-item { flex: 0 0 clamp(220px, 28vw, 320px); aspect-ratio: 16/9; overflow: hidden; cursor: pointer; margin-right: -1px; }
.mq-item video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.mq-item:hover video { transform: scale(1.08); }

/* ═══ TYPO BREAK ═══ */
.typo-break { background: var(--cream); color: var(--dark); padding: clamp(10rem, 18vh, 14rem) var(--pad); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; margin-top: -1px; }
.typo-break-text { font-family: var(--h); font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; text-align: center; max-width: 18ch; }
.typo-break-text .split-word { line-height: 1.1; }

/* ═══ 5. ABOUT ═══ */
.about { position: relative; height: 80vh; min-height: 500px; background: var(--dark); overflow: hidden; z-index: 2; }
.about img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; filter: grayscale(0.1); will-change: transform; }
.about-content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(3rem, 6vh, 5rem) clamp(2rem, 5vw, 4rem); }
.about-text { font-family: var(--h); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; color: #fff; max-width: 20ch; }
.about-text .line-mask { display: block; }
.about-sub { font-family: var(--b); font-size: clamp(0.8rem, 0.9vw, 0.9rem); font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.65); max-width: 36ch; margin-top: 1rem; }

/* ═══ 6. ARCHIVE ═══ */
.archive-strip { position: relative; z-index: 2; background: var(--dark); padding: clamp(6rem, 12vh, 10rem) var(--pad); display: flex; align-items: center; justify-content: space-between; min-height: 50vh; }
.archive-heading { font-family: var(--h); font-size: clamp(4rem, 10vw, 8rem); font-weight: 600; line-height: 0.9; letter-spacing: -0.03em; color: #fff; overflow: clip; }
.archive-heading .line { display: block; will-change: transform; }
.archive-count { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 0.5rem; }
.archive-loom { margin-top: clamp(1.5rem, 3vh, 2.5rem); width: 100%; max-width: 280px; }
.archive-loom svg { width: 100%; height: auto; }
.archive-right { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.archive-desc { font-family: var(--b); font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 28ch; text-align: right; }
.archive-link { display: inline-block; padding: 0.8rem 2.2rem; border: 1px solid rgba(255,255,255,0.3); border-radius: 999px; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); text-decoration: none; transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.archive-link:hover { border-color: rgba(255,255,255,0.6); }
.archive-link .link-clip { display: block; overflow: clip; height: 1.1em; line-height: 1.1em; position: relative; }
.archive-link .link-text { display: block; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.archive-link:hover .link-text { transform: translateY(-1.1em); }
.archive-link .link-text::after { content: attr(data-text); position: absolute; top: 1.1em; left: 0; color: #fff; }

/* ═══ 7. FOOTER ═══ */
.footer { position: relative; z-index: 2; height: 100vh; height: 100svh; background: var(--dark); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(3rem, 5vh, 4rem) var(--pad); overflow: hidden; }
#footer-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.footer::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.5) 50%, rgba(10,9,8,0.7) 100%); z-index: 0; }
.footer-headline { position: relative; z-index: 2; padding: 0 0 clamp(1.5rem, 2.5vh, 2rem); }
.footer-headline h2 { font-family: var(--h); font-weight: 600; font-size: clamp(5rem, 14vw, 14rem); line-height: 0.85; letter-spacing: -0.05em; display: flex; flex-direction: column; }
.footer-headline .line-mask { display: block; }
.footer-content { position: relative; z-index: 2; margin-bottom: clamp(1.5rem, 3vh, 2.5rem); }
.footer-cta { font-family: var(--h); font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1.5rem; color: #fff; }
.footer-email { font-size: 0.75rem; color: #fff; text-decoration: none; transition: opacity 0.3s var(--e); letter-spacing: 0.03em; display: block; }
.footer-email:hover { opacity: 0.7; }
.footer-linkedin { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; text-decoration: none; margin-top: 0.6rem; transition: opacity 0.3s var(--e); display: block; }
.footer-linkedin:hover { opacity: 0.7; }
.footer-bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); }
.footer-copy { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; }
.footer-clock { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; font-variant-numeric: tabular-nums; }

/* ═══ EXPERIMENT VIEWER ═══ */
.exp-viewer {
  position: fixed; inset: 0; z-index: 3000; background: var(--dark);
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.exp-viewer.active { opacity: 1; pointer-events: auto; }
.exp-viewer iframe { width: 100%; height: 100%; border: none; }
.exp-viewer-back {
  position: fixed; top: 1.5rem; left: var(--pad); z-index: 3001;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); border-radius: 50%;
  width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; backdrop-filter: blur(8px);
  transition: border-color 0.3s var(--e), color 0.3s var(--e), opacity 0.4s var(--e);
  opacity: 0;
}
.exp-viewer.active .exp-viewer-back { opacity: 1; transition-delay: 0.4s; }
.exp-viewer-back:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.exp-viewer.active, .exp-viewer.active * { cursor: auto !important; }

/* ═══ VIDEO CINEMA OVERLAY ═══ */
.video-cinema-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}
.video-cinema-overlay.active { opacity: 1; pointer-events: auto; }
.video-cinema-container {
  position: relative; width: 100%; height: 100%;
  max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.video-cinema-container video {
  max-width: 100%; max-height: 100%; border-radius: 8px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5); display: block; background: #000;
}
.cinema-close {
  position: absolute; top: 1.5rem; right: 1.5rem; width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); border-radius: 50%; cursor: pointer;
  transition: border-color 0.3s var(--e), color 0.3s var(--e);
  z-index: 2001; backdrop-filter: blur(8px); font-size: 0.9rem;
}
.cinema-close:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.cinema-loop {
  position: absolute; top: 1.5rem; right: 5.5rem; width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.35); border-radius: 50%; cursor: pointer;
  transition: border-color 0.3s var(--e), color 0.3s var(--e);
  z-index: 2001; backdrop-filter: blur(8px); font-size: 1.1rem;
}
.cinema-loop:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.7); }
.cinema-loop.active { color: #fff; border-color: rgba(255,255,255,0.4); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  /* Nav: hide links, show burger */
  .nav-links { display: none; }
  .nav-burger { display: block; }

  /* Hero: stack vertically, tighter type. Shorter hero on phone lets the
     next section's top edge peek above the fold — structural "scroll me"
     signal that complements the hairline cue without adding UI chrome. */
  .hero { height: 88svh; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-bottom: 6svh; }
  /* Scroll cue moves off-center on phone — the headline owns the
     bottom-left, the cue lives in the right margin where it doesn't
     fight the type. Desktop keeps the centered placement. */
  .hero-scroll-cue { left: auto; right: var(--pad); transform: none; }
  .hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-tagline { position: relative; top: auto; right: auto; transform: none; text-align: left; margin-top: 0.8rem; max-width: 100%; font-size: 0.75rem; }

  /* Experiments: single column, tighter statement */
  .experiments { grid-template-columns: 1fr; padding-top: clamp(5rem, 10vh, 8rem); padding-bottom: clamp(4rem, 8vh, 6rem); }
  .exp-text-col { position: relative; top: auto; }
  .exp-statement { font-size: clamp(1.4rem, 6vw, 2rem); }
  .exp-logo-anim { max-width: 240px; margin-top: 1.5rem; margin-inline: auto; }
  .exp-thumb img { height: 60px; }
  .exp-item:hover .exp-thumb { height: 60px; }
  .exp-visit { display: flex; }

  /* Cinema break */
  .cinema-break-statement { font-size: clamp(2rem, 8vw, 3rem); }

  /* Marquee: bigger items on mobile */
  .mq-item { flex: 0 0 clamp(260px, 75vw, 340px); }

  /* Typo break: tighter padding */
  .typo-break { padding: clamp(6rem, 12vh, 10rem) var(--pad); }
  .typo-break-text { font-size: clamp(1.6rem, 7vw, 2.8rem); }

  /* About */
  .about { height: auto; min-height: 90vh; }
  .about img { position: relative; width: 100%; height: auto; object-fit: contain; opacity: 1; filter: grayscale(0.1); }
  .about-content { position: relative; padding: clamp(2rem, 4vh, 3rem) var(--pad); }

  /* Archive: stack */
  .archive-strip { flex-direction: column; align-items: flex-start; gap: 2rem; padding: clamp(4rem, 8vh, 6rem) var(--pad); }
  .archive-heading { font-size: clamp(3rem, 14vw, 6rem); }
  .archive-right { align-items: flex-start; }
  .archive-desc { text-align: left; }

  /* Footer */
  .footer { min-height: auto; height: 100svh; }
  .footer-headline h2 { font-size: clamp(3rem, 16vw, 6rem); }
  .footer-cta { font-size: clamp(1rem, 4.5vw, 1.8rem); margin-bottom: 1rem; }
  .footer-bottom { gap: 0.5rem; }

  /* Cinema overlay: tighter controls */
  .cinema-close { top: 1rem; right: 1rem; width: 2.5rem; height: 2.5rem; }
  .cinema-loop { top: 1rem; right: 4.5rem; width: 2.5rem; height: 2.5rem; }
}
