/* ============================================================
   ECLIPSE MEDIA — prototype
   ============================================================ */
:root{
  --bg:#08080a;
  --bg-2:#0c0c10;
  --bg-3:#111117;
  --ink:#f4f2ee;
  --ink-dim:#a6a4a0;
  --muted:#6e6d75;
  --line:rgba(244,242,238,.10);
  --brand:#18BFC5;          /* sampled straight off the logo file */
  --brand-2:#7fe6ea;
  --glow:rgba(24,191,197,.24);

  --pad:clamp(20px,4vw,72px);
  --ease:cubic-bezier(.16,1,.3,1);

  --f-disp:'Archivo Black','Heebo',Impact,sans-serif;
  --f-he:'Heebo',system-ui,sans-serif;
  --f-ui:'Space Grotesk','Heebo',system-ui,sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
html.lenis,html.lenis body{height:auto}
.lenis.lenis-smooth{scroll-behavior:auto!important}
body{background:var(--bg);color:var(--ink);font-family:var(--f-he);font-weight:300;
  -webkit-font-smoothing:antialiased;overflow-x:hidden}
html[dir=ltr] body{font-family:var(--f-ui)}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
::selection{background:var(--brand);color:#000}

/* grain + vignette --------------------------------------------*/
.grain{position:fixed;inset:-120%;z-index:9000;pointer-events:none;opacity:.045;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation:grain 700ms steps(4) infinite}
@keyframes grain{0%{transform:translate(0,0)}25%{transform:translate(-3%,2%)}
  50%{transform:translate(2%,-3%)}75%{transform:translate(-2%,-2%)}100%{transform:translate(3%,1%)}}
.vignette{position:fixed;inset:0;z-index:8990;pointer-events:none;
  background:radial-gradient(120% 90% at 50% 45%,transparent 40%,rgba(0,0,0,.5) 100%)}

/* preloader ---------------------------------------------------*/
#preload{position:fixed;inset:0;z-index:9999;background:var(--bg);
  display:flex;align-items:center;justify-content:center;flex-direction:column;gap:28px}
#preload .pl-mark{font-family:var(--f-disp);font-size:clamp(19px,4.2vw,46px);letter-spacing:.14em;
  color:var(--ink);display:flex;gap:.06em;
  direction:ltr}   /* per-letter spans in a flex row reverse under dir=rtl */
#preload .pl-mark .sp{width:.42em}
#preload .pl-mark span{display:inline-block;transform:translateY(105%);opacity:0}
.pl-bar{width:min(320px,54vw);height:1px;background:rgba(255,255,255,.14);position:relative;overflow:hidden}
.pl-bar i{position:absolute;inset:0;transform-origin:left;transform:scaleX(0);
  background:linear-gradient(90deg,var(--brand),var(--brand-2))}
html[dir=rtl] .pl-bar i{transform-origin:right}
.pl-num{font-family:var(--f-ui);font-size:11px;letter-spacing:.3em;color:var(--muted)}

/* nav ---------------------------------------------------------*/
/* 3 columns with equal 1fr sides: the middle is centred on the page no matter
   how much wider the wordmark is than the language toggle. space-between would
   push it by half the difference. */
.nav{position:fixed;top:0;inset-inline:0;z-index:800;
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;
  padding:20px var(--pad);
  transition:background .5s var(--ease),backdrop-filter .5s var(--ease),padding .5s var(--ease)}
.nav.solid{background:rgba(8,8,10,.74);backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);padding-block:13px}
.brand{grid-column:1;justify-self:start;display:block;line-height:0}
.brand img{width:clamp(112px,12vw,158px);height:auto;display:block;
  transition:opacity .35s cubic-bezier(.16,1,.3,1)}
