/* ============================================================
   BUILD WORLDS — Alex O'Brien
   Luxury tour & concert photography. Warm black + burnt orange.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Hanken+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root{
  --ink:        #0b0a08;
  --ink-2:      #100d09;
  --panel:      #16110b;
  --panel-2:    #1d160e;
  --line:       rgba(244,237,226,.12);
  --line-soft:  rgba(244,237,226,.06);

  --orange:     #ff5a1f;
  --orange-lo:  #d8430f;
  --ember:      #b3360a;
  --amber:      #f6a623;
  --cream:      #f4ede2;
  --cream-dim:  #c9bdac;
  --muted:      #8a7e6f;

  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 72px);
  --r: 2px;

  --display: "Fraunces", Georgia, serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-font-smoothing:antialiased; overflow-x:clip; }
body{
  background:var(--ink);
  color:var(--cream);
  font-family:var(--body);
  font-size:clamp(15px,1.05vw,17px);
  line-height:1.6;
  overflow-x:hidden;
  cursor:none;
}
@media (hover:none){ body{ cursor:auto; } }

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
::selection{ background:var(--orange); color:var(--ink); }

/* ---- film grain + vignette atmosphere ---- */
body::before{
  content:""; position:fixed; inset:0; z-index:1; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  opacity:.05; mix-blend-mode:overlay;
}
body::after{
  content:""; position:fixed; inset:0; z-index:1; pointer-events:none;
  background:radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(0,0,0,.55) 100%);
}

/* ---- custom cursor: single orange dot ---- */
.cursor.dot{
  position:fixed; top:0; left:0; z-index:9999; pointer-events:none;
  width:12px; height:12px; margin:-6px 0 0 -6px; border-radius:50%;
  background:var(--orange); box-shadow:0 0 14px rgba(255,90,31,.55);
  transition:width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease), background .25s;
}
.cursor.dot.hov{ width:26px; height:26px; margin:-13px 0 0 -13px; background:rgba(255,90,31,.85); }
@media (hover:none){ .cursor{ display:none; } }

/* ---- layout ---- */
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding-inline:var(--gutter); }
.relativez{ position:relative; z-index:2; }
section{ position:relative; z-index:2; }

/* meta / eyebrow */
.kicker{
  font-family:var(--mono); font-size:.72rem; letter-spacing:.28em; text-transform:uppercase;
  color:var(--orange); display:inline-flex; align-items:center; gap:.7em;
}
.kicker::before{ content:""; width:26px; height:1px; background:var(--orange); display:inline-block; }
.num{ font-family:var(--mono); font-size:.72rem; letter-spacing:.2em; color:var(--muted); }

/* display headings */
h1,h2,h3{ font-family:var(--display); font-weight:400; line-height:.95; letter-spacing:-.02em; }
.serif-i{ font-style:italic; font-weight:300; }

/* buttons */
.btn{
  display:inline-flex; align-items:center; gap:.6em; cursor:none;
  font-family:var(--mono); font-size:.78rem; letter-spacing:.18em; text-transform:uppercase;
  padding:1.05em 1.7em; border:1px solid var(--line); border-radius:var(--r);
  color:var(--cream); background:transparent; transition:.4s var(--ease); position:relative; overflow:hidden;
}
.btn span{ position:relative; z-index:2; }
.btn::before{ content:""; position:absolute; inset:0; background:var(--orange); transform:translateY(101%); transition:transform .4s var(--ease); }
.btn:hover{ color:var(--ink); border-color:var(--orange); }
.btn:hover::before{ transform:translateY(0); }
.btn--solid{ background:var(--orange); color:var(--ink); border-color:var(--orange); }
.btn--solid::before{ background:var(--cream); }
.btn--lg{ font-size:.92rem; padding:1.35em 2.5em; letter-spacing:.2em; box-shadow:0 14px 40px rgba(255,90,31,.32); }
.btn--lg:hover{ box-shadow:0 18px 54px rgba(255,90,31,.45); }

