/* ============ Semantica — static rebuild ============ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

:root{
  --bg:#000;
  --ink:#f3efe7;          /* warm off-white */
  --ink-dim:#b8b2a8;
  --muted:#7d776e;
  --line:rgba(243,239,231,.16);
  --display:'Cormorant Garamond', Georgia, serif;
  --body:'EB Garamond', Georgia, serif;
  --maxw:1180px;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:var(--body); font-size:20px; line-height:1.55;
  font-weight:400; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

/* ---------- nav ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 34px;
  background:linear-gradient(180deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.6) 60%, rgba(0,0,0,0) 100%);
}
.nav a{transition:opacity .25s}
.brand{display:flex; align-items:center; gap:0}
.brand img{height:66px; width:auto}
.nav-links{display:flex; align-items:center; gap:30px;
  font-family:var(--display); font-size:23px; font-weight:500; letter-spacing:.01em}
.nav-links a{opacity:.92}
.nav-links a:hover, .nav-links a.active{opacity:.55}
.ig{width:22px; height:22px; margin-top:2px}
.ig svg{width:100%; height:100%; stroke:var(--ink); fill:none; stroke-width:1.6}

/* ---------- hero (home) ---------- */
.hero{position:relative; height:100svh; width:100%; background:#000}
#gl{position:absolute; inset:0; width:100%; height:100%; display:block}
.hero-fallback{position:absolute; inset:0; background:#000 center/cover no-repeat}

/* ---------- page shell ---------- */
main{max-width:var(--maxw); margin:0 auto; padding:150px 34px 120px}
.page-narrow{max-width:960px}
h1,h2,h3{font-family:var(--display); font-weight:500; line-height:1.05; margin:0}
.title{font-size:clamp(2.4rem,5vw,4rem); letter-spacing:.005em; margin-bottom:.5em}

/* ---------- about ---------- */
.about-photo{margin:0 0 56px; filter:grayscale(1) contrast(1.02) brightness(.95)}
.about-copy{max-width:900px; font-size:1.32rem; line-height:1.62}
.about-copy p{margin:0 0 1.25em}
.contact{font-family:var(--display); font-size:1.4rem; margin-top:2.2em; color:var(--ink-dim)}
.contact a{border-bottom:1px solid var(--line)}

/* ---------- artwork / film blocks ---------- */
.work{margin:0 0 140px}
.work:last-child{margin-bottom:0}
.work-head{display:grid; grid-template-columns:1fr 1.15fr; gap:56px; align-items:start; margin-bottom:48px}
.work-meta .title{margin-bottom:.35em}
.credit{font-family:var(--display); font-size:1.5rem; color:var(--ink); margin:.2em 0}
.sub{color:var(--muted); font-size:1.05rem; line-height:1.5; margin:.5em 0 0}
.work-body p{margin:0 0 1.15em; font-size:1.16rem; line-height:1.6; color:var(--ink-dim)}
.work-body p:first-child{color:var(--ink)}

/* video */
.video{position:relative; width:100%; aspect-ratio:16/9; background:#0a0a0a; margin:0 0 12px; border:1px solid var(--line)}
.video iframe{position:absolute; inset:0; width:100%; height:100%; border:0}
.video-cap{color:var(--muted); font-size:.95rem; margin:0 0 48px}

/* galleries */
.grid{display:grid; gap:14px}
.grid.g2{grid-template-columns:repeat(2,1fr)}
.grid.g3{grid-template-columns:repeat(3,1fr)}
.grid img{width:100%; height:100%; object-fit:cover; cursor:zoom-in; background:#0a0a0a;
  transition:opacity .3s}
.grid img:hover{opacity:.82}
.tall{grid-row:span 2}

/* ---------- press ---------- */
.press-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
.press-card{border:1px solid var(--line); background:#080808; overflow:hidden; display:flex; flex-direction:column}
.press-card .shot{aspect-ratio:4/3; overflow:hidden; background:#000; display:flex; align-items:center; justify-content:center}
.press-card .shot img{width:100%; height:100%; object-fit:cover}
.press-card.logo .shot{padding:34px}
.press-card.logo .shot img{width:auto; height:auto; max-height:90px; object-fit:contain}
.press-cap{padding:18px 20px 22px}
.press-cap .outlet{font-family:var(--display); font-size:1.3rem; margin:0 0 .2em}
.press-cap .desc{font-size:.98rem; line-height:1.45; color:var(--muted); margin:0}

/* ---------- lightbox ---------- */
.lb{position:fixed; inset:0; z-index:100; background:rgba(0,0,0,.94);
  display:none; align-items:center; justify-content:center; padding:30px; cursor:zoom-out}
.lb.open{display:flex}
.lb img{max-width:94vw; max-height:92vh; width:auto; height:auto; object-fit:contain; cursor:default}
.lb-close{position:absolute; top:22px; right:30px; font-family:var(--display); font-size:2rem; color:var(--ink); cursor:pointer; line-height:1}

/* ---------- footer ---------- */
.foot{max-width:var(--maxw); margin:0 auto; padding:60px 34px 70px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
  color:var(--muted); font-size:.95rem}
.foot a{border-bottom:1px solid var(--line)}

/* ---------- responsive ---------- */
@media (max-width:820px){
  body{font-size:18px}
  .nav{padding:16px 20px}
  .brand img{height:54px; width:auto}
  .nav-links{gap:18px; font-size:19px}
  main{padding:120px 20px 90px}
  .work-head{grid-template-columns:1fr; gap:22px; margin-bottom:34px}
  .work{margin-bottom:96px}
  .grid.g3,.press-grid{grid-template-columns:repeat(2,1fr)}
  .tall{grid-row:span 1}
  .about-copy{font-size:1.18rem}
}
@media (max-width:520px){
  .nav-links a.hide-sm{display:none}   /* keep nav from wrapping on tiny screens */
  .grid.g2,.grid.g3,.press-grid{grid-template-columns:1fr}
}
@media (prefers-reduced-motion:reduce){ *{scroll-behavior:auto} }

/* masonry gallery (mixed portrait/landscape install shots) */
.masonry{column-count:3; column-gap:14px; margin-top:8px}
.masonry img{width:100%; margin:0 0 14px; break-inside:avoid; cursor:zoom-in; background:#0a0a0a; transition:opacity .3s}
.masonry img:hover{opacity:.82}
.single{margin:0 0 14px; cursor:zoom-in}
@media(max-width:820px){.masonry{column-count:2}}
@media(max-width:520px){.masonry{column-count:1}}


/* ---------- about full-bleed image ---------- */
.about-fullbleed{position:relative; left:50%; right:50%; margin-left:-50vw; margin-right:-50vw;
  width:100vw; margin-top:0; margin-bottom:60px; overflow:hidden}
.about-fullbleed img{width:100%; height:auto; display:block; filter:grayscale(1) contrast(1.02) brightness(.95)}

/* ---------- press: image with logo/laurel overlaid ---------- */
.shot.overlaid{position:relative}
.shot.overlaid .bg{width:100%; height:100%; object-fit:cover}
.shot.overlaid::after{content:''; position:absolute; inset:0; background:rgba(0,0,0,.28)}
.shot.overlaid .mark{position:absolute; inset:0; margin:auto; width:68%; height:auto; max-height:60%;
  object-fit:contain; z-index:2; filter:drop-shadow(0 2px 14px rgba(0,0,0,.6))}

/* ---------- geomantra gallery ---------- */
.geo-banner{margin:0 0 14px}
.geo-pair{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:0 0 14px}
.geo-pair img, .geo-banner img, .geo-wide img{width:100%; cursor:zoom-in; background:#0a0a0a; transition:opacity .3s}
.geo-pair img:hover, .geo-banner img:hover, .geo-wide img:hover{opacity:.82}
@media(max-width:640px){ .geo-pair{grid-template-columns:1fr} }

/* As Above So Below — small 4-up portrait grid */
.aasb-grid4{display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin:14px 0 12px}
.aasb-grid4 img{width:100%; aspect-ratio:3/4; object-fit:cover; cursor:zoom-in; background:#0a0a0a; transition:opacity .3s}
.aasb-grid4 img:hover{opacity:.82}
@media(max-width:820px){.aasb-grid4{grid-template-columns:repeat(2,1fr)}}

/* press — typographic cards (outlets without a logo/screenshot) */
.press-card.textcard .shot{padding:26px; text-align:center}
.press-card.textcard .txt{font-family:var(--display); font-weight:500; font-size:clamp(1.5rem,2.4vw,2.1rem); color:var(--ink); line-height:1.12; letter-spacing:.01em}

/* press — outlet name set over an install image */
.shot.overlaid .mark-text{position:absolute; inset:0; z-index:2; display:flex; align-items:center; justify-content:center;
  text-align:center; padding:22px; font-family:var(--display); font-weight:500; color:#fff;
  font-size:clamp(1.6rem,2.7vw,2.2rem); line-height:1.12; letter-spacing:.01em; text-shadow:0 2px 16px rgba(0,0,0,.9), 0 0 34px rgba(0,0,0,.7)}
