/* ═══ Everything Propa — Kgosi ═══════════════════════════════ */

:root {
  --paper:   #f7f6f3;
  --paper-2: #eeece7;
  --ink:     #12100e;
  --ink-2:   #4a453f;
  --dim:     #8d867d;
  --line:    #ddd9d2;
  --tan:     #b08d57;

  --dsp: "Bodoni Moda", "Didot", Georgia, serif;
  --ui:  "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;

  --pad: clamp(1.25rem, 5vw, 5.5rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --swift: cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

/* overflow-x on body alone still lets iOS rubber-band sideways; clip on the root
   stops it without creating a scroll container (which would break position:sticky) */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 clamp(.95rem, .35vw + .86rem, 1.06rem)/1.68 var(--ui);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--ink); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--tan);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: fixed; top: -100px; left: var(--pad); z-index: 200;
  padding: .7rem 1.2rem; background: var(--ink); color: var(--paper);
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  transition: top .25s var(--swift);
}
.skip:focus { top: 1rem; }

/* ── shared type ──────────────────────────────────────────── */

.dsp {
  margin: 0;
  font-family: var(--dsp);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.015em;
}
.dsp em { font-style: italic; }
.dsp b  { font-weight: 700; }
.dsp--sm { display: inline-block; font-size: .58em; letter-spacing: .01em; }