/* ============================================================ NAV */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px var(--gutter); transition:.5s var(--ease);
  mix-blend-mode:normal;
}
.nav.scrolled{ background:rgba(11,10,8,.72); backdrop-filter:blur(14px); padding-block:14px; border-bottom:1px solid var(--line-soft); }
.brand{ font-family:var(--display); font-weight:600; font-size:1.18rem; letter-spacing:-.01em; line-height:1; display:inline-flex; align-items:center; gap:13px; }
.brand-mark{ height:34px; width:auto; flex:none; transition:transform .5s var(--ease); }
.brand:hover .brand-mark{ transform:translateY(-2px) rotate(-2deg); }
.nav.scrolled .brand-mark{ height:28px; }
.brand-txt{ line-height:1; }
@media(max-width:560px){ .brand-mark{ height:28px; } .brand small{ display:none; } }
.brand b{ color:var(--orange); font-weight:600; }
.brand small{ display:block; font-family:var(--mono); font-size:.52rem; letter-spacing:.3em; color:var(--muted); margin-top:5px; font-weight:400; }
.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{ font-family:var(--mono); font-size:.74rem; letter-spacing:.16em; text-transform:uppercase; color:var(--cream-dim); position:relative; cursor:none; }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px; background:var(--orange); transition:width .35s var(--ease); }
.nav-links a:hover{ color:var(--cream); } .nav-links a:hover::after{ width:100%; }
.nav-links .nav-book{ color:var(--orange); }
.burger{ display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:none; padding:6px; }
.burger span{ width:24px; height:1.5px; background:var(--cream); transition:.3s; }

/* ============================================================ HERO — layered print cluster */
.hero{ position:relative; min-height:100svh; display:flex; align-items:center; padding-top:96px; padding-bottom:clamp(30px,5vh,56px); overflow:hidden; }
.hero-stage{ position:relative; z-index:2; width:100%; text-align:center; }
.hero .kicker{ position:relative; z-index:5; }
.hero-title{ font-family:var(--display); font-size:clamp(4rem,15vw,15rem); line-height:.82; letter-spacing:-.025em; margin:clamp(14px,1.8vw,26px) 0 0; position:relative; z-index:5; pointer-events:none;
  text-shadow:0 2px 14px rgba(11,10,8,.92), 0 10px 34px rgba(11,10,8,.85), 0 18px 70px rgba(11,10,8,.7);
  /* splay the two words further apart so the walkers read through the middle (Antic-style lock-up) */
  display:flex; flex-direction:column; gap:clamp(.14em,1.4vw,.3em); width:min(98vw,1200px); margin-inline:auto; }
.hero-title .t1{ display:block; color:var(--cream); font-weight:500; align-self:flex-start; }
.hero-title .t2{ display:block; color:var(--orange); font-style:italic; font-weight:300; align-self:flex-end; }

/* the three world-walkers as the hero centerpiece (behind the headline) */
.hero-guys{
  position:absolute; left:50%; top:48%; z-index:2; transform:translate(-50%,-50%);
  width:min(82vw,860px); height:auto; pointer-events:none; opacity:.6;
  filter:drop-shadow(0 26px 70px rgba(0,0,0,.55)) drop-shadow(0 0 46px rgba(255,90,31,.16));
  will-change:translate,scale;
}
@media(max-width:880px){
  .hero-title{ width:100%; align-items:center; }
  .hero-title .t1,.hero-title .t2{ align-self:center; }
  .hero-guys{ width:min(88vw,520px); opacity:.52; }
}
.hero-title .dot{ color:var(--orange); -webkit-text-fill-color:var(--orange); }
.hero-lead2{ margin:clamp(22px,2.6vw,34px) auto 0; max-width:38ch; color:var(--cream-dim); font-size:1.06rem; position:relative; z-index:5; }
.hero .hero-cta{ display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-top:clamp(22px,2.4vw,32px); position:relative; z-index:5; }

