/* ============================================================
   Luka Jozic — Baritone
   Editorial all-serif, near-black / ivory.
   Structure & rhythm modelled on a classical opera-singer site.
   ============================================================ */




:root{
  --bg:        #08080a;   /* charcoal, almost black — neutral/cool */
  --bg-soft:   #131316;
  --ivory:     #f4f4f5;   /* soft off-white, neutral */
  --ivory-dim: #b6b7ba;
  --muted:     #7e7f85;
  --faint:     #44454b;
  --line:      #292a2f;
  --input-bg:  #ededee;
  --input-ink: #131316;
  --req:       #c5483d;

  --serif:  "Aboreto", "Times New Roman", serif;   /* display — titling caps */
  --read:   "Manrope", system-ui, -apple-system, sans-serif; /* body */
  --mono:   "Manrope", system-ui, sans-serif;        /* micro labels */

  --ease: cubic-bezier(.22,1,.36,1);
  --pad: clamp(20px, 4vw, 64px);
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; overflow-x:clip; }

body{
  margin:0;
  background:var(--bg);
  color:var(--ivory);
  font-family:var(--read);
  font-weight:300;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }

/* ---------- micro label ---------- */
.label{
  font-family:var(--mono);
  font-weight:400;
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--muted);
}

/* ---------- giant display heading — sculptural, always fully visible ---------- */
.display-wrap{ overflow:visible; width:100%; }
.display{
  font-family:var(--serif);
  font-weight:400;
  font-style:normal;
  line-height:.96;
  letter-spacing:.005em;
  text-align:center;
  white-space:nowrap;
  color:var(--ivory);
  margin:0;
  /* base size; app.js shrinks long words so they never clip the frame */
  font-size:clamp(3.4rem, 15vw, 13rem);
}
.display-wrap.cut .display{ margin:0; }

/* ---------- crescent ornament ---------- */
.moon{
  width:17px; height:17px; border-radius:50%;
  background:var(--ivory); position:relative;
  transform:rotate(-18deg);
  margin:0 auto;
  flex:0 0 auto;
}
.moon::after{
  content:""; position:absolute; inset:0; border-radius:50%;
  background:var(--bg);
  transform:translate(5px,-3.5px);
}

/* ---------- arrow link (Bodoni) ---------- */
.arrow-link{
  display:inline-flex; align-items:center; gap:.7em;
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(1.05rem,1.6vw,1.4rem);
  color:var(--ivory);
  transition:opacity .3s var(--ease), gap .3s var(--ease);
}
.arrow-link .ar{ font-family:var(--read); font-weight:300; }
.arrow-link:hover{ opacity:.6; gap:1.1em; }

.bio-cta{
  display:flex; justify-content:center; align-items:center;
  flex-wrap:wrap; gap:clamp(28px,5vw,64px);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:60;
  display:flex; align-items:center; justify-content:space-between;
  padding:clamp(18px,2.6vw,34px) var(--pad);
  mix-blend-mode:difference;            /* logo stays legible over dark/ivory */
  pointer-events:none;
}
.site-header > *{ pointer-events:auto; }
.logo{
  font-family:var(--serif);
  font-style:normal;
  font-weight:600;
  font-size:clamp(15px,1.5vw,19px);
  line-height:.98;
  letter-spacing:.04em;
  white-space:nowrap;
  color:#fff;
}
.logo sup{ font-size:.5em; vertical-align:super; opacity:.8; }

.header-right{ display:flex; align-items:center; gap:clamp(16px,2vw,30px); }

.lang{
  display:flex; align-items:center; gap:.55em;
  font-family:var(--mono);
  font-size:11px; letter-spacing:.14em; color:#fff;
}
.lang a, .lang button{
  background:none; border:0; padding:0; cursor:pointer;
  font:inherit; color:inherit; letter-spacing:inherit; text-decoration:none;
  opacity:.5; transition:opacity .25s;
}
.lang a.active, .lang button.active{ opacity:1; text-decoration:underline; text-underline-offset:3px; cursor:default; }
.lang a:hover, .lang button:hover{ opacity:1; }
.lang .sep{ opacity:.4; }

.burger{
  /* iPadOS Safari has a known bug where mix-blend-mode silently fails to
     paint on fixed-position content — so the burger opts out of the
     header's blend-mode trick and guarantees its own contrast instead. */
  isolation:isolate; mix-blend-mode:normal;
  background:rgba(10,10,12,.32); border-radius:999px;
  border:0; cursor:pointer; padding:6px 9px; color:#fff;
  display:flex; flex-direction:column; gap:6px; width:44px;
  position:relative;
  -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
}
/* invisible 44×44 touch target (a11y) — no visual change */
.burger::before{
  content:""; position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:44px; height:44px;
}
.burger span{ display:block; height:2px; width:16px; margin:0 auto; background:currentColor; transition:.3s var(--ease); }

/* ============================================================
   MENU OVERLAY
   ============================================================ */
.overlay{
  position:fixed; inset:0; z-index:70;
  background:var(--bg);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:clamp(2px,1.4vh,12px);
  opacity:0; visibility:hidden;
  transition:opacity .5s var(--ease), visibility .5s;
}
.overlay.open{ opacity:1; visibility:visible; }
.overlay .close{
  position:absolute; top:clamp(18px,2.6vw,34px); right:var(--pad);
  background:none;border:0;cursor:pointer;color:var(--ivory);
  width:34px;height:34px;
}
.overlay .close::before,.overlay .close::after{
  content:"";position:absolute;left:50%;top:50%;width:30px;height:1.5px;background:currentColor;
}
.overlay .close::before{ transform:translate(-50%,-50%) rotate(45deg); }
.overlay .close::after{ transform:translate(-50%,-50%) rotate(-45deg); }

.overlay nav{ display:flex; flex-direction:column; align-items:center; gap:clamp(4px,1.1vh,14px); }
.overlay nav a{
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(1.7rem,4.2vw,3rem);
  line-height:1.12;
  color:var(--ivory);
  text-align:center;
  letter-spacing:.02em;
  opacity:.85;
  transition:opacity .25s, letter-spacing .35s var(--ease);
  transform:translateY(14px);
}
.overlay.open nav a{ transform:translateY(0); transition:opacity .25s, transform .6s var(--ease); }
.overlay nav a:hover{ opacity:1; letter-spacing:.02em; }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
section{ position:relative; }
.section-pad{ padding:clamp(80px,13vh,170px) var(--pad); }

/* fade-in on scroll */
/* scroll reveals — elegant & minimal
   ------------------------------------------------------------
   body blocks drift up softly; display headings settle out of a
   faint blur (caps coming into focus). all on one shared easing. */
.fade{
  opacity:0;
  transform:translateY(18px);
  transition:opacity 1.15s var(--ease), transform 1.15s var(--ease);
  will-change:opacity, transform;
}
.fade.in{ opacity:1; transform:none; }

/* headings — rise a touch and resolve out of soft focus */
.reveal .display,
.reveal .hl-line{
  opacity:0;
  transform:translateY(.24em);
  transition:opacity 1.5s var(--ease), transform 1.5s var(--ease);
  will-change:opacity, transform;
}
.reveal.in .display,
.reveal.in .hl-line{ opacity:1; transform:none; }

/* hero subtitle follows the headline in */
.reveal .hero-voice{
  opacity:0; transform:translateY(12px);
  transition:opacity 1.1s var(--ease) .4s, transform 1.1s var(--ease) .4s;
}
.reveal.in .hero-voice{ opacity:1; transform:none; }

@media (prefers-reduced-motion:reduce){
  .fade, .reveal .display, .reveal .hl-line, .reveal .hero-voice{
    opacity:1 !important; transform:none !important; filter:none !important;
    transition:none !important;
  }
}

/* ============================================================
   HERO — full-bleed portrait fills the screen, headline over the dark top
   ============================================================ */
.hero{
  position:relative;
  background:var(--bg);
  min-height:100svh;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
/* portrait fills the whole hero, edge to edge */
.hero-portrait{
  position:absolute;
  inset:0;
  margin:0;
  line-height:0;
  z-index:0;
}
.hero-portrait picture{ display:contents; }
.hero-portrait img{
  width:100%;
  height:100%;
  max-width:none;                    /* defeat global img{max-width:100%} */
  object-fit:cover;                  /* photo fills edge-to-edge */
  object-position:50% 30%;
  filter:grayscale(1) contrast(1.05);
  user-select:none; -webkit-user-select:none;
}
/* soft darkening at the BOTTOM so the headline reads over the image */
.hero::before{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:56%;
  z-index:1;
  background:linear-gradient(0deg,
    rgba(8,8,10,.92) 0%,
    rgba(8,8,10,.55) 42%,
    rgba(8,8,10,0) 100%);
  pointer-events:none;
}
/* headline block — sits over the darkened bottom of the image */
.hero-head{
  position:relative;
  z-index:2;
  text-align:center;
  padding:0 var(--pad) clamp(58px,9vh,120px);
  pointer-events:none;
}
.hero-headline{ margin:0; }
.hl-line{
  display:block;
  font-family:var(--serif);          /* Aboreto titling caps */
  font-weight:400;
  color:var(--ivory);
  font-size:clamp(2.8rem, 12vw, 12.5rem);
  line-height:.92;
  letter-spacing:.03em;
  white-space:nowrap;
  text-shadow:0 2px 40px rgba(0,0,0,.55);
}
.hero-voice{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(16px,1.8vw,28px);
  margin:clamp(44px,6vh,78px) 0 0;
}
.hv-text{
  font-family:var(--mono);
  font-size:clamp(11px,1vw,13px);
  font-weight:600;
  letter-spacing:.42em;
  text-transform:uppercase;
  color:var(--ivory);
  padding-left:.42em;            /* optical-centre the trailing letter-spacing */
  text-shadow:0 1px 3px rgba(0,0,0,.95), 0 2px 18px rgba(0,0,0,.85);
}

/* ============================================================
   BIO teaser
   ============================================================ */
.bio{ text-align:center; }
.bio .moon{ margin-bottom:clamp(34px,5vw,60px); }
.bio-text{
  max-width:64ch;
  margin:0 auto clamp(34px,5vw,54px);
  font-size:clamp(.95rem,1.15vw,1.12rem);
  line-height:1.85;
  color:var(--ivory-dim);
  text-align:center;
  text-wrap:pretty;
}
.bio-text em{ font-style:italic; color:var(--ivory); }

/* ============================================================
   REPERTOIRE
   ============================================================ */
.rep-grid{
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,5vw,72px) clamp(48px,7vw,110px);
}
.rep-cat > .label{ display:block; padding-bottom:16px; border-bottom:1px solid var(--line); margin-bottom:22px; }
.rep-item{ padding:14px 0; border-bottom:1px solid var(--line); }
.rep-item:last-child{ border-bottom:0; }
.rep-item .composer{ font-family:var(--mono); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }
.rep-item .work{ font-family:var(--serif); font-weight:600; font-size:clamp(1.15rem,1.7vw,1.5rem); line-height:1.15; margin:3px 0 2px; }
.rep-item .role{ font-family:var(--mono); font-size:10.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--ivory-dim); }