.brand:hover img{opacity:.75}
@media(max-width:560px){.brand img{width:96px}}
.nav-links{grid-column:2;justify-self:center;display:flex;gap:26px;align-items:center;font-size:13px;font-weight:400}
html[dir=ltr] .nav-links{font-family:var(--f-ui);font-size:12px;letter-spacing:.14em;text-transform:uppercase}
.nav-links a{position:relative;padding-block:4px;color:var(--ink-dim);transition:color .4s}
.nav-links a::after{content:'';position:absolute;inset-inline:0;bottom:0;height:1px;background:var(--brand);
  transform:scaleX(0);transform-origin:inherit;transition:transform .5s var(--ease)}
.nav-links a:hover{color:var(--ink)}
.nav-links a:hover::after{transform:scaleX(1)}
.nav-right{grid-column:3;justify-self:end;display:flex;align-items:center;gap:16px}
.lang{display:flex;align-items:center;gap:7px;font-family:var(--f-ui);font-size:11px;letter-spacing:.18em;
  border:1px solid var(--line);border-radius:100px;padding:7px 13px;transition:border-color .4s}
.lang:hover{border-color:rgba(24,191,197,.5)}
.lang b{color:var(--brand);font-weight:500}
.lang s{text-decoration:none;color:var(--muted)}
.burger{display:none;width:26px;height:12px;position:relative}
.burger i{position:absolute;inset-inline:0;height:1px;background:var(--ink)}
.burger i:first-child{top:0}.burger i:last-child{bottom:0}

/* hero --------------------------------------------------------*/
#hero{position:relative;height:100svh;overflow:hidden}
#gl-hero{position:fixed;inset:0;z-index:1;pointer-events:none}
.hero-inner{position:relative;z-index:3;height:100%;display:flex;flex-direction:column;
  justify-content:flex-end;align-items:center;padding:0 var(--pad) clamp(70px,11vh,116px);text-align:center}
.hero-inner::before{content:'';position:absolute;inset-inline:0;bottom:0;height:44%;z-index:-1;
  pointer-events:none;background:linear-gradient(180deg,transparent,rgba(8,8,10,.4) 46%,rgba(8,8,10,.86) 100%)}
.eyebrow{position:absolute;top:clamp(84px,12vh,132px);inset-inline:0;justify-content:center;
  font-family:var(--f-ui);font-size:11px;letter-spacing:.42em;text-transform:uppercase;
  color:var(--brand);display:flex;align-items:center;gap:14px}
.eyebrow::before,.eyebrow::after{content:'';width:34px;height:1px;
  background:linear-gradient(90deg,transparent,var(--brand))}
.eyebrow::after{background:linear-gradient(90deg,var(--brand),transparent)}
.hero-title{font-family:var(--f-disp);font-size:clamp(32px,6.2vw,92px);line-height:.94;
  letter-spacing:.01em;text-transform:uppercase;display:flex;gap:.28em;align-items:baseline;direction:ltr}
.hero-title .ln{display:block;overflow:hidden}
.hero-title .ln>span{display:block;transform:translateY(105%)}
.hero-title .thin{-webkit-text-stroke:1px rgba(244,242,238,.5);color:transparent}
.hero-sub{max-width:520px;font-size:clamp(14px,1.5vw,17px);line-height:1.75;color:var(--ink-dim);
  margin-top:22px;opacity:0}
.scroll-cue{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);z-index:4;
  display:flex;flex-direction:column;align-items:center;gap:10px;
  font-family:var(--f-ui);font-size:10px;letter-spacing:.3em;color:var(--muted);opacity:0}
.scroll-cue .rail{width:1px;height:46px;background:rgba(255,255,255,.14);position:relative;overflow:hidden}
.scroll-cue .rail::after{content:'';position:absolute;inset-inline:0;height:40%;
  background:linear-gradient(180deg,transparent,var(--brand));animation:cue 2.1s var(--ease) infinite}
@keyframes cue{0%{transform:translateY(-100%)}60%,100%{transform:translateY(260%)}}

/* shared -------------------------------------------------------*/
.sec{position:relative;z-index:5;background:var(--bg);padding:clamp(80px,12vh,150px) var(--pad)}
.sec-tag{font-family:var(--f-ui);font-size:11px;letter-spacing:.34em;text-transform:uppercase;color:var(--brand)}
.rv{opacity:0;transform:translateY(30px)}