/* animated photo-wall behind the centered headline */
.hero-wall{ position:absolute; inset:0; z-index:1; display:flex; gap:clamp(6px,.7vw,12px); justify-content:center; align-items:stretch; overflow:hidden; pointer-events:none; }
/* orange wash — keeps the photos readable, just warms them */
.hero-wall::before{ content:""; position:absolute; inset:-6% 0; z-index:2; pointer-events:none;
  background:linear-gradient(135deg, var(--ember) 0%, var(--orange) 50%, #2a1206 100%);
  mix-blend-mode:overlay; opacity:.32; }
.hero-wall::after{ content:""; position:absolute; inset:0; z-index:3;
  background:
    radial-gradient(76% 66% at 50% 46%, rgba(11,10,8,.58) 30%, rgba(11,10,8,.18) 64%, rgba(11,10,8,.62) 100%),
    linear-gradient(180deg, var(--ink) 0%, rgba(11,10,8,.1) 14%, rgba(11,10,8,.1) 86%, var(--ink) 100%); }
.wall-col{ flex:1 1 0; min-width:0; display:flex; flex-direction:column; gap:clamp(6px,.7vw,12px); will-change:transform; }
.wall-col.up{ animation:wallUp var(--dur,42s) linear infinite; }
.wall-col.down{ animation:wallDown var(--dur,48s) linear infinite; }
.wall-col img{ width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:var(--r);
  filter:grayscale(.4) contrast(1.06) brightness(.82) blur(1.5px);
  transform:scale(1.06) rotate(var(--ir,0deg)); }
@keyframes wallUp{ from{ transform:translateY(0) } to{ transform:translateY(-50%) } }
@keyframes wallDown{ from{ transform:translateY(-50%) } to{ transform:translateY(0) } }
@media(prefers-reduced-motion:reduce){ .wall-col{ animation:none !important; } }

.hero-vtext{ position:absolute; right:-6px; bottom:8%; transform:rotate(90deg); transform-origin:bottom right; font-family:var(--mono); font-size:.6rem; letter-spacing:.3em; text-transform:uppercase; color:var(--muted); z-index:5; white-space:nowrap; }

@media(max-width:880px){
  .hero-vtext{ display:none; }
  .hero-title{ font-size:clamp(3.6rem,18vw,6rem); }
}

/* world-walkers logo characters */
.walkers{ display:block; height:auto; }
.hero-walkers{ width:clamp(190px,23vw,320px); margin:clamp(20px,2.6vw,32px) 0 0; }
.walkers.bob{ animation:bob 3.6s ease-in-out infinite; transform-origin:center bottom; }
@keyframes bob{ 0%,100%{ transform:translateY(0) rotate(0deg) } 25%{ transform:translateY(-6px) rotate(-.6deg) } 75%{ transform:translateY(-6px) rotate(.6deg) } }
.foot-walkers{ width:clamp(150px,18vw,230px); margin:0 auto 30px; opacity:.9; }

/* marquee */
.marquee{ border-block:1px solid var(--line); padding:18px 0; overflow:hidden; white-space:nowrap; background:var(--ink-2); }
.marquee-track{ display:inline-flex; gap:48px; animation:marq 32s linear infinite; will-change:transform; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
.marquee span{ font-family:var(--display); font-style:italic; font-weight:300; font-size:clamp(1.4rem,3vw,2.4rem); color:var(--cream); opacity:.55; }
.marquee span::after{ content:"✷"; font-style:normal; color:var(--orange); margin-left:48px; font-size:.6em; vertical-align:middle; opacity:.9; }
@keyframes marq{ to{ transform:translateX(-50%); } }

/* ============================================================ SECTION HEAD */
.shead{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; padding-block:clamp(80px,9vw,140px) clamp(34px,4vw,56px); flex-wrap:wrap; }
.shead h2{ font-size:clamp(2.6rem,6vw,5.4rem); max-width:14ch; }
.shead .meta{ text-align:right; max-width:32ch; }
.shead .meta p{ color:var(--cream-dim); margin-top:14px; font-size:.98rem; }

/* ============================================================ WORK GRID (masonry via columns) */
.masonry{ columns:3; column-gap:clamp(10px,1.4vw,20px); }
@media(max-width:900px){ .masonry{ columns:2; } }
@media(max-width:380px){ .masonry{ columns:1; } }
.shot{ break-inside:avoid; margin-bottom:clamp(10px,1.4vw,20px); position:relative; overflow:hidden; border-radius:var(--r); background:var(--panel); cursor:none; }
.shot img{ width:100%; height:auto; transition:transform .9s var(--ease), filter .6s; filter:grayscale(.15) contrast(1.03); }
.shot::after{ content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(11,10,8,.7), transparent 50%); opacity:0; transition:.5s; }
.shot .cap{ position:absolute; left:14px; bottom:12px; z-index:2; font-family:var(--mono); font-size:.6rem; letter-spacing:.16em; text-transform:uppercase; color:var(--cream); transform:translateY(8px); opacity:0; transition:.5s var(--ease); }
.shot:hover img{ transform:scale(1.05); filter:grayscale(0) contrast(1.05) saturate(1.1); }
.shot:hover::after{ opacity:1; } .shot:hover .cap{ transform:none; opacity:1; }
.work-foot{ display:flex; justify-content:center; padding-top:clamp(40px,5vw,64px); }

/* ============================================================ THE WALL — merged work × roster */
.wall-scatter{ columns:3; column-gap:clamp(12px,1.5vw,20px); }
@media(max-width:900px){ .wall-scatter{ columns:2; } }
@media(max-width:380px){ .wall-scatter{ columns:1; } }
.tile{ break-inside:avoid; margin-bottom:clamp(12px,1.5vw,20px); border-radius:var(--r); transform:rotate(var(--rot,0deg)); transition:transform .5s var(--ease); cursor:none; position:relative; }
.tile:hover{ transform:rotate(0deg) scale(1.012); z-index:5; }

.tile.photo{ overflow:hidden; background:var(--panel); display:block; }
.tile.photo img{ width:100%; height:auto; display:block; filter:grayscale(.22) contrast(1.03); transition:transform .9s var(--ease), filter .6s; }
.tile.photo::after{ content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(11,10,8,.72),transparent 52%); opacity:0; transition:.5s; pointer-events:none; }
.tile.photo .cap{ position:absolute; left:12px; bottom:11px; z-index:2; font-family:var(--mono); font-size:.58rem; letter-spacing:.16em; text-transform:uppercase; color:var(--cream); opacity:0; transform:translateY(8px); transition:.5s var(--ease); }
.tile.photo:hover img{ transform:scale(1.05); filter:grayscale(0) saturate(1.08) contrast(1.05); }
.tile.photo:hover::after{ opacity:1; } .tile.photo:hover .cap{ opacity:1; transform:none; }