/* homepage upcoming */
.up-grid{
  max-width:980px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(40px,5vw,72px) clamp(48px,7vw,96px);
}
.up-item{ border-top:1px solid var(--line); padding-top:clamp(22px,2.6vw,30px); }
.up-date{
  font-family:var(--mono); font-size:11px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--muted); margin-bottom:clamp(16px,2vw,22px);
}
.up-composer{
  font-family:var(--read); font-style:italic; font-size:.98rem;
  color:var(--ivory-dim); margin-bottom:6px;
}
.up-title{
  font-family:var(--serif); font-weight:600; line-height:1.08;
  font-size:clamp(1.5rem,2.6vw,2.25rem); color:var(--ivory);
  margin:0 0 clamp(18px,2.2vw,26px);
}
.up-meta{ font-family:var(--read); font-size:.96rem; line-height:1.7; color:var(--ivory-dim); }
.up-venue{ margin:0 0 12px; }
.up-line{ display:grid; grid-template-columns:64px 1fr; column-gap:16px; margin:0 0 6px; align-items:baseline; }
.up-line .up-lbl{
  font-family:var(--mono); font-size:9.5px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--muted); padding-top:.2em;
}
.up-line span:last-child{ color:var(--ivory-dim); }

/* empty state — dedicated Upcoming page only */
.up-empty{
  grid-column:1 / -1;
  text-align:center;
  font-family:var(--read); font-style:italic;
  font-size:clamp(1.15rem,2vw,1.5rem);
  color:var(--ivory-dim);
  margin:clamp(30px,6vw,70px) 0;
}

/* ============================================================
   MEDIA
   ============================================================ */
.media-head{ text-align:center; margin-bottom:clamp(50px,8vw,110px); }

/* ============================================================
   MEDIA GALLERY — full grid (media page)
   ============================================================ */
.gallery-grid{
  max-width:1440px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:clamp(28px,4vw,72px);
}
.gallery-grid .grid-item{ margin:0; }
.gallery-grid .grid-item .ph{
  width:100%;
  aspect-ratio:3/2;
  transition:filter .5s var(--ease), transform .6s var(--ease);
}
.gallery-grid .grid-item:hover .ph{ filter:brightness(1.14); transform:scale(1.012); }

/* real photographs — monochrome until hover or opened
   (clickable; opens full colour in the lightbox) */
.photo{
  display:block; width:100%; aspect-ratio:4/5;
  object-fit:cover; object-position:50% 28%;
  background:var(--bg-soft); cursor:pointer;
  filter:grayscale(1) contrast(1.03);
  transition:filter .75s var(--ease), transform .8s var(--ease);
}
.photo:hover{ filter:grayscale(0) contrast(1); }
.grid-item, .ms-cell, .mc-slide{ overflow:hidden; }
.grid-item:hover .photo, .ms-cell:hover .photo{ transform:scale(1.035); }
/* mobile: two images per row */
@media (max-width:680px){
  .gallery-grid{ grid-template-columns:1fr; gap:clamp(20px,6vw,32px); }
}

.gallery-foot{ text-align:center; margin-top:clamp(40px,6vw,72px); }

/* homepage media: DESKTOP three-in-a-row carousel */
.media-strip{
  display:flex;
  align-items:center;
  gap:clamp(12px,1.8vw,26px);
  max-width:1180px;
  margin:0 auto;
}
.ms-viewport{ flex:1 1 auto; overflow:hidden; }
.ms-track{
  display:flex;
  gap:clamp(18px,2.4vw,34px);
  transition:transform .6s var(--ease);
}
.ms-cell{
  margin:0;
  flex:0 0 calc((100% - 2 * clamp(18px,2.4vw,34px)) / 3);
}
.ms-cell .ph{ width:100%; aspect-ratio:4/5; transition:filter .5s var(--ease); }
.ms-cell:hover .ph{ filter:brightness(1.14); }
.ms-cap{
  font-family:var(--mono); font-size:10px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--muted); margin-top:14px;
}
.ms-arrow{
  flex:0 0 auto;
  display:flex; align-items:center; justify-content:center;
  width:auto; height:auto; padding:10px;
  background:none; border:0; border-radius:0;
  cursor:pointer; color:var(--ivory);
  opacity:.6; transition:opacity .4s var(--ease), transform .4s var(--ease);
}
.ms-arrow svg{ width:26px; height:auto; display:block; }
.ms-prev:hover{ opacity:1; transform:translateX(-3px); }
.ms-next:hover{ opacity:1; transform:translateX(3px); }
.ms-arrow[disabled]{ opacity:.18; cursor:default; }
.ms-arrow[disabled]:hover{ opacity:.18; transform:none; }

/* show desktop strip ≥741px, mobile carousel ≤740px */
.media-carousel{ display:none; }
#media .mc-dots{ display:none; }

/* homepage media: single-image carousel (mobile) */
.media-carousel{
  position:relative;
  max-width:760px;
  margin:0 auto;
  align-items:center;
  gap:clamp(10px,2vw,26px);
}
.mc-stage{
  position:relative;
  flex:1 1 auto;
  width:100%;
}
.mc-slide{
  margin:0;
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity .55s var(--ease);
}
.mc-slide.is-active{
  position:relative;
  opacity:1;
  visibility:visible;
}
.mc-slide .ph{ width:100%; aspect-ratio:4/5; }
.mc-cap{
  font-family:var(--mono); font-size:10.5px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--muted); margin-top:16px; text-align:center;
}
.mc-arrow{
  flex:0 0 auto;
  display:flex; align-items:center; justify-content:center;
  width:auto; height:auto; padding:8px;
  background:none; border:0; border-radius:0;
  cursor:pointer; color:var(--ivory);
  opacity:.65; transition:opacity .3s var(--ease);
}
.mc-arrow svg{ width:24px; height:auto; display:block; }
.mc-arrow:hover{ opacity:1; }
.mc-dots{
  display:flex; gap:10px; justify-content:center;
  margin-top:clamp(22px,3vw,32px);
}
.mc-dots button{
  width:6px; height:6px; border-radius:50%; border:0; padding:0; cursor:pointer;
  background:var(--faint); transition:background .3s, transform .3s;
}
.mc-dots button.active{ background:var(--ivory); transform:scale(1.25); }

/* ============================================================
   SUBPAGE layouts
   ============================================================ */
.subpage{ padding-top:clamp(120px,17vh,200px); }
.page-head{ text-align:center; margin-bottom:clamp(40px,7vw,90px); }
.page-head .epigraph{ margin-top:clamp(26px,4vw,46px); }

/* Biography page */
.bio-page{
  max-width:1120px; margin:0 auto;
  display:grid; grid-template-columns:minmax(440px,500px) 1fr;
  gap:clamp(40px,5vw,80px); align-items:stretch;
}
.bio-page .headshot{
  position:relative; width:100%; height:100%; min-height:0;
  align-self:stretch;
  overflow:hidden;
}
.bio-page .headshot img{
  position:absolute; top:0; left:0;
  width:100%; height:auto;
  filter:grayscale(1) contrast(1.04);
}
.bio-page .bio-body{ min-width:0; }
.bio-page .bio-body{ min-width:0; font-size:clamp(.92rem,1vw,1rem); line-height:1.9; color:var(--ivory-dim); }
.bio-page .bio-body p{ margin:0 0 1.4em; text-wrap:pretty; }
.bio-page .bio-body p:last-child{ margin-bottom:0; }
.bio-page .bio-body em{ font-style:italic; color:var(--ivory); }
.bio-page .bio-body p:first-of-type{ color:inherit; }

/* Signature — drawn out with a left-to-right reveal when scrolled into view */
.bio-page .bio-signature{
  margin:clamp(30px,3.4vw,46px) 0 0;
}
.bio-page .bio-signature img{
  display:block; width:clamp(150px,38%,200px); height:auto;
  opacity:.9;
  clip-path:inset(0 100% 0 0);
}
.bio-page .bio-signature.in img{
  animation:signWrite 2.1s cubic-bezier(.7,0,.3,1) .25s forwards;
}
@keyframes signWrite{
  to{ clip-path:inset(0 0 0 0); }
}
@media (prefers-reduced-motion:reduce){
  .bio-page .bio-signature img{ clip-path:none; }
  .bio-page .bio-signature.in img{ animation:none; }
}

