/* Diagram Advertisement — production stylesheet */

:root{
  --bg:#0a0a0a;
  --fg:#f5f4f1;
  --accent:#EA1D2C;
  --accent-hover:#ff3b4e;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--fg);
  font-family:Archivo,sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:var(--accent);text-decoration:none}
a:hover{color:var(--accent-hover)}
button{font-family:Archivo,sans-serif}

.anton{font-family:Anton,sans-serif}

@keyframes dg-marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@keyframes dg-pulse{0%,100%{opacity:.5}50%{opacity:.9}}
@keyframes dg-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}

/* ---------- reveal-on-scroll ----------
   Elements are only hidden once JS confirms it can reveal them again
   (html.reveal-armed, set by an inline script in <head>). Without JS
   — or if it errors — content stays fully visible by default. */
.reveal-armed [data-reveal]{opacity:0;transform:translateY(28px);transition:opacity .75s cubic-bezier(.2,.7,.2,1),transform .75s cubic-bezier(.2,.7,.2,1)}
[data-reveal].is-visible{opacity:1;transform:none}

/* ---------- NAV ---------- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  display:flex;align-items:center;justify-content:space-between;
  padding:18px clamp(20px,5vw,64px);
  background:rgba(10,10,10,0.35);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(245,244,241,0.08);
  transition:background .4s ease;
}
.nav.scrolled{background:rgba(10,10,10,0.82)}
.nav-logo{display:flex;align-items:center;gap:12px}
.nav-badge{
  width:38px;height:38px;border-radius:50%;background:var(--accent);
  display:grid;place-items:center;box-shadow:0 6px 20px rgba(234,29,44,0.35);
  overflow:hidden;flex-shrink:0;
}
.nav-badge img{width:23px;height:23px;object-fit:contain}
.nav-wordmark{display:flex;flex-direction:column;line-height:1}
.nav-wordmark .top{font-size:21px;letter-spacing:.8px;color:var(--fg)}
.nav-wordmark .sub{font-size:8px;letter-spacing:3.2px;color:var(--accent);font-weight:800;margin-top:4px}
.nav-links{display:flex;align-items:center;gap:clamp(18px,3vw,40px)}
.nav-link{position:relative;font-size:14px;font-weight:600;letter-spacing:.3px;color:var(--fg);padding:6px 0}
.nav-link:hover{color:var(--fg)}
.nav-link.active::after{content:'';position:absolute;left:0;bottom:-2px;width:100%;height:2px;background:var(--accent)}
.btn-pill{
  display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:800;
  letter-spacing:.5px;text-transform:uppercase;color:var(--bg);background:var(--accent);
  padding:11px 20px;border-radius:100px;transition:transform .25s ease,box-shadow .25s ease;
}
.btn-pill:hover{color:var(--bg);transform:translateY(-2px);box-shadow:0 10px 26px rgba(234,29,44,0.45)}
.btn-pill.large{padding:16px 30px;font-size:14px}

.btn-outline{
  display:inline-flex;align-items:center;gap:10px;font-size:14px;font-weight:800;letter-spacing:.5px;
  text-transform:uppercase;color:var(--fg);border:1px solid rgba(245,244,241,0.25);padding:16px 30px;
  border-radius:100px;transition:.25s;
}
.btn-outline:hover{color:var(--fg);border-color:var(--fg);background:rgba(245,244,241,0.06)}

.nav-toggle{display:none;background:none;border:0;cursor:pointer;padding:8px;flex-direction:column;gap:5px}
.nav-toggle span{display:block;width:22px;height:2px;background:var(--fg);border-radius:1px;transition:transform .3s ease,opacity .3s ease}
.nav.menu-open .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav.menu-open .nav-toggle span:nth-child(2){opacity:0}
.nav.menu-open .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
@media (max-width: 640px){
  .nav-toggle{display:flex}
  .nav-links{
    position:absolute;top:100%;left:0;right:0;
    flex-direction:column;align-items:flex-start;gap:2px;
    padding:8px clamp(20px,5vw,64px) 22px;
    background:rgba(10,10,10,0.96);backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(245,244,241,0.08);
    display:none;
  }
  .nav.menu-open .nav-links{display:flex}
  .nav-links .nav-link{font-size:17px;padding:11px 0;width:100%}
  .nav-links .btn-pill{margin-top:10px}
}

/* ---------- HERO (home) ---------- */
.hero{
  position:relative;min-height:100vh;display:flex;align-items:center;
  padding:120px clamp(20px,5vw,64px) 60px;overflow:hidden;
}
.hero-glow{position:absolute;inset:0;background:radial-gradient(120% 90% at 80% 20%,rgba(234,29,44,0.16),transparent 55%);z-index:0}
.hero-img-wrap{
  position:absolute;top:16%;right:clamp(20px,6vw,90px);width:min(42vw,520px);aspect-ratio:1/1;
  border-radius:8px;overflow:hidden;z-index:1;animation:dg-float 7s ease-in-out infinite;
}
.hero-img-wrap img{width:100%;height:100%;object-fit:cover;filter:grayscale(1) contrast(1.05)}
.hero-img-tint{position:absolute;inset:0;background:linear-gradient(200deg,rgba(234,29,44,0.35),rgba(10,10,10,0.25));mix-blend-mode:multiply}
.hero-img-border{position:absolute;inset:0;border:1px solid rgba(245,244,241,0.12);border-radius:8px}
.hero-content{position:relative;z-index:2;max-width:1000px}
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;padding:8px 16px;border:1px solid rgba(245,244,241,0.18);
  border-radius:100px;font-size:12px;letter-spacing:2.5px;font-weight:700;margin-bottom:30px;
}
.eyebrow-dot{width:7px;height:7px;border-radius:50%;background:var(--accent);animation:dg-pulse 2s infinite}
.hero h1{font-size:clamp(52px,10.5vw,150px);line-height:.86;letter-spacing:-1px;text-transform:uppercase}
.hero-line{display:block;overflow:hidden}
.hero-line > span{display:block;transform:translateY(105%);transition:transform .9s cubic-bezier(.2,.8,.2,1)}
.hero p.lede{max-width:560px;margin:30px 0 40px;font-size:clamp(16px,1.7vw,20px);line-height:1.55;color:rgba(245,244,241,0.72);font-weight:500}
.hero-ctas{display:flex;flex-wrap:wrap;gap:16px}