.tile.name{ display:flex; flex-direction:column; justify-content:space-between; gap:clamp(34px,6vw,64px); min-height:clamp(180px,22vw,260px); padding:clamp(18px,1.6vw,24px); background:var(--panel-2); border:1px solid var(--line); overflow:hidden; }
.tile.name > *{ position:relative; z-index:1; }
.tile.name::before{ content:""; position:absolute; inset:0; z-index:0; background:var(--orange); transform:translateY(101%); transition:transform .45s var(--ease); }
.tile.name:hover::before{ transform:translateY(0); }
.tile.name .t-num{ font-family:var(--mono); font-size:.7rem; letter-spacing:.2em; color:var(--muted); transition:color .4s; }
.tile.name .t-name{ font-family:var(--display); font-size:clamp(1.7rem,3.2vw,2.7rem); line-height:.98; color:var(--cream); transition:color .4s; }
.tile.name .t-name em{ color:var(--orange); font-style:normal; transition:color .4s; }
.tile.name .t-meta{ display:flex; justify-content:space-between; align-items:center; font-family:var(--mono); font-size:.66rem; letter-spacing:.14em; text-transform:uppercase; color:var(--cream-dim); transition:color .4s; }
.tile.name .t-meta i{ color:var(--orange); font-style:normal; transition:transform .4s var(--ease), color .4s; }
.tile.name:hover .t-num,.tile.name:hover .t-name,.tile.name:hover .t-name em,.tile.name:hover .t-meta{ color:var(--ink); }
.tile.name:hover .t-meta i{ color:var(--ink); transform:translate(5px,-5px); }