.eyebrow {
  margin: 0;
  font-size: clamp(.7rem, .3vw + .64rem, .82rem);
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow b { font-weight: 600; color: var(--ink); }

.lede { font-size: 1.1em; color: var(--ink); }
.dim  { color: var(--dim); }

.btn {
  --bg: var(--ink); --fg: var(--paper);
  position: relative; display: inline-block; overflow: hidden;
  padding: 1.05rem 2.3rem;
  background: var(--bg); color: var(--fg);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  transition: color .4s var(--swift);
  isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--fg);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.btn:hover { color: var(--bg); }
.btn:hover::before { transform: translateY(0); }
.btn--ghost { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.btn--ghost:hover { color: var(--paper); }
.btn--ghost::before { background: var(--ink); }
.btn--lg { padding: 1.25rem 3rem; }

.lnk {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
}
.lnk i {
  width: 26px; height: 1px; background: currentColor;
  transition: width .4s var(--ease);
}
.lnk:hover i { width: 44px; }

/* torn-paper note, lifted from the deck */
.note {
  position: absolute; top: 0; right: clamp(.75rem, 2vw, 2rem); z-index: 3;
  padding: 1.4rem 1.7rem 1.7rem;
  background: var(--paper-2);
  font-family: var(--dsp); font-style: italic; text-align: center;
  line-height: 1.25;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 76% 100%, 48% 93%, 20% 100%, 0 94%);
  transform: rotate(1.6deg);
}
.note span { display: block; font-size: 1rem; }
.note em { font-size: .78rem; color: var(--ink-2); }
.note::before {
  content: ""; position: absolute; top: 8%; left: 0; bottom: 14%; width: 5px;
  background: repeating-linear-gradient(var(--ink) 0 3px, transparent 3px 11px);
}

/* ── preloader ────────────────────────────────────────────── */

.loader {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: var(--ink);
  transition: transform .9s var(--ease);
}
.loader.is-done { transform: translateY(-100%); }
.loader__inner { text-align: center; color: var(--paper); }
.loader__mark {
  display: block; margin-bottom: 1.4rem;
  font-size: clamp(.72rem, .4vw + .64rem, .86rem);
  letter-spacing: .4em;
}
.loader__mark b { font-weight: 600; }
.loader__bar { width: min(240px, 52vw); height: 1px; background: rgba(247, 246, 243, .22); }
.loader__bar i { display: block; height: 100%; width: 0; background: var(--paper); transition: width .3s linear; }

.progress {
  position: fixed; top: 0; left: 0; z-index: 90;
  height: 2px; width: 100%;
  background: var(--ink);
  transform: scaleX(0); transform-origin: 0 50%;
}

/* ── header ───────────────────────────────────────────────── */

.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem var(--pad);
  transition: transform .5s var(--ease), background .4s, backdrop-filter .4s, padding .4s;
}
.hdr.is-stuck {
  padding-block: .9rem;
  background: rgba(247, 246, 243, .82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.hdr.is-hidden { transform: translateY(-102%); }

/* At the top the header straddles the pale copy column and the dark hero photo, so no
   single ink colour is legible. Difference-blending white inverts against whatever is
   under it: near-black on paper, near-white on the photo. Dropped once the bar is solid. */
.hdr:not(.is-stuck) { mix-blend-mode: difference; }
.hdr:not(.is-stuck) .hdr__mark,
.hdr:not(.is-stuck) .hdr__nav a { color: #fff; }
.hdr:not(.is-stuck) .hdr__nav .is-cta {
  background: none; color: #fff; box-shadow: inset 0 0 0 1px #fff;
}
.hdr:not(.is-stuck) .burger span { background: #fff; }

.hdr__mark { font-size: .78rem; letter-spacing: .26em; }
.hdr__mark b { font-weight: 600; }

.hdr__nav { display: flex; gap: 2.2rem; }
.hdr__nav a {
  position: relative;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
}
.hdr__nav a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform .45s var(--ease);
}
.hdr__nav a:hover::after,
.hdr__nav a.is-active::after { transform: scaleX(1); transform-origin: 0 50%; }
.hdr__nav .is-cta { padding: .55rem 1.15rem; background: var(--ink); color: var(--paper); }
.hdr__nav .is-cta::after { display: none; }
.hdr__nav .is-cta:hover { background: var(--tan); }

.burger { display: none; width: 30px; height: 20px; position: relative; }
.burger span {
  position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink);
  transition: transform .45s var(--ease), opacity .25s;
}
.burger span:first-child { top: 5px; }
.burger span:last-child  { top: 13px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { transform: translateY(-4px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 70;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--pad);
  background: var(--paper);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease);
}
.menu[hidden] { display: none; }
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu nav { display: flex; flex-direction: column; gap: .3rem; }
.menu a {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--dsp); font-size: clamp(2.2rem, 11vw, 3.6rem); line-height: 1.25;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.menu.is-open a { opacity: 1; transform: none; }
.menu.is-open a:nth-child(1) { transition-delay: .16s; }
.menu.is-open a:nth-child(2) { transition-delay: .22s; }
.menu.is-open a:nth-child(3) { transition-delay: .28s; }
.menu.is-open a:nth-child(4) { transition-delay: .34s; }
.menu a em { font-family: var(--ui); font-style: normal; font-size: .8rem; color: var(--dim); }
.menu__foot { margin-top: 2.5rem; font-size: .8rem; letter-spacing: .06em; color: var(--dim); }

/* ── line reveal ──────────────────────────────────────────── */

.reveal-line { display: block; overflow: hidden; }
.reveal-line > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1s var(--ease);
}
.is-ready .reveal-line > span { transform: none; }
.is-ready .hero__title .reveal-line:nth-child(1) > span { transition-delay: .12s; }
.is-ready .hero__title .reveal-line:nth-child(2) > span { transition-delay: .2s; }
.is-ready .hero__sub  > span { transition-delay: .34s; }
.is-ready .hero__cta  > span { transition-delay: .42s; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

/* ── hero ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  min-height: 100svh;
  padding-left: var(--pad);
}
.hero__copy { padding: 8rem 2rem 6rem 0; max-width: 46rem; }
.hero__title {
  margin: .5rem 0 1.8rem;
  font-family: var(--dsp);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
  line-height: .92;
  letter-spacing: -.03em;
}
/* italic swashes and the y-tail overhang the em box; overflow:hidden clips at the
   padding edge, so this buys them room without shifting the layout */
.hero__title .reveal-line { padding-right: .1em; margin-right: -.1em; }
.hero__title em { font-style: italic; font-weight: 500; }
.hero__sub { max-width: 30rem; color: var(--ink-2); }
.hero__cta { margin-top: 2.4rem; }
.hero__cta > span { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero__media { position: relative; align-self: stretch; overflow: hidden; }
.hero .note { top: clamp(4.75rem, 9vh, 6.5rem); } /* clear the fixed header */
/* keeps the top strip dark so the difference-blended nav stays high contrast
   where the photo has a bright highlight */
.hero__media::before {
  content: ""; position: absolute; z-index: 2; inset: 0 0 auto; height: 7rem;
  background: linear-gradient(rgba(0, 0, 0, .5), transparent);
  pointer-events: none;
}
.hero__frame { position: absolute; inset: -8% 0; overflow: hidden; }
.hero__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  transform: scale(1.14);
  transition: transform 2.4s var(--ease);
}
.is-ready .hero__frame img { transform: scale(1); }

.hero__scroll {
  position: absolute; left: var(--pad); bottom: 2rem;
  display: flex; align-items: center; gap: .7rem;
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--dim);
}
.hero__scroll i {
  width: 46px; height: 1px; background: var(--line); overflow: hidden; position: relative;
}
.hero__scroll i::after {
  content: ""; position: absolute; inset: 0; background: var(--ink);
  animation: sweep 2.4s var(--ease) infinite;
}
@keyframes sweep {
  0%       { transform: translateX(-100%); }
  55%,100% { transform: translateX(100%); }
}

/* ── marquee ──────────────────────────────────────────────── */

.marquee {
  overflow: hidden;
  padding: 1.35rem 0;
  background: var(--ink); color: var(--paper);
  user-select: none;
}
.marquee__track {
  display: flex; width: max-content;
  animation: slide 44s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 2.6rem;
  padding-right: 2.6rem;
  font-family: var(--dsp); font-size: clamp(1.1rem, 2.4vw, 1.85rem);
  letter-spacing: .01em; white-space: nowrap;
}
.marquee__track span::after { content: "✦"; font-size: .5em; opacity: .5; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ── about ────────────────────────────────────────────────── */

.about {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(5rem, 12vw, 10rem) var(--pad);
}
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: 50% 25%; }
.note--dark { top: auto; bottom: -1.5rem; right: -1rem; transform: rotate(-2.4deg); }
.about__copy > * + * { margin-top: 1.15rem; }
.about__copy .dsp { margin-bottom: 1.8rem; }
.about__copy p { color: var(--ink-2); max-width: 44rem; }
.about__copy b { font-weight: 600; color: var(--ink); }

.stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem; margin: 2.8rem 0 0; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stats dt {
  font-family: var(--dsp); font-size: clamp(2.4rem, 4.5vw, 3.4rem); line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
}
.stats dd {
  margin: .4rem 0 0;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dim);
}