.page-hero{padding:clamp(130px,15vw,190px) clamp(20px,5vw,64px) clamp(30px,5vw,60px);max-width:1240px;margin:0 auto}
.page-hero .kicker{font-size:12px;letter-spacing:4px;color:var(--accent);font-weight:800;margin-bottom:22px}
.page-hero h1{font-size:clamp(48px,10vw,140px);line-height:.84;letter-spacing:-1px;text-transform:uppercase}
.page-hero p.lede{max-width:600px;margin-top:28px;font-size:clamp(16px,1.6vw,19px);line-height:1.6;color:rgba(245,244,241,0.72);font-weight:500}

/* ---------- MARQUEE ---------- */
.marquee{
  border-top:1px solid rgba(245,244,241,0.1);border-bottom:1px solid rgba(245,244,241,0.1);
  background:var(--accent);padding:16px 0;overflow:hidden;white-space:nowrap;
}
.marquee-track{display:inline-flex;animation:dg-marquee 34s linear infinite;will-change:transform}
.marquee-track span{font-size:26px;color:var(--bg);letter-spacing:.5px;text-transform:uppercase}

/* ---------- SECTION SHARED ---------- */
.section{padding:clamp(72px,11vw,150px) clamp(20px,5vw,64px);max-width:1280px;margin:0 auto}
.section-tag{display:flex;align-items:center;gap:14px;margin-bottom:34px}
.section-tag .bar{width:44px;height:2px;background:var(--accent)}
.section-tag .label{font-size:12px;letter-spacing:4px;color:var(--accent);font-weight:800}
.section h2{font-size:clamp(32px,5.6vw,84px);line-height:1;letter-spacing:-1px;text-transform:uppercase}

/* WHO WE ARE */
.who-section{position:relative;overflow:hidden}
.who-watermark{
  position:absolute;top:clamp(40px,7vw,90px);right:clamp(-10px,2vw,40px);
  font-size:clamp(90px,17vw,240px);line-height:.8;color:rgba(245,244,241,0.04);
  pointer-events:none;user-select:none;letter-spacing:-4px;
}
.who-copy{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:clamp(24px,4vw,60px);margin-top:clamp(34px,4vw,52px);max-width:940px}
.who-copy p{font-size:16.5px;line-height:1.66;color:rgba(245,244,241,0.72);font-weight:500}
.stats{display:flex;flex-wrap:wrap;margin-top:clamp(46px,6vw,84px);border-top:1px solid rgba(245,244,241,0.16)}
.stat{flex:1 1 150px;padding:30px 30px 8px 0}
.stat .bar{display:block;width:26px;height:3px;background:var(--accent);margin-bottom:18px}
.stat .num{font-size:clamp(40px,5.4vw,72px);line-height:.9}
.stat .lbl{font-size:13.5px;color:rgba(245,244,241,0.6);font-weight:600;margin-top:12px}

/* SERVICES FILMSTRIP (home) */
.services-head{
  max-width:1280px;margin:0 auto;padding:0 clamp(20px,5vw,64px);display:flex;flex-wrap:wrap;
  justify-content:space-between;align-items:flex-end;gap:20px;margin-bottom:clamp(30px,4vw,48px);
}
.services-head h2{font-size:clamp(34px,5vw,68px);line-height:.94;letter-spacing:-.5px;text-transform:uppercase}
.link-underline{font-size:14px;font-weight:800;letter-spacing:.5px;text-transform:uppercase;border-bottom:2px solid var(--accent);padding-bottom:4px;color:var(--fg)}
.link-underline:hover{color:var(--fg)}

.filmstrip{display:flex;gap:20px;overflow-x:auto;padding:6px clamp(20px,5vw,64px) 22px;scroll-snap-type:x mandatory;scroll-padding-inline:clamp(20px,5vw,64px);scrollbar-width:none;cursor:grab}
.filmstrip::-webkit-scrollbar{display:none}
.filmstrip.dragging{cursor:grabbing}
.filmstrip-card{scroll-snap-align:start;flex:0 0 clamp(250px,30vw,330px);text-decoration:none;color:var(--fg)}
.filmstrip-card .thumb{position:relative;aspect-ratio:4/5;border-radius:14px;overflow:hidden;background:#161616;border:1px solid rgba(245,244,241,0.08)}
.filmstrip-card img{width:100%;height:100%;object-fit:cover;filter:grayscale(.45);transition:transform .6s cubic-bezier(.2,.7,.2,1),filter .5s ease}
.filmstrip-card:hover img{transform:scale(1.05);filter:grayscale(0)}
.filmstrip-card .rot-img{position:absolute;inset:0;opacity:0;transition:opacity .9s ease,filter .5s ease}
.filmstrip-card .rot-img.show{opacity:1}
.thumb-fade{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,10,10,0.9),rgba(10,10,10,0.05) 55%)}
.thumb-num{position:absolute;top:16px;left:16px;font-size:14px;color:var(--accent);background:rgba(10,10,10,0.55);border:1px solid rgba(245,244,241,0.18);width:36px;height:36px;border-radius:50%;display:grid;place-items:center}
.thumb-info{position:absolute;left:20px;right:20px;bottom:20px}
.thumb-info .t{font-size:23px;text-transform:uppercase;line-height:1}
.thumb-info .s{font-size:13px;color:rgba(245,244,241,0.62);font-weight:500;margin-top:7px}
.drag-hint{font-size:11px;letter-spacing:2px;color:rgba(245,244,241,0.38);font-weight:700}
.strip-nav{max-width:1280px;margin:0 auto;padding:6px clamp(20px,5vw,64px) 0;display:flex;justify-content:space-between;align-items:center;gap:20px}
.strip-arrows{display:flex;gap:10px}
.strip-arrow{width:42px;height:42px;border-radius:50%;border:1px solid rgba(245,244,241,0.22);background:transparent;color:var(--fg);font-size:18px;line-height:1;cursor:pointer;display:grid;place-items:center;transition:background .25s,border-color .25s,opacity .25s}
.strip-arrow:hover{background:var(--accent);border-color:var(--accent)}
.strip-arrow:disabled{opacity:.3;cursor:default;background:transparent;border-color:rgba(245,244,241,0.22)}