/* ============================================================ VIDEO */
.vids{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(12px,1.6vw,22px); }
@media(max-width:860px){ .vids{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:520px){ .vids{ grid-template-columns:1fr; } }
.vid{ position:relative; aspect-ratio:16/10; overflow:hidden; border-radius:var(--r); background:var(--panel); cursor:none; }
.vid img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); filter:grayscale(.2) brightness(.85); }
.vid:hover img{ transform:scale(1.06); filter:none; }
.vid .play{ position:absolute; inset:0; display:grid; place-items:center; }
.vid .play i{ width:60px; height:60px; border-radius:50%; border:1px solid var(--cream); display:grid; place-items:center; backdrop-filter:blur(4px); background:rgba(11,10,8,.25); transition:.4s var(--ease); }
.vid .play i::after{ content:""; border-left:13px solid var(--cream); border-top:8px solid transparent; border-bottom:8px solid transparent; margin-left:4px; transition:.4s; }
.vid:hover .play i{ background:var(--orange); border-color:var(--orange); transform:scale(1.08); }
.vid:hover .play i::after{ border-left-color:var(--ink); }
.vid .vlabel{ position:absolute; left:12px; bottom:10px; font-family:var(--mono); font-size:.6rem; letter-spacing:.14em; text-transform:uppercase; color:var(--cream); }

/* ============================================================ ABOUT */
.about{ display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(30px,5vw,80px); align-items:center; }
@media(max-width:820px){ .about{ grid-template-columns:1fr; } }
.about-portrait{ position:relative; aspect-ratio:4/5; overflow:hidden; border-radius:var(--r); }
.about-portrait img{ width:100%; height:100%; object-fit:cover; filter:grayscale(.1) contrast(1.05); scale:1.14; }
.about-portrait .corner{ position:absolute; bottom:-1px; left:-1px; width:60px; height:60px; border-bottom:2px solid var(--orange); border-left:2px solid var(--orange); }
.about-body h2{ font-size:clamp(2.2rem,5vw,4rem); margin-bottom:26px; }
.about-body p{ color:var(--cream-dim); margin-bottom:18px; max-width:56ch; }
.about-body p b{ color:var(--cream); font-weight:500; }
.roster{ margin-top:34px; padding-top:26px; border-top:1px solid var(--line); }
.roster .kicker{ margin-bottom:16px; }
.roster ul{ list-style:none; display:flex; flex-wrap:wrap; gap:8px 10px; }
.roster li{ font-family:var(--mono); font-size:.72rem; letter-spacing:.06em; color:var(--cream-dim); border:1px solid var(--line); padding:7px 12px; border-radius:40px; transition:.35s var(--ease); }
.roster li:hover{ color:var(--ink); background:var(--orange); border-color:var(--orange); }

/* ============================================================ CONTACT */
.contact{ padding-block:clamp(90px,11vw,180px); text-align:center; position:relative; }
.contact .big{ font-size:clamp(3rem,11vw,11rem); line-height:.9; }
.contact .big em{ color:var(--orange); }
.contact .lead{ color:var(--cream-dim); max-width:46ch; margin:26px auto 40px; }
.contact-links{ display:flex; gap:clamp(20px,4vw,54px); justify-content:center; flex-wrap:wrap; margin-top:48px; }
.clink{ text-align:left; }
.clink .k{ font-family:var(--mono); font-size:.62rem; letter-spacing:.22em; text-transform:uppercase; color:var(--muted); display:block; margin-bottom:7px; }
.clink .v{ font-family:var(--display); font-size:clamp(1.1rem,2.4vw,1.7rem); color:var(--cream); position:relative; cursor:none; }
.clink .v::after{ content:""; position:absolute; left:0; bottom:-4px; width:0; height:1px; background:var(--orange); transition:width .4s var(--ease); }
.clink:hover .v{ color:var(--orange); } .clink:hover .v::after{ width:100%; }