@media (max-width:880px){
  .bio-page{ grid-template-columns:1fr; gap:clamp(26px,6vw,40px); }
  .bio-page .headshot{ width:min(90vw,440px); aspect-ratio:1000/1250; margin:0 auto; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-head{ text-align:center; }
.contact-head .epigraph{ margin-top:clamp(28px,4vw,50px); }
.contact-meta{
  display:flex; justify-content:center; gap:clamp(30px,6vw,90px); flex-wrap:wrap;
  margin:clamp(46px,7vw,90px) auto clamp(40px,6vw,70px); text-align:center;
}
.contact-meta .blk .label{ display:block; margin-bottom:8px; }
.contact-meta .blk a, .contact-meta .blk span{ font-family:var(--read); font-size:1.05rem; color:var(--ivory); }
.contact-meta .blk a{ border-bottom:1px solid var(--line); padding-bottom:2px; transition:border-color .3s; }
.contact-meta .blk a:hover{ border-color:var(--ivory); }

.contact-form{ max-width:680px; margin:0 auto; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(16px,2.5vw,30px); margin-bottom:clamp(16px,2.5vw,26px); }
.field{ display:flex; flex-direction:column; }
.field > label{ font-family:var(--mono); font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin-bottom:10px; }
.field > label .req{ color:var(--req); }
.field input, .field textarea{
  font-family:var(--read); font-size:1rem; color:var(--input-ink);
  background:var(--input-bg); border:1px solid transparent; outline:none;
  padding:15px 18px; border-radius:2px; transition:box-shadow .3s, background .3s;
}
.field textarea{ border-radius:2px; min-height:230px; resize:vertical; padding:16px 18px; }
.field input::placeholder, .field textarea::placeholder{ color:#9a9aa0; }
.field input:focus, .field textarea:focus{ box-shadow:0 0 0 2px var(--ivory); }
.field.invalid input, .field.invalid textarea{ box-shadow:0 0 0 2px var(--req); }
.field .err{ font-family:var(--mono); font-size:10px; letter-spacing:.06em; color:var(--req); margin-top:8px; min-height:12px; opacity:0; transition:opacity .25s; }
.field.invalid .err{ opacity:1; }

.form-submit{ text-align:center; margin-top:clamp(26px,4vw,42px); }
.btn-send{ background:none; border:0; cursor:pointer; }
.form-note{
  text-align:center; max-width:46ch; margin:clamp(26px,4vw,40px) auto 0;
  font-family:var(--mono); font-size:10px; letter-spacing:.06em; line-height:1.7; color:var(--faint);
}
.form-note a{ text-decoration:underline; }
.form-success{ text-align:center; font-family:var(--read); font-style:italic; font-size:1.2rem; color:var(--ivory); margin-top:30px; opacity:0; transition:opacity .4s; }
.form-success.show{ opacity:1; }
.form-error{
  text-align:center; max-width:46ch; margin:clamp(20px,3vw,30px) auto 0;
  font-family:var(--read); font-size:1rem; line-height:1.6; color:var(--req);
  display:none;
}
.form-error.show{ display:block; }
.form-error a{ text-decoration:underline; text-underline-offset:2px; }
.contact-form.sending .btn-send{ opacity:.5; pointer-events:none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ text-align:center; padding:clamp(60px,9vh,120px) var(--pad) clamp(34px,5vh,60px); }
.site-footer .moon{ margin-bottom:clamp(40px,6vw,64px); }
.footer-lang{ justify-content:center; margin-bottom:clamp(36px,5vw,56px); color:var(--ivory); }
.footer-lang.lang button{ opacity:.5; }
.foot-social{ display:flex; gap:clamp(20px,3vw,40px); justify-content:center; align-items:center; flex-wrap:wrap; margin-bottom:22px; }
.foot-social a{ font-family:var(--mono); font-size:10.5px; letter-spacing:.18em; text-transform:uppercase; color:var(--ivory-dim); transition:color .3s; }
.foot-social a:hover{ color:var(--ivory); }
.foot-social a.icon-link{ display:inline-flex; align-items:center; line-height:0; }
.foot-social a.icon-link svg{ width:18px; height:18px; display:block; }
.foot-social a.icon-link img{ width:20px; height:20px; display:block; border-radius:50%; }
.foot-line{ font-family:var(--mono); font-size:10px; letter-spacing:.16em; text-transform:uppercase; color:var(--faint); line-height:2.1; }
.foot-line a{ text-decoration:underline; text-underline-offset:2px; color:inherit; }
.foot-credit{ }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:880px){
  .rep-grid{ grid-template-columns:1fr; gap:48px; }
  .up-grid{ grid-template-columns:1fr; gap:0; }
  .up-item{ margin-top:40px; }
  .up-item:first-child{ margin-top:0; }
  .form-row{ grid-template-columns:1fr; }
  .contact-meta{ flex-direction:column; gap:30px; }
}

@media (max-width:680px){
  /* MOBILE HERO — full-bleed image, darkened bottom, headline over it (like desktop) */
  .hero{
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    min-height:100svh;
    overflow:hidden;
  }
  .hero-head{
    position:relative;
    z-index:2;
    flex:0 0 auto;
    padding:0 var(--pad) clamp(40px,7vh,72px);
  }
  .hl-line{
    font-size:clamp(2.6rem,13vw,4.6rem);
    line-height:.96;
    white-space:normal;              /* allow LUKA / JOZIC to wrap if needed */
  }
  .hero-voice{
    position:relative;
    z-index:2;
    margin:clamp(34px,6vh,56px) 0 0;
    color:var(--ivory);
  }
  /* portrait fills the whole hero */
  .hero-portrait{
    position:absolute;
    inset:0;
    flex:none;
    width:100%;
    margin:0;
  }
  .hero-portrait img{
    position:absolute;
    inset:0;
    width:100%; height:100%;
    object-fit:cover;
    object-position:50% 30%;
    transform:none;
  }
}

@media (max-width:740px){
  .media-strip{ display:none; }
  .media-carousel{ display:flex; max-width:440px; gap:6px; }
  #media .mc-dots{ display:flex; }
  .mc-arrow{ padding:6px; }
  .mc-arrow svg{ width:22px; }
}

@media (max-width:520px){
  .display{ font-size:20vw; }
}

/* ============================================================
   LEGAL / PRIVACY page
   ============================================================ */
.legal{ max-width:760px; margin:0 auto; }
.legal .updated{
  display:block; text-align:center;
  font-family:var(--mono); font-size:.72rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--muted); margin-bottom:clamp(48px,7vw,84px);
}
.legal .lead{
  font-family:var(--read); font-weight:300;
  font-size:clamp(1.05rem,1.5vw,1.28rem); line-height:1.85; color:var(--ivory);
  margin:0 0 clamp(46px,6vw,72px); text-wrap:pretty;
}
.legal-section{ margin:0 0 clamp(40px,5vw,60px); }
.legal-section:last-child{ margin-bottom:0; }
.legal-section > .label{
  display:block; margin-bottom:18px;
  padding-bottom:14px; border-bottom:1px solid var(--line);
}
.legal-section h2{
  font-family:var(--serif); font-weight:400;
  font-size:clamp(1.3rem,2.2vw,1.75rem); letter-spacing:.04em;
  margin:0 0 16px; color:var(--ivory);
}
.legal-section p{
  font-size:clamp(.98rem,1.2vw,1.08rem); line-height:1.9;
  color:var(--ivory-dim); margin:0 0 1.2em; text-wrap:pretty;
}
.legal-section p:last-child{ margin-bottom:0; }
.legal-section a{ color:var(--ivory); border-bottom:1px solid var(--line); padding-bottom:1px; transition:border-color .3s; }
.legal-section a:hover{ border-color:var(--ivory); }
.legal-section ul{ list-style:none; margin:0 0 1.2em; padding:0; }
.legal-section li{
  position:relative; padding-left:26px; margin-bottom:12px;
  font-size:clamp(.98rem,1.2vw,1.08rem); line-height:1.8; color:var(--ivory-dim);
}
.legal-section li::before{
  content:""; position:absolute; left:2px; top:.72em;
  width:7px; height:7px; border:1px solid var(--muted); transform:rotate(45deg);
}

/* ============================================================
   404 / ERROR page
   ============================================================ */
.error-page{ text-align:center; display:flex; flex-direction:column; align-items:center; }
.error-moon{ margin-bottom:clamp(34px,5vw,56px); }
.error-code{
  font-family:var(--mono); font-size:.74rem; letter-spacing:.32em; text-transform:uppercase;
  color:var(--muted); margin-bottom:clamp(20px,3vw,32px);
}
.error-lead{
  max-width:46ch; margin:clamp(30px,4vw,46px) auto 0;
  font-size:clamp(1.02rem,1.4vw,1.2rem); line-height:1.85; color:var(--ivory-dim); text-wrap:pretty;
}
.error-actions{
  display:flex; gap:clamp(28px,5vw,56px); flex-wrap:wrap; justify-content:center;
  margin-top:clamp(40px,6vw,64px); font-size:1.15rem;
}

/* ============================================================
   LIGHTBOX — full-colour image viewer
   ============================================================ */
.lightbox{
  position:fixed; inset:0; z-index:300;
  display:flex; align-items:center; justify-content:center;
  padding:clamp(18px,4vw,64px);
  background:rgba(8,8,10,.94);
  -webkit-backdrop-filter:blur(5px); backdrop-filter:blur(5px);
  opacity:0; visibility:hidden;
  transition:opacity .5s var(--ease), visibility .5s var(--ease);
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox img{
  max-width:100%; max-height:100%; width:auto; height:auto;
  object-fit:contain; cursor:pointer;
  box-shadow:0 40px 110px rgba(0,0,0,.6);
  transform:scale(.965); transition:transform .55s var(--ease);
}
.lightbox.open img{ transform:scale(1); }
.lb-close{
  position:absolute; top:clamp(14px,3vw,30px); right:clamp(14px,3vw,30px);
  width:48px; height:48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line); background:rgba(22,22,26,.55); color:var(--ivory);
  font-family:var(--read); font-weight:300; font-size:24px; line-height:1; cursor:pointer;
  transition:border-color .3s, background .3s, transform .3s;
}
.lb-close:hover{ border-color:var(--ivory-dim); background:rgba(44,44,50,.7); transform:rotate(90deg); }

.lb-nav{
  position:absolute; top:50%;
  display:flex; align-items:center; justify-content:center;
  border:0; background:none; color:var(--ivory);
  cursor:pointer; padding:14px;
  opacity:.6; transition:opacity .4s var(--ease), transform .4s var(--ease);
  transform:translateY(-50%);
}
.lb-nav svg{ width:clamp(30px,3.4vw,46px); height:auto; display:block; }
.lb-prev{ left:clamp(4px,3vw,40px); }
.lb-next{ right:clamp(4px,3vw,40px); }
.lb-prev:hover{ opacity:1; transform:translateY(-50%) translateX(-4px); }
.lb-next:hover{ opacity:1; transform:translateY(-50%) translateX(4px); }
@media (max-width:600px){
  .lb-nav{ padding:8px; }
}

/* shared elegant chevron — lightbox + homepage gallery arrows */
.lb-nav svg polyline,
.ms-arrow svg polyline,
.mc-arrow svg polyline{
  fill:none; stroke:currentColor; stroke-width:1.25;
  stroke-linecap:round; stroke-linejoin:round;
  vector-effect:non-scaling-stroke;
}


/* ---------- gallery placeholder panels (no images) ---------- */
.ph{width:100%;aspect-ratio:3/2;background:linear-gradient(150deg,#1c1c20 0%,#161618 60%,#101012 100%);border:1px solid var(--line);position:relative;overflow:hidden;}
.ph::after{content:"";position:absolute;left:50%;top:50%;width:22px;height:22px;border-radius:50%;background:var(--faint);transform:translate(-50%,-50%) rotate(-18deg);}
.ph::before{content:"";position:absolute;left:50%;top:50%;width:22px;height:22px;border-radius:50%;background:var(--bg-soft);z-index:1;transform:translate(calc(-50% + 6px),calc(-50% - 4px)) rotate(-18deg);}
.gallery-grid .grid-item .ph{aspect-ratio:3/2;}


/* ---------- biography headshot: cover-crop landscape source ---------- */
.bio-page .headshot img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 26%;filter:grayscale(1) contrast(1.08);}
@media (max-width:880px){ .bio-page .headshot{ aspect-ratio:4/5; } }

/* ============================================================
   HERO v2 — cinematic looping video band
   ============================================================ */
.hero-media{ position:absolute; inset:0; z-index:0; background:var(--bg); line-height:0; overflow:hidden; }
.hero-still{
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%; max-width:none;
  object-fit:cover; object-position:50% 30%;
  filter:grayscale(1) contrast(1.08);
  user-select:none; -webkit-user-select:none;
}
.hero-video{
  position:absolute; inset:0; z-index:1;
  width:100%; height:100%; max-width:none;
  object-fit:cover; object-position:50% 30%;
  filter:grayscale(1) contrast(1.08);
  background:transparent; border:0; display:block;
  user-select:none; -webkit-user-select:none;
}
/* empty video (no source yet) — stay invisible so the still shows through */
.hero-video:not([src]){ opacity:0; }
.hero-overlay{
  position:relative; z-index:2;
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:clamp(24px,4vw,72px);
  padding:0 var(--pad) clamp(46px,7vh,96px);
  pointer-events:none;
}
.hero-title{
  margin:0;
  font-family:var(--serif);
  font-weight:400;
  color:var(--ivory);
  font-size:clamp(2.4rem,6.2vw,7rem);
  line-height:.92;
  letter-spacing:.02em;
  white-space:nowrap;
  text-shadow:0 2px 50px rgba(0,0,0,.5);
}
.hero-desc{
  margin:0;
  flex:0 0 auto;
  font-family:var(--mono);
  font-size:clamp(10px,.92vw,13px);
  font-weight:600;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--ivory);
  white-space:nowrap;
  padding-bottom:.7em;
  text-shadow:0 1px 3px rgba(0,0,0,.9), 0 2px 18px rgba(0,0,0,.7);
}
.reveal .hero-title{ opacity:0; transform:translateY(.24em); transition:opacity 1.4s var(--ease), transform 1.4s var(--ease); }
.reveal.in .hero-title{ opacity:1; transform:none; }
.reveal .hero-desc{ opacity:0; transform:translateY(12px); transition:opacity 1.1s var(--ease) .35s, transform 1.1s var(--ease) .35s; }
.reveal.in .hero-desc{ opacity:1; transform:none; }
@media (max-width:900px){
  .hero-overlay{
    flex-direction:column; align-items:flex-start;
    gap:clamp(16px,3vh,26px);
  }
  .hero-title{ white-space:normal; font-size:clamp(2.6rem,11vw,5rem); }
  .hero-desc{ padding-bottom:0; }
}
@media (prefers-reduced-motion:reduce){
  .reveal .hero-title, .reveal .hero-desc{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* ============================================================
   HOME — editorial 2-up gallery preview
   ============================================================ */
.home-gallery{
  max-width:1440px; margin:0 auto;
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:clamp(28px,4vw,72px);
}
.home-gallery .grid-item{ margin:0; }
.home-gallery .grid-item .ph{ aspect-ratio:3/2; transition:filter .5s var(--ease), transform .7s var(--ease); }
.home-gallery .grid-item:hover .ph{ filter:brightness(1.16); transform:scale(1.012); }
@media (max-width:680px){
  .home-gallery{ grid-template-columns:1fr; gap:clamp(20px,6vw,32px); }
}

/* ============================================================
   INTRO — portrait + bio teaser (editorial split)
   ============================================================ */
.intro{
  max-width:1240px; margin:0 auto;
  display:grid; grid-template-columns:minmax(360px,460px) 1fr;
  gap:clamp(40px,6vw,96px); align-items:center;
}
.intro-portrait{ position:relative; width:100%; aspect-ratio:4/5; overflow:hidden; }
.intro-portrait img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:50% 26%;
  filter:grayscale(1) contrast(1.08);
}
.intro-body{ min-width:0; }
.intro-body .moon{ margin:0 0 clamp(26px,3vw,40px); }
.intro-text{
  font-size:clamp(1.02rem,1.3vw,1.28rem);
  line-height:1.8; color:var(--ivory-dim); text-wrap:pretty;
  margin:0 0 clamp(30px,4vw,46px);
}
.intro-text em{ font-style:italic; color:var(--ivory); }
.intro-cta{ display:flex; align-items:center; flex-wrap:wrap; gap:clamp(24px,4vw,52px); }
@media (max-width:820px){
  .intro{ grid-template-columns:1fr; gap:clamp(30px,7vw,46px); }
  .intro-portrait{ width:min(86vw,420px); }
}

/* ============================================================
   v3 — sharp black-and-white editorial revision
   ============================================================ */

/* unified monochrome image treatment — crisp, slightly punchy */
.intro-portrait img, .bio-page .headshot img, .photo,
.cine-poster, .cine-video, .person-fig img{
  filter:grayscale(1) contrast(1.06) brightness(1.02);
}
.cine-poster, .cine-video{ object-position:50% 32%; filter:grayscale(1) contrast(1.04) brightness(1.04); }
.photo{ filter:grayscale(1) contrast(1.04); cursor:pointer; transition:filter .85s var(--ease), transform .8s var(--ease); }
.photo:hover{ filter:grayscale(0) contrast(1.02) saturate(1.02); }
.lightbox img{ filter:none; }

/* ---------- CINEMATIC VIDEO HERO ---------- */
.cine{ position:relative; height:100svh; min-height:560px; overflow:hidden; background:var(--bg); }
.cine-media{ position:absolute; inset:0; z-index:0; }
.cine-video, .cine-poster{
  position:absolute; inset:0; width:100%; height:100%; max-width:none;
  object-fit:cover; object-position:50% 42%;
}
.cine-poster{ z-index:0; }
.cine-video{ z-index:1; background:#000; border:0; display:block; }
.cine::after{
  content:""; position:absolute; inset:0; z-index:2; pointer-events:none;
  background:
    radial-gradient(130% 100% at 50% 28%, rgba(8,8,10,0) 46%, rgba(8,8,10,.5) 100%),
    linear-gradient(0deg, rgba(8,8,10,.78) 0%, rgba(8,8,10,.12) 46%, rgba(8,8,10,0) 70%);
}
.cine-overlay{
  position:relative; z-index:3; height:100%;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:0 var(--pad) clamp(46px,8vh,104px);
  pointer-events:none;
}
.cine-kicker{
  position:absolute; top:clamp(98px,15vh,158px); left:var(--pad);
  font-family:var(--mono); font-size:11px; letter-spacing:.34em;
  text-transform:uppercase; color:var(--ivory-dim);
}
.cine-title{
  margin:0; font-family:var(--serif); font-weight:400; color:var(--ivory);
  font-size:clamp(2.6rem,9vw,9rem); line-height:.9; letter-spacing:.02em; white-space:nowrap;
  text-shadow:0 4px 60px rgba(0,0,0,.55);
}
.cine-role{
  margin:clamp(18px,2.6vh,32px) 0 0;
  font-family:var(--mono); font-size:clamp(10px,.95vw,13px); font-weight:600;
  letter-spacing:.32em; text-transform:uppercase; color:var(--ivory);
  text-shadow:0 1px 3px rgba(0,0,0,.9);
}
.cine-scroll{
  position:absolute; right:var(--pad); bottom:clamp(40px,7vh,76px); z-index:3;
  font-family:var(--mono); font-size:10px; letter-spacing:.26em; text-transform:uppercase;
  color:var(--ivory-dim); display:flex; align-items:center; gap:13px; pointer-events:none;
}
.cine-scroll .ln{ display:block; width:48px; height:1px; background:currentColor; opacity:.6; }
.reveal .cine-title{ opacity:0; transform:translateY(.22em); transition:opacity 1.4s var(--ease), transform 1.4s var(--ease); }
.reveal.in .cine-title{ opacity:1; transform:none; }
.reveal .cine-role, .reveal .cine-kicker{ opacity:0; transform:translateY(12px); transition:opacity 1.1s var(--ease) .3s, transform 1.1s var(--ease) .3s; }
.reveal.in .cine-role, .reveal.in .cine-kicker{ opacity:1; transform:none; }
@media (max-width:760px){
  .cine-title{ white-space:normal; font-size:clamp(2.8rem,14vw,5rem); }
  .cine-scroll{ display:none; }
}
@media (prefers-reduced-motion:reduce){
  .reveal .cine-title, .reveal .cine-role, .reveal .cine-kicker{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* ---------- PERSON — portrait moment ---------- */
.person{
  max-width:1320px; margin:0 auto;
  display:grid; grid-template-columns:1.04fr .96fr;
  gap:clamp(32px,5vw,88px); align-items:center;
}
.person-fig{ position:relative; margin:0; width:100%; aspect-ratio:4/5; overflow:hidden; background:var(--bg-soft); }
.person-fig img{ position:absolute; inset:0; width:100%; height:100%; max-width:none; object-fit:cover; object-position:52% 18%; }
.person-aside{ min-width:0; }
.person-kicker{ display:block; font-family:var(--mono); font-size:11px; letter-spacing:.3em; text-transform:uppercase; color:var(--muted); margin-bottom:clamp(22px,3vw,36px); }
.person-name{ font-family:var(--serif); font-weight:400; color:var(--ivory); font-size:clamp(2.3rem,4vw,4rem); line-height:.98; letter-spacing:.02em; margin:0 0 clamp(22px,2.8vw,32px); }
.person-line{ font-size:clamp(1.02rem,1.25vw,1.26rem); line-height:1.78; color:var(--ivory-dim); max-width:44ch; text-wrap:pretty; margin:0; }
.person-line em{ font-style:italic; color:var(--ivory); }
.person-role{ margin-top:clamp(26px,3.2vw,40px); font-family:var(--mono); font-size:11px; letter-spacing:.26em; text-transform:uppercase; color:var(--ivory-dim); }
@media (max-width:820px){
  .person{ grid-template-columns:1fr; gap:clamp(28px,6vw,40px); }
  .person-fig{ width:min(88vw,470px); margin:0 auto; aspect-ratio:4/5; }
}

/* ---------- HORIZONTAL SCROLL — short bio ---------- */
.hscroll{ position:relative; background:var(--bg); }
.hscroll-sticky{ position:sticky; top:0; height:100svh; overflow:hidden; display:flex; align-items:center; contain:layout paint; }
.hscroll-track{ display:flex; align-items:center; gap:clamp(56px,9vw,180px); padding:0 var(--pad); will-change:transform; transform:translateZ(0); backface-visibility:hidden; }
.hpanel{ flex:0 0 auto; max-width:min(88vw,860px); }
.hpanel .kicker{ display:block; font-family:var(--mono); font-size:11px; letter-spacing:.3em; text-transform:uppercase; color:var(--muted); margin-bottom:clamp(24px,3vw,36px); }
.hlead{ font-family:var(--serif); font-weight:400; color:var(--ivory); font-size:clamp(2rem,4.4vw,4.4rem); line-height:1.04; letter-spacing:.01em; margin:0; text-wrap:balance; }
.hpanel p.htext{ font-size:clamp(1.1rem,1.7vw,1.7rem); line-height:1.62; color:var(--ivory-dim); margin:0; text-wrap:pretty; font-weight:300; }
.hpanel p.htext em{ color:var(--ivory); font-style:italic; }
.hpanel-cta{ display:flex; flex-direction:column; gap:clamp(20px,2.6vw,30px); }
.hpanel-cta .hcta-lead{ font-family:var(--mono); font-size:11px; letter-spacing:.3em; text-transform:uppercase; color:var(--muted); margin:0 0 clamp(6px,1vw,10px); }
.hpanel-cta .arrow-link{ font-size:clamp(1.5rem,2.6vw,2.4rem); }
.hscroll-label{ position:absolute; top:clamp(42px,7vh,76px); left:var(--pad); z-index:5; font-family:var(--mono); font-size:11px; letter-spacing:.3em; text-transform:uppercase; color:var(--muted); }
.hprogress{ position:absolute; left:var(--pad); right:var(--pad); bottom:clamp(36px,6vh,62px); height:1px; background:var(--line); z-index:5; }
.hprogress span{ display:block; height:100%; width:0; background:var(--ivory); }
@media (max-width:820px){
  /* (generic horizontal-scroll mobile fallback removed — the light section stays pinned) */
}

/* ---------- FULL-WIDTH FULL-SCREEN PORTRAIT ---------- */
.portrait-full{ position:relative; width:100%; height:100svh; min-height:560px; overflow:hidden; margin:0; background:var(--bg-soft); }
.portrait-full img{ position:absolute; inset:0; width:100%; height:100%; max-width:none; object-fit:cover; object-position:50% 24%; filter:grayscale(1) contrast(1.05) brightness(1.02); }
.portrait-full::after{ content:""; position:absolute; inset:0; pointer-events:none; z-index:1; background:linear-gradient(0deg, rgba(8,8,10,.66) 0%, rgba(8,8,10,.08) 32%, rgba(8,8,10,0) 52%); }
.portrait-cap{ position:absolute; left:var(--pad); bottom:clamp(36px,6.5vh,72px); z-index:2; }
.portrait-cap .pc-name{ display:block; font-family:var(--serif); font-weight:400; color:var(--ivory); font-size:clamp(1.9rem,3.6vw,3.4rem); line-height:1; letter-spacing:.02em; text-shadow:0 2px 30px rgba(0,0,0,.5); }
.portrait-cap .pc-role{ display:block; margin-top:clamp(12px,1.6vw,18px); font-family:var(--mono); font-size:11px; letter-spacing:.28em; text-transform:uppercase; color:var(--ivory-dim); }
.reveal .portrait-cap{ opacity:0; transform:translateY(16px); transition:opacity 1.2s var(--ease) .2s, transform 1.2s var(--ease) .2s; }
.reveal.in .portrait-cap{ opacity:1; transform:none; }
@media (max-width:680px){ .portrait-full img{ object-position:50% 22%; } }

/* ---------- CLEAN SHORT BIO ---------- */
.shortbio{ max-width:1000px; margin:0 auto; text-align:center; }
.shortbio .kicker{ display:block; font-family:var(--mono); font-size:11px; letter-spacing:.3em; text-transform:uppercase; color:var(--muted); margin-bottom:clamp(30px,4.5vw,52px); }
.shortbio p{ font-family:var(--read); font-weight:300; font-size:clamp(1.25rem,2.1vw,1.95rem); line-height:1.55; color:var(--ivory); text-wrap:pretty; margin:0 auto clamp(40px,6vw,66px); max-width:34ch; }
.shortbio p em{ font-style:italic; color:var(--ivory-dim); }
.shortbio-cta{ display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:clamp(26px,5vw,64px); }
.shortbio-cta .arrow-link{ font-size:clamp(1.2rem,1.9vw,1.6rem); }

/* ---------- LANG SWITCH ---------- */
.lang .sep{ opacity:.4; }

/* ---------- LIGHT HORIZONTAL: portrait slides to reveal bio (white interlude) ---------- */
.hscroll-light .hscroll-sticky{ background:#e6e5e4; }
.hscroll-light .hscroll-track{ padding:0; gap:0; align-items:stretch; }
.hscroll-light .hpanel{ max-width:none; height:100svh; display:flex; flex-direction:column; justify-content:center; }
.hscroll-light .hpanel-portrait{ flex:0 0 100vw; position:relative; padding:0; }
.hscroll-light .hpanel-portrait{ isolation:isolate; transform:translateZ(0); }
.hscroll-light .hpanel-portrait img{ position:absolute; inset:0; width:100%; height:100%; max-width:none; object-fit:cover; object-position:50% 24%; filter:none; }
.hscroll-light .hpanel-portrait .portrait-cap{ position:absolute; left:var(--pad); bottom:clamp(34px,6vh,64px); z-index:2; }
.hscroll-light .hpanel-portrait .pc-name{ display:block; font-family:var(--serif); color:var(--ivory); font-size:clamp(1.8rem,3.4vw,3.2rem); line-height:1; letter-spacing:.02em; text-shadow:0 2px 28px rgba(0,0,0,.45); }
.hscroll-light .hpanel-portrait .pc-role{ display:block; margin-top:clamp(10px,1.4vw,16px); font-family:var(--mono); font-size:11px; letter-spacing:.28em; text-transform:uppercase; color:#e7e7e8; text-shadow:0 1px 10px rgba(0,0,0,.55); }
.hscroll-light .hpanel-lead{ flex:0 0 auto; padding:0 clamp(48px,8vw,180px); }
.hscroll-light .hpanel-cta{ flex:0 0 auto; padding:0 clamp(48px,8vw,150px) 0 0; }
.hscroll-light .hpanel-cta .photo-credit{ color:#8b8b90; }
.hscroll-light .hpanel .kicker{ display:block; font-family:var(--mono); font-size:11px; letter-spacing:.3em; text-transform:uppercase; color:#7a7a7e; margin-bottom:clamp(24px,3vw,38px); }
.hscroll-light .hpanel .hlead{ font-family:var(--serif); font-weight:400; color:#15151a; font-size:clamp(2.1rem,4.4vw,4.2rem); line-height:1.04; letter-spacing:.01em; margin:0; max-width:16ch; text-wrap:balance; }
.hscroll-light .hpanel p.htext{ font-family:var(--read); font-weight:300; font-size:clamp(.92rem,1vw,1rem); line-height:1.9; letter-spacing:.008em; color:#2c2c33; margin:0 0 clamp(14px,1.6vw,20px); max-width:42ch; text-wrap:pretty; }
.hscroll-light .hpanel p.htext em{ font-style:italic; color:#15151a; }
.hscroll-light .hbtns{ display:flex; flex-direction:row; flex-wrap:wrap; align-items:center; gap:clamp(20px,2.4vw,34px); max-width:42ch; padding-top:0; }
.hscroll-light .hbtns .arrow-link{ color:#15151a; font-size:clamp(1.05rem,1.3vw,1.28rem); }
.hscroll-light .hbtns .arrow-link:hover{ opacity:.5; }
@media (max-width:820px){
  /* simple stack: bio text + buttons on top, portrait below */
  .hscroll-light .hscroll-sticky{ position:relative; height:auto; min-height:0; padding:0; display:block; background:#e6e5e4; }
  .hscroll-light .hscroll-track{ display:flex; flex-direction:column; transform:none !important; padding:0; gap:0; overflow:visible; }
  .hscroll-light .hpanel{ height:auto; max-width:none; display:block; width:100%; }
  .hscroll-light .hpanel-cta{ order:1; position:relative; padding:clamp(40px,9vw,56px) 8vw clamp(58px,14vw,88px); }
  .hscroll-light .hpanel-cta::before{ display:none; }
  .hscroll-light .hpanel-portrait{ order:2; position:relative; flex:none; width:100%; height:auto; aspect-ratio:4/5; isolation:isolate; transform:translateZ(0); }
  .hscroll-light .hpanel-portrait img{ position:absolute; inset:0; object-position:50% 10%; }
  .hscroll-light .hpanel .kicker{ margin-bottom:clamp(20px,5vw,28px); }
  .hscroll-light .hpanel p.htext{ font-size:clamp(.92rem,3.6vw,1rem); line-height:1.85; max-width:38ch; margin-bottom:clamp(30px,7vw,42px); }
  .hscroll-light .hbtns{ max-width:none; }
  .hscroll-light .hpanel-cta .photo-credit{ margin-top:28px; }
}

/* ---------- BIOGRAPHY — seamless cutout portrait + text on matching bg ---------- */
.bio-seam{ background:#e6e5e4; color:#15151a; }
.bio-seam-grid{ display:grid; grid-template-columns:0.95fr 1.05fr; align-items:start; min-height:100vh; max-width:1500px; margin:0 auto; }
.bio-seam-portrait{ position:sticky; top:0; height:100vh; min-height:480px; margin:0; }
.bio-seam-portrait img{ position:absolute; inset:0; width:100%; height:100%; max-width:none; object-fit:cover; object-position:50% 14%; }
.photo-credit{
  display:block;
  font-family:var(--mono); font-size:9px; letter-spacing:.12em; text-transform:uppercase;
  color:#8b8b90; margin:2px 0 22px; opacity:.85;
}
.bio-seam-text{ display:flex; flex-direction:column; justify-content:center; padding:clamp(120px,15vh,184px) var(--pad) clamp(80px,11vh,132px) clamp(32px,4.5vw,80px); }
.bio-seam-title{ font-family:var(--serif); font-weight:400; color:#15151a; font-size:clamp(2.2rem,3.6vw,3.4rem); line-height:1; letter-spacing:.02em; margin:0 0 clamp(28px,3.6vw,48px); }
.bio-seam .bio-body{ color:#3a3a40; font-size:clamp(1rem,.9vw,1.05rem); line-height:1.9; max-width:60ch; }
.bio-seam .bio-body p{ margin:0 0 1.35em; text-wrap:pretty; }
.bio-seam .bio-body p:last-child{ margin-bottom:0; }
.bio-seam .bio-body em{ color:#15151a; font-style:italic; }
.bio-seam .bio-body p:first-of-type{ color:#15151a; }
@media (max-width:880px){
  .bio-seam-grid{ grid-template-columns:1fr; min-height:0; }
  .bio-seam-text{ order:1; padding:clamp(108px,22vw,148px) var(--pad) clamp(34px,8vw,52px); }
  .bio-seam-portrait{ order:2; position:static; height:78vh; min-height:440px; }
}

/* ---------- BIOGRAPHY — full-image background, text over ---------- */
.bio-cover{ position:relative; min-height:100vh; overflow:hidden; }
.bio-cover-bg{ position:absolute; inset:0; z-index:0; }
.bio-cover-bg img{ width:100%; height:100%; max-width:none; object-fit:cover; object-position:50% 38%; filter:grayscale(1) contrast(1.06) brightness(.62); }
.bio-cover-bg::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(95deg, rgba(8,8,10,.92) 0%, rgba(8,8,10,.74) 38%, rgba(8,8,10,.46) 70%, rgba(8,8,10,.6) 100%);
}
.bio-cover-inner{ position:relative; z-index:1; max-width:820px; padding:clamp(150px,22vh,250px) var(--pad) clamp(96px,14vh,170px); }
.bio-cover-title{ font-family:var(--serif); font-weight:400; color:var(--ivory); font-size:clamp(2.6rem,7vw,5.6rem); line-height:.98; letter-spacing:.02em; margin:0 0 clamp(40px,6vw,72px); text-shadow:0 2px 40px rgba(0,0,0,.5); }
.bio-cover .bio-body{ font-size:clamp(1rem,1.18vw,1.16rem); line-height:1.95; color:var(--ivory-dim); max-width:62ch; }
.bio-cover .bio-body p{ margin:0 0 1.5em; text-wrap:pretty; }
.bio-cover .bio-body p:last-child{ margin-bottom:0; }
.bio-cover .bio-body em{ font-style:italic; color:var(--ivory); }
.bio-cover .bio-body p:first-of-type{ color:var(--ivory); font-size:1.08em; line-height:1.85; }

/* ---------- UPCOMING page extras ---------- */
.up-tickets{ margin-top:clamp(16px,2vw,22px); }
.up-ticket-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.75em 1.6em;
  background:var(--ivory);
  border:1px solid var(--ivory);
  font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--bg);
  transition:opacity .25s var(--ease);
}
.up-ticket-btn:hover{ opacity:.8; }
.up-item{ display:flex; flex-direction:column; align-items:flex-start; }
.up-note{
  text-align:center; max-width:54ch; margin:clamp(44px,6vw,80px) auto 0;
  font-family:var(--mono); font-size:10px; letter-spacing:.16em; line-height:1.9;
  color:var(--faint); text-transform:uppercase;
}
.up-note:empty{ display:none; }

/* kill any sub-pixel hairline where the off-white portrait interlude meets
   the dark gallery section on the homepage */
#media{ background:var(--bg); position:relative; z-index:1; margin-top:-1px; }
.hscroll-light{ position:relative; z-index:0; }

/* ---------- LEGAL / PRIVACY page ---------- */
.legal{ max-width:760px; margin:0 auto; }
.legal-block{ margin-bottom:clamp(34px,4.5vw,56px); }
.legal-block:last-child{ margin-bottom:0; }
.legal-block h2{ font-family:var(--serif); font-weight:400; color:var(--ivory); font-size:clamp(1.3rem,2vw,1.85rem); line-height:1.2; letter-spacing:.01em; margin:0 0 clamp(14px,1.6vw,20px); }
.legal-block p, .legal-block li{ font-size:clamp(.98rem,1.05vw,1.08rem); line-height:1.85; color:var(--ivory-dim); text-wrap:pretty; }
.legal-block p{ margin:0 0 1em; }
.legal-block p:last-child{ margin-bottom:0; }
.legal-block a{ color:var(--ivory); text-decoration:none; border-bottom:1px solid var(--faint); }
.legal-block a:hover{ border-color:var(--ivory); }
.legal-block ul{ margin:0 0 1em; padding-left:1.2em; }
.legal-block li{ margin:0 0 .4em; }
.legal-updated{ font-family:var(--mono); font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin-bottom:clamp(34px,4.5vw,56px); }

/* ---------- WORK page — sidebar + per-show grid ---------- */
.work-reel{ margin:0 0 clamp(40px,6vw,76px); aspect-ratio:16 / 9; background:#000; overflow:hidden; position:relative; }
@media (max-width:680px){ .work-reel{ aspect-ratio:1 / 1; max-height:none; } }
.work-reel .gv-video{ width:100%; height:100%; max-width:none; object-fit:cover; display:block; background:#000; filter:none; }

/* ---------- YouTube trailer facade (B&W until played, no player chrome) ---------- */
.yt-facade{ position:absolute; inset:0; cursor:pointer; overflow:hidden; display:block; }
.yt-poster{ width:100%; height:100%; object-fit:cover; display:block; filter:grayscale(1) contrast(1.05) brightness(.94); transition:filter .6s var(--ease), transform .9s var(--ease); }
.yt-facade:hover .yt-poster,
.yt-facade:focus-visible .yt-poster{ filter:grayscale(1) contrast(1.07) brightness(1.04); transform:scale(1.018); }
.yt-facade::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.10) 55%, rgba(0,0,0,.42) 100%); pointer-events:none; }
.yt-play{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); z-index:2; width:clamp(62px,5.6vw,86px); height:clamp(62px,5.6vw,86px); border-radius:50%; border:1px solid rgba(255,255,255,.78); background:rgba(12,12,14,.32); display:flex; align-items:center; justify-content:center; transition:background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.yt-facade:hover .yt-play,
.yt-facade:focus-visible .yt-play{ background:rgba(12,12,14,.55); border-color:#fff; transform:translate(-50%,-50%) scale(1.07); }
.yt-tri{ width:0; height:0; border-style:solid; border-width:9px 0 9px 15px; border-color:transparent transparent transparent #fff; margin-left:4px; }
.yt-label{ position:absolute; left:50%; bottom:clamp(16px,2.4vw,26px); transform:translateX(-50%); z-index:2; font-family:var(--mono); font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.82); }
.yt-frame{ width:100%; height:100%; border:0; display:block; }
/* Always-available escape hatch: if the inline player is blocked (e.g. YouTube
   error 153 when no referrer is sent), users can still open the trailer. */
.yt-fallback{ position:absolute; right:12px; bottom:12px; z-index:3; font-family:var(--mono); font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.9); background:rgba(12,12,14,.6); border:1px solid rgba(255,255,255,.5); padding:7px 12px; border-radius:2px; text-decoration:none; backdrop-filter:blur(4px); transition:background .3s var(--ease), border-color .3s var(--ease); }
.yt-fallback:hover{ background:rgba(12,12,14,.85); border-color:#fff; }
.work-grid.gallery-grid .grid-trailer{ grid-column:1 / -1; aspect-ratio:16 / 9; position:relative; background:#000; }
.work-grid.gallery-grid .grid-trailer .yt-frame{ position:absolute; inset:0; }

.work-layout{ display:grid; grid-template-columns:minmax(190px,250px) 1fr; gap:clamp(34px,5vw,84px); align-items:start; }

.work-aside{
  position:sticky; top:clamp(96px,12vh,128px); align-self:start;
  max-height:calc(100vh - clamp(96px,12vh,128px) - 40px);
  overflow-y:auto; overscroll-behavior:contain;
  scrollbar-width:thin;
}
.role-tabs{ display:flex; gap:10px; border-bottom:1px solid var(--line); margin-bottom:clamp(26px,3vw,38px); }
.role-tabs button{
  appearance:none; background:none; border:0; cursor:pointer; padding:0 0 14px; margin-right:0; flex:1 1 0; min-width:0; text-align:center;
  font-family:var(--mono); font-size:10px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--muted); position:relative; transition:color .4s var(--ease);
}
.role-tabs button[data-role="all"]{ flex:0 0 auto; padding-left:2px; padding-right:2px; }
.role-tabs button:hover{ color:var(--ivory-dim); }
.role-tabs button.active{ color:var(--ivory); }
.role-tabs button.active::after{ content:""; position:absolute; left:0; right:0; bottom:-1px; height:1px; background:var(--ivory); }

.show-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; }
.show-list li{ margin:0; }
.show-list button,
.show-list a{
  appearance:none; background:none; border:0; cursor:pointer; text-align:left; width:100%;
  padding:clamp(11px,1.3vw,15px) 0; border-bottom:1px solid var(--line);
  font-family:var(--read); font-weight:400; font-size:clamp(.9rem,1vw,1rem); line-height:1.35; letter-spacing:.005em;
  color:var(--muted); transition:color .4s var(--ease), padding-left .4s var(--ease);
  display:flex; align-items:baseline; gap:10px;
}
.show-list button:hover, .show-list a:hover{ color:var(--ivory); padding-left:6px; }
.show-list button.active, .show-list a.active{ color:var(--ivory); padding-left:6px; }
.show-list button.active .sl-yr, .show-list a.active .sl-yr{ color:var(--ivory-dim); }
.show-list .sl-ttl{ flex:1 1 auto; }
.show-list .sl-yr{ font-family:var(--mono); font-size:10px; letter-spacing:.16em; color:var(--faint); flex:0 0 auto; }

.show-header{ margin-bottom:clamp(26px,3.4vw,44px); max-width:1500px; scroll-margin-top:clamp(96px,12vh,128px); }
.show-header .sh-title{ font-family:var(--serif); font-weight:400; color:var(--ivory); font-size:clamp(2rem,3.6vw,3.4rem); line-height:1.02; letter-spacing:.015em; margin:0 0 clamp(16px,1.8vw,22px); }
.show-meta{ display:flex; flex-wrap:wrap; align-items:flex-start; gap:8px clamp(20px,2.6vw,38px); border-top:1px solid var(--line); padding-top:clamp(14px,1.6vw,20px); }
.show-meta .sm-blk{ display:flex; flex-direction:column; gap:5px; }
.show-meta .sm-lbl{ font-family:var(--mono); font-size:10px; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); }
.show-meta .sm-val{ font-size:clamp(.92rem,1vw,1.04rem); line-height:1.45; color:var(--ivory-dim); }

/* creative-team — labelled, collapsible credit list */
.cteam{ margin-top:clamp(16px,2vw,24px); }
.show-meta .sm-actions{ display:flex; flex-direction:row; align-items:flex-start; gap:clamp(20px,2.6vw,38px); max-width:100%; min-width:0; }
.sm-actions .cteam-toggle, .sm-actions .cteam-jump{
  appearance:none; background:none; border:0; cursor:pointer; padding:0;
  font-size:clamp(.92rem,1vw,1.04rem); line-height:1.45; font-family:var(--read); font-weight:300; letter-spacing:normal; text-transform:none;
  color:var(--ivory-dim); display:inline-flex; align-items:center; gap:8px; transition:color .3s var(--ease);
  white-space:nowrap;
}
.sm-actions .cteam-toggle:hover, .sm-actions .cteam-jump:hover{ color:var(--ivory); }
.cteam-toggle{
  appearance:none; background:none; border:0; cursor:pointer; padding:0;
  font-family:var(--mono); font-size:10px; font-weight:300; font-style:normal; line-height:1; letter-spacing:.16em; text-transform:uppercase;
  color:var(--muted); display:inline-flex; align-items:center; gap:9px; transition:color .3s var(--ease);
  white-space:nowrap; flex:none;
}
.cteam-toggle:hover{ color:var(--ivory); }
.cteam-toggle .tg-ic{ position:relative; display:inline-block; flex:none; width:13px; height:13px; border:1px solid currentColor; border-radius:50%; box-sizing:border-box; }
.cteam-toggle .tg-ic::before, .cteam-toggle .tg-ic::after{ content:""; position:absolute; left:50%; top:50%; background:currentColor; transform:translate(-50%,-50%); }
.cteam-toggle .tg-ic::before{ width:5px; height:1px; }
.cteam-toggle .tg-ic::after{ width:1px; height:5px; }
.cteam.open .cteam-toggle .tg-ic::after, .cteam-toggle.open .tg-ic::after{ display:none; }
.cteam-jump{
  appearance:none; background:none; border:0; cursor:pointer; padding:0;
  font-family:var(--mono); font-size:10px; font-weight:300; font-style:normal; line-height:1; letter-spacing:.16em; text-transform:uppercase;
  color:var(--muted); display:inline-flex; align-items:center; gap:9px; transition:color .3s var(--ease);
  white-space:nowrap; flex:none;
}
.cteam-jump:hover{ color:var(--ivory); }
.cteam-jump:hover .jump-ic{ transform:translateY(2px); }
.cteam-jump .jump-ic{ position:relative; display:inline-block; flex:none; width:13px; height:13px; border:1px solid currentColor; border-radius:50%; box-sizing:border-box; transition:transform .3s var(--ease); }
.cteam-jump .jump-ic::before{ content:""; position:absolute; left:50%; top:50%; width:4px; height:4px; border-right:1px solid currentColor; border-bottom:1px solid currentColor; transform:translate(-50%,-70%) rotate(45deg); transition:transform .3s var(--ease); }
.cteam-jump.open .jump-ic::before{ transform:translate(-50%,-30%) rotate(225deg); }
.cteam-list{ list-style:none; margin:0; padding:0; display:grid; grid-auto-flow:column; gap:clamp(16px,1.8vw,24px) clamp(22px,2.2vw,34px); grid-template-columns:repeat(2,minmax(0,1fr)); max-width:440px; }
.cteam-row{ display:flex; flex-direction:column; gap:4px; min-width:0; }
.cteam-pos{ font-size:clamp(.98rem,1.05vw,1.12rem); line-height:1.25; color:var(--ivory); }
.cteam-name{ font-family:var(--mono); font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
.cteam.collapsed .cteam-list{ display:none; }
@media (min-width:900px){ .cteam.open .cteam-list{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:520px){ .cteam-list{ grid-auto-flow:row; grid-template-columns:1fr; grid-template-rows:none !important; } .cteam-pos{ white-space:normal; } }

/* press mentions — aligned with the images, spanning the image-row width */
.press{ margin-top:clamp(40px,5vw,72px); border-top:1px solid var(--line); padding-top:clamp(30px,3.6vw,50px); display:grid; gap:clamp(38px,4vw,60px); }
.press.press-collapsed{ display:none; }
.press-title{ font-family:var(--mono); font-size:10px; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); }
.press-item{ max-width:none; position:relative; padding-left:clamp(36px,3vw,58px); }
.press-item::before{ content:"\201C"; position:absolute; left:0; top:.04em; font-family:var(--serif); font-size:clamp(2.8rem,4.6vw,4rem); line-height:.8; color:var(--faint); }
.press-quote{ font-family:var(--read); font-weight:300; font-style:normal; color:var(--ivory-dim); font-size:clamp(1.15rem,1.55vw,1.62rem); line-height:1.66; letter-spacing:.003em; margin:0; max-width:none; text-wrap:pretty; }
.press-quote em{ font-style:italic; color:var(--ivory); }
.press-source{ display:block; margin-top:clamp(18px,2vw,26px); font-family:var(--serif); font-style:normal; font-size:clamp(1.05rem,1.25vw,1.3rem); letter-spacing:.02em; color:var(--ivory); }
.press-source::before{ content:none; }
.press-badges{ display:flex; flex-wrap:wrap; align-items:center; gap:clamp(20px,2.4vw,34px); margin:-4px 0 clamp(6px,1vw,12px); padding-left:clamp(36px,3vw,58px); }
.press-badge{ height:clamp(96px,10vw,140px); width:auto; opacity:.9; }

/* lightbox image credit */
.lb-caption{
  position:fixed; left:0; right:0; bottom:0; z-index:5; pointer-events:none;
  text-align:center; padding:clamp(16px,3vh,30px) 20px;
  background:linear-gradient(0deg, rgba(8,8,10,.82) 0%, rgba(8,8,10,0) 100%);
}
.lb-caption .lbc-year{ display:block; font-family:var(--mono); font-size:10px; letter-spacing:.24em; color:var(--muted); margin-bottom:9px; }
.lb-caption .lbc-title{ display:block; font-family:var(--serif); font-style:normal; color:var(--ivory); font-size:clamp(1.05rem,1.6vw,1.4rem); letter-spacing:.02em; margin-bottom:10px; }
.lb-caption .lbc-line{ display:block; font-family:var(--mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--ivory-dim); line-height:1.9; }
.lb-caption .lbc-line b{ color:var(--muted); font-weight:400; }

@media (max-width:820px){
  .work-layout{ grid-template-columns:1fr; gap:clamp(28px,7vw,42px); }
  .work-aside{ position:static; top:auto; max-height:none; overflow-y:visible; overscroll-behavior:auto; }
  .show-list li{ scroll-margin-top:88px; }

  /* list: no per-row divider lines — role-tabs already draws the line above; avoid doubling it */
  .show-list{ display:flex; flex-direction:column; border-top:0; }
  .show-list li{ flex:none; width:100%; border-bottom:1px solid var(--line); }
  .show-list button, .show-list a{ position:relative; padding:clamp(14px,3.4vw,18px) 26px clamp(14px,3.4vw,18px) 0; border-bottom:0; }
  .show-list button.active, .show-list a.active{ padding-left:0; }

  /* when a row is open, its own title becomes the project headline — no separate repeated heading */
  .show-list li.sl-open button, .show-list li.sl-open a{ align-items:flex-start; flex-direction:column; gap:6px; padding-bottom:clamp(18px,4vw,24px); position:sticky; top:0; z-index:2; background:var(--bg); }
  .show-list li.sl-open .sl-ttl{ font-family:var(--serif); font-weight:400; color:var(--ivory); font-size:clamp(1.5rem,6.4vw,2.1rem); line-height:1.06; letter-spacing:.015em; }
  .show-list li.sl-open .sl-yr{ display:none; }
  .show-list li.sl-open .sl-chev{ top:50%; margin-top:-6px; }

  .sl-chev{ position:absolute; right:2px; top:50%; width:9px; height:9px; margin-top:-6px;
    border-right:1px solid var(--faint); border-bottom:1px solid var(--faint);
    transform:rotate(45deg); transition:transform .3s var(--ease), border-color .3s var(--ease); }
  .show-list li.sl-open .sl-chev{ transform:rotate(-135deg); border-color:var(--ivory); }

  .sl-detail{ padding:0 0 clamp(28px,6vw,40px); }
  .sl-detail[hidden]{ display:none; }

  /* the repeated big headline inside the detail is redundant now — the list row above IS the headline */
  .sl-detail .show-header{ margin-bottom:clamp(18px,4vw,26px); }
  .sl-detail .show-header .sh-title{ display:none; }

  /* one clear divider ahead of the meta row instead of stacking one under every block */
  .sl-detail .show-meta{ border-top:0; padding-top:0; flex-direction:column; align-items:flex-start; gap:14px; }
  .sl-detail .show-meta .sm-blk:nth-child(1){ order:2; }
  .sl-detail .show-meta .sm-blk:nth-child(2){ order:1; }
  .sl-detail .show-meta .sm-actions{ order:3; flex:0 0 auto; max-width:100%; margin-top:0; padding-top:0; flex-direction:column; align-items:flex-start; row-gap:12px; }
  .work-main.is-empty{ display:none; }
  .sl-detail .cteam-list{ grid-auto-flow:row !important; grid-template-columns:1fr !important; grid-template-rows:none !important; max-width:none; }
  .sl-detail .press{ border-top:0; margin-top:clamp(22px,5vw,30px); padding-top:0; }
  /* slightly smaller quote so the paragraph isn't tall + narrow */
  .press-quote{ font-size:clamp(1.05rem,4vw,1.25rem); line-height:1.58; }
  .press-item{ padding-left:0; padding-top:clamp(30px,9vw,40px); }
  .press-item::before{ left:-2px; top:0; font-size:clamp(2.6rem,11vw,3.2rem); }
  .press-badges{ padding-left:0; }
  .press{ gap:clamp(30px,7vw,44px); }
}

/* ---------- GALLERY page — full-width colour video at top ---------- */
.gallery-grid .gallery-video{ grid-column:1 / -1; aspect-ratio:16 / 9; background:#000; overflow:hidden; }
.gv-video{ width:100%; height:100%; max-width:none; object-fit:cover; display:block; background:#000; filter:none; }
@media (max-width:680px){ .gallery-grid .gallery-video{ aspect-ratio:16 / 10; } }

/* ---------- tighter editorial galleries (override earlier rules) ---------- */
.home-gallery{ gap:clamp(6px,.9vw,14px); max-width:1500px; }
.gallery-grid{ gap:clamp(6px,.9vw,14px); max-width:1500px; }
.home-gallery .grid-item .photo,
.gallery-grid .grid-item .photo{ width:100%; aspect-ratio:4/5; object-fit:cover; object-position:50% 38%; }
.home-gallery .grid-item, .gallery-grid .grid-item{ overflow:hidden; }
@media (max-width:680px){
  .home-gallery{ grid-template-columns:repeat(2,1fr); gap:6px; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); gap:6px; }
}

/* mobile — home gallery preview becomes a single-square swipe/arrow slider */
.home-gallery-wrap{ position:relative; }
.hg-nav{ display:none; }
@media (max-width:680px){
  .home-gallery-wrap{ padding:0 30px; }
  .home-gallery{
    display:flex; flex-wrap:nowrap; grid-template-columns:none;
    overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
    scrollbar-width:none; gap:0;
  }
  .home-gallery::-webkit-scrollbar{ display:none; }
  .home-gallery .grid-item{ flex:0 0 100%; width:100%; scroll-snap-align:start; }
  .home-gallery .grid-item .photo{ aspect-ratio:3/4; }
  .hg-nav{
    display:flex; align-items:center; justify-content:center;
    position:absolute; top:50%; transform:translateY(-50%); z-index:2;
    width:24px; height:24px; border:0; border-radius:0;
    background:transparent; cursor:pointer; padding:0;
    opacity:0; pointer-events:none; transition:opacity .35s var(--ease);
  }
  .home-gallery-wrap.hg-open .hg-nav{ opacity:1; pointer-events:auto; }
  .hg-prev{ left:0; }
  .hg-next{ right:0; }
  .hg-arrow{ display:block; width:0; height:0; border-top:5px solid transparent; border-bottom:5px solid transparent; opacity:.6; }
  .hg-arrow-l{ border-right:6px solid var(--ivory-dim); margin-left:-2px; }
  .hg-arrow-r{ border-left:6px solid var(--ivory-dim); margin-right:-2px; }
}

/* ---------- WORK gallery: even, uniform grid (numbered order) ---------- */
.work-grid.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:clamp(10px,1.3vw,22px);
  max-width:1500px;
  margin:0;
}
.work-grid.gallery-grid .grid-item{
  margin:0;
  background:var(--bg-soft);
  overflow:hidden;
}
.work-grid.gallery-grid .grid-item .photo{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  object-position:50% 35%;
}
@media (max-width:560px){
  .work-grid.gallery-grid{ grid-template-columns:1fr; }
  .work-grid.gallery-grid .grid-item .photo{ aspect-ratio:3/2; }
}
