: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.55;
}

/* 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 .navMenuItem:hover,
.navMenu .navMenuItem:focus-within{
  background: linear-gradient(90deg, rgba(157,35,35,.16) 0%, rgba(157,35,35,.08) 42%, rgba(255,255,255,0) 100%);
}
.navMenu .navMenuItem{
  display:flex;
  flex-direction:column;
  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 .navMenuItem::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:0;
  height:1px;
  background: rgba(255,255,255,.06);
}
.navMenu .ddYear{
  color: rgba(255,255,255,.72);
  font-weight:650;
  margin-right:.42rem;
}
.navMenu .ddTitleLink{
  --dd-link-rest:#a62a2a;
  --dd-link-hover:#e1544a;
  color:var(--dd-link-rest);
  display:inline-flex;
  align-items:center;
  gap:.38rem;
  text-decoration:none;
  position:relative;
  padding-bottom:.08rem;
  font-weight:780;
  letter-spacing:.002em;
  background-image:linear-gradient(currentColor,currentColor);
  background-repeat:no-repeat;
  background-position:0 100%;
  background-size:0% 1.5px;
  transition:color .24s ease, background-size .3s ease, transform .22s ease, text-shadow .22s ease, opacity .22s ease;
  will-change:transform;
  cursor:pointer;
}
.navMenu .ddTitleLink::after{
  content:"↗";
  font-size:.76em;
  line-height:1;
  opacity:0;
  transform:translateX(-5px);
  transition:opacity .22s ease, transform .24s ease;
}
.navMenu .navMenuItem:hover .ddTitleLink,
.navMenu .navMenuItem:focus-within .ddTitleLink,
.navMenu .ddTitleLink:hover,
.navMenu .ddTitleLink:focus-visible{
  color:var(--dd-link-hover);
  background-size:100% 1.5px;
  transform:translateX(3px);
  text-shadow:0 0 .01px currentColor, 0 0 14px rgba(225,84,74,.12);
}
.navMenu .navMenuItem:hover .ddTitleLink::after,
.navMenu .navMenuItem:focus-within .ddTitleLink::after,
.navMenu .ddTitleLink:hover::after,
.navMenu .ddTitleLink:focus-visible::after{
  opacity:.95;
  transform:translateX(0);
}
.navMenu .ddTitleLink:focus-visible{
  outline:none;
}
@media (hover:none){
  .navMenu .navMenuItem{
    background:transparent;
  }
  .navMenu .ddTitleLink{
    background-size:100% 1.5px;
    text-shadow:none;
  }
  .navMenu .ddTitleLink::after{
    opacity:.72;
    transform:translateX(0);
  }
}
@media (prefers-reduced-motion:reduce){
  .navMenu .ddTitleLink,
  .navMenu .ddTitleLink::after,
  .navMenu .navMenuItem{
    transition:none;
  }
}
.navMenu .ddTitle{
  display:block;
  font-weight: 750;
  color: var(--text);
  width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.navMenu .ddMetaLink{
  display:block;
  margin-top:4px;
  font-size:.86em;
  color:rgba(255,255,255,.68);
  font-weight:600;
  width:100%;
  white-space:normal;
  overflow-wrap:anywhere;
  text-decoration:none;
  transition:color .22s ease, transform .22s ease, text-decoration-color .22s ease, opacity .22s ease;
}
.navMenu .ddMetaLink:hover,
.navMenu .ddMetaLink:focus-visible,
.navMenu .navMenuItem:hover .ddMetaLink,
.navMenu .navMenuItem:focus-within .ddMetaLink{
  color:rgba(255,255,255,.96);
  text-decoration:underline;
  text-underline-offset:.16em;
}
@media (hover:none){
  .navMenu .ddMetaLink{
    color:rgba(255,255,255,.88);
    text-decoration:underline;
    text-underline-offset:.16em;
  }
}
.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:58px 18px 24px; }
.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;
}

.heroBridge{
  margin:0 0 14px;
  font-size: 16.5px;
  color: rgba(255,255,255,0.86);
  max-width: 62ch;
}
.heroBridge a.actLink, .lead a.actLink{
  color: var(--accentHover);
  font-weight: 800;
  text-decoration-color: rgba(109,18,32,0.95);
}
.heroBridge a.actLink:hover, .lead a.actLink:hover{
  color: var(--accentHover);
  text-decoration-color: rgba(109,18,32,1);
}

.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: 54px 18px;
}
.sectionHead{
  max-width: var(--max);
  margin:0 auto 18px;
}
.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: 18px;
  background: var(--panel);
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
}
.card h3{ margin:0 0 10px; letter-spacing:-0.2px; }
.card p{ margin:0 0 12px; }
.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;
}


.timeline .gapYearFeature{
  display:grid;
  grid-template-columns: minmax(0,1fr) 172px;
  align-items:start;
  gap: 16px;
}
.timeline .gapYearText{ min-width:0; }
.timeline .gapYearPortrait{
  margin: 0;
  width: 172px;
  justify-self:end;
}
.timeline .gapYearPortrait img{
  display:block;
  width:100%;
  height:auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}

/* 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: 13px 16px;
  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 16px 16px; }

/* 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; }
  .timeline .gapYearFeature{ grid-template-columns: 1fr; gap: 10px; }
  .timeline .gapYearPortrait{ width: min(220px, 58vw); justify-self: start; }

  /* 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; }
  .projectTile--link,
  .projectTileCtaArrow{ transition:none !important; }
  .projectTile--link:hover,
  .projectTile--link:focus-visible{ transform: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); }



.sectionHead p{
  max-width: 74ch;
}

#support .grid2{
  align-items: start;
}

#support .card{
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.035)),
    var(--panel);
}

#support .card p:last-child{
  margin-bottom: 0;
}



/* Patron Circle — refined hierarchy */
#support .supportGrid{ align-items: start; }
#support .supportCard{ padding: 20px; }
#support .supportCard h3{ margin-bottom: 10px; }
#support .supportCard h4{
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: 0.01em;
}
#support .supportIntro{
  font-size: 16.5px;
  line-height: 1.62;
  color: rgba(255,255,255,0.9);
}
#support .supportDivider{
  height: 1px;
  margin: 18px 0 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}