/* word-by-word masked reveal. Split on words, not characters: Hebrew keeps
   its kerning and bidi order intact that way. */
.w-m{display:inline-block;overflow:hidden;vertical-align:bottom;padding-bottom:.06em}
.w-i{display:inline-block;transform:translateY(105%);will-change:transform}

/* scroll progress */
.sprog{position:fixed;top:0;inset-inline:0;height:2px;z-index:850;pointer-events:none}
.sprog i{display:block;height:100%;background:var(--brand);transform:scaleX(0);transform-origin:left}
html[dir=rtl] .sprog i{transform-origin:right}

/* nav marks the section you are actually in */
.nav-links a.on{color:var(--ink)}
.nav-links a.on::after{transform:scaleX(1)}

/* marquee -----------------------------------------------------*/
.marq{position:relative;z-index:5;background:var(--bg);border-block:1px solid var(--line);
  padding:20px 0;overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent)}
.marq-track{display:flex;gap:52px;width:max-content;will-change:transform}
.marq-track span{font-family:var(--f-ui);font-size:clamp(13px,1.5vw,16px);letter-spacing:.2em;
  text-transform:uppercase;color:var(--muted);white-space:nowrap;display:flex;align-items:center;gap:52px}
.marq-track span::after{content:'';width:5px;height:5px;border-radius:50%;background:var(--brand);opacity:.6}

/* ══ divisions ══ */
.division{position:relative;z-index:5;background:var(--bg);
  padding:clamp(76px,12vh,150px) var(--pad) clamp(60px,9vh,120px)}
.division+.division{border-top:1px solid var(--line)}
.div-head{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(24px,5vw,70px);
  align-items:end;margin-bottom:clamp(34px,6vh,72px)}
.div-title{font-size:clamp(36px,8vw,124px);font-weight:900;line-height:.9;letter-spacing:-.035em}
html[dir=ltr] .div-title{font-family:var(--f-disp);font-weight:400;text-transform:uppercase;letter-spacing:-.01em}
.div-note{font-size:15px;line-height:1.85;color:var(--ink-dim);max-width:44ch;margin-bottom:20px}
.div-cta{display:inline-flex;align-items:center;gap:10px;font-family:var(--f-ui);font-size:11px;
  letter-spacing:.2em;text-transform:uppercase;border:1px solid var(--line);border-radius:100px;
  padding:13px 22px;transition:.45s var(--ease)}
.div-cta:hover{background:var(--brand);border-color:var(--brand);color:#08080a}
.div-cta svg{width:13px;height:13px}
html[dir=rtl] .div-cta svg{transform:scaleX(-1)}

.collage{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(10px,1.3vw,18px);align-items:start}
.collage .col{display:flex;flex-direction:column;gap:clamp(10px,1.3vw,18px);will-change:transform}
.collage .col:nth-child(2){margin-top:clamp(28px,6vh,86px)}
.collage .col:nth-child(3){margin-top:clamp(12px,2.5vh,36px)}
.collage figure{position:relative;overflow:hidden;background:var(--bg-2);cursor:pointer;
  transition:opacity .55s var(--ease)}
.collage img{width:100%;height:100%;object-fit:cover;
  object-position:50% 28%;      /* heads sit high in a frame; bias the crop up */
  transform:scale(1.02);
  transition:transform 1.1s var(--ease),filter .55s var(--ease)}
/* portraits keep their own proportions, so no face is ever cut */
.collage figure.natural{aspect-ratio:auto}
.collage figure.natural img{height:auto;object-fit:fill;object-position:center;transform:none}
.collage figure.natural:hover img{transform:scale(1.03)}
.collage figure::after{content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(0,0,0,.7));opacity:.9;
  transition:opacity .7s var(--ease)}