/* WORK PREVIEW (light section on home) */
.work-preview{padding:clamp(70px,10vw,130px) clamp(20px,5vw,64px);background:var(--fg);color:var(--bg)}
.work-preview .inner{max-width:1240px;margin:0 auto}
.work-preview-head{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-end;gap:20px;margin-bottom:48px}
.work-preview-head h2{font-size:clamp(34px,5vw,68px);line-height:.94;letter-spacing:-.5px;color:var(--bg)}
.work-preview .link-underline{color:var(--bg)}
.work-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
.work-card{display:block;text-decoration:none;color:var(--bg)}
.work-card .thumb{position:relative;aspect-ratio:4/3;border-radius:10px;overflow:hidden;background:#e2e0db}
.work-card img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.2,.7,.2,1)}
.work-card:hover img{transform:scale(1.06)}
.work-tag{position:absolute;top:14px;left:14px;background:var(--accent);color:var(--bg);font-size:11px;font-weight:800;letter-spacing:1px;text-transform:uppercase;padding:6px 12px;border-radius:100px}
.work-card .t{font-size:24px;text-transform:uppercase;margin-top:16px}
.work-card .s{font-size:14px;color:rgba(10,10,10,0.55);font-weight:600;margin-top:2px}

/* CLIENTS */
.clients{padding:clamp(56px,8vw,100px) clamp(20px,5vw,64px);border-bottom:1px solid rgba(245,244,241,0.08)}
.clients .inner{max-width:1240px;margin:0 auto;text-align:center}
.clients .label{font-size:12px;letter-spacing:4px;color:var(--accent);font-weight:800;margin-bottom:34px}
.clients-row{display:flex;flex-wrap:wrap;justify-content:center;gap:clamp(24px,5vw,64px);align-items:center}
.clients-row span{font-size:clamp(20px,2.4vw,30px);color:rgba(245,244,241,0.4);letter-spacing:.5px;text-transform:uppercase;transition:color .3s}
.clients-row span:hover{color:var(--fg)}
.clients-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:clamp(12px,1.5vw,20px)}
.client-logo{background:#fff;border-radius:12px;padding:18px;display:flex;align-items:center;justify-content:center;aspect-ratio:4/3;filter:grayscale(1);opacity:.75;transition:filter .3s,opacity .3s,transform .3s}
.client-logo:hover{filter:grayscale(0);opacity:1;transform:translateY(-3px)}
.client-logo img{max-width:100%;max-height:100%;object-fit:contain}

/* FOOTER */
.footer{background:var(--bg);color:var(--fg);padding:clamp(56px,8vw,110px) clamp(20px,5vw,64px) 40px;border-top:1px solid rgba(245,244,241,0.08);position:relative;overflow:hidden}
.footer-watermark{position:absolute;right:-6vw;bottom:-4vw;font-size:clamp(140px,26vw,420px);line-height:.8;color:rgba(234,29,44,0.05);pointer-events:none;user-select:none;letter-spacing:-6px}
.footer-inner{position:relative;max-width:1240px;margin:0 auto}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:48px 40px}
.footer-cta{grid-column:1/-1;max-width:640px}
.footer-cta .label{font-size:12px;letter-spacing:4px;color:var(--accent);font-weight:800;margin-bottom:18px}
.footer-cta h2{font-size:clamp(38px,6vw,76px);line-height:.94;margin:0 0 26px;letter-spacing:-.5px}
.footer-col .label{font-size:11px;letter-spacing:2.5px;color:rgba(245,244,241,0.4);font-weight:700;margin-bottom:16px}
.footer-col{display:flex;flex-direction:column;gap:11px;font-size:15px;font-weight:500}
.footer-col a{color:var(--fg);opacity:.82;transition:.2s}
.footer-col a:hover{opacity:1;color:var(--accent)}
.footer-col span{opacity:.82}
.footer-bottom{margin-top:64px;padding-top:26px;border-top:1px solid rgba(245,244,241,0.09);display:flex;flex-wrap:wrap;gap:14px;justify-content:space-between;align-items:center;font-size:12.5px;color:rgba(245,244,241,0.45)}

/* ---------- ABOUT ---------- */
.story{max-width:1240px;margin:0 auto;padding:0 clamp(20px,5vw,64px) clamp(60px,9vw,120px)}
.story-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:clamp(36px,6vw,80px);align-items:start}
.story-grid h2{font-size:clamp(28px,3.4vw,46px);line-height:1;letter-spacing:-.5px;margin-bottom:24px}
.story-grid p{font-size:17px;line-height:1.66;color:rgba(245,244,241,0.74);font-weight:500}
.story-copy{display:flex;flex-direction:column;gap:18px}

.values{background:var(--accent);color:var(--bg);padding:clamp(60px,9vw,120px) clamp(20px,5vw,64px)}
.values .inner{max-width:1240px;margin:0 auto}
.values h2{font-size:clamp(30px,4.6vw,64px);line-height:.95;text-transform:uppercase;margin-bottom:50px}
.values-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1px;background:rgba(10,10,10,0.15);border:1px solid rgba(10,10,10,0.15)}
.value-card{background:var(--accent);padding:34px 26px;min-height:230px;display:flex;flex-direction:column}
.value-card .num{font-size:34px}
.value-card .t{font-size:22px;text-transform:uppercase;margin:16px 0 12px;line-height:1}
.value-card .d{font-size:14.5px;line-height:1.5;font-weight:600;color:rgba(10,10,10,0.78)}

