:root{
  --bg: #07070a;              /* ink */
  --panel: rgba(255,255,255,0.05);
  --panel2: rgba(255,255,255,0.08);
  --text: #f1eadf;            /* bone */
  --muted: rgba(241,234,223,0.70);
  --line: rgba(241,234,223,0.14);
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --radius: 18px;
  --max: 1120px;
  --accent: #6d1220;          /* oxblood */
  --accentHover: #84192a;
  --gold: #d8b45d;            /* brand gold */
  --goldGlow: rgba(216,180,93,0.32);
}


*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

/* iOS / mobile tap highlight — make it brand gold instead of blue */
a, button, .btn, summary, [role="button"], input, textarea, select{
  -webkit-tap-highlight-color: rgba(216,180,93,0.22);
}
body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(900px 700px at 85% 18%, rgba(255,255,255,0.08), transparent 55%),
    radial-gradient(1200px 900px at 50% 120%, rgba(255,255,255,0.06), transparent 55%),
    var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height:1.45;
}

/* Links: readable on dark background (accent used as underline) */
a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(109,18,32,0.65);
}
a:hover{
  text-decoration-color: rgba(109,18,32,1);
}

/* Accent link (used for ACT: New Nordic Voices in hero) */
.lead a.actLink{
  color: var(--accentHover);
  font-weight: 800;
  text-decoration-color: rgba(109,18,32,0.95);
}
.lead a.actLink:hover{
  color: var(--accentHover);
  text-decoration-color: rgba(109,18,32,1);
}

/* Accent link (used for ACT: New Nordic Voices in hero) */
.lead a.actLink{
  color: var(--accentHover);
  font-weight: 800;
  text-decoration-color: rgba(109,18,32,0.95);
}
.lead a.actLink:hover{
  color: var(--accentHover);
  text-decoration-color: rgba(109,18,32,1);
}


/* Accent link (used for ACT: New Nordic Voices in hero) */
.lead a.actLink{
  color: var(--accentHover);
  font-weight: 800;
  text-decoration-color: rgba(109,18,32,0.95);
}
.lead a.actLink:hover{
  color: var(--accentHover);
  text-decoration-color: rgba(109,18,32,1);
}


/* Accent link (used for ACT: New Nordic Voices in hero) */
.lead a.actLink{
  color: var(--accentHover);
  font-weight: 800;
  text-decoration-color: rgba(109,18,32,0.95);
}
.lead a.actLink:hover{
  color: var(--accentHover);
  text-decoration-color: rgba(109,18,32,1);
}


/* Accent link (used for ACT: New Nordic Voices in hero) */
.lead a.actLink{
  color: var(--accentHover);
  font-weight: 800;
  text-decoration-color: rgba(109,18,32,0.95);
}
.lead a.actLink:hover{
  color: var(--accentHover);
  text-decoration-color: rgba(109,18,32,1);
}


/* Accent link (used for ACT: New Nordic Voices in hero) */
.lead a.actLink{
  color: var(--accentHover);
  font-weight: 800;
  text-decoration-color: rgba(109,18,32,0.95);
}
.lead a.actLink:hover{
  color: var(--accentHover);
  text-decoration-color: rgba(109,18,32,1);
}

a:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
  box-shadow: 0 0 0 4px var(--goldGlow);
}
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

.nowrap{ white-space:nowrap; }

.topbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
  backdrop-filter: blur(10px);
  background: rgba(11,12,16,0.68);
  border-bottom:1px solid var(--line);
}

.brand{ display:flex; align-items:center; gap:10px; }
.brandMark{
  width:12px; height:12px; border-radius:4px;
  background:rgba(255,255,255,0.9);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.06);
}
.brandLogo{
  width:32px; height:32px; border-radius:50%;
  display:block; object-fit:cover;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
  background: transparent;
}
.brandText{ font-weight:700; letter-spacing:0.2px; }

.nav{ display:flex; gap:18px; }
.nav a{ text-decoration: none;  color:var(--muted); font-weight:600; }
.nav a:hover{ color:var(--text); text-decoration:none; }