/* hover stays additive: nothing is ever degraded, dimmed or blurred */
@media(hover:hover){
  .collage figure:hover{z-index:3}
  .collage figure:hover img{transform:scale(1.07)}
  .collage figure:hover::after{opacity:.45}
  /* autofocus brackets */
  .collage figure::before{
    content:'';position:absolute;inset:22px;z-index:4;pointer-events:none;opacity:0;
    transition:opacity .4s var(--ease),inset .55s var(--ease);
    --b:linear-gradient(var(--brand),var(--brand));
    background:var(--b) 0 0/1px 20px no-repeat, var(--b) 0 0/20px 1px no-repeat,
      var(--b) 100% 0/1px 20px no-repeat, var(--b) 100% 0/20px 1px no-repeat,
      var(--b) 0 100%/1px 20px no-repeat, var(--b) 0 100%/20px 1px no-repeat,
      var(--b) 100% 100%/1px 20px no-repeat, var(--b) 100% 100%/20px 1px no-repeat;
  }
  .collage figure:hover::before{opacity:1;inset:14px}
}
.collage figcaption{position:absolute;inset-inline:0;bottom:0;z-index:2;padding:16px;
  font-size:14px;font-weight:700;letter-spacing:-.01em;
  transform:translateY(6px);opacity:.85;transition:.6s var(--ease)}
.collage figure:hover figcaption{transform:none;opacity:1}
.ar43{aspect-ratio:4/3}.ar34{aspect-ratio:3/4}.ar11{aspect-ratio:1/1}
.ar45{aspect-ratio:4/5}.ar169{aspect-ratio:16/10}

/* ══ press credit ══ */
.press{display:flex;align-items:center;justify-content:space-between;gap:clamp(18px,4vw,54px);
  margin-top:clamp(34px,6vh,70px);padding:clamp(22px,3vw,38px);
  border:1px solid var(--line);position:relative;overflow:hidden;isolation:isolate;
  transition:border-color .5s var(--ease)}
.press::before{content:'';position:absolute;inset:0;z-index:-1;background:var(--brand);
  transform:scaleX(0);transform-origin:inherit;transition:transform .6s var(--ease)}
html[dir=rtl] .press::before{transform-origin:right}
html[dir=ltr] .press::before{transform-origin:left}
.press:hover{border-color:var(--brand)}
.press:hover::before{transform:scaleX(1)}
.press-tag{font-family:var(--f-ui);font-size:11px;letter-spacing:.26em;text-transform:uppercase;
  color:var(--brand);margin-bottom:12px;transition:color .45s var(--ease)}
.press-head{font-size:clamp(17px,2.2vw,30px);font-weight:700;line-height:1.32;letter-spacing:-.015em;
  max-width:26ch;margin-bottom:10px}
.press-by{font-size:13px;color:var(--muted);transition:color .45s var(--ease)}
.press-cta{flex:0 0 auto;display:inline-flex;align-items:center;gap:9px;
  font-family:var(--f-ui);font-size:11px;letter-spacing:.2em;text-transform:uppercase;
  border:1px solid var(--line);border-radius:100px;padding:12px 20px;
  transition:border-color .45s var(--ease)}