.timeline{max-width:1100px;margin:0 auto;padding:clamp(70px,10vw,130px) clamp(20px,5vw,64px)}
.timeline > .label{font-size:12px;letter-spacing:4px;color:var(--accent);font-weight:800;margin-bottom:40px;text-align:center}
.timeline-item{display:grid;grid-template-columns:140px 1fr;gap:28px;padding:28px 0;border-bottom:1px solid rgba(245,244,241,0.12);align-items:baseline}
.timeline-item .year{font-size:clamp(30px,3.4vw,44px);color:var(--accent)}
.timeline-item .t{font-size:clamp(20px,2.2vw,26px);text-transform:uppercase;margin-bottom:8px}
.timeline-item .d{font-size:15.5px;line-height:1.55;color:rgba(245,244,241,0.68);font-weight:500}

.team{max-width:1240px;margin:0 auto;padding:0 clamp(20px,5vw,64px) clamp(70px,10vw,130px)}
.team-head{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-end;gap:20px;margin-bottom:44px}
.team-head h2{font-size:clamp(34px,5vw,66px);line-height:.94;letter-spacing:-.5px}
.team-head p{max-width:360px;font-size:15.5px;line-height:1.55;color:rgba(245,244,241,0.65);font-weight:500}
.team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:22px}
.team-photo{
  aspect-ratio:3/4;border-radius:12px;border:1px solid rgba(245,244,241,0.1);display:grid;place-items:center;
  position:relative;overflow:hidden;
  background-image:repeating-linear-gradient(45deg,rgba(245,244,241,0.05) 0 10px,rgba(245,244,241,0.02) 10px 20px);
}
.team-photo span{font-family:'SF Mono',ui-monospace,monospace;font-size:11px;letter-spacing:1px;color:rgba(245,244,241,0.4);text-align:center;padding:0 20px}
.team-card .name{font-size:22px;text-transform:uppercase;margin-top:14px}
.team-card .title{font-size:14px;color:var(--accent);font-weight:700;margin-top:2px}

/* ---------- PORTFOLIO ---------- */
.filters{max-width:1240px;margin:0 auto;padding:0 clamp(20px,5vw,64px);display:flex;flex-wrap:wrap;gap:12px;margin-bottom:40px}
.filter-btn{cursor:pointer;font-size:13px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;padding:11px 20px;border-radius:100px;border:1px solid rgba(245,244,241,0.2);background:transparent;color:var(--fg);transition:.2s}
.filter-btn.active{background:var(--accent);color:var(--bg);border-color:var(--accent)}
.portfolio-grid{max-width:1240px;margin:0 auto;padding:0 clamp(20px,5vw,64px) clamp(70px,10vw,130px)}
.portfolio-grid .grid{display:grid;grid-template-columns:repeat(12,1fr);gap:22px}
.portfolio-card{display:block;color:var(--fg);text-decoration:none;background:none;border:0;padding:0;margin:0;text-align:left;font:inherit;cursor:pointer;width:100%}
.portfolio-card .thumb{position:relative;border-radius:12px;overflow:hidden;background:#161616;border:1px solid rgba(245,244,241,0.08)}
.portfolio-card img{width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.2,.7,.2,1)}
.portfolio-card:hover img{transform:scale(1.05)}
.thumb-shade{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,10,10,0.78) 0%,transparent 45%)}
.portfolio-card .cat{position:absolute;top:16px;left:16px;background:var(--accent);color:var(--bg);font-size:11px;font-weight:800;letter-spacing:1px;text-transform:uppercase;padding:6px 12px;border-radius:100px}
.portfolio-card .info{position:absolute;left:20px;right:20px;bottom:20px}
.portfolio-card .info .t{font-size:clamp(22px,2.4vw,30px);text-transform:uppercase;line-height:.98}
.portfolio-card .info .s{font-size:14px;color:rgba(245,244,241,0.72);font-weight:600;margin-top:4px}
@media (max-width:820px){ .portfolio-grid .grid{grid-template-columns:1fr} .portfolio-card{grid-column:span 1 !important} }

/* Lightbox */
.lightbox{position:fixed;inset:0;z-index:2000;background:rgba(10,10,10,0.94);backdrop-filter:blur(10px);display:flex;align-items:center;justify-content:center;gap:clamp(10px,2vw,28px);padding:clamp(16px,3vw,40px)}
.lightbox[hidden]{display:none}
.lb-figure{margin:0;max-width:min(1100px,84vw);display:flex;flex-direction:column;align-items:center;gap:18px}
.lb-img{max-width:100%;max-height:76vh;object-fit:contain;border-radius:10px;border:1px solid rgba(245,244,241,0.12)}
.lb-caption{display:flex;align-items:baseline;gap:14px;flex-wrap:wrap;justify-content:center}
.lb-cat{background:var(--accent);color:var(--bg);font-size:11px;font-weight:800;letter-spacing:1px;text-transform:uppercase;padding:5px 12px;border-radius:100px}
.lb-title{font-size:clamp(18px,2.2vw,26px);text-transform:uppercase;color:var(--fg)}
.lb-sub{font-size:14px;color:rgba(245,244,241,0.6);font-weight:600}
.lb-btn{width:46px;height:46px;border-radius:50%;border:1px solid rgba(245,244,241,0.25);background:rgba(10,10,10,0.5);color:var(--fg);font-size:20px;line-height:1;cursor:pointer;display:grid;place-items:center;flex-shrink:0;transition:background .25s,border-color .25s}
.lb-btn:hover{background:var(--accent);border-color:var(--accent)}
.lb-close{position:absolute;top:clamp(14px,2.5vw,28px);right:clamp(14px,2.5vw,28px);font-size:26px}
@media (max-width:640px){
  .lightbox{gap:8px;padding:12px}
  .lb-prev{position:absolute;left:10px;bottom:14px}
  .lb-next{position:absolute;right:10px;bottom:14px}
  .lb-img{max-height:66vh}
}