/* Selected Works dropdown (desktop) */
.navDropdown{ position:relative; display:inline-block; }
.navDropLink{ display:flex; align-items:center; gap:6px; }
.navCaret{ font-size:.85em; opacity:.75; }
.navMenu{
  position:absolute;
  top: calc(100% + 10px);
  left: -8px;
  /* Wider + more stable so long titles don't visually collide */
  min-width: 360px;
  width: clamp(360px, 42vw, 620px);
  max-width: 620px;
  max-height: min(72vh, 520px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  overscroll-behavior: contain;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  /* Opaque enough to fully cover the hero/logo behind */
  background: rgba(10,10,12,.98);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
  display:none;
  z-index: 9999;
}
.navMenu a{
  /* Force true two-line layout (title + meta) */
  display:flex !important;
  flex-direction: column !important;
  align-items: flex-start;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: normal;
  line-height: 1.25;
  position: relative;
  text-align: left;
}
.navMenu a:not(:last-child)::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:0;
  height:1px;
  background: rgba(255,255,255,.06);
}

/* Grouped dropdown menus (with headings + explicit dividers) */
.navMenu--grouped a:not(:last-child)::after{
  content: none;
}

.navMenuLabel{
  padding: 10px 12px 6px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 650;
}

.navMenuDivider{
  height: 1px;
  margin: 8px 12px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
}
.navMenu a:hover{ background: rgba(255,255,255,.06); }
.navMenu .ddTitle{
  display:block;
  font-weight: 750;
  color: var(--text);
  width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
.navMenu .ddMeta{
  display:block;
  margin-top: 4px;
  font-size: .86em;
  color: rgba(255,255,255,.64);
  font-weight: 550;
  width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
.navMenu a:hover .ddMeta{
  color: rgba(255,255,255,.78);
}
.navDropdown:hover .navMenu,
.navDropdown:focus-within .navMenu{ display:block; }

/* Anchor offsets (sticky topbar) */
.worksAnchor, #works-full{ scroll-margin-top: 96px; }

.menuBtn{
  display:none;
  width:44px; height:40px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.04);
  border-radius:12px;
  cursor:pointer;
}
.menuBtn span{ display:block; height:2px; margin:7px 10px; background:rgba(255,255,255,0.75); border-radius:2px; }

.mobileMenu{
  position:sticky; top:64px; z-index:40;
  padding:12px 18px 18px;
  background: rgba(11,12,16,0.92);
  border-bottom:1px solid var(--line);
}
.mobileMenu a{
  display:block;
  padding:10px 0;
  color:var(--muted);
  font-weight:650;
}
.mobileMenu a:hover{ color:var(--text); text-decoration:none; }

.hero{ padding:52px 18px 18px; }
.heroLogo{
  display:block;
  width:min(520px, 100%);
  height:auto;
  max-width:100%;
  margin: 0 0 10px 0;
}

.heroInner{
  max-width: var(--max);
  margin:0 auto;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:26px;
}
.kicker{
  color:var(--muted);
  letter-spacing:0.5px;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 10px;
}
h1{
  margin:0 0 12px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height:1.08;
  letter-spacing:-0.6px;
}
.lead{
  margin:0 0 18px;
  font-size: 16.5px;
  color: rgba(255,255,255,0.86);
  max-width: 62ch;
}

/* Museum-grade pull quote in hero */
.heroQuote{
  max-width:62ch;
  margin:0 0 18px;
  padding-left:14px;
  border-left:2px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.74);
  font-style: italic;
  letter-spacing: 0.01em;
}

.ctaRow{ display:flex; gap:10px; flex-wrap:wrap; margin: 10px 0 12px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-weight: 700;
  text-decoration:none;
  box-shadow: none;
}
.btn:hover{ background: var(--panel2); text-decoration:none; }
.btn.primary{
  background: var(--accent);
  color: var(--text);
  border-color: rgba(109,18,32,0.75);
}
.btn.primary:hover{ background: var(--accentHover); }
.btn.small{ padding:8px 12px; font-size: 13.5px; border-radius: 12px; }
.btn.ghost{ background: transparent; }

.metaRow{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px; }
.chip{
  text-decoration: none;
  display:inline-flex;
  padding:7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
}
.chip.muted{ color: var(--muted); }

.heroMedia{ display:flex; flex-direction:column; gap:12px; }
.mediaCard{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
  min-height: 280px;
  display:flex;
}
.mediaCard img{ width:100%; height:100%; object-fit:cover; display:block; }
.mediaCard.fallback{ padding:18px; align-items:flex-end; }
.mediaFallback{ display:flex; align-items:flex-end; justify-content:space-between; gap:14px; width:100%; }
.fallbackShape{
  width:56px; height:56px; border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.06);
}