/* ============================================================ FOOTER */
footer{ border-top:1px solid var(--line); padding:40px 0; }
.foot-grid{ display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; }
.foot-grid .brand{ font-size:1rem; }
.foot-grid p{ font-family:var(--mono); font-size:.66rem; letter-spacing:.12em; color:var(--muted); text-transform:uppercase; }

/* ============================================================ LIGHTBOX */
.lb{ position:fixed; inset:0; z-index:200; background:rgba(7,6,5,.96); backdrop-filter:blur(10px); display:none; align-items:center; justify-content:center; padding:5vh 4vw; }
.lb.open{ display:flex; }
.lb img{ max-width:100%; max-height:90vh; object-fit:contain; border-radius:var(--r); box-shadow:0 40px 120px rgba(0,0,0,.7); }
.lb .x{ position:absolute; top:24px; right:30px; font-family:var(--mono); font-size:.8rem; letter-spacing:.14em; color:var(--cream-dim); text-transform:uppercase; cursor:none; }
.lb .x:hover{ color:var(--orange); }
.lb .arw{ position:absolute; top:50%; transform:translateY(-50%); font-family:var(--mono); color:var(--cream-dim); font-size:1.6rem; cursor:none; padding:20px; user-select:none; }
.lb .arw:hover{ color:var(--orange); } .lb .prev{ left:14px; } .lb .next{ right:14px; }
.lb .lcount{ position:absolute; bottom:22px; left:50%; transform:translateX(-50%); font-family:var(--mono); font-size:.7rem; letter-spacing:.2em; color:var(--muted); }

/* ============================================================ FILTER (work page) */
.filters{ display:flex; flex-wrap:wrap; gap:10px; padding-block:clamp(20px,3vw,30px); border-bottom:1px solid var(--line); }
.filters button{ font-family:var(--mono); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--cream-dim); background:none; border:1px solid var(--line); padding:9px 15px; border-radius:40px; cursor:none; transition:.35s var(--ease); }
.filters button:hover{ color:var(--cream); border-color:var(--cream-dim); }
.filters button.active{ background:var(--orange); color:var(--ink); border-color:var(--orange); }
.page-head{ padding-top:clamp(120px,16vh,180px); }
.page-head h1{ font-size:clamp(3rem,10vw,9rem); }
.page-head h1 em{ color:var(--orange); }
.page-head .kicker{ margin-bottom:22px; }