/* ---------- SERVICES ---------- */
.svc-section{max-width:1240px;margin:0 auto;padding:clamp(20px,3vw,40px) clamp(20px,5vw,64px) clamp(70px,10vw,130px)}
.svc-layout{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(30px,5vw,70px);align-items:start}
.svc-list{border-top:1px solid rgba(245,244,241,0.14)}
.svc-row{cursor:pointer;display:flex;align-items:center;gap:20px;padding:22px 6px;border-bottom:1px solid rgba(245,244,241,0.14);transition:padding-left .3s,background .3s;background:transparent}
.svc-row.active{background:rgba(234,29,44,0.06);padding-left:18px}
.svc-row .num{font-size:15px;color:var(--accent);min-width:34px}
.svc-row .title{font-size:clamp(22px,3vw,38px);text-transform:uppercase;letter-spacing:.3px;line-height:.95;color:rgba(245,244,241,0.55);transition:color .3s}
.svc-row.active .title{color:var(--fg)}
.svc-row .arrow{margin-left:auto;font-size:20px;color:rgba(245,244,241,0.2);transition:.3s}
.svc-row.active .arrow{color:var(--accent)}
.svc-panel{position:sticky;top:100px}
.svc-panel .thumb{position:relative;aspect-ratio:4/3;border-radius:14px;overflow:hidden;background:#161616;border:1px solid rgba(245,244,241,0.1)}
.svc-panel img{width:100%;height:100%;object-fit:cover;transition:opacity .26s ease}
.svc-panel .thumb-fade{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,10,10,0.6),transparent 55%)}
.svc-panel-body{margin-top:22px}
.svc-panel-body .t{font-size:clamp(24px,2.6vw,34px);text-transform:uppercase;letter-spacing:.3px;color:var(--accent);margin-bottom:12px}
.svc-panel-body p{font-size:16px;line-height:1.62;color:rgba(245,244,241,0.75);font-weight:500}
@media (max-width:860px){
  .svc-layout{grid-template-columns:1fr}
  .svc-panel{position:static;margin:18px 0 26px}
  .svc-panel .thumb{aspect-ratio:16/10}
  .svc-panel-body{margin-top:16px}
}

.cta-box{margin-top:clamp(50px,8vw,90px);border:1px solid rgba(245,244,241,0.12);border-radius:16px;padding:clamp(32px,5vw,56px);background:radial-gradient(120% 140% at 100% 0%,rgba(234,29,44,0.14),transparent 60%)}
.cta-box-inner{display:flex;flex-wrap:wrap;gap:24px;justify-content:space-between;align-items:center}
.cta-box h3{font-size:clamp(28px,3.6vw,48px);text-transform:uppercase;line-height:.95}
.cta-box p{font-size:16px;color:rgba(245,244,241,0.7);font-weight:500;margin-top:10px;max-width:520px}

/* ---------- CONTACT ---------- */
input,select,textarea{font-family:Archivo,sans-serif;width:100%;background:transparent;border:none;border-bottom:1px solid rgba(245,244,241,0.2);color:var(--fg);font-size:16px;font-weight:500;padding:14px 2px;outline:none;transition:border-color .25s}
input:focus,select:focus,textarea:focus{border-color:var(--accent)}
input::placeholder,textarea::placeholder{color:rgba(245,244,241,0.35)}
select option{background:#141414;color:var(--fg)}
label{font-size:11px;letter-spacing:2px;font-weight:700;color:rgba(245,244,241,0.5);text-transform:uppercase;display:block;margin-bottom:6px}
.field{display:flex;flex-direction:column;gap:6px}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:22px}
@media (max-width:480px){ .field-row{grid-template-columns:1fr} }

.contact-section{max-width:1240px;margin:0 auto;padding:0 clamp(20px,5vw,64px) clamp(70px,10vw,130px)}
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(40px,6vw,90px);align-items:start}
@media (max-width:820px){ .contact-grid{grid-template-columns:1fr} }
.contact-details{display:flex;flex-direction:column;gap:34px}
.contact-details p.lede{font-size:18px;line-height:1.6;color:rgba(245,244,241,0.78);font-weight:500}
.contact-block .label{font-size:11px;letter-spacing:2.5px;color:rgba(245,244,241,0.4);font-weight:700;margin-bottom:14px}
.contact-block .phones{display:flex;flex-direction:column;gap:8px;font-size:24px}
.contact-block .phones a{color:var(--fg)}
.contact-block .phones a:hover{color:var(--accent)}
.contact-block .email{font-size:22px;color:var(--accent)}
.contact-block .addr{font-size:16px;line-height:1.6;color:rgba(245,244,241,0.78);font-weight:500}

.contact-form-wrap{border:1px solid rgba(245,244,241,0.12);border-radius:16px;padding:clamp(28px,4vw,48px);background:radial-gradient(120% 100% at 100% 0%,rgba(234,29,44,0.1),transparent 55%)}
.contact-form{display:flex;flex-direction:column;gap:26px}
.contact-form button[type="submit"]{cursor:pointer;align-self:flex-start;font-size:14px;font-weight:800;letter-spacing:.5px;text-transform:uppercase;color:var(--bg);background:var(--accent);padding:16px 32px;border:none;border-radius:100px;transition:transform .25s,box-shadow .25s}
.contact-form button[type="submit"]:hover{transform:translateY(-2px);box-shadow:0 14px 34px rgba(234,29,44,0.45)}
.contact-form button[type="submit"]:disabled{opacity:.6;cursor:not-allowed;transform:none;box-shadow:none}