.quickLinks{ display:flex; gap:10px; flex-wrap:wrap; }
.mini{
  display:inline-flex;
  padding:8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
  background: rgba(255,255,255,0.03);
}
.mini:hover{ color: var(--text); text-decoration:none; background: rgba(255,255,255,0.06); }

.section{
  padding: 42px 18px;
}
.sectionHead{
  max-width: var(--max);
  margin:0 auto 14px;
}
.sectionHead h2{
  margin:0 0 6px;
  font-size: 22px;
  letter-spacing: -0.2px;
}

/* Chapter title-card reveal (site-wide, restrained)
   Applied by JS to .sectionHead so non-JS users see normal content. */
.chapterReveal{
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.chapterReveal.is-visible{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce){
  .chapterReveal{
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.muted{ color: var(--muted); }
.small{ font-size: 13px; }
.spacer{ height: 10px; }

.grid2{
  max-width: var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.cards{
  max-width: var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

/* About section cards should not force equal heights */
#about .cards{
  align-items: start;
}
#about .cards > .card{
  align-self: start;
}



.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--panel);
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
}
.card h3{ margin:0 0 8px; letter-spacing:-0.2px; }
.card p{ margin:0 0 10px; }
.card p:last-child{ margin-bottom:0; }

.project .actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px; }
.tagRow{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom: 10px; }
.tag{
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  font-weight: 750;
}
.tag.muted{ color: var(--muted); font-weight:650; }

.list{ margin:0; padding-left: 18px; color: rgba(255,255,255,0.86); }
.list li{ margin: 6px 0; }

/* What I Bring: fill the right side of the card with an image (desktop), stack on mobile */
.wibSplit{ display:flex; gap:16px; align-items:stretch; }
.wibText{ flex: 1 1 60%; min-width:0; }
.wibMedia{
  flex: 0 0 38%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.wibMedia img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  /* crop a little from the bottom; keep the top/center emphasis */
  object-position: center 20%;
}


/* What I Bring — “Read more” image */
.bringFigure{ margin: 0; }
.bringFigure img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote{
  max-width: var(--max);
  margin: 14px auto 0;
  border-left: 3px solid rgba(255,255,255,0.20);
  padding: 10px 14px;
  color: rgba(255,255,255,0.82);
}

.credits{
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.45;
}

.timeline{ padding: 6px 14px; }
.timeline .row{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.timeline .row:last-child{ border-bottom: none; }
.timeline .year{ color: rgba(216,180,93,0.72); font-weight: 750; transition: color 180ms ease, text-shadow 180ms ease; }

/* Museum-grade hover glow (desktop only) */
@media (hover:hover) and (pointer:fine){
  .timeline .row{ border-radius: 14px; transition: background 180ms ease; }
  .timeline .row:hover{ background: rgba(216,180,93,0.04); }
  .timeline .row:hover .year{ color: rgba(216,180,93,0.92); text-shadow: 0 0 18px rgba(216,180,93,0.30); }
}

/* Contain floated archival media so it never squeezes the next timeline rows */
.timeline .item{ display: flow-root; }

/* Timeline media (archival stills) */
.timeline .timelineMedia { margin: 10px 0 0; }
.timeline .timelineMedia img { width: 100%; max-width: min(560px, 92vw); border-radius: 14px; border: 1px solid var(--line); display: block; }

/* A quieter, more "archival" scale for early-career timeline stills */
.timeline .timelineMedia--archival{
  float: right;
  width: min(42%, 360px);
  margin: 6px 0 8px 18px;
}
.timeline .timelineMedia--archival img{
  max-width: 100%;
  margin: 0;
}

/* Centered archival still (reduces large empty space on wide screens) */
.timeline .timelineMedia--archivalCentered{
  float: none;
  width: 100%;
  margin: 12px 0 0;
  text-align: center;
}
.timeline .timelineMedia--archivalCentered img{
  width: min(420px, 100%);
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
}
.timeline .timelineMedia--archivalCentered .caption{
  margin-top: 8px;
  text-align: center;
}
.timeline .caption { margin-top: 6px; font-size: 12px; color: var(--muted); text-align: left; }

/* Ensure floated media doesn't collapse timeline rows */
.timeline .item::after{ content:""; display:block; clear:both; }

/* Small contextual notes */
.timeline .micro{ margin-top: 6px; font-size: 13px; color: var(--muted); line-height: 1.35; }

/* Cinematic (scroll-triggered) timeline — progressive reveal */
.timeline--cinematic{ position: relative; overflow: hidden; }

/* Museum-grade micro-parallax layer (subtle depth, no clutter) */
.timeline--cinematic .timelineParallax{
  position:absolute;
  inset: -18%;
  z-index: 0;
  pointer-events:none;
  opacity: 0.28;
  transform: translate3d(0, var(--py, 0px), 0) scale(1.05);
  transition: opacity 400ms ease;
  background:
    radial-gradient(800px 420px at 12% 20%, rgba(255,255,255,0.10), transparent 62%),
    radial-gradient(520px 380px at 78% 28%, rgba(255,255,255,0.06), transparent 64%),
    radial-gradient(820px 520px at 42% 92%, rgba(255,255,255,0.05), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0));
  filter: saturate(115%);
}

