/* ============================================================
   ALT THEME — cinematography-forward, gold signature, reel-log.
   Imports the base, then overrides. Base (styles.css) is untouched.
   ============================================================ */
@import url("styles.css");

/* CHANGE 2 — signature palette: warm tungsten gold (vs base blue/cyan) */
:root {
  --accent:   #d9a441;
  --accent-2: #ffb066;
  --grad:     linear-gradient(105deg, #d9a441 0%, #ffb066 100%);
}

/* CHANGE 1 — keep the camera HUD live, soften only the framing -------------- */
/* REC light, TC timecode, and the + crosshair reticle are restored from base
   (Nate missed them). Only the corner brackets are eased for a cinematic feel. */
.hud__corner { opacity: 0.5; border-color: rgba(255,255,255,0.22); }

/* editorial section labels (serif italic) instead of mono "// 01 —" technical kickers */
.kicker { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1.05rem; letter-spacing: 0; text-transform: none; color: var(--accent); }

/* warm the hero glow + button to the gold signature (base glow is hardcoded blue) */
.hero__bg {
  background:
    radial-gradient(1100px 620px at 80% -8%, rgba(217,164,65,0.18), transparent 60%),
    radial-gradient(900px 560px at 4% 108%, rgba(255,176,102,0.08), transparent 55%),
    var(--bg);
}
.btn--primary { box-shadow: 0 6px 24px -8px rgba(217,164,65,0.5); }

/* CHANGE 3 — reel-log warmth on the list rows */
.callsheet__row:hover { background: rgba(217,164,65,0.07); }

/* ============================================================
   CHANGE 4 — Curated "Selected Work" grid: role-credit chips + award
   badges + placeholder tiles. One interleaved wall; the credit mix is
   the feature. Spec: 01_Projects/portfolio-site/selected-work-curation.md
   ============================================================ */

/* role credit chip — amber pill under each tile title */
.vid__credit {
  align-self: flex-start;
  margin-top: 0.1rem;
  padding: 0.22rem 0.55rem;
  border: 1px solid rgba(217,164,65,0.38);
  border-radius: 999px;
  background: rgba(217,164,65,0.08);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.35;
}

/* award badge — corner of the thumbnail */
.vid__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(217,164,65,0.5);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  color: var(--accent-2);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* placeholder tiles — awaiting a cleared / sourced embed */
.vid--tbd { cursor: default; }
.vid--tbd:hover { transform: none; box-shadow: none; border-color: var(--line); }
.vid--tbd .vid__thumb {
  background-image:
    radial-gradient(120% 120% at 30% 20%, rgba(217,164,65,0.14), transparent 60%),
    linear-gradient(135deg, #161310, #0c0d11);
}
.vid--tbd .vid__thumb::after { display: none; } /* no play glyph on non-playable tiles */
.vid--tbd .vid__placeholder { color: rgba(217,164,65,0.72); }

/* ============================================================
   CHANGE 5 — Highlights: three tight, results-first columns.
   Tease, don't tell — hooks that drive the interview, not full write-ups.
   ============================================================ */
@media (min-width: 760px) { .cases { grid-template-columns: repeat(2, 1fr); align-items: stretch; } .cases .case:last-child:nth-child(odd) { grid-column: 1 / -1; } }
.case--brief { padding: clamp(1.4rem, 3vw, 1.95rem); }
.case__hook {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.1vw, 1.42rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.22;
  margin-bottom: 0.7rem;
}
.case__line { color: var(--text-dim); font-size: 0.94rem; line-height: 1.55; }

/* ============================================================
   CHANGE 6 — editorial "band" rhythm for Selected Work, replacing
   the flat 3-col grid. Bands alternate hero-left / row / hero-right /
   hero-left / row down the page (big -> breathe -> big), and the 3
   badge/flagship pieces (GTA V gameplay, GTA V E3 reveal, Renegade
   ViDoc/Platinum Viddy) land in the hero slots. Mobile stays a plain
   single-column stack (no asymmetry at a width too narrow to show it).
   ============================================================ */
.work-bands { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 1.1rem; }
.work-band { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 620px) {
  .work-band--row { grid-template-columns: repeat(3, 1fr); }

  .work-band--hero-left, .work-band--hero-right { grid-template-rows: 1fr 1fr; }
  .work-band--hero-left { grid-template-columns: 2fr 1fr; }
  .work-band--hero-right { grid-template-columns: 1fr 2fr; }

  .work-band--hero-left .vid:first-child,
  .work-band--hero-right .vid:last-child {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
  }
  .work-band--hero-left .vid:first-child .vid__thumb,
  .work-band--hero-right .vid:last-child .vid__thumb {
    flex: 1;
    aspect-ratio: auto;
    min-height: 260px;
  }

  /* hero-right needs explicit placement — its hero is DOM-last, so
     auto-flow would let the two small tiles claim its cells first */
  .work-band--hero-right .vid:first-child { grid-column: 1; grid-row: 1; }
  .work-band--hero-right .vid:nth-child(2) { grid-column: 1; grid-row: 2; }
  .work-band--hero-right .vid:last-child { grid-column: 2; grid-row: 1 / 3; }
}