.thanks{min-height:420px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;gap:18px}
.thanks-check{width:64px;height:64px;border-radius:50%;background:var(--accent);display:grid;place-items:center;font-size:32px;color:var(--bg)}
.thanks h2{font-size:clamp(30px,4vw,52px);text-transform:uppercase;line-height:.95}
.thanks p{font-size:16px;color:rgba(245,244,241,0.7);font-weight:500;max-width:420px}
.thanks button{cursor:pointer;margin-top:8px;font-size:13px;font-weight:800;letter-spacing:.5px;text-transform:uppercase;color:var(--fg);border:1px solid rgba(245,244,241,0.25);background:transparent;padding:13px 26px;border-radius:100px}
.form-error{font-size:13px;color:#ff6b6b;font-weight:600;margin-top:-14px}

.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.skip-link{position:absolute;left:-9999px;top:0;background:var(--accent);color:var(--bg);padding:12px 20px;z-index:2000;font-weight:800;text-transform:uppercase;font-size:13px;border-radius:0 0 8px 0}
.skip-link:focus{left:0}

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.whatsapp-fab{
  position:fixed;right:clamp(18px,4vw,32px);bottom:clamp(18px,4vw,32px);z-index:999;
  width:58px;height:58px;border-radius:50%;
  background:var(--accent);color:var(--bg);
  display:grid;place-items:center;
  box-shadow:0 10px 30px rgba(234,29,44,0.45);
  transition:transform .25s ease,box-shadow .25s ease;
}
.whatsapp-fab:hover{transform:translateY(-3px) scale(1.05);box-shadow:0 16px 40px rgba(234,29,44,0.55);color:var(--bg)}
.whatsapp-fab svg{width:30px;height:30px;display:block}
.whatsapp-fab svg path{fill:var(--fg)}
.whatsapp-fab::before{
  content:'';position:absolute;inset:-6px;border-radius:50%;border:2px solid var(--accent);
  opacity:.6;animation:wa-pulse 2.4s ease-out infinite;pointer-events:none;
}
@keyframes wa-pulse{0%{transform:scale(.9);opacity:.6}100%{transform:scale(1.35);opacity:0}}
@media (prefers-reduced-motion: reduce){ .whatsapp-fab::before{animation:none;display:none} }
@media (max-width:480px){ .whatsapp-fab{width:52px;height:52px} .whatsapp-fab svg{width:26px;height:26px} }

/* ===========================================================================
   MOTION POLISH
   Appended pass — overrides the rules above by source order, so the original
   declarations stay readable in place. Principles: animate only transform and
   opacity, never `transition: <time>` on its own (that is `all`), ease-out for
   anything entering, press feedback on everything pressable, and no hover
   effects on touch.
   =========================================================================== */

:root{
  --ease-out:cubic-bezier(.23,1,.32,1);
  --ease-in-out:cubic-bezier(.77,0,.175,1);
  /* Gentle overshoot — bounce stays subtle, reserved for one-shot moments. */
  --ease-back:cubic-bezier(.34,1.35,.64,1);
  --dur-press:.14s;
  --dur-fast:.2s;
  --dur-base:.26s;
  --dur-slow:.4s;
}

/* --- Pin bare shorthands to explicit properties --------------------------- */
/* `transition:.25s` animates every animatable property, layout ones included. */
.btn-pill{transition:transform .2s var(--ease-out),box-shadow .2s var(--ease-out)}
.btn-outline{transition:transform .2s var(--ease-out),border-color .2s ease,background-color .2s ease,color .2s ease}
.filter-btn{transition:transform .2s var(--ease-out),background-color .2s ease,border-color .2s ease,color .2s ease}
.footer-col a{transition:color .2s ease,opacity .2s ease}
.svc-row .arrow{transition:color .3s ease,transform .3s var(--ease-out)}
.svc-row{transition:padding-left .3s var(--ease-out),background-color .3s ease}
.nav-link{transition:color .2s ease}

/* --- Press feedback ------------------------------------------------------- */
/* Instant confirmation that the interface heard the press. */
.btn-pill:active,
.btn-outline:active,
.filter-btn:active,
.portfolio-card:active,
.filmstrip-card:active{transform:scale(.97)}
.btn-pill.large:active{transform:scale(.98)}
.nav-toggle:active span{opacity:.6}

/* --- Hover only where a real pointer exists ------------------------------- */
@media (hover:hover) and (pointer:fine){
  .svc-row:hover .arrow{transform:translateX(4px)}
  .footer-col a:hover{opacity:1}
}

/* A tap on touch latches :hover on, leaving cards stuck mid-zoom. */
@media (hover:none){
  .btn-pill:hover{transform:none;box-shadow:none}
  .portfolio-card:hover img,
  .filmstrip-card:hover img,
  .team-card:hover img{transform:none}
}

/* --- Hero entrance stagger ------------------------------------------------ */
/* 60ms apart: the eye reads it as one cascade, not four separate arrivals. */
.hero-content .lede[data-reveal]{transition-delay:60ms}
.hero-content .hero-ctas[data-reveal]{transition-delay:120ms}
.hero-liquid-hint{
  opacity:0;
  animation:dg-hint-in .8s var(--ease-out) .9s forwards;
}
@keyframes dg-hint-in{to{opacity:1}}

/* --- Reduced motion ------------------------------------------------------- */
/* Fewer and gentler, not zero: opacity still carries the meaning. */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.15s !important;
    scroll-behavior:auto !important;
  }
  .hero-line > span{transform:none !important}
  [data-reveal]{transform:none !important}
  .btn-pill:hover,.portfolio-card:hover img,.filmstrip-card:hover img{transform:none}
}

/* ===========================================================================
   STATE BRIDGES
   Second pass. Everything above is corrective — this block is additive, and
   only covers places where state changed by teleporting: an element went from
   absent to present with nothing in between.

   All of it is CSS-only. `transition-behavior:allow-discrete` lets `display`
   participate in a transition, and `@starting-style` supplies the "before"
   frame, so the existing `hidden` toggles in JS keep working untouched. In
   browsers without support the result is exactly today's behaviour: instant.
   =========================================================================== */

/* --- Lightbox (portfolio) ------------------------------------------------- */
/* Backdrop fades; the figure scales from .96 — never from 0, nothing in the
   real world appears out of nothing. Origin stays centre: it is a modal, not
   a popover, so it is not anchored to any trigger. */
.lightbox{
  opacity:1;
  transition:opacity var(--dur-fast) ease,display var(--dur-fast) allow-discrete;
}
.lightbox[hidden]{opacity:0}
@starting-style{
  .lightbox:not([hidden]){opacity:0}
}