#support .supportList{ margin: 10px 0 16px 18px; }
#support .supportList li{ margin: 8px 0; }
#support .supportListCompact{ margin-bottom: 14px; }
#support .supportLegal{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.84);
}
#support .supportActions{ margin: 16px 0 14px; }
#support .supportTransfer{ margin-top: 16px; }
#support .supportTransfer > summary{
  font-weight: 700;
  letter-spacing: 0.01em;
}
#support .bankMeta{ margin-top: 8px; }
#support .bankMeta strong{ color: var(--text); }
#support .supportContact{ margin-top: 14px; }
@media (max-width: 820px){
  #support .supportCard{ padding: 18px; }
}


#support .supportSubtle{
  margin: 8px 0 0;
  opacity: .78;
}
#support .supportSecondary p{
  max-width: 52ch;
}
#support .supportPrimary p,
#support .supportSecondary p{
  line-height: 1.68;
}
#support .supportTransfer .foldInner p:last-child{
  margin-bottom: 0;
}


/* Premium ACT link treatment: restrained hover deepen + micro underline fade */
a.actLink{
  position:relative;
  display:inline-block;
  color:#b1121b;
  font-weight:800;
  text-decoration:none;
  transition:color .28s ease;
}
a.actLink:hover{
  color:#8f0f16;
  text-decoration:none;
}
a.actLink::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:100%;
  height:1px;
  background:currentColor;
  opacity:0;
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .35s cubic-bezier(0.4,0,0.2,1), opacity .22s ease;
}
a.actLink:hover::after,
a.actLink:focus-visible::after{
  opacity:1;
  transform:scaleX(1);
}
.heroBridge a.actLink, .lead a.actLink{
  color:#b1121b;
  font-weight:800;
  text-decoration:none;
}
.heroBridge a.actLink:hover, .lead a.actLink:hover{
  color:#8f0f16;
  text-decoration:none;
}


.leadSecondary{margin-top:14px;color:rgba(255,245,232,.8);font-size:clamp(1rem,1.35vw,1.08rem);max-width:74ch}
.leadSecondary .actLink{font-weight:650}


/* readability improvement */
.content-wrap { max-width: 720px; margin: 0 auto; }


/* --- Final polish (subtle rhythm + spacing) --- */

/* 1. Section rhythm */
section {
  margin-bottom: 56px;
}

/* 2. Headline breathing */
h2 {
  margin-bottom: 14px;
}

/* 3. Quote separation (safe generic selector fallback) */
.quote-block,
blockquote {
  margin-top: 28px;
}


/* Mobile fix: ensure Dreamers poster renders on phones */
@media (max-width: 768px){
  .posterWrap{
    display: flex !important;
    justify-content: center;
  }
  .posterBtn.cinePosterBtn{
    display: inline-block !important;
    width: 100%;
    max-width: 420px;
  }
  .posterImg.cinePoster{
    display: block !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* Board subsection */
.board-subsection {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
  opacity: 0.8;
}

.board-subsection h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 500;
}

.board-subsection a {
  color: inherit;
  text-decoration: none;
}

.board-subsection a:hover {
  text-decoration: underline;
}

.board-subsection .board-role {
  display: block;
  margin: 2px 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.68;
}





/* Final cleanup: keep header exactly text-only, keep hero clean, preserve photo */
.headerSeal,
.coatArms,
.coatArms--hero,
.heroLogo{
  display: none !important;
}

/* Desktop: preserve portrait on right */
.heroInner{
  align-items: flex-start;
}
.heroMedia{
  flex: 0 0 auto;
  align-self: flex-start;
}

/* Mobile: show portrait early and clearly */
@media (max-width: 940px){
  .heroInner{
    display: flex;
    flex-direction: column;
  }
  .heroMedia{
    order: -1 !important;
    align-self: flex-start !important;
    margin: 0 0 14px 0 !important;
    width: 110px !important;
  }
  .heroMedia img{
    display: block !important;
    width: 110px !important;
    height: 110px !important;
    border-radius: 999px !important;
    object-fit: cover !important;
  }
}

/* Works dropdown: remove hover gap and keep menu open when moving into it */
.navDropdown{
  position: relative;
  padding-bottom: 12px;
}
.navDropdown::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 12px;
}
.navMenu{
  top: calc(100% + 2px) !important;
  margin-top: 0 !important;
}
.navDropdown:hover .navMenu,
.navDropdown:focus-within .navMenu,
.navMenu:hover{
  display: block !important;
}


/* Header coat of arms fitted into existing round brand mark */
.brandLogo{
  object-fit: contain !important;
  padding: 2px;
  background: transparent !important;
}

/* Works dropdown: remove hover gap so menu stays open while moving into lower items */
.navDropdown{
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.navMenu{
  top: 100% !important;
  margin-top: 0 !important;
}
.navDropdown::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 14px;
}
.navDropdown:hover .navMenu,
.navDropdown:focus-within .navMenu,
.navMenu:hover{
  display: block !important;
}

/* Robust Works dropdown open state */
.navDropdown.is-open .navMenu{
  display:block !important;
}
.navDropdown{
  position:relative;
  padding-bottom:16px;
  margin-bottom:-16px;
}
.navDropdown::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-16px;
  height:16px;
}
.navMenu{
  top:100% !important;
  margin-top:0 !important;
}


/* =========================================================
   2026 premium structure pass
   ========================================================= */