.press-cta svg{width:13px;height:13px}
html[dir=rtl] .press-cta svg{transform:scaleX(-1)}
.press:hover .press-tag,.press:hover .press-by{color:rgba(8,8,10,.72)}
.press:hover .press-head{color:#08080a}
.press:hover .press-cta{color:#08080a;border-color:rgba(8,8,10,.35)}
@media(max-width:760px){
  .press{flex-direction:column;align-items:flex-start}
  .press-head{max-width:none}
}

/* ══ clients ══ */
#clients{background:var(--bg);overflow:hidden}
.cl-head{display:flex;align-items:flex-end;justify-content:space-between;gap:26px;flex-wrap:wrap;
  margin-bottom:clamp(26px,4vh,50px)}
.cl-title{font-size:clamp(30px,5.6vw,80px);font-weight:900;line-height:.95;letter-spacing:-.03em}
html[dir=ltr] .cl-title{font-family:var(--f-disp);font-weight:400;text-transform:uppercase;letter-spacing:-.01em}
.cl-total{font-family:var(--f-ui);font-size:12px;letter-spacing:.2em;color:var(--muted)}
.cl-total b{color:var(--brand);font-weight:500;font-size:15px}
/* logo wall. Supplied artwork is grey on transparent, so it is normalised to
   flat white and lifted to full strength on hover. */
.cl-wall{display:grid;grid-template-columns:repeat(auto-fill,minmax(clamp(120px,15vw,190px),1fr));
  border-top:1px solid var(--line);border-inline-start:1px solid var(--line)}
.cl-logo{position:relative;display:grid;place-items:center;
  aspect-ratio:16/9;padding:clamp(16px,2.4vw,34px);
  border-bottom:1px solid var(--line);border-inline-end:1px solid var(--line);
  transition:background .5s var(--ease)}
.cl-logo img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;
  /* artwork already ships light-on-transparent, so no inversion */
  opacity:.46;
  transition:opacity .45s var(--ease),transform .55s var(--ease)}
.cl-logo:hover{background:rgba(24,191,197,.07)}
.cl-logo:hover img{opacity:1;transform:scale(1.06)}

/* ══ contact ══ */
#contact{background:var(--bg-2);text-align:center;padding-block:clamp(100px,16vh,190px);
  position:relative;overflow:hidden}
#contact::before{content:'';position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(60% 70% at 50% 100%,var(--glow),transparent 70%)}
.ct-big{font-family:var(--f-disp);font-size:clamp(38px,9.5vw,140px);line-height:.92;
  text-transform:uppercase;margin-bottom:30px;position:relative;direction:ltr}
.ct-big a{display:inline-block;transition:color .4s}
.ct-big a:hover{color:var(--brand)}
.ct-row{display:flex;gap:clamp(16px,4vw,50px);justify-content:center;flex-wrap:wrap;
  font-size:15px;color:var(--ink-dim);position:relative}
.ct-row a{border-bottom:1px solid transparent;padding-bottom:3px;transition:.4s}
.ct-row a:hover{color:var(--brand);border-color:var(--brand)}
footer{background:var(--bg);border-top:1px solid var(--line);padding:24px var(--pad);
  display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;
  font-family:var(--f-ui);font-size:11px;letter-spacing:.14em;color:var(--muted);text-transform:uppercase}

/* cursor ------------------------------------------------------*/
.cur{position:fixed;top:0;left:0;width:7px;height:7px;border-radius:50%;background:var(--brand);
  z-index:9500;pointer-events:none;mix-blend-mode:difference;transform:translate(-50%,-50%)}
.cur-ring{position:fixed;top:0;left:0;width:34px;height:34px;border:1px solid rgba(24,191,197,.45);
  border-radius:50%;z-index:9499;pointer-events:none;transform:translate(-50%,-50%)}
@media (hover:none){.cur,.cur-ring{display:none}}

/* responsive --------------------------------------------------*/
@media(max-width:1024px){
  .div-head{grid-template-columns:1fr}
}
@media(max-width:760px){
  .nav-links{display:none}
  .burger{display:block}
  .collage{grid-template-columns:repeat(2,1fr)}
  .collage .col:nth-child(2){margin-top:24px}
  .collage .col:nth-child(3){display:none}
}
/* short viewports: the mark and the wordmark must both stay in frame */
@media(max-height:660px){
  .hero-inner{padding-bottom:clamp(44px,7vh,70px)}
  .hero-title{font-size:clamp(26px,4.4vw,54px)}
  .hero-sub{display:none}
  .eyebrow{top:clamp(62px,10vh,86px)}
  .scroll-cue{display:none}
}
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;transition-duration:.001ms!important}
  .grain{display:none}
}


/* ══ the reel ═══════════════════════════════════════════════════════════
   Replaces the vertical collage. Each division becomes a tall section with
   a pinned stage inside it; scrolling down the section walks the wall
   sideways. Nothing is ever cropped, so a portrait stays a portrait. */
.reel{position:relative}
.reel-stage{position:sticky;top:0;height:100vh;overflow:hidden;
  perspective:1500px;perspective-origin:50% 50%}