/* Micro film-grain texture (adds tactile depth without visual noise) */
.timeline--cinematic .timelineParallax::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background-image: url("/assets/grain.png");
  background-repeat: repeat;
  opacity: 0.14;
  mix-blend-mode: overlay;
  pointer-events:none;
}

.timeline--cinematic .timelineParallax::after{
  border-radius: inherit;

  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(closest-side at 50% 50%, rgba(0,0,0,0), rgba(0,0,0,0.55));
  opacity: 0.55;
}

/* Keep timeline content above the parallax layer */
.timeline--cinematic > .row,
.timeline--cinematic > details{ position: relative; z-index: 1; }
.timeline--cinematic .timelineParallax{ border-radius: var(--radius); }
.timeline--cinematic .year{ position: relative; padding-right: 18px; }
.timeline--cinematic .year::after{
  content:"";
  position:absolute;
  top: 0.92em;
  right: -7px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.02);
}
.timeline--cinematic .year::before{
  content:"";
  position:absolute;
  right: -2px;
  top: -22px;
  bottom: -22px;
  width: 1px;
  background: rgba(255,255,255,0.10);
}
.timeline--cinematic .row:first-child .year::before{ top: 0.95em; }
.timeline--cinematic .row:last-child .year::before{ bottom: 0.95em; }

/* Only hide + animate when JS enhancement is active (so no-JS still shows content) */
.timeline--cinematic.is-enhanced .row{
  will-change: transform, opacity, filter;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(3px);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
  transition-delay: var(--d, 0ms);
}
.timeline--cinematic.is-enhanced .row.in-view{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.timeline--cinematic.is-enhanced .row.in-view .year::after{
  background: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.35);
  /* Museum spotlight moment (one-time glow as the milestone enters view) */
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.04),
    0 0 14px rgba(255,255,255,0.10);
  animation: timelineDotGlow 1100ms cubic-bezier(.2,.8,.2,1) both;
}

@keyframes timelineDotGlow{
  0%{
    transform: scale(0.92);
    box-shadow:
      0 0 0 6px rgba(255,255,255,0.02),
      0 0 0 0 rgba(255,255,255,0.00);
  }
  55%{
    transform: scale(1);
    box-shadow:
      0 0 0 6px rgba(255,255,255,0.06),
      0 0 0 10px rgba(255,255,255,0.035),
      0 0 18px rgba(255,255,255,0.12);
  }
  100%{
    transform: scale(1);
    box-shadow:
      0 0 0 6px rgba(255,255,255,0.04),
      0 0 14px rgba(255,255,255,0.10);
  }
}