.lb-figure{
  opacity:1;transform:scale(1);
  transition:opacity var(--dur-base) var(--ease-out),transform var(--dur-base) var(--ease-out);
}
.lightbox[hidden] .lb-figure{opacity:0;transform:scale(.96)}
@starting-style{
  .lightbox:not([hidden]) .lb-figure{opacity:0;transform:scale(.96)}
}

/* --- Mobile menu ---------------------------------------------------------- */
/* Was a bare display:none <-> flex swap, the harshest change on the site. */
@media (max-width:640px){
  .nav-links{
    opacity:0;transform:translateY(-8px);
    transition:opacity .22s var(--ease-out),transform .22s var(--ease-out),display .22s allow-discrete;
  }
  .nav.menu-open .nav-links{opacity:1;transform:translateY(0)}
  @starting-style{
    .nav.menu-open .nav-links{opacity:0;transform:translateY(-8px)}
  }
}

/* --- Contact success ------------------------------------------------------ */
/* Seen once, if ever — the only place on this site with a delight budget. */
.thanks:not([hidden]){animation:dg-thanks-in var(--dur-slow) var(--ease-out) both}
.thanks:not([hidden]) .thanks-check{animation:dg-check-in .42s var(--ease-back) .09s both}
@keyframes dg-thanks-in{from{opacity:0;transform:translateY(10px)}}
@keyframes dg-check-in{from{opacity:0;transform:scale(.8)}}

/* --- Filtered grid stagger ------------------------------------------------ */
/* Cards already reveal; they just all arrive on the same frame. 40ms apart
   reads as one cascade. Capped at 8 so a 20-result filter never crawls. */
.portfolio-grid .grid > [data-reveal]:nth-child(2){transition-delay:40ms}
.portfolio-grid .grid > [data-reveal]:nth-child(3){transition-delay:80ms}
.portfolio-grid .grid > [data-reveal]:nth-child(4){transition-delay:120ms}
.portfolio-grid .grid > [data-reveal]:nth-child(5){transition-delay:160ms}
.portfolio-grid .grid > [data-reveal]:nth-child(6){transition-delay:200ms}
.portfolio-grid .grid > [data-reveal]:nth-child(7){transition-delay:240ms}
.portfolio-grid .grid > [data-reveal]:nth-child(n+8){transition-delay:280ms}

/* --- Remaining press feedback --------------------------------------------- */
/* Small circular targets need a deeper scale than a wide pill to read. */
.strip-arrow:active:not(:disabled),
.lb-btn:active,
.whatsapp-fab:active{transform:scale(.92)}
.contact-form button[type="submit"]:active:not(:disabled),
.thanks button:active{transform:scale(.97)}
.lb-btn{transition:transform var(--dur-press) var(--ease-out),background-color .25s ease,border-color .25s ease}
.strip-arrow{transition:transform var(--dur-press) var(--ease-out),background-color .25s ease,border-color .25s ease,opacity .25s ease}
.whatsapp-fab{transition:transform var(--dur-press) var(--ease-out),box-shadow .25s ease}
.contact-form button[type="submit"]{transition:transform var(--dur-press) var(--ease-out),box-shadow .25s ease}
.thanks button{transition:transform var(--dur-press) var(--ease-out),border-color .2s ease,background-color .2s ease}

@media (hover:none){
  /* Tapping a client logo to bring it to full colour is a deliberate, used
     interaction, so the latched :hover stays exactly as it was. :active only
     makes the response immediate instead of waiting for the tap to resolve. */
  .client-logo:active{filter:grayscale(0);opacity:1}
  .whatsapp-fab:hover{transform:none;box-shadow:0 10px 30px rgba(234,29,44,0.45)}
}

/* --- Reduced motion ------------------------------------------------------- */
/* The bridges survive as opacity-only: the meaning is "this changed", and
   opacity still carries it without any travel or scale. */
@media (prefers-reduced-motion:reduce){
  .lb-figure,
  .lightbox[hidden] .lb-figure{transform:none !important}
  .nav-links{transform:none !important}
  .portfolio-grid .grid > [data-reveal]{transition-delay:0ms !important}
}

/* ===========================================================================
   DESIGN PASS
   Third block. Surface, typography and accessibility — no layout rewrites.
   =========================================================================== */

/* --- Focus rings ---------------------------------------------------------- */
/* The single most serious gap on the site: nothing had a visible focus state,
   and `outline:none` on inputs (line 333) actively removed the browser's.
   Keyboard users had no idea where they were. :focus-visible only shows for
   keyboard navigation, so mouse users never see a ring on click. */
:where(a,button,[tabindex]):focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:2px solid var(--fg);
  outline-offset:3px;
  border-radius:3px;
}
/* Bone-white and red sections need the inverse, or the ring disappears. */
.work-preview :focus-visible,
.values :focus-visible{outline-color:var(--bg)}
/* The pill sits on accent red; a white ring reads there, but give it room. */
.btn-pill:focus-visible{outline-offset:4px}

/* --- Film grain ----------------------------------------------------------- */
/* Flat dark surfaces read as sterile. A fixed grain layer breaks the digital
   flatness and unifies the dark sections with the bone-white one — the same
   texture crosses both, so the palette jump feels authored. Inline SVG, so no
   network request and nothing to 404. */