.reel-strip{position:absolute;top:0;left:0;width:0;height:100%;
  transform-style:preserve-3d}
.reel-it{position:absolute;top:50%;left:0;
  will-change:transform,opacity;transform-style:preserve-3d}
.reel-it figure{position:relative;overflow:hidden;background:var(--bg-2);
  box-shadow:0 40px 120px -35px rgba(0,0,0,.95);will-change:transform;margin:0}
.reel-it img{width:105%;height:100%;margin-inline-start:-2.5%;
  object-fit:contain;display:block;will-change:transform}
.reel-it figcaption{margin-top:15px;display:flex;align-items:baseline;
  justify-content:center;gap:14px;will-change:transform,opacity}
.reel-it .nm{font-family:var(--f-disp);direction:ltr;font-size:15px;
  letter-spacing:.02em;white-space:nowrap}
.reel-it .nm.he{font-family:var(--f-he);font-weight:900;direction:rtl}
.reel-it .sb{font-family:var(--f-ui);font-size:10px;letter-spacing:.22em;
  color:rgba(244,242,238,.45);direction:ltr;white-space:nowrap}
.reel-it .sb.he{font-family:var(--f-he);letter-spacing:.1em;direction:rtl}
.reel-it .no{font-family:var(--f-ui);font-size:10px;letter-spacing:.18em;
  color:rgba(244,242,238,.28);direction:ltr}

/* the counter for whichever picture holds the middle: part of the stage, so
   it arrives and leaves with the wall rather than with the section */
.reel-hud{position:absolute;inset:auto 0 0;z-index:6;
  display:flex;align-items:center;gap:16px;pointer-events:none;
  padding:0 var(--pad) 26px;height:54px}
.reel-hud .n{font-family:var(--f-ui);font-size:11px;letter-spacing:.2em;
  color:rgba(244,242,238,.45);direction:ltr;white-space:nowrap}
.reel-hud .n b{color:var(--ink);font-weight:500}
.reel-hud .tr{flex:1;height:1px;background:rgba(244,242,238,.12);position:relative}
.reel-hud .tr i{position:absolute;inset:0 auto 0 0;width:0;background:var(--brand);
  display:block}
.reel-skip{pointer-events:auto;display:inline-flex;align-items:center;gap:8px;
  font-family:var(--f-ui);font-size:11px;letter-spacing:.16em;white-space:nowrap;
  color:rgba(244,242,238,.55);border:1px solid var(--line);border-radius:100px;
  padding:9px 16px;transition:color .35s var(--ease),border-color .35s var(--ease)}
.reel-skip:hover{color:var(--brand);border-color:rgba(24,191,197,.55)}
.reel-skip svg{width:13px;height:13px;flex:0 0 auto}
@media(max-width:700px){ .reel-skip span{display:none} .reel-skip{padding:9px 11px} }

@media(max-width:700px){
  .reel-it .nm{font-size:13px}
}
@media(prefers-reduced-motion:reduce){
  .reel-it{transition:none}
}


/* ══ the reading, kept below the work ═══════════════════════════════════
   Guy's rule: the top of the site is for sending to a client. Everything a
   search engine needs is here, in plain markup, after sixty photographs. */
.words{padding-block:clamp(64px,10vh,124px)}
.words-wrap{max-width:1080px;margin:0 auto}
.words-lead{font-size:clamp(26px,4.4vw,52px);font-weight:900;line-height:1.06;
  letter-spacing:-.01em;margin:14px 0 26px;max-width:19ch}
.words p{font-size:clamp(15px,1.35vw,17.5px);line-height:1.72;
  color:rgba(244,242,238,.76);max-width:62ch;margin-bottom:16px}
.words p a{color:var(--brand);border-bottom:1px solid rgba(24,191,197,.35)}
.words p a:hover{border-bottom-color:var(--brand)}
.words h2{font-size:clamp(18px,2.2vw,26px);font-weight:700;line-height:1.2;
  margin-bottom:14px}