/* Active-row spotlight wash (museum-grade focus cue) */
@media (min-width: 821px){
  .timeline--cinematic.is-enhanced .row{ position: relative; isolation: isolate; }
  .timeline--cinematic.is-enhanced .row::before{
    content:"";
    position: absolute;
    left: -12px;
    right: -12px;
    top: -10px;
    bottom: -10px;
    border-radius: 16px;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.995);
    transition: opacity 700ms ease, transform 700ms ease;
    background:
      radial-gradient(850px 220px at 18% 50%, rgba(255,255,255,0.065), transparent 62%),
      radial-gradient(720px 260px at 86% 40%, rgba(255,255,255,0.040), transparent 66%),
      linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.00));
  }
  .timeline--cinematic.is-enhanced .row.is-active::before{
    opacity: 1;
    transform: translate3d(0,0,0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 821px){
  .timeline--cinematic.is-enhanced .row::before{
    transition: none;
    transform: none;
  }
}
.timeline--cinematic.is-enhanced .row:focus-within{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce){
  .timeline--cinematic .timelineParallax{ transform: none; opacity: 0.18; transition: none; }
  .timeline--cinematic.is-enhanced .row{
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .timeline--cinematic.is-enhanced .row.in-view .year::after{ animation: none; }
}


/* Foldable sections (keeps page scannable without losing depth) */
.fold{
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}
.fold > summary{
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 750;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.fold > summary::-webkit-details-marker{ display: none; }
.fold > summary::after{
  content: "+";
  color: var(--muted);
  font-weight: 800;
}
.fold[open] > summary::after{ content: "–"; }
.foldInner{ padding: 0 14px 12px; }

/* Blixen source-text fold (The Dreamers) */
.sourceFold{ margin-top: 12px; }
.blixenQuote{
  margin: 0;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
}
.blixenAttrib{
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.95em;
  color: var(--muted);
}

/* Umbrella tri-continental list */
.umbrellaList{
  margin: 8px 0 10px 18px;
  padding: 0;
  color: var(--muted);
}
.umbrellaList li{ margin: 4px 0; }

/* Timeline rows inside folds */
.foldInner .row:last-child{ border-bottom: none; }

/* --- Single plaque image (click-to-open) --- */
.plaqueWrap{
  padding: 10px 0 4px;
  display: flex;
  justify-content: center;
}
.plaqueBtn{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}
.plaqueImg{
  width: min(620px, 100%);
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

/* Dreamers key visual poster */
.posterWrap{
  margin: 14px 0 18px;
  display: flex;
  justify-content: center;
}
.posterBtn{
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.posterImg{
  width: min(420px, 100%);
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}


.footer{
  max-width: var(--max);
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

@media (max-width: 940px){
  .heroInner{ flex-direction: column; }
  .heroCopy{ width: 100%; }
  .heroMedia{ align-self: flex-start; }
  .cards{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .menuBtn{ display:block; }
}


/* Hero portrait */
.heroMedia{
  flex: 0 0 auto;
  width: 220px;
}
.heroMedia img{
  width: 220px;
  height: 220px;
  border-radius: 999px;
  object-fit: cover;
  /* Lift the portrait slightly (keeps the cinematic B&W, avoids crushed shadows) */
  filter: brightness(1.06) contrast(0.97);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Visual hook row (placed directly after “Here, literature is not only …”) */
.hookStills{
  margin: 18px 0 0;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0 0 6px;
}
.hookStills::-webkit-scrollbar{ height: 10px; }
.hookStills::-webkit-scrollbar-thumb{ background: rgba(241,234,223,0.18); border-radius: 999px; }
.hookStills figure{
  margin: 0;
  scroll-snap-align: start;
  flex: 0 0 300px;
  max-width: 300px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
}
.hookStills img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) contrast(1.03);
}
@media (min-width: 900px){
  .hookStills{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    padding: 0;
  }
  .hookStills figure{ max-width: unset; width: 100%; }
  .hookStills img{ height: 240px; }
}

/* Actor carousel */
.carousel{
  position: relative;
  padding: 18px;
}
.carouselControls{
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  margin-bottom: 10px;
}
.carouselBtn{
  appearance: none;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.carouselBtn:hover{ background: var(--panel2); }
/*
  Carousels
  Flex-based track avoids an iOS/Safari grid stretching quirk that can create
  very tall slides with large empty space below images.
*/
.carouselTrack{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 6px;
}
.carouselTrack::-webkit-scrollbar{ height: 10px; }
.carouselTrack::-webkit-scrollbar-thumb{ background: rgba(241,234,223,0.18); border-radius: 999px; }

.slide{
  margin:0;
  scroll-snap-align: start;
  flex: 0 0 360px;
  max-width: 360px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
}
.slide img{
  width:100%;
  height: 320px;
  object-fit: cover;
  display:block;
  filter: saturate(0.82) contrast(1.03);
}

/* Some stills (e.g., credit slides) should be fully visible (no cropping). */
.slide img.contain{
  object-fit: contain;
  background: rgba(0,0,0,.28);
  filter: saturate(0.92) contrast(1.02);
}

/* Per-image framing tweak (keeps grid consistent) */
.slide img[src$="actor-3-seated.jpg"]{
  object-position: 80% 50%;
}


.slide figcaption{
  padding: 10px 12px;
  font-size: 13.5px;
  color: var(--muted);
}



/* Responsive */
@media (max-width: 820px){
  .heroInner{ flex-direction: column; }
  .heroMedia{ width: 170px; }
  .heroMedia img{ width: 170px; height: 170px; }
  .wibSplit{ flex-direction: column; }
  .wibMedia{ flex-basis: auto; height: 240px; }
  .slide{ flex: 0 0 85%; max-width: 85%; }
  .slide img{ height: 280px; }
}

@media (max-width: 520px){
  .nowrap{ white-space: normal; }
  .hero{ padding: 42px 16px 16px; }
  /* Make the hero logo feel premium (not overpowering) on phones */
  .heroLogo{ width: min(320px, 86vw); margin: 0 auto 12px; }
  .heroMedia{ width: 160px; }
  .heroMedia img{ width: 160px; height: 160px; }

  /* Timeline should not force a two-column layout on very small screens */
  .timeline .row{ grid-template-columns: 1fr; gap: 8px; }
  .timeline .year{ padding-top: 0; }

  /* On phones, keep archival stills full-width and stacked */
  .timeline .timelineMedia--archival{ float: none; width: 100%; max-width: none; margin: 10px 0 0; }
  .timeline .timelineMedia--archival .caption{ text-align: left; }

  /* On phones, remove cinematic spine + dot so years read cleanly */
  .timeline--cinematic .year::before,
  .timeline--cinematic .year::after{ display: none; }
}

/* Soundtrack embed (Miss Julie’s Happy Valley) */
.scSoundtrack{ margin-top: 14px; }
.btn.scBtn{
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}
.btn.scBtn:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}
.btn.scBtn:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--goldGlow);
}
.scPlayer{
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

/* Museum-grade soundtrack player (local audio) */
.hvMusePlayer{
  padding: 14px 14px 12px;
}
.hvMuseTop{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.hvWallLabel{
  border-left: 3px solid rgba(255,255,255,0.28);
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  max-width: 560px;
}
.hvWallTitle{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .80;
  line-height: 1.35;
}
.hvWallLine{
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  opacity: .95;
}
.hvWallLine strong{
  font-weight: 700;
}
.hvWallSmall{
  font-size: 13px;
  opacity: .72;
}
.hvMuseKicker{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .75;
}
.hvMuseSub{
  margin-top: 6px;
  font-size: 13px;
  opacity: .78;
}
.hvMuseNow{
  font-size: 13px;
  opacity: .82;
  text-align: right;
  max-width: 40%;
}
.hvMuseAudio{
  width: 100%;
  margin-top: 12px;
}
.hvMuseList{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}
.hvMuseList button{
  width: 100%;
  text-align: left;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  color: inherit;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.hvMuseList button:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.hvMuseList li.isActive button{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.32);
}
@media (min-width: 860px){
  .hvMusePlayer{
    padding: 16px 16px 14px;
  }
  .hvMuseList{
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}


/* Press & reviews blocks */
.press{
  margin-top: 10px;
}
.pressTitle{
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.pressList{
  margin: 0;
  padding-left: 18px;
}
.pressList li{
  margin: 4px 0;
}
.pressList a{
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* --- Clean gallery: hide captions under images (per Michael request) --- */
.slide figcaption,
figcaption.caption,
.caption,
.cardCaption,
.slideCaption{
  display: none !important;
}


/* Video tile overlay (used in Silenced No More carousel) */
.videoSlide .videoLink{
  position: relative;
  display: block;
}
.videoSlide .videoLink::after{
  content: "▶";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.92);
  font-size: 20px;
  pointer-events: none;
}
.videoSlide .videoLink:hover::after{
  background: rgba(0,0,0,.65);
}

/* =========================================================
   Upgrade layer (accessibility + mobile polish)
   Keeps the existing visual identity intact.
   ========================================================= */

/* Skip link */
.skipLink{
  position: absolute;
  left: 14px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(11,12,16,0.95);
  color: var(--text);
  z-index: 100;
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.skipLink:focus,
.skipLink:focus-visible{
  transform: translateY(0);
}

/* Preserve the #top anchor without affecting layout */
.anchorTop{ position: absolute; top: 0; left: 0; }


/* Mobile menu: full-height drawer */
body.menu-open{ overflow: hidden; }
body.menu-open::before{
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(8px);
  z-index: 39;
}

.mobileMenu{
  position: fixed;
  top: 0;
  left: 0;
  width: min(360px, 88vw);
  height: 100dvh;
  padding: 18px;
  padding-top: 74px;
  background: rgba(11,12,16,0.96);
  border-right: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  z-index: 40;
  overflow: auto;
}
.mobileMenu[hidden]{ display: none !important; }

.menuClose{
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
}
.menuClose:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--goldGlow);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; }
  .skipLink{ transition: none; }
}

/* ================================
   Mobile overflow hardening
   (prevents iOS horizontal scroll / clipped lines)
   ================================ */
html, body{ max-width:100%; overflow-x:hidden; }

/* Never allow long strings to push the layout wider */
h1, h2, h3, p, .muted, .micro, .caption, .item{
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Grid/flex children can overflow unless min-width is reset */
.heroInner > *,
.grid2 > *,
.cards > *,
.timeline .row > *{
  min-width: 0;
}

/* Ensure media never creates overflow */
img, video, svg, canvas{
  max-width: 100%;
}


/* Defensive: avoid low-contrast red text */
.red, .accentText{ color: var(--text) !important; }


/* Language switch (EN | 🇩🇰) */
.langSwitch{
  display: inline-flex;
  gap: 10px;
  margin-left: 14px;
  align-items: center;
}
.langLink{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 2px;
  background: transparent;
  border: none;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  transition: opacity .15s ease;
}
.langLink:hover{ opacity: 1; }
.langLink.active{
  opacity: 1;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.langSep{
  opacity: 0.35;
  user-select: none;
}
.flagIcon{
  width: 22px;
  height: 14px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
  display: block;
}
.srOnly{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mobileMenu .langSwitch{
  margin: 8px 0 14px;
}
@media (max-width: 900px){
  /* keep header clean; language switch sits in the mobile menu */
  .topbar .langSwitch{ display: none; }
}


/* 2016 debut photos: two-up grid (stacks on mobile) */
.timeline .timelineMediaGrid{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.timeline .timelineMediaGrid .timelineMedia{
  margin: 0;
  flex: 1 1 260px;
}
.timeline .timelineMediaGrid img{
  width: 100%;
  max-width: 100%;
}
@media (max-width: 640px){
  .timeline .timelineMediaGrid{
    gap: 10px;
  }
}

/* --- Actor stills: cinematic micro-interactions (museum-grade, restrained) --- */
#actor .slide:not(.videoSlide) img{
  cursor: zoom-in;
  will-change: transform;
  transition: transform 420ms ease, filter 420ms ease;
}
#actor .slide:not(.videoSlide):hover img{
  transform: scale(1.02);
  filter: brightness(1.03);
}
@media (prefers-reduced-motion: reduce){
  #actor .slide:not(.videoSlide) img{ transition: none; }
  #actor .slide:not(.videoSlide):hover img{ transform: none; filter: none; }
}

/* --- Lightbox (click-to-view) --- */
.lightboxOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px 14px;
  z-index: 9999;
}
.lightboxOverlay.is-open{ display: flex; }
.lightboxDialog{
  position: relative;
  width: min(1100px, 96vw);
  max-height: 92vh;
  display: grid;
  grid-template-rows: 1fr auto;
}
.lightboxImgWrap{
  display: grid;
  place-items: center;
  overflow: hidden;
}
.lightboxImg{
  max-width: 100%;
  max-height: 78vh;
  height: auto;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
}
.lightboxCaption{
  padding: 10px 4px 0;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height: 1.35;
}
.lightboxClose{
  position: absolute;
  top: -10px;
  right: -6px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,12,.72);
  color: rgba(255,255,255,.9);
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.lightboxNav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,12,.55);
  color: rgba(255,255,255,.9);
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.lightboxPrev{ left: -8px; }
.lightboxNext{ right: -8px; }
@media (max-width: 560px){
  .lightboxPrev{ left: -2px; }
  .lightboxNext{ right: -2px; }
  .lightboxImg{ max-height: 72vh; border-radius: 12px; }
}

/* Restore natural grading for actor-5-table-v3 */
/* Keep the “table” still framed correctly on mobile (avoid cropping heads) */
.slide img[src*="actor-5-table-ORIGINAL-v4.jpg"]{
  filter:none !important;
  object-position: 50% 15%;
}

/* Ensure the hook stills (homepage) show the ORIGINAL table still without global grading */
.hookStills img[src*="actor-5-table-ORIGINAL-v4.jpg"]{
  filter:none !important;
  object-position: 50% 15%;
}


/* --- Per-image overrides (keep gallery consistent) --- */
.slide img[src*="actor-35-table-dialogue.jpg"]{
  filter: none !important;
  object-position: 50% 20%;
}
.slide img[src*="actor-36-argument-wide.jpg"],
.slide img[src*="actor-39-woman-floor-blue.jpg"]{
  filter: saturate(0.70) contrast(1.02) !important;
}

/* Master replacement: ensure actor-2-phone uses natural grade */
.slide img[src*="actor-2-phone.jpg"]{filter:none !important; object-position:50% 35% !important;}

/* --- Premium crediting: supported by (KUM + UM) --- */
.supportedByTop{
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.supportedByInline{
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.supportedByLabel{
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}

.supportedByLogos{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(245, 240, 232, 0.92);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.10) inset;
  /* Never let the logo strip overflow or appear “screaming” on phones */
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.supportedByLogos img{
  height: 34px;
  max-height: 34px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

.supportedByInline .supportedByLogos img{
  height: 26px;
  max-height: 26px;
}

@media (max-width: 520px){
  .supportedByLogos{ gap: 8px; padding: 8px 10px; }
  .supportedByLogos img{ height: 22px; max-height: 22px; }
  .supportedByInline .supportedByLogos img{ height: 22px; max-height: 22px; }
}

/* Silenced No More — impact tiles */
.impactGrid{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.impactItem{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  line-height: 1.25;
}

@media (max-width: 520px){
  .impactGrid{ grid-template-columns: 1fr; }
}

.supportedByBadge{
  display: inline-flex;
  align-items: center;
}

/* Silenced No More poster inset */
.silencedPosterWrap{
  margin-top: 14px;
}

.silencedPosterBtn{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
  display: block;
}

.silencedPosterBtn img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset;
}

@media (max-width: 520px){
  .silencedPosterBtn img{
    border-radius: 14px;
  }
}


/* --- Dreamers cinematic poster mode (ULTRA-LUX) --- */
.posterBtn.cinePosterBtn{
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
}
.posterBtn.cinePosterBtn::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(1200px 600px at 30% 20%, rgba(255,255,255,.10), rgba(255,255,255,0) 55%),
    radial-gradient(900px 500px at 70% 80%, rgba(0,0,0,.18), rgba(0,0,0,0) 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0px, rgba(255,255,255,.04) 1px, rgba(255,255,255,0) 3px, rgba(255,255,255,0) 7px);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events:none;
}
.posterBtn.cinePosterBtn:hover::after,
.posterBtn.cinePosterBtn:focus-visible::after{
  opacity: .22;
}
.posterImg.cinePoster{
  display:block;
  width:100%;
  height:auto;
  transform: translateY(14px) scale(.985);
  opacity: 0;
  filter: saturate(1.02) contrast(1.02);
  transition: opacity .85s ease, transform .85s ease, filter .85s ease;
  will-change: transform, opacity;
}
.posterImg.cinePoster.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}

/* Fullscreen lightbox */
body.cineLightboxOpen{
  overflow:hidden;
}
#cineLightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 22px;
  z-index: 9999;
}
#cineLightbox.is-open{ display:flex; }
#cineLightbox .cineInner{
  position:relative;
  max-width: min(980px, 92vw);
  max-height: 90vh;
}
#cineLightbox img{
  width:100%;
  height:auto;
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
}
#cineLightbox .cineMeta{
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: .9px;
  text-transform: uppercase;
  opacity: .75;
}
#cineLightbox .cineClose{
  position:absolute;
  top:-14px;
  right:-14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.92);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 20px;
}
#cineLightbox .cineClose:hover{ background: rgba(0,0,0,.70); }