:root{
  --container: 1180px;
  --space-1: 10px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 34px;
  --space-5: 52px;
}
body.page{ background: radial-gradient(circle at top, rgba(216,180,93,.06), transparent 24%), var(--bg); }
body{ line-height:1.6; }
.topbar{ padding: 14px clamp(16px, 2vw, 28px); }
.brandText{ font-size: 15px; }
.nav{ align-items:center; gap: 16px; }
.nav a, .navDropButton{
  text-decoration:none; color:var(--muted); font-weight:650; font-size:14px; letter-spacing:.01em;
}
.nav a.current, .nav a:hover, .navDropButton.current, .navDropButton:hover, .navDropdown.is-open .navDropButton{
  color: var(--text);
}
.navDropButton{
  appearance:none; border:0; background:transparent; padding:0; cursor:pointer; display:flex; align-items:center; gap:6px;
}
.navDropButton:focus-visible{ outline:2px solid var(--accent); outline-offset:4px; border-radius:4px; }
.navMenu{ top: calc(100% + 12px); }
.navDropdown.is-open .navMenu{ display:block; }
.pageIntro{
  padding: 38px 18px 8px;
}
.pageIntroInner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}
.bread{ font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.bread a{ color: var(--muted); text-decoration:none; }
.bread a:hover{ color:var(--text); }
.bread .current{ color: var(--text); }
.pageIntro h1{ margin:0 0 8px; font-size: clamp(32px, 5vw, 52px); line-height:1.03; }
.pageIntro .lead{ max-width: 72ch; margin: 0; color: rgba(255,255,255,.82); }
.pageIntroActions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:18px; }
.section--directory .sectionHead .eyebrow{ margin:0 0 8px; color:rgba(216,180,93,.88); letter-spacing:.08em; text-transform:uppercase; font-size:12px; font-weight:750; }
.directoryGrid{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.directoryGrid--compact{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.hubCard{ padding: 22px; }
.hubCard h3{ margin-bottom:8px; }
.hubCard .btn{ margin-top: 12px; }
.hubCard--link{ text-decoration:none; color:inherit; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.hubCard--link:hover{ transform: translateY(-2px); border-color: rgba(216,180,93,.34); background: rgba(255,255,255,.04); }
.hubMeta{ font-size:12px; letter-spacing:.08em; text-transform:uppercase; color: rgba(216,180,93,.82); font-weight:700; margin-bottom:10px; }
.sectionTools{ display:flex; justify-content:flex-end; margin-top: 14px; }
.btn.ghost{ background: transparent; border:1px solid rgba(255,255,255,.14); }
.btn.ghost:hover{ border-color: rgba(216,180,93,.34); }
.cards .project{ min-height: 100%; }
.projectIndexSection{ padding-top: 12px; }
#projects .cards, #writing .grid2, #support .supportGrid, #partners .grid2{ align-items: stretch; }
.section{ width:min(100%, var(--container)); margin-inline:auto; }
.sectionHead p, .muted{ max-width: 72ch; }
.hero{ padding-top: 64px; }
.heroInner{ align-items: center; gap: clamp(22px, 4vw, 52px); }
.heroCopy h1{ max-width: 12ch; }
.heroBridge, .heroQuote{ max-width: 66ch; }
.heroMedia picture{ display:block; }
.heroMedia img{ display:block; border-radius: 999px; box-shadow: var(--shadow); }
.card{ border-radius: 20px; box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.footer{ padding-top: 22px; }
.mobileMenu a.current{ color: var(--text); }
.mobileMenu .langSwitch{ margin-bottom: 20px; }

@media (max-width: 960px){
  .directoryGrid, .directoryGrid--compact{ grid-template-columns: 1fr; }
  .pageIntro{ padding-top: 28px; }
  .pageIntroInner{ padding: 20px; }
}


/* Partners page */
.partnersShowcase{ display:grid; gap:34px; }
.partnerGroup{ display:grid; gap:18px; }
.partnerGroupHead h3{ margin:0 0 6px; }
.logoStage{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
  gap:18px;
}
.partnerCard{
  position:relative;
  min-height:168px;
  border:1px solid rgba(255,255,255,0.09);
  border-radius:22px;
  padding:18px 16px 16px;
  background:
    radial-gradient(circle at top, rgba(181,140,64,0.10), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: 0 16px 44px rgba(0,0,0,0.22);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:14px;
  overflow:hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.partnerCard:hover,
.partnerCard:focus-within{
  transform:translateY(-4px);
  border-color: rgba(181,140,64,0.34);
  box-shadow: 0 22px 58px rgba(0,0,0,0.28);
}
.partnerLogoWrap{
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.partnerLogoWrap img{
  max-width:92%;
  max-height:52px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
}
.partnerMeta{ display:grid; gap:5px; }
.partnerName{
  margin:0;
  font-size:0.92rem;
  line-height:1.35;
  font-weight:650;
  letter-spacing:0.01em;
}
.partnerRole{
  margin:0;
  font-size:0.75rem;
  line-height:1.45;
  color: var(--muted);
  text-transform:uppercase;
  letter-spacing:0.11em;
}
.institutionStage{
  padding:22px;
  border-radius:22px;
}
.institutionList{
  list-style:none;
  margin:0;
  padding:0;
  column-count:2;
  column-gap:26px;
}
.institutionList li{
  break-inside:avoid;
  padding:0 0 12px;
  color:var(--text);
}
.institutionList a{
  color:inherit;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.18);
  transition:opacity .2s ease, border-color .2s ease, color .2s ease;
}
.institutionList a:hover,
.institutionList a:focus-visible{
  opacity:0.9;
  border-bottom-color:rgba(181,140,64,0.58);
  color:#f2eee6;
}
.frameworkLine{
  border-top:1px solid rgba(255,255,255,0.09);
  padding-top:18px;
  display:grid;
  gap:8px;
}
.frameworkLabel{
  margin:0;
  text-transform:uppercase;
  letter-spacing:0.16em;
  font-size:0.74rem;
  color:var(--muted);
}
.frameworkCities{
  margin:0;
  font-size:1.02rem;
  letter-spacing:0.03em;
}
.reveal-up{
  opacity:0;
  transform:translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-up.in-view{
  opacity:1;
  transform:translateY(0);
}
@media (max-width: 760px){
  .logoStage{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
  .partnerCard{ min-height:164px; padding:18px 14px 16px; border-radius:18px; }
  .partnerLogoWrap{ height:64px; }
  .partnerLogoWrap img{ max-height:58px; }
  .partnerName{ font-size:0.88rem; }
  .partnerRole{ font-size:0.72rem; letter-spacing:0.09em; }
  .institutionList{ column-count:1; }
  .frameworkCities{ font-size:0.94rem; line-height:1.6; }
}

/* Cross-site dossier links */
.hubCardCue{margin-top:10px;font-size:13px;letter-spacing:.12em;text-transform:uppercase;color:#7d1f1f;}
.worksDossierLink{margin-top:10px;}
.worksDossierLink a{display:inline-flex;align-items:center;gap:6px;font-size:13px;letter-spacing:.12em;text-transform:uppercase;color:#7d1f1f;text-decoration:none;}
.worksDossierLink a:hover{color:#5e1414;text-decoration:underline;}







/* Timeline reveal + 2002 editorial system */
.fold--timeline{
  margin-top: 18px;
  border-color: rgba(216,180,93,0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.032), rgba(255,255,255,0.018)),
    radial-gradient(circle at top left, rgba(122,47,42,0.08), transparent 34%);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.fold--timeline > summary{
  padding: 14px 18px;
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.fold--timeline > summary::after{
  transition: transform 220ms ease, color 220ms ease;
}
.fold--timeline[open] > summary{
  border-bottom: 1px solid rgba(216,180,93,0.12);
}
.fold--timeline[open] > summary::after{
  transform: rotate(180deg);
  color: rgba(216,180,93,0.82);
}
.fold--timeline.is-targeted{
  border-color: rgba(216,180,93,0.34);
  box-shadow: 0 16px 36px rgba(0,0,0,0.10), 0 0 0 1px rgba(216,180,93,0.12);
}
.fold--timeline .foldInner{
  padding: 8px 18px 18px;
}
.timelineRevealIntro{
  margin: 6px 0 4px;
  color: rgba(216,180,93,0.72);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.row--falkland .item{
  display: grid;
  gap: 14px;
}
.row--falkland .falklandLead{
  max-width: 68ch;
  color: rgba(255,255,255,0.90);
}
.row--falkland .falklandLead strong{
  display: inline-block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1.04rem;
}
.row--falkland .falklandWork{
  color: rgba(255,255,255,0.86);
}
.row--falkland .falklandBridge{
  color: rgba(216,180,93,0.72);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.row--falkland .falklandChapter{
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.012)),
    radial-gradient(circle at top left, rgba(216,180,93,0.08), transparent 32%),
    linear-gradient(180deg, rgba(23,19,17,0.92), rgba(15,13,12,0.94));
  border: 1px solid rgba(216,180,93,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}
.row--falkland .falklandTop{
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 16px;
  align-items: start;
}
.row--falkland .falklandNarrative,
.row--falkland .falklandMeta{
  min-width: 0;
}
.row--falkland .falklandNarrative{
  max-width: 74ch;
}
.row--falkland .falklandIntro,
.row--falkland .falklandSummary,
.row--falkland .falklandMore p{
  max-width: 66ch;
  line-height: 1.72;
}
.row--falkland .falklandIntro{
  margin: 0;
  color: rgba(255,255,255,0.94);
  font-size: 1.02rem;
}
.row--falkland .falklandSummary{
  margin: 12px 0 0;
  color: var(--muted);
}
.row--falkland .falklandMentor{
  display: grid;
  grid-template-columns: 104px minmax(0,1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  max-width: 640px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(216,180,93,0.10);
}
.row--falkland .timelineMedia--mentor{
  margin: 0;
  width: 104px;
  max-width: 104px;
}
.row--falkland .timelineMedia--mentor img{
  display: block;
  width: 104px;
  max-width: 104px;
  aspect-ratio: .82 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.row--falkland .falklandLabel{
  margin: 0 0 4px;
  color: rgba(216,180,93,0.76);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.row--falkland .falklandMeta h4{
  margin: 0;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1.05;
}
.row--falkland .falklandRole{
  margin: 6px 0 0;
  color: rgba(216,180,93,0.84);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.row--falkland .falklandLife{
  margin: 8px 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  line-height: 1.45;
}
.row--falkland .falklandMore{
  margin-top: 12px;
}
.row--falkland .falklandMore summary{
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: #7d1f1f;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.row--falkland .falklandMore summary::-webkit-details-marker{ display: none; }
.row--falkland .falklandMore summary:hover{ color: #621717; }
.row--falkland .falklandMedia--paired{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  max-width: 980px;
  align-items: start;
}
.row--falkland .timelineMedia--antique{
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.row--falkland .falklandMedia--paired .timelineMedia img{
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.row--falkland .falklandMedia--paired .caption{
  margin-top: 8px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.45;
}
@media (max-width: 920px){
  .row--falkland .falklandMentor,
  .row--falkland .falklandMedia--paired{
    max-width: 100%;
  }
}
@media (max-width: 760px){
  .fold--timeline > summary{
    padding: 13px 16px;
  }
  .fold--timeline .foldInner{
    padding: 8px 16px 16px;
  }
  .row--falkland .falklandLead strong{
    display:block;
  }
  .row--falkland .falklandChapter{
    padding: 16px;
    gap: 14px;
  }
  .row--falkland .falklandMentor{
    grid-template-columns: 92px minmax(0,1fr);
    gap: 12px;
    padding: 12px;
    max-width: 100%;
  }
  .row--falkland .timelineMedia--mentor,
  .row--falkland .timelineMedia--mentor img{
    width: 92px;
    max-width: 92px;
  }
  .row--falkland .falklandMeta h4{
    font-size: 1.3rem;
  }
  .row--falkland .falklandIntro,
  .row--falkland .falklandSummary,
  .row--falkland .falklandMore p{
    max-width: 100%;
  }
}
@media (max-width: 560px){
  .row--falkland .falklandChapter{
    padding: 14px;
  }
  .row--falkland .falklandMedia--paired{
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .row--falkland .falklandMedia--paired .timelineMedia img{
    aspect-ratio: 1.28 / 1;
  }
}


/* Falkland timeline layout stabilization v36 */
.row--falkland .item{
  display:grid;
  gap:14px;
}
.row--falkland .falklandLead,
.row--falkland .falklandBridge,
.row--falkland .falklandChapter{
  width:100%;
}
.row--falkland .falklandChapter > *{
  min-width:0;
}
.row--falkland .falklandMedia--paired .timelineMedia img{
  max-width:100%;
}
@media (min-width: 761px){
  .row--falkland .falklandChapter{
    max-width: 980px;
  }
}

/* 10/10 sovereign homepage upgrade */
.hero{
  padding-bottom:96px;
}
.hero:after{
  content:"";
  position:absolute;
  left:5%;
  right:5%;
  bottom:26px;
  height:1px;
  background:linear-gradient(90deg, rgba(0,0,0,0), rgba(132,48,48,.55), rgba(0,0,0,0));
}
.quickLinks--edited{
  gap:10px;
}
.quickLinks--edited .mini{
  background:rgba(255,255,255,.04);
}
.sectionNote{
  max-width:760px;
  margin:8px 0 22px;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.75;
}
.sovereignSection{
  padding-top:26px;
}
.sovereignFrame{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);
  gap:28px;
  align-items:stretch;
  padding:28px;
  border-radius:28px;
  overflow:hidden;
  background:
    radial-gradient(circle at top left, rgba(150,60,52,.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(197,161,114,.12), transparent 36%),
    linear-gradient(180deg, #171312, #0f0d0d);
  border:1px solid rgba(174,128,96,.18);
  box-shadow:0 24px 60px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.04);
}
.sovereignMedia{
  min-height:460px;
  border-radius:20px;
  overflow:hidden;
  position:relative;
  box-shadow:0 18px 50px rgba(0,0,0,.24);
}
.sovereignMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.sovereignMedia:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.18));
}
.sovereignCopy{
  align-self:center;
  padding-right:10px;
}
.sovereignEyebrow{
  margin:0 0 8px;
  color:#b8796d;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:11px;
}
.sovereignSection h2{
  margin:0 0 14px;
  font-size:clamp(2rem,4.2vw,3.4rem);
  line-height:1.02;
  letter-spacing:-.03em;
  text-wrap:balance;
}
.sovereignLead{
  margin:0 0 14px;
  font-size:1.12rem;
  line-height:1.85;
  color:rgba(255,255,255,.92);
}
.heroActions--sovereign{
  display:flex;
  gap:12px;
  margin-top:22px;
  flex-wrap:wrap;
}
.project.project--sovereign{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
  gap:26px;
  align-items:start;
  background:
    radial-gradient(circle at top left, rgba(126,47,42,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-color:rgba(176,128,96,.22);
  box-shadow:0 18px 42px rgba(0,0,0,.08);
}
.project.project--sovereign .posterWrap{
  order:2;
  align-self:start;
}
.project.project--sovereign .posterImg{
  box-shadow:0 20px 50px rgba(0,0,0,.18);
}
#actor .carousel{
  max-width:1120px;
  margin-inline:auto;
  padding-top:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}
#actor .slide img{
  border-radius:18px;
}
#institutional .institutionalCard .list{
  columns:2;
  column-gap:34px;
}
#partners .grid2 .card,
#institutional .card,
#writing .grid2 .card,
#support .supportGrid .card{
  box-shadow:0 14px 34px rgba(0,0,0,.05);
}
#works .timeline{
  background:
    radial-gradient(circle at top left, rgba(126,47,42,.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}
@media (max-width: 980px){
  .sovereignFrame,
  .project.project--sovereign{
    grid-template-columns:1fr;
  }
  #institutional .institutionalCard .list{
    columns:1;
  }
}
@media (max-width: 720px){
  .hero{padding-bottom:72px}
  .sovereignFrame{padding:18px; gap:18px}
  .sovereignMedia{min-height:320px}
  .sectionNote{margin-top:6px; margin-bottom:18px}
}


/* Premium flagship redesign */
.eyebrow{
  margin:0 0 8px;
  color:rgba(216,180,93,.88);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  font-weight:750;
}
.section--flagship{
  position:relative;
  isolation:isolate;
}
.section--flagship::before{
  content:"";
  position:absolute;
  inset:18px 0 0;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(56% 42% at 14% 10%, rgba(197,155,92,.15), transparent 65%),
    radial-gradient(46% 34% at 86% 16%, rgba(39,65,80,.18), transparent 66%),
    radial-gradient(44% 28% at 50% 82%, rgba(109,18,32,.16), transparent 70%);
  opacity:.92;
}
.section--flagship > *{
  position:relative;
  z-index:1;
}
.sectionHead--flagship{
  margin-bottom:22px;
}
.sectionHead--flagship h2{
  margin:0 0 10px;
  font-size:clamp(2rem,4vw,3.35rem);
  line-height:1.02;
  letter-spacing:-.035em;
  max-width:14ch;
  text-wrap:balance;
}
.sectionHead--flagship p{
  max-width:62ch;
}
.flagshipShell{
  max-width:var(--max);
  margin:0 auto;
}
.flagshipLeadCard{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.14fr) minmax(320px,.86fr);
  gap:28px;
  padding:30px;
  border-radius:30px;
  overflow:hidden;
  background:
    linear-gradient(145deg, rgba(255,249,241,.05), rgba(255,255,255,.018)),
    radial-gradient(circle at top left, rgba(200,156,82,.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(49,82,92,.18), transparent 38%),
    linear-gradient(180deg, #121010, #0b0c10);
  border:1px solid rgba(216,180,93,.16);
  box-shadow:0 26px 80px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.05);
}
.flagshipLeadCard::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background-image:url("/assets/grain.png");
  opacity:.06;
  mix-blend-mode:soft-light;
  pointer-events:none;
}
.flagshipLeadCopy,
.flagshipLeadMedia{
  position:relative;
  z-index:1;
}
.flagshipFrame{
  margin:0 0 10px;
  color:rgba(216,180,93,.92);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.flagshipLeadCopy h3{
  margin:0 0 14px;
  font-size:clamp(1.9rem,3vw,2.85rem);
  line-height:1.03;
  letter-spacing:-.03em;
  text-wrap:balance;
}
.flagshipDeck{
  margin:0 0 14px;
  font-size:1.08rem;
  line-height:1.82;
  color:rgba(255,255,255,.93);
}
.flagshipSubtle{
  margin:0;
  color:rgba(241,234,223,.76);
  line-height:1.78;
}
.flagshipMetaRow{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.flagshipMetaPill{
  display:inline-flex;
  align-items:center;
  padding:8px 11px;
  border-radius:999px;
  border:1px solid rgba(241,234,223,.12);
  background:rgba(255,255,255,.045);
  color:rgba(255,255,255,.88);
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
}
.flagshipLine{
  margin:14px 0 0;
  color:rgba(241,234,223,.8);
  line-height:1.65;
}
.flagshipLine span{
  color:rgba(216,180,93,.92);
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:11px;
  font-weight:750;
  margin-right:8px;
}
.flagshipActions{
  margin-top:24px;
}
.flagshipActions .btn.primary{
  background:linear-gradient(180deg, #761527, #5d0f1d);
  border-color:rgba(152,50,70,.72);
  box-shadow:0 14px 32px rgba(0,0,0,.2);
}
.flagshipActions .btn.primary:hover{
  background:linear-gradient(180deg, #87182c, #681121);
}
.flagshipActions .btn.ghost{
  background:rgba(255,255,255,.02);
}
.flagshipLeadMedia{
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-self:stretch;
}
.flagshipPosterWrap{
  margin:0;
}
.flagshipLeadMedia .posterBtn,
.flagshipLeadMedia .posterImg{
  width:100%;
}
.flagshipLeadMedia .posterImg{
  max-width:none;
  border-radius:22px;
  box-shadow:0 24px 56px rgba(0,0,0,.4);
}
.flagshipLeadMedia figcaption{
  margin:0;
  color:rgba(241,234,223,.66);
  font-size:12.5px;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.flagshipOrbit{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
.flagshipOrbitCard{
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(241,234,223,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.022)),
    rgba(255,255,255,.02);
  box-shadow:0 14px 32px rgba(0,0,0,.16);
}
.flagshipOrbitLabel{
  margin:0 0 8px;
  color:rgba(216,180,93,.86);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:11px;
  font-weight:750;
}
.flagshipOrbitCard h3{
  margin:0 0 10px;
  font-size:1.25rem;
  line-height:1.2;
}
.flagshipOrbitCard p{
  margin:0;
  line-height:1.75;
  color:rgba(241,234,223,.78);
}
.flagshipPath{
  list-style:none;
  margin:8px 0 0;
  padding:0;
}
.flagshipPath li{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
  border-top:1px solid rgba(241,234,223,.10);
}
.flagshipPath li:first-child{
  padding-top:0;
  border-top:0;
}
.flagshipPath strong{
  color:rgba(255,255,255,.94);
  font-size:1rem;
}
.flagshipPath span{
  color:rgba(241,234,223,.68);
  text-align:right;
}
.flagshipSecondaryHead{
  margin:34px 0 16px;
}
.flagshipSecondaryHead h3{
  margin:0 0 6px;
  font-size:clamp(1.45rem,2.4vw,2rem);
  line-height:1.08;
}
.flagshipSecondaryHead p{
  margin:0;
  max-width:62ch;
}
.flagshipSecondaryGrid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
  gap:18px;
  align-items:stretch;
}
.projectTile{
  padding:24px;
  border-radius:24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.022)),
    rgba(255,255,255,.02);
  border:1px solid rgba(241,234,223,.11);
  box-shadow:0 16px 36px rgba(0,0,0,.16);
}
.projectTile h4{
  margin:0 0 10px;
  font-size:1.4rem;
  line-height:1.1;
  letter-spacing:-.02em;
  text-wrap:balance;
}
.projectTile p{
  margin:0 0 12px;
  line-height:1.72;
}
.projectTile .actions{
  margin-top:18px;
}
.projectTile--link{
  display:block;
  color:inherit;
  text-decoration:none;
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.projectTile--link:hover,
.projectTile--link:focus-visible{
  transform:translateY(-5px) scale(1.008);
  box-shadow:0 22px 46px rgba(0,0,0,.24);
}
.projectTile--link:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:4px;
}
.projectTileCta{
  margin-top:18px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(216,180,93,.92);
  font-weight:750;
}
.projectTileCtaArrow{
  display:inline-block;
  transition:transform .18s ease;
}
.projectTile--link:hover .projectTileCtaArrow,
.projectTile--link:focus-visible .projectTileCtaArrow{
  transform:translateX(4px);
}
.projectTile .btn.small{
  background:rgba(255,255,255,.04);
}
.projectTile .btn.small:hover{
  background:rgba(255,255,255,.07);
}
.projectTileAside{
  color:rgba(241,234,223,.70);
}
.projectTile--silenced{
  background:
    radial-gradient(circle at top right, rgba(205,113,44,.22), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(73,28,12,.48), rgba(22,17,15,.9));
  border-color:rgba(206,126,70,.24);
}
.projectTile--silenced.projectTile--link:hover,
.projectTile--silenced.projectTile--link:focus-visible{
  border-color:rgba(206,126,70,.38);
  background:
    radial-gradient(circle at top right, rgba(215,128,56,.28), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    linear-gradient(180deg, rgba(79,32,14,.56), rgba(24,18,15,.94));
}
.projectTile--hedda{
  background:
    radial-gradient(circle at top left, rgba(86,67,110,.22), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018)),
    linear-gradient(180deg, rgba(20,22,40,.92), rgba(13,12,18,.96));
  border-color:rgba(125,102,160,.18);
}
.projectTile--tropic{
  background:
    radial-gradient(circle at top left, rgba(119,100,48,.18), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(32,28,18,.9), rgba(14,14,12,.96));
  border-color:rgba(168,140,83,.18);
}
.impactGrid--compact{
  margin-top:16px;
}
.impactGrid--compact .impactItem{
  font-size:13px;
  border-radius:12px;
  background:rgba(255,255,255,.055);
}
@media (max-width: 1020px){
  .flagshipLeadCard,
  .flagshipSecondaryGrid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 820px){
  .flagshipOrbit{
    grid-template-columns:1fr;
  }
  .sectionHead--flagship h2{
    max-width:none;
  }
}
@media (max-width: 640px){
  .section--flagship{
    padding-top:48px;
  }
  .flagshipLeadCard{
    padding:20px;
    gap:18px;
    border-radius:24px;
  }
  .flagshipLeadCopy h3{
    font-size:clamp(1.65rem,8vw,2.2rem);
  }
  .flagshipSecondaryHead{
    margin-top:28px;
  }
  .flagshipOrbitCard,
  .projectTile{
    padding:18px;
    border-radius:20px;
  }
  .flagshipPath li{
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
  }
  .flagshipPath span{
    text-align:left;
  }
}






/* Hedda flip poster card */
.projectTile--flip{
  padding:0;
  background:transparent;
  border:0;
  box-shadow:none;
  overflow:visible;
  perspective:1600px;
}
.projectTile--flip .projectFlipInner{
  display:grid;
  transform-style:preserve-3d;
  transition:transform .72s cubic-bezier(.2,.7,.2,1);
}
.projectTile--flip.is-flipped .projectFlipInner{
  transform:rotateY(180deg);
}
.projectTile--flip .projectFace{
  grid-area:1 / 1;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(125,102,160,.20);
  box-shadow:0 16px 36px rgba(0,0,0,.18);
}
.projectTile--flip .projectFace--front{
  appearance:none;
  width:100%;
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
  border-color:rgba(137,111,177,.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
    linear-gradient(180deg, rgba(14,14,18,.98), rgba(8,8,12,1));
  color:inherit;
  text-align:left;
  cursor:pointer;
}
.projectTile--flip .projectFace--back{
  padding:24px;
  display:flex;
  flex-direction:column;
  transform:rotateY(180deg);
  background:
    radial-gradient(circle at top left, rgba(86,67,110,.22), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018)),
    linear-gradient(180deg, rgba(20,22,40,.92), rgba(13,12,18,.96));
}
.projectTile--flip .projectFace--back .actions{
  margin-top:auto;
}
.projectTile--flip:not(.is-flipped) .projectFace--back{
  pointer-events:none;
}
.projectTile--flip.is-flipped .projectFace--front{
  pointer-events:none;
}
.projectPosterMedia{
  display:block;
  border-radius:18px;
  overflow:hidden;
  background:#09090c;
  box-shadow:0 18px 36px rgba(0,0,0,.34);
}
.projectPosterMedia img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:2 / 3;
  object-fit:cover;
  object-position:center top;
}
.projectFlipHint{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:0 2px 2px;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(216,180,93,.92);
  font-weight:780;
}
.projectFlipHint::after{
  content:'↺';
  font-size:1rem;
  line-height:1;
}
.actions--dual{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.projectFlipBack{
  border-color:rgba(241,234,223,.14);
}
.projectTile--flip .projectFlipToggle:focus-visible,
.projectTile--flip .projectFlipBack:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:4px;
}
@media (prefers-reduced-motion: reduce){
  .projectTile--flip .projectFlipInner{
    transition:none;
  }
}

/* Hero portrait final correction: remove legacy square frame and unify desktop/mobile */
.heroMedia,
.heroMedia picture{
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
}

.heroMedia{
  width: clamp(240px, 24vw, 320px) !important;
}

.heroMedia img{
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 999px !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow) !important;
}

@media (max-width: 940px){
  .heroMedia{
    width: 148px !important;
    margin: 0 0 18px 0 !important;
  }
  .heroMedia img{
    width: 148px !important;
    height: 148px !important;
  }
}


/* Hero portrait hard reset v3: remove any square desktop framing by styling the image directly */
.heroMedia{
  display:block !important;
  flex:0 0 auto !important;
  width:auto !important;
  min-width:0 !important;
  background:none !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  padding:0 !important;
}

.heroMedia .heroPortrait{
  display:block !important;
  width:clamp(240px, 24vw, 320px) !important;
  height:clamp(240px, 24vw, 320px) !important;
  max-width:none !important;
  aspect-ratio:1 / 1 !important;
  object-fit:cover !important;
  object-position:center center !important;
  border-radius:50% !important;
  background:transparent !important;
  border:1px solid var(--line) !important;
  box-shadow:var(--shadow) !important;
  outline:none !important;
}

@media (max-width: 940px){
  .heroMedia .heroPortrait{
    width:148px !important;
    height:148px !important;
  }
}

/* Homepage refinement: calmer hero + curated funder ribbon */
.section--funders{
  margin-top: 6px;
}
.fundersPanel{
  padding: clamp(22px, 3vw, 34px);
  border-radius: 28px;
  border: 1px solid rgba(205, 186, 158, 0.34);
  background:
    linear-gradient(180deg, rgba(242,236,227,0.98), rgba(232,222,208,0.96)),
    radial-gradient(circle at top left, rgba(146,106,65,0.08), transparent 38%);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.fundersPanelIntro{
  display:grid;
  gap:10px;
  margin-bottom: 18px;
}
.fundersKicker{
  margin:0;
  color:#5a4a39;
  font-size:12px;
  font-weight:750;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.fundersNote{
  margin:0;
  color:#3f3428;
  max-width: 68ch;
  line-height:1.7;
}
.logoStage--funders{
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 16px;
}
.partnerCard--funders{
  min-height: 122px;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(70,52,34,0.10);
  background: rgba(255,255,255,0.54);
  box-shadow: 0 10px 24px rgba(56,41,24,0.08);
  gap: 0;
  justify-content: center;
}
.partnerCard--funders:hover,
.partnerCard--funders:focus-within{
  transform: translateY(-2px);
  border-color: rgba(109,18,32,0.18);
  box-shadow: 0 14px 28px rgba(56,41,24,0.12);
}
.partnerCard--funders .partnerLogoWrap{
  height: 74px;
}
.partnerCard--funders .partnerLogoWrap img{
  max-width: 96%;
  max-height: 62px;
  filter: none;
}
.sectionTools--funders{
  justify-content:flex-start;
  margin-top: 18px;
}

/* Slightly calmer homepage hero rhythm */
.page--home .ctaRow{
  margin: 14px 0 14px;
}
.page--home .metaRow{
  margin-top: 14px;
  gap: 12px;
}
.page--home .chip{
  padding: 8px 11px;
}

@media (max-width: 960px){
  .page--home .heroCopy h1{ max-width: 14ch; }
  .page--home .metaRow{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .page--home .chip{ width:100%; justify-content:center; text-align:center; }
}

@media (max-width: 760px){
  .fundersPanel{ padding: 18px; border-radius: 22px; }
  .logoStage--funders{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .partnerCard--funders{ min-height: 106px; padding: 15px 13px; }
  .partnerCard--funders .partnerLogoWrap{ height: 60px; }
  .partnerCard--funders .partnerLogoWrap img{ max-height: 50px; }
}

@media (max-width: 560px){
  .page--home .hero{ padding-top: 42px; }
  .page--home .ctaRow{ display:grid; grid-template-columns: 1fr; gap: 10px; }
  .page--home .ctaRow .btn{ width:100%; }
  .page--home .metaRow{ grid-template-columns: 1fr; }
  .page--home .heroMedia{ margin-top: 8px; }
  .fundersKicker{ letter-spacing:.12em; }
  .fundersNote{ font-size: .97rem; line-height: 1.65; }
}


.card--partners-wide{ grid-column: 1 / -1; }


/* 2026 polish pass — homepage, project pages, and mobile rhythm */
.btn,
.card,
.partnerCard,
.hubCard,
.projectTile,
.flagshipLeadCard{
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.btn{
  backdrop-filter: saturate(115%) blur(8px);
}
.btn:hover,
.btn:focus-visible{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.btn.primary{
  box-shadow: 0 10px 26px rgba(109,18,32,.24);
}
.btn.primary:hover,
.btn.primary:focus-visible{
  box-shadow: 0 16px 34px rgba(109,18,32,.32);
}
.card:hover,
.card:focus-within,
.hubCard:hover,
.hubCard:focus-within,
.projectTile:hover,
.projectTile:focus-within{
  transform: translateY(-2px);
  border-color: rgba(216,180,93,.22);
  box-shadow: 0 22px 46px rgba(0,0,0,.26);
}
.pageIntroInner{
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241,234,223,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    radial-gradient(120% 140% at 0% 0%, rgba(216,180,93,.12), transparent 45%),
    rgba(255,255,255,.02);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.pageIntroInner::before{
  content:"";
  position:absolute;
  inset:auto -8% -35% auto;
  width: 320px;
  height: 320px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(109,18,32,.20), transparent 68%);
  pointer-events:none;
}
.pageIntro .lead{
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.72;
}
.page--home .hero{
  position: relative;
  overflow: hidden;
}
.page--home .hero::before{
  content:"";
  position:absolute;
  inset: -6% auto auto -6%;
  width:min(40vw, 420px);
  height:min(40vw, 420px);
  border-radius:50%;
  background: radial-gradient(circle, rgba(216,180,93,.12), transparent 70%);
  pointer-events:none;
}
.page--home .hero::after{
  content:"";
  position:absolute;
  inset:auto -10% -28% auto;
  width:min(44vw, 460px);
  height:min(44vw, 460px);
  border-radius:50%;
  background: radial-gradient(circle, rgba(109,18,32,.20), transparent 72%);
  pointer-events:none;
}
.page--home .heroInner{
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}
.page--home .heroCopy{
  position: relative;
  z-index: 1;
}
.page--home .heroBridge,
.page--home .lead{
  line-height: 1.72;
}
.page--home .heroQuote{
  color: rgba(255,255,255,.80);
}
.heroMedia .heroPortrait{
  box-shadow: 0 24px 64px rgba(0,0,0,.34), 0 0 0 10px rgba(255,255,255,.03) !important;
}
@keyframes heroFloat{
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -6px, 0); }
}
.page--home .heroMedia .heroPortrait{
  animation: heroFloat 8.2s ease-in-out infinite;
}
.page--home .ctaRow{
  gap: 12px;
}
.page--home .ctaRow .btn{
  min-width: 176px;
}
.page--home .quote{
  margin-top: 18px;
  margin-bottom: 24px;
}
.page--home .hookStills{
  display: grid;
  grid-template-columns: 1.14fr .92fr .92fr 1.14fr;
  gap: 16px;
  overflow: visible;
  padding-inline: 0;
}
.page--home .hookStills figure{
  max-width: none;
  width: 100%;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(241,234,223,.1);
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}
.page--home .hookStills figure:nth-child(1),
.page--home .hookStills figure:nth-child(4){
  transform: translateY(10px);
}
.page--home .hookStills img{
  height: clamp(250px, 30vw, 360px);
  transition: transform .75s ease;
}
.page--home .hookStills figure:hover img,
.page--home .hookStills figure:focus-within img{
  transform: scale(1.04);
}
.page--home .directoryGrid .hubCard{
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02)),
    rgba(255,255,255,.02);
}
.softReveal{
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(.985);
  transition: opacity 720ms cubic-bezier(.22,.61,.36,1), transform 720ms cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.softReveal.is-visible{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
@media (prefers-reduced-motion: reduce){
  .softReveal{
    opacity: 1;
    transform: none;
    transition: none;
  }
  .page--home .heroMedia .heroPortrait{
    animation: none;
  }
}
@media (max-width: 980px){
  .page--home .ctaRow .btn{
    min-width: 0;
  }
  .page--home .hookStills{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page--home .hookStills figure:nth-child(1),
  .page--home .hookStills figure:nth-child(4){
    transform: none;
  }
}
@media (max-width: 760px){
  .pageIntroInner{ padding: 22px 18px; }
  .page--home .hero{ padding-top: 44px; }
  .page--home .ctaRow{ display: grid; grid-template-columns: 1fr; }
  .page--home .ctaRow .btn{ width: 100%; }
  .page--home .hookStills{
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    gap: 14px;
  }
  .page--home .hookStills figure{
    flex: 0 0 82%;
  }
  .page--home .hookStills img{
    height: 260px;
  }
}
@media (max-width: 560px){
  .page--home .hookStills figure{ flex-basis: 88%; }
  .page--home .hookStills img{ height: 236px; }
}