body::after{
  content:'';
  position:fixed;inset:0;
  z-index:2001; /* above the lightbox (2000); purely decorative, never hit-tested */
  pointer-events:none;
  opacity:.038;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Viewport units ------------------------------------------------------- */
/* 100vh includes the iOS Safari URL bar, so the hero jumped as it collapsed.
   Declared after the 100vh rule, so browsers without dvh keep the fallback. */
.hero{min-height:100dvh}

/* --- Typography polish ---------------------------------------------------- */
/* balance for headings (stops a single orphaned word on the last line),
   pretty for body copy (same, without re-balancing long paragraphs). */
h1,h2,h3,
.thumb-info .t,.work-card .t,.value-card .t,.cta-box h3{text-wrap:balance}
p,.lede,.thumb-info .s,.work-card .s,.stat .lbl{text-wrap:pretty}

/* Figures line up in columns instead of drifting — matters most in .stats,
   where four numbers sit in a row, and in the timeline years. */
.stat .num,.timeline-item .year,.thumb-num,.value-card .num,.contact-block .phones{
  font-variant-numeric:tabular-nums;
}

/* --- Utility classes replacing inline styles ------------------------------ */
.accent{color:var(--accent)}
.who-inner{position:relative}
.who-section h2{max-width:15ch}
.services-preview{padding:clamp(20px,3vw,40px) 0 clamp(72px,10vw,130px)}
.services-head .section-tag,
.work-preview-head .section-tag{margin-bottom:16px}
.footer-col .site-url{color:var(--accent);opacity:1}
.footer-bottom .tagline{letter-spacing:2px}

/* ===========================================================================
   CLIENTS MARQUEE
   Replaces the static 25-tile grid with one continuously scrolling row.
   Reuses .client-logo untouched, so the grayscale -> colour reveal and the
   tap-to-colour behaviour on touch both still work.

   Loop geometry: the track holds two identical groups separated by the same
   gap used inside them. Track width is therefore (2G + gap), so translating by
   -50% lands half a gap short of the seam -- hence the extra -gap/2 below.
   Getting that wrong is what makes marquees visibly stutter once per cycle.
   =========================================================================== */

.clients-marquee{
  --client-gap:clamp(12px,1.5vw,20px);
  position:relative;
  overflow:hidden;
  /* Logos fade out at the edges instead of being sliced off mid-logo. */
  -webkit-mask-image:linear-gradient(to right,transparent,#000 7%,#000 93%,transparent);
  mask-image:linear-gradient(to right,transparent,#000 7%,#000 93%,transparent);
}

.clients-track{
  display:flex;
  width:max-content;
  gap:var(--client-gap);
  animation:dg-clients-scroll 70s linear infinite;
  will-change:transform;
}

.clients-group{
  display:flex;
  gap:var(--client-gap);
}

/* Pause so a visitor can actually look at a logo. focus-within keeps it
   usable from the keyboard, where you cannot hover to stop it. */
.clients-marquee:hover .clients-track,
.clients-marquee:focus-within .clients-track{
  animation-play-state:paused;
}

.clients-track .client-logo{
  flex:0 0 clamp(128px,13vw,168px);
}

@keyframes dg-clients-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(calc(-50% - (var(--client-gap) / 2)))}
}

/* Constant motion the user never asked for is exactly what this setting is
   for. Stop it and hand back a normal scrollable row. */
@media (prefers-reduced-motion:reduce){
  .clients-track{animation:none !important}
  .clients-marquee{
    overflow-x:auto;
    -webkit-mask-image:none;
    mask-image:none;
  }
}

/* ===========================================================================
   TYPE SYSTEM
   Fourth block. Typography only — not one word of copy changes.

   Two faces, both already authoritative here and both kept:
     Anton   — display. Ships ONE weight (400).
     Archivo — text. Real weights 400–900.

   Role ladder:  display > opener > subhead > lede > body > label > data
   =========================================================================== */

:root{
  /* Tracking is em-based so the letterfit is identical at every clamp step.
     The old values were absolute px, which meant one rule produced -0.019em on
     a phone and -0.0067em on a desktop — the headline changed character between
     breakpoints, and the largest type on the site was the loosest. Display type
     tightens as it grows; it does not loosen. */
  --track-display:-.022em;
  --track-opener:-.016em;
  --track-subhead:-.01em;
  --track-label:.3em;
}

/* Anton ships a single 400 weight. h1/h2/h3 inherit `bold` from the UA
   stylesheet, so every headline was rendering as a browser-synthesised smear
   of the real letterforms — while .stat .num (a div) got the genuine 400.
   Same font, two renderings. font-synthesis keeps it pinned if any later rule
   asks for bold again. */
.anton{
  font-weight:400;
  font-synthesis:none;
}

/* --- Display -------------------------------------------------------------- */
.hero h1,
.page-hero h1{letter-spacing:var(--track-display)}

/* --- Section openers ------------------------------------------------------ */
.section h2,
.services-head h2,
.work-preview-head h2,
.team-head h2,
.footer-cta h2,
.values h2,
.story-grid h2,
.thanks h2{letter-spacing:var(--track-opener)}

/* Same role, two accidental sizes (66px vs the 68px its two siblings use). */
.team-head h2{font-size:clamp(34px,5vw,68px)}

/* --- Subheads and card titles --------------------------------------------- */
.cta-box h3,
.thumb-info .t,
.work-card .t,
.portfolio-card .info .t,
.value-card .t,
.timeline-item .t,
.team-card .name,
.lb-title{letter-spacing:var(--track-subhead)}

/* --- Labels --------------------------------------------------------------- */
/* One role, previously set at .333em (12px tags) or .227em (11px footer and
   contact labels) — inconsistent, and backwards: the smaller size had the
   tighter fit when small caps need more air, not less.
   .eyebrow stays out on purpose: it is a long string inside a bordered pill,
   where tracking is constrained by the container, not by the role. */
.section-tag .label,
.clients .label,
.footer-cta .label,
.footer-col .label,
.contact-block .label,
.page-hero .kicker,
.timeline > .label{letter-spacing:var(--track-label)}

/* --- Light on dark -------------------------------------------------------- */
/* Bone white on near-black blooms optically and closes up the counters. Body
   copy takes a hair of positive tracking to hold them open; the display sizes
   do not need it, being large enough to resolve on their own. */
.lede,
.who-copy p,
.story-grid p,
.svc-panel-body p{letter-spacing:.005em}

/* --- Data ----------------------------------------------------------------- */
/* The one place the display face carries information rather than voice.
   Tabular figures are already set in the DESIGN PASS block above. */
.stat .num,
.timeline-item .year{letter-spacing:var(--track-opener)}