.words .cols{display:grid;gap:clamp(26px,4vw,60px);
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.words .where,.words .headshots,.words .deeper{padding-top:clamp(34px,5vh,64px);
  margin-top:clamp(34px,5vh,64px);border-top:1px solid var(--line)}
.places{display:flex;flex-wrap:wrap;gap:9px;margin-top:22px}
.places span{font-family:var(--f-ui);font-size:11px;letter-spacing:.1em;
  color:rgba(244,242,238,.62);border:1px solid var(--line);
  border-radius:100px;padding:7px 14px}
.roster{columns:132px;column-gap:26px;margin-top:20px;padding:0}
.roster li{list-style:none;font-size:14px;line-height:2.05;
  color:rgba(244,242,238,.66);break-inside:avoid}


/* ══ the marquee pac ════════════════════════════════════════════════════
   The client names travel right to left and the mark eats them.

   One body, not two halves. Rotating two semicircles apart reads as a thing
   coming apart, because that is literally what it is: the straight edges
   separate at the pivot and you see two crescents. A pac-man is a single
   filled disc with a wedge taken out of it, so that is what this is: a conic
   gradient whose transparent slice is the mouth, widening and closing.

   The mask goes opaque exactly at the teeth. Fading names out early reads as
   a fade; cutting them at the mouth reads as a bite. */
@property --mouth{ syntax:'<angle>'; initial-value:6deg; inherits:false }

.marq{position:relative}
.marq-track{
  -webkit-mask-image:linear-gradient(to right,transparent 0,transparent 50px,
                                     #000 58px,#000 calc(100% - 40px),transparent 100%);
          mask-image:linear-gradient(to right,transparent 0,transparent 50px,
                                     #000 58px,#000 calc(100% - 40px),transparent 100%)}

.marq-pac{position:absolute;left:16px;top:50%;z-index:3;
  width:38px;height:38px;border-radius:50%;
  translate:0 -50%;                       /* leaves transform free for the gape */
  rotate:calc(var(--mouth) / -2);         /* keeps the mouth centred on the names */
  background:conic-gradient(from 90deg at 50% 50%,
              transparent 0deg, transparent var(--mouth),
              var(--brand) var(--mouth), var(--brand) 360deg);
  filter:drop-shadow(0 0 12px rgba(24,191,197,.5));
  animation:chomp .34s cubic-bezier(.45,0,.55,1) infinite alternate}

/* the eye is what stops it reading as a pie chart */
.marq-pac::after{content:'';position:absolute;width:4px;height:4px;border-radius:50%;
  background:#072224;top:8px;left:50%;translate:-50% 0}

@keyframes chomp{ from{--mouth:6deg} to{--mouth:62deg} }
@media(prefers-reduced-motion:reduce){ .marq-pac{animation:none} }


/* the two deeper pages, linked so they are not orphans */
.deeper-links{display:grid;gap:12px;margin-top:20px;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}
.deeper-links a{display:block;padding:20px 22px;border:1px solid var(--line);
  border-radius:13px;transition:border-color .4s var(--ease),background-color .4s var(--ease)}
.deeper-links a:hover{border-color:rgba(24,191,197,.5);background:rgba(24,191,197,.04)}
.deeper-links b{display:block;font-size:15.5px;font-weight:700;margin-bottom:7px;
  line-height:1.35}
.deeper-links span{display:block;font-size:13px;line-height:1.6;
  color:rgba(244,242,238,.55)}


/* The crawler gallery. It only renders when scripts are off, so it never
   affects what a visitor sees, but the photographs are in the markup either
   way. */
.seo-gallery{padding:var(--pad);max-width:1080px;margin:0 auto}
.seo-gallery h2{font-size:22px;font-weight:700;margin:34px 0 16px}
.seo-gallery ul{list-style:none;display:grid;gap:18px;padding:0;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr))}
.seo-gallery img{width:100%;height:auto;border-radius:8px}
.seo-gallery span{display:block;margin-top:8px;font-size:13px;
  color:rgba(244,242,238,.6)}