/* ── work ─────────────────────────────────────────────────── */

.work { padding: clamp(4rem, 9vw, 7rem) var(--pad) clamp(5rem, 11vw, 9rem); }
.work__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem 3rem; margin-bottom: 2.5rem;
}
.work__head p { max-width: 30rem; margin: 0; color: var(--ink-2); }

.filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  padding-bottom: 2.5rem;
}
.filters button {
  padding: .6rem 1.25rem;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--line);
  border-radius: 999px;
  transition: color .3s, background .3s, box-shadow .3s;
}
.filters button:hover { color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.filters button.is-on { background: var(--ink); color: var(--paper); box-shadow: inset 0 0 0 1px var(--ink); }

.grid { columns: 3; column-gap: 1.1rem; }

.card {
  position: relative;
  display: block; width: 100%;
  margin-bottom: 1.1rem;
  padding: 0;
  overflow: hidden;
  background: var(--paper-2) center/cover no-repeat;
  break-inside: avoid;
  cursor: zoom-in;
  opacity: 0; transform: translateY(26px) scale(.985);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.card.in { opacity: 1; transform: none; }
.card.is-out { display: none; }

.card img {
  width: 100%; height: auto;
  transition: transform .9s var(--ease), filter .6s var(--swift);
}
.card:hover img, .card:focus-visible img { transform: scale(1.055); }

.card__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; align-items: flex-start; gap: .1rem;
  padding: 3.5rem 1.1rem 1.05rem;
  background: linear-gradient(transparent, rgba(6, 5, 4, .78));
  color: #fff; text-align: left;
  opacity: 0; transform: translateY(12px);
  transition: opacity .45s var(--swift), transform .55s var(--ease);
}
.card:hover .card__cap, .card:focus-visible .card__cap { opacity: 1; transform: none; }
.card__cap b { font-family: var(--dsp); font-size: 1.15rem; font-weight: 500; }
.card__cap span { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; opacity: .78; }

/* ── services ─────────────────────────────────────────────── */

.svc { padding: clamp(4rem, 9vw, 7rem) var(--pad) clamp(5rem, 11vw, 9rem); background: var(--paper-2); }
.svc__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem 3rem; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.svc__head p {
  max-width: 32rem; margin: 0;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
}
.svc__head b { font-weight: 600; color: var(--ink); }

.svc__row { display: grid; grid-template-columns: repeat(5, 1fr); align-items: stretch; }
.svc__img { margin: 0; overflow: hidden; }
.svc__img img { width: 100%; height: 100%; min-height: 26rem; object-fit: cover; }

.svc__card {
  display: flex; flex-direction: column;
  padding: 2.2rem clamp(1.2rem, 2vw, 2rem);
  background: var(--ink); color: var(--paper);
  margin-block: clamp(1rem, 3vw, 2.6rem);
}
.svc__num { font-family: var(--dsp); font-size: 3.4rem; line-height: 1; }
.svc__card h3 {
  margin: auto 0 .8rem;
  font-family: var(--ui); font-size: clamp(1.15rem, 1.5vw, 1.45rem); font-weight: 400; line-height: 1.25;
}
.svc__card p { margin: 0 0 1.6rem; font-size: .85rem; color: #b9b3ab; }
.svc__card .lnk { color: var(--paper); }

/* ── contact ──────────────────────────────────────────────── */

.cta {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(5rem, 11vw, 9rem) var(--pad);
}
.cta__title {
  margin: 0 0 1.6rem;
  font-family: var(--dsp); font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -.02em;
  text-transform: uppercase;
}
.cta__title b  { font-weight: 700; }
.cta__title em { font-style: italic; text-transform: none; }
.cta__copy > p { max-width: 26rem; color: var(--ink-2); }

.cta__list { list-style: none; margin: 2.2rem 0; padding: 0; border-top: 1px solid var(--line); }
.cta__list a {
  display: flex; align-items: baseline; gap: 1.2rem;
  padding: 1.05rem 0; border-bottom: 1px solid var(--line);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  transition: padding-left .45s var(--ease), color .3s;
}
.cta__list a:hover { padding-left: .75rem; color: var(--tan); }
.cta__list .lbl {
  min-width: 5.5rem;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--dim);
}
.cta__list .val { display: inline-flex; align-items: center; gap: .55rem; }
.ico { width: 1.1em; height: 1.1em; flex: none; fill: currentColor; }
/* brand green so the affordance reads at a glance; holds through the row's tan hover */
.ico--wa { color: #25d366; }

.cta__media { overflow: hidden; align-self: stretch; }
.cta__media img { width: 100%; height: 100%; min-height: 30rem; object-fit: cover; object-position: 50% 30%; }

/* ── footer ───────────────────────────────────────────────── */

.ftr {
  padding: 2.2rem var(--pad);
  background: var(--ink); color: #918a81;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
}
.ftr__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem 2rem;
}
.ftr__mark { color: var(--paper); letter-spacing: .26em; }
.ftr__mark b { font-weight: 600; }

.ftr__made {
  margin: 2rem 0 0; padding-top: 1.4rem;
  border-top: 1px solid rgba(247, 246, 243, .1);
  font-family: var(--dsp); font-style: italic; font-size: 1rem;
  letter-spacing: .02em; text-transform: none; text-align: center;
  color: #7d766d;
}
.ftr__made b { font-style: normal; font-weight: 500; color: var(--paper); }
.ftr__note {
  display: inline-block; margin: 0 .3em; font-size: 1.15em;
  font-style: normal; color: var(--tan);
  animation: bob 1.9s var(--ease) infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* ── lightbox ─────────────────────────────────────────────── */

.lb {
  position: fixed; inset: 0; z-index: 150;
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(10, 9, 8, .96);
  opacity: 0;
  transition: opacity .4s var(--swift);
}
.lb[hidden] { display: none; }
.lb.is-open { opacity: 1; }

.lb__fig { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 1rem; max-height: 100%; }
.lb__fig img {
  max-width: min(100%, 1180px);
  max-height: calc(100svh - 10rem);
  width: auto; object-fit: contain;
  opacity: 0; transform: scale(.965);
  transition: opacity .55s var(--ease), transform .7s var(--ease);
}
.lb.is-shown .lb__fig img { opacity: 1; transform: none; }

.lb__fig figcaption {
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; justify-content: center;
  color: #f7f6f3; text-align: center;
}
.lb__fig b { font-family: var(--dsp); font-size: 1.25rem; font-weight: 500; }
.lb__fig figcaption span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #a19a91; }
.lb__fig em { font-style: normal; font-size: .72rem; letter-spacing: .16em; color: #6d675f; }

.lb__x, .lb__nav {
  position: absolute; z-index: 2;
  width: 54px; height: 54px; border-radius: 50%;
  color: #f7f6f3;
  box-shadow: inset 0 0 0 1px rgba(247, 246, 243, .26);
  transition: background .3s, box-shadow .3s, transform .3s var(--ease);
}
.lb__x:hover, .lb__nav:hover { background: rgba(247, 246, 243, .12); box-shadow: inset 0 0 0 1px rgba(247, 246, 243, .5); }
.lb__x { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lb__x::before, .lb__x::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 17px; height: 1.5px; background: currentColor;
}
.lb__x::before { transform: translate(-50%, -50%) rotate(45deg); }
.lb__x::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.lb__nav { top: 50%; margin-top: -27px; }
.lb__nav--prev { left: clamp(.6rem, 3vw, 2rem); }
.lb__nav--next { right: clamp(.6rem, 3vw, 2rem); }
.lb__nav::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 11px; height: 11px;
  border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor;
}
.lb__nav--next::before { transform: translate(-62%, -50%) rotate(45deg); }
.lb__nav--prev::before { transform: translate(-38%, -50%) rotate(-135deg); }
.lb__nav--prev:hover { transform: translateX(-3px); }
.lb__nav--next:hover { transform: translateX(3px); }

/* ── responsive ───────────────────────────────────────────── */

@media (max-width: 1100px) {
  .grid { columns: 2; }
  .svc__row { grid-template-columns: repeat(2, 1fr); }
  .svc__row .svc__img:last-child { display: none; }
  .svc__card { margin-block: 0; }
}

@media (max-width: 880px) {
  .hdr__nav { display: none; }
  .burger { display: block; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0 var(--pad);
  }
  .hero__copy { padding: 7.5rem 0 2.5rem; }
  .hero__media { height: 78svh; margin: 0 calc(var(--pad) * -1); }
  .hero__frame { inset: -6% 0; }
  .hero__scroll { display: none; }
  .note { right: 1rem; padding: 1.1rem 1.3rem 1.4rem; }

  .about { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__media { max-width: 26rem; }
  .note--dark { right: -.5rem; }

  .cta { grid-template-columns: 1fr; padding-right: var(--pad); }
  .cta__media { margin: 0 calc(var(--pad) * -1); }
  .cta__media img { min-height: 24rem; }
}

@media (max-width: 620px) {
  .grid { columns: 1; }
  .svc__row { grid-template-columns: 1fr; }
  .svc__row .svc__img { display: none; }
  .svc__img img { min-height: 18rem; }
  .stats { grid-template-columns: 1fr; gap: 1.1rem; }
  .stats div { display: flex; align-items: baseline; gap: 1rem; }
  .stats dd { margin: 0; }
  .stats dd br { display: none; }
  .ftr__row { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ── reduced motion ───────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .card { opacity: 1 !important; transform: none !important; }
  .reveal-line > span { transform: none !important; }
  .hero__frame img { transform: none !important; }
  .lb__fig img { opacity: 1 !important; transform: none !important; }
}
