:root{
  --bg:#060707;
  --bg-soft:#111211;
  --text:#f2efe6;
  --muted:#b9b6a8;
  --sun:#f6c728;
  --font:'Manrope',sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
body{
  min-height:100svh;
  font-family:var(--font);color:var(--text);line-height:1.6;
  background:linear-gradient(180deg,var(--bg) 0%,var(--bg-soft) 40%,var(--bg) 100%);
}
img{max-width:100%;display:block}
a{color:inherit}

/* ===== Hero with embedded video screen ===== */
.hero{
  /* tune these two numbers to line the video up with the artwork */
  --screen-w:47%;     /* video width as a share of the image width */
  --screen-top:46%;   /* vertical centre of the video, from the top */
  position:relative;
}
.hero img{width:100%;height:auto}
.presents{
  position:absolute;top:4%;left:50%;transform:translateX(-50%);
  width:max-content;max-width:92%;
  font-weight:600;font-size:.8rem;
  letter-spacing:.12em;text-transform:uppercase;text-align:center;
  color:#84826f;text-shadow:0 2px 8px rgba(0,0,0,.4);
  z-index:2;
}
@media(max-width:720px){
  .presents{position:static;transform:none;width:auto;margin:1rem auto .8rem;padding:0 1rem;text-shadow:none;font-size:.7rem}
}
.screen-wrap{
  position:absolute;left:50%;top:var(--screen-top);
  transform:translate(-50%,-50%);
  width:var(--screen-w);
}
.frame{
  position:relative;aspect-ratio:16/9;
  border-radius:12px;overflow:hidden;background:#000;
  box-shadow:0 18px 50px rgba(0,0,0,.55);
}
.frame iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.share-row{display:flex;justify-content:flex-end;margin-top:.55rem}
.share-btn{
  display:inline-flex;align-items:center;gap:.4rem;
  border:1px solid rgba(242,239,230,.45);border-radius:999px;
  background:rgba(6,7,7,.45);backdrop-filter:blur(5px);
  color:var(--text);font-family:var(--font);font-weight:600;
  font-size:.72rem;letter-spacing:.05em;
  padding:.3rem .75rem;cursor:pointer;
  transition:background .2s, color .2s, border-color .2s;
}
.share-btn:hover{background:var(--sun);color:var(--bg);border-color:var(--sun)}

/* phones: image stays whole, video drops below it full-width */
@media(max-width:720px){
  .screen-wrap{
    position:static;transform:none;
    width:min(94vw,560px);margin:1rem auto 0;
  }
  }

/* ===== Thumbnail row (all four) ===== */
.thumbs{
  max-width:1060px;margin:1.6rem auto 0;padding:0 1rem 2.6rem;
  display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;
}
.thumb{display:block;border:0;background:none;padding:0;cursor:pointer;text-align:center;font:inherit;color:inherit;text-decoration:none}
.thumb .timg{
  position:relative;border-radius:12px;overflow:hidden;aspect-ratio:16/9;background:var(--bg-soft);
  box-shadow:0 8px 22px rgba(0,0,0,.4);transition:transform .2s, box-shadow .2s, outline-color .2s;
  outline:2px solid transparent;outline-offset:2px;
}
.thumb:hover .timg{transform:translateY(-4px);box-shadow:0 14px 28px rgba(0,0,0,.5)}
.thumb.active .timg{outline-color:var(--sun)}
.thumb img{width:100%;height:100%;object-fit:cover}
.thumb .play{position:absolute;inset:0;display:grid;place-items:center}
.thumb .play span{
  width:44px;height:44px;border-radius:50%;display:grid;place-items:center;
  background:rgba(6,7,7,.72);backdrop-filter:blur(3px);
  color:var(--sun);font-size:1rem;padding-left:4px;transition:.2s;
}
.thumb:hover .play span{background:var(--sun);color:var(--bg)}
.thumb.active .play span{opacity:0}
.thumb figcaption{font-weight:600;font-size:.9rem;margin-top:.5rem;color:var(--muted)}
.thumb.active figcaption{color:var(--sun)}
@media(max-width:760px){
  .thumbs{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:400px){
  .thumb figcaption{font-size:.78rem}
}

/* ===== Featured video description ===== */
.vdesc{
  max-width:46rem;margin:0 auto;padding:.2rem 1.5rem 1.4rem;
  text-align:center;font-size:.9rem;color:var(--muted);line-height:1.7;
}

/* ===== Footer ===== */
footer{
  max-width:1060px;margin:1.2rem auto 0;
  border-top:1px solid rgba(242,239,230,.16);
  padding:2.6rem 1.25rem 3rem;text-align:center;
}
.logo-row{display:flex;align-items:center;justify-content:center;gap:3.5rem;flex-wrap:wrap}
.flogo{height:96px;width:auto}
footer a{display:block;transition:opacity .2s, transform .2s}
footer a:hover{opacity:.9;transform:translateY(-2px)}
.credit{margin-top:1.8rem;font-size:.68rem;color:#6f6d5e;letter-spacing:.12em;text-transform:uppercase;line-height:1.9}
@media(max-width:560px){.logo-row{gap:2.2rem}.flogo{height:72px}}

/* floating tooltip */
.tip{position:relative}
.tip::after{
  content:attr(data-tip);
  position:absolute;bottom:calc(100% + 12px);left:50%;
  transform:translateX(-50%) translateY(5px);
  background:#fff;color:#161616;
  font-size:.8rem;font-weight:600;letter-spacing:.02em;
  padding:.38rem .75rem;border-radius:8px;white-space:nowrap;
  box-shadow:0 8px 22px rgba(0,0,0,.4);
  opacity:0;pointer-events:none;transition:opacity .18s, transform .18s;
}
.tip::before{
  content:'';position:absolute;bottom:calc(100% + 6px);left:50%;
  transform:translateX(-50%) translateY(5px);
  border:6px solid transparent;border-top-color:#fff;border-bottom:0;
  opacity:0;pointer-events:none;transition:opacity .18s, transform .18s;
}
.tip:hover::after,.tip:focus-visible::after{opacity:1;transform:translateX(-50%) translateY(0)}
.tip:hover::before,.tip:focus-visible::before{opacity:1;transform:translateX(-50%) translateY(0)}