/* ---- reveal ---- */
.reveal{ opacity:0; transform:translateY(34px); transition:opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal[data-d="1"]{ transition-delay:.08s } .reveal[data-d="2"]{ transition-delay:.16s } .reveal[data-d="3"]{ transition-delay:.24s }

/* mobile nav */
@media(max-width:780px){
  .burger{ display:flex; position:relative; z-index:80; }   /* stays tappable above the overlay */
  /* full-screen slide-in menu. Explicit 100svh height (not inset:0) so the slide always
     clears the viewport even when .nav.scrolled's backdrop-filter makes nav the containing block. */
  .nav-links{ position:fixed; top:0; left:0; width:100vw; height:100svh; z-index:60;
    flex-direction:column; justify-content:center; align-items:center; gap:34px; background:var(--ink);
    transform:translateY(-100%); transition:transform .5s var(--ease); }
  .nav-links.open{ transform:translateY(0); }
  .nav-links a{ font-size:1.35rem; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-media{ display:none; }
  .shead{ flex-direction:column; align-items:flex-start; } .shead .meta{ text-align:left; }
}

/* ============================================================ PARALLAX / ABSTRACT LAYERS
   Scroll-driven depth. JS writes the independent translate/scale/rotate CSS
   properties (NOT `transform`), so these compose cleanly with the reveal +
   hover transforms already in use. Disabled under reduced-motion below. */
[data-par],[data-par-x],[data-par-rot],[data-mouse]{ will-change:translate; }

/* abstract ember glow that drifts with scroll + cursor behind the hero headline */
.hero-glow{
  position:absolute; left:50%; top:46%; z-index:1; pointer-events:none;
  width:min(86vw,760px); aspect-ratio:1; transform:translate(-50%,-50%); border-radius:50%;
  background:radial-gradient(circle, rgba(255,90,31,.26), rgba(255,90,31,.06) 42%, rgba(255,90,31,0) 68%);
  filter:blur(46px); mix-blend-mode:screen;
}

/* oversized italic wordmark drifting behind a section */
.ghost{
  position:absolute; left:50%; top:50%; z-index:0; pointer-events:none; user-select:none;
  transform:translate(-50%,-50%);                 /* centering — parallax uses `translate` prop, composes */
  font-family:var(--display); font-style:italic; font-weight:300;
  font-size:clamp(7rem,27vw,26rem); line-height:.78; letter-spacing:-.045em; white-space:nowrap;
  color:transparent; -webkit-text-stroke:1px rgba(244,237,226,.06);
}
#work{ overflow:clip; }
#work > :not(.ghost){ position:relative; z-index:1; }   /* keep the scatter wall above the ghost */

/* floating ember orb behind the contact headline */
.orb{
  position:absolute; left:50%; top:44%; z-index:0; pointer-events:none; border-radius:50%;
  width:min(125vw,1180px); aspect-ratio:1; transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(255,90,31,.20), rgba(255,90,31,0) 60%);
  filter:blur(34px); mix-blend-mode:screen;
}
.contact > :not(.orb){ position:relative; z-index:1; }     /* keep copy above the orb */

@media(prefers-reduced-motion:reduce){
  [data-par],[data-par-x],[data-par-rot],[data-mouse]{ translate:none !important; rotate:none !important; scale:none !important; }
  .hero-glow{ display:none; }
  .about-portrait img{ scale:1; }
}

/* ============================================================ MOBILE POLISH
   Compressed vertical rhythm — phones only (desktop untouched). */
@media(max-width:640px){
  /* HERO — calmer, shorter */
  .hero{ min-height:78svh; padding-top:100px; padding-bottom:26px; }
  .hero-title{ font-size:clamp(3.1rem,21vw,5rem); gap:.02em; }
  .hero-guys{ width:80vw; opacity:.38; }
  .hero-glow{ width:118vw; top:42%; }
  .hero .kicker{ font-size:.62rem; letter-spacing:.2em; }
  .hero-cta{ flex-direction:column; align-items:stretch; width:100%; max-width:340px; margin:22px auto 0; }
  .hero-cta .btn{ justify-content:center; }

  /* declutter the oversized decorative wordmark */
  .ghost{ display:none; }

  /* THE WALL — no skew, tighter gaps */
  .tile{ transform:none !important; margin-bottom:12px; }
  .wall-scatter{ column-gap:12px; }
  .tile.name{ min-height:140px; gap:24px; padding:16px; }

  /* tight section rhythm (was ~80px top per head) */
  .shead{ padding-block:34px 16px; }
  .shead h2{ max-width:none; }
  .work-foot{ padding-top:24px; }

  /* VIDEO — tighter */
  .vids{ gap:10px; }

  /* ABOUT — kill the big top gap (overrides inline padding) + tighten copy */
  #about{ padding-top:44px !important; }
  .about{ gap:24px; }
  .about-body h2{ margin-bottom:14px; }
  .about-body p{ margin-bottom:12px; }

  /* CONTACT — compact, headline never overflows */
  .contact{ padding-block:52px; }
  .contact .big{ font-size:clamp(2.7rem,15vw,4.2rem); overflow-wrap:break-word; }
  .contact .lead{ margin:16px auto 26px; }
  .contact-links{ gap:20px 28px; margin-top:30px; }

  /* prominent button, sized for thumbs */
  .btn--lg{ padding:1.1em 1.7em; font-size:.82rem; letter-spacing:.16em; }

  /* footer stacks cleanly + tighter */
  footer{ padding:28px 0; }
  .foot-grid{ flex-direction:column; align-items:flex-start; gap:12px; }

  /* keep decorative glow from poking past the viewport edge */
  .orb{ width:96vw; }
}
