:root {
  --paper: #F0EDE6; --paper-2: #E7E2D7;
  --ink: #15171C; --ink-soft: #3C3F47;
  --slate: #41566B;
  --coral: #f2725a;
  --denim: #416b7f;
  --stonewashed: #6196ad;
  --c-cyan: #23A7C4; --c-magenta: #CE3F86;
  --c-yellow: #E7B23A; --line: #CBC5B6;
  --display: 'Montserrat', sans-serif;
  --serif: 'Lora', Georgia, serif;
  --mono: 'Space Mono', monospace;
  --maxw: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--serif); font-size: 1.075rem; line-height: 1.65;
  -webkit-font-smoothing: antialiased; }
body.no-motion * { animation: none !important; transition: none !important; }
a { color: inherit; }
img { max-width: 100%; display: block; }
figure { margin: 0; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 6vw; }

/* colorbar */
.colorbar { display: flex; height: 6px; width: 100%; }
.colorbar span { flex: 1; }
.colorbar .k { background: var(--ink); }
.colorbar .c { background: var(--c-cyan); }
.colorbar .m { background: var(--c-magenta); }
.colorbar .y { background: var(--c-yellow); }
.colorbar .r { background: var(--coral); }

/* nav */
header.nav { position: sticky; top: 0; z-index: 50;
  background: rgba(240,237,230,.88); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: .85rem 6vw;
  display: flex; align-items: center; justify-content: space-between; }
.brandmark { font-family: var(--display); font-weight: 800;
  letter-spacing: .02em; font-size: 1.05rem; text-decoration: none;
  display: flex; align-items: center; gap: .5rem; }
.brandmark .reg { color: var(--coral); line-height: 1; display: inline-block; margin: -1px 0 0 -5px; font-size: 12px; }
.nav-links { display: flex; gap: 2rem; font-family: var(--mono);
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.nav-links a { text-decoration: none; padding: .2rem 0;
  border-bottom: 1.5px solid transparent; transition: border-color .2s; }
.nav-links a:hover, .nav-links a:focus-visible { border-color: var(--coral); }
.nav-toggle { display: none; background: none; border: 1px solid var(--ink);
  font-family: var(--mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; padding: .45rem .7rem; cursor: pointer; }

/* shot + dropzone */
.shot { position: relative; }
.shot a { display: block; line-height: 0; }
.shot a img { transition: opacity .2s; }
.shot a:hover img, .shot a:focus-visible img { opacity: .88; }
.dropzone { position: relative; aspect-ratio: 16/10;
  background: repeating-linear-gradient(45deg,
    var(--paper-2), var(--paper-2) 11px, #ded8ca 11px, #ded8ca 22px);
  border: 1px solid var(--line); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  gap: .4rem; padding: 1rem; }
.dz-fig { font-family: var(--display); font-weight: 800;
  font-size: 1.5rem; color: var(--slate); }
.dz-instr { font-family: var(--mono); font-size: .68rem;
  letter-spacing: .06em; color: var(--ink-soft); max-width: 26ch; }
.shot img { object-fit: cover; width: 100%; border: 1px solid var(--line); }

/* ===== video play trigger + lightbox ===== */
.vid-trigger { display: block; position: relative; width: 100%; padding: 0;
  border: 0; background: none; cursor: pointer; line-height: 0;
  font: inherit; color: inherit; }
.vid-trigger img { transition: opacity .25s; }
.vid-trigger:hover img, .vid-trigger:focus-visible img { opacity: .9; }
.vid-play { position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: clamp(54px,8vw,76px);
  height: clamp(54px,8vw,76px); border-radius: 50%; background: var(--coral);
  display: grid; place-items: center; box-shadow: 0 6px 24px rgba(0,0,0,.35);
  transition: transform .2s, background .2s; pointer-events: none; }
.vid-play::before { content: ""; width: 0; height: 0; margin-left: 5px;
  border-style: solid; border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff; }
.vid-trigger:hover .vid-play, .vid-trigger:focus-visible .vid-play {
  transform: translate(-50%,-50%) scale(1.08); background: var(--ink); }

/* poster tile for video-only cards (no still image) */
.vid-poster { aspect-ratio: 4/3; border: 1px solid var(--line);
  background: radial-gradient(120% 120% at 72% 18%, #2a2e37 0%, var(--ink) 62%);
  display: flex; align-items: flex-end; justify-content: flex-start; }
.vid-cap { position: relative; z-index: 1; font-family: var(--mono);
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--paper); padding: 1rem 1.1rem; text-align: left; line-height: 1.5; }

/* lightbox */
.video-modal { position: fixed; inset: 0; z-index: 1000; display: none;
  align-items: center; justify-content: center; padding: 4vmin;
  background: rgba(8,9,11,.9); }
.video-modal.open { display: flex; }
.vm-frame { position: relative; width: min(92vw, 1080px, 152vh); aspect-ratio: 16/9; }
.vm-frame.sq { width: min(92vw, 86vh); aspect-ratio: 1/1; }
.vm-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vm-close { position: fixed; top: 1.1rem; right: 1.2rem; z-index: 1;
  width: 2.7rem; height: 2.7rem; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5); background: rgba(0,0,0,.35);
  color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background .2s, border-color .2s; }
.vm-close:hover, .vm-close:focus-visible { background: var(--coral); border-color: var(--coral); }

/* footer */
footer { background: var(--paper); color: var(--ink); font-family: var(--mono);
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.foot-inner { max-width: var(--maxw); margin: 0 auto; padding: 1.6rem 6vw;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

:focus-visible { outline: 2.5px solid var(--coral); outline-offset: 3px; }

@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--line); padding: .5rem 6vw 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .7rem 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
