/* ============================================================
   Arcus Design Build — site styles (v2: corporate typography)
   Palette: black / white / gray only. Mobile-first.
   ============================================================ */

:root {
  --black: #0a0a0a;
  --ink: #141414;
  --g900: #1c1c1c;
  --g800: #2a2a2a;
  --g700: #444;
  --g600: #5c5c5c;
  --g500: #767676;
  --g400: #9a9a9a;
  --g300: #c6c6c4;
  --g200: #e3e3e0;
  --g100: #f0f0ee;
  --paper: #f6f6f4;
  --white: #ffffff;

  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;

  --container: 1240px;
  --gutter: clamp(1.1rem, 4vw, 3rem);
  --section: clamp(3.5rem, 8vw, 6.5rem);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .07), 0 2px 6px rgba(0, 0, 0, .04);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .12);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--paper { background: var(--paper); }
.section--black { background: var(--black); color: var(--white); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--round { border-radius: var(--r-lg) var(--r-lg) 0 0; }

/* ---------- typography ---------- */
.h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.12; letter-spacing: -0.025em; font-weight: 700; }
.h2 { font-size: clamp(1.7rem, 3.1vw, 2.6rem); line-height: 1.18; letter-spacing: -0.02em; font-weight: 700; }
.h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
.accent { color: var(--g500); }
.section--black .accent { color: var(--g400); }

.eyebrow {
  display: block; font-size: .85rem; font-weight: 500; color: var(--g500); margin-bottom: .55rem; letter-spacing: 0;
}
.eyebrow--caps { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.section--black .eyebrow { color: var(--g400); }

.title-bar { position: relative; padding-left: 1.1rem; }
.title-bar::before { content: ""; position: absolute; left: 0; top: .2em; bottom: .2em; width: 3px; background: currentColor; border-radius: 2px; }

.lead { font-size: clamp(1rem, 1.35vw, 1.125rem); line-height: 1.6; color: var(--g600); max-width: 46ch; }
.section--black .lead { color: var(--g300); }
.muted { color: var(--g500); }
.small { font-size: .875rem; }

.section-head { display: grid; gap: 1rem; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1.15fr 1fr; align-items: end; gap: 3rem; }
  .section-head .lead { justify-self: end; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 1px solid var(--ink); background: var(--ink); color: var(--white);
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: var(--g800); box-shadow: var(--shadow); }
.btn svg { width: 1.05em; height: 1.05em; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--white { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--white:hover { background: var(--g100); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--outline-white:hover { background: var(--white); color: var(--ink); }
.btn--sm { padding: .65rem 1.15rem; font-size: .875rem; }

.link-more { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .9rem; color: var(--ink); }
.link-more svg { width: 1em; height: 1em; transition: transform .3s; }
.link-more:hover svg { transform: translateX(3px); }

/* read-more clamp */
.clamp { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: var(--lines, 3); overflow: hidden; }
.clamp.open { display: block; -webkit-line-clamp: unset; overflow: visible; }
.clamp-btn { display: inline-flex; align-items: center; gap: .3rem; margin-top: .55rem; font-size: .85rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--g300); padding: 0 0 .1rem; }
.clamp-btn::after { content: "+"; font-weight: 500; }
.clamp-btn[aria-expanded="true"]::after { content: "–"; }
.section--black .clamp-btn { color: var(--white); border-color: var(--g700); }

/* ---------- navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--nav-h);
  display: flex; align-items: center; color: var(--white);
  transition: background .35s, color .35s, box-shadow .35s;
}
.nav--solid { background: rgba(255,255,255,.94); color: var(--ink); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); box-shadow: 0 1px 0 var(--g200); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; gap: .05rem; }
.logo__mark { display: block; line-height: 0; }
.logo__svg { height: 20px; width: auto; display: block; }
.footer .logo__svg { height: 26px; }
.logo__script { font-family: "Dancing Script", cursive; font-weight: 600; font-size: 1rem; letter-spacing: .01em; line-height: 1; opacity: .9; margin-top: .18rem; }
.footer .logo__script { font-size: 1.25rem; }
.footer .logo { color: var(--white); margin-bottom: .4rem; }
.footer__plate { margin-top: 1.2rem; max-width: 260px; border-radius: var(--r-sm); filter: grayscale(1); opacity: .9; border: 1px solid var(--g800); }
.nav__links { display: none; gap: 1.8rem; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.nav__links a { position: relative; padding: .3rem 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: currentColor; transition: right .3s var(--ease); }
.nav__links a:hover::after, .nav__links a.active::after { right: 0; }
.nav__cta { display: none; }
.nav__burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; margin-right: -10px; }
.nav__burger span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 960px) {
  .nav__links, .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__cta { padding: .7rem 1.3rem; font-size: .875rem; }
  .nav:not(.nav--solid) .nav__cta { background: var(--white); color: var(--ink); border-color: var(--white); }
}

.menu {
  position: fixed; inset: 0; z-index: 55; background: var(--black); color: var(--white);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 1rem) var(--gutter) 2rem;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform .5s var(--ease), opacity .4s, visibility 0s .5s;
}
.menu.open { transform: none; opacity: 1; visibility: visible; transition: transform .5s var(--ease), opacity .3s, visibility 0s; }
.menu__links a { display: flex; align-items: baseline; gap: 1rem; font-size: clamp(1.6rem, 7vw, 2.4rem); font-weight: 700; letter-spacing: -0.02em; padding: .7rem 0; border-bottom: 1px solid var(--g800); }
.menu__links a span { font-size: .7rem; font-weight: 500; letter-spacing: .15em; color: var(--g500); }
.menu__foot { display: grid; gap: .5rem; font-size: .9rem; color: var(--g400); }
.menu__foot a { color: var(--white); font-weight: 600; }
body.menu-open .nav { background: transparent; color: var(--white); box-shadow: none; backdrop-filter: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 86svh; display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--white); background: var(--black); overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 0 0;
}
@media (min-width: 900px) { .hero { min-height: 620px; max-height: 820px; justify-content: center; } }
.hero__slides { position: absolute; inset: 0; }
.hero__slides picture, .hero__slides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__slides img { opacity: 0; transform: scale(1.06); transition: opacity 1.4s ease, transform 7s linear; }
.hero__slides picture.is-active img { opacity: 1; transform: scale(1); }
.hero__shade { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.75) 100%); }
@media (min-width: 900px) {
  .hero__shade { background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 38%, rgba(0,0,0,.05) 72%),
    linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.35) 100%); }
}
.hero__content { position: relative; display: grid; gap: 1rem; max-width: 620px; padding-bottom: 1.5rem; }
.hero__content .eyebrow { color: rgba(255,255,255,.75); margin: 0; }
.hero .h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); line-height: 1.02; }
.hero .h1 .accent { color: var(--g300); }
.hero__lead { max-width: 40ch; font-size: clamp(1rem, 1.4vw, 1.15rem); color: rgba(255,255,255,.88); line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .4rem; }
.hero__foot { position: relative; display: flex; align-items: center; padding: 1rem 0 1.6rem; border-top: 1px solid rgba(255,255,255,.15); }
@media (min-width: 900px) { .hero__foot { position: absolute; left: 0; right: 0; bottom: 0; border-top: 0; padding-bottom: 2rem; } }
.hero__caption { display: inline-flex; align-items: center; gap: .8rem; font-size: .78rem; color: rgba(255,255,255,.75); }
.hero__caption b { color: var(--white); font-weight: 600; }
.hero__dots { display: inline-flex; gap: .35rem; }
.hero__dots button { width: 1.6rem; height: 3px; background: rgba(255,255,255,.35); border-radius: 2px; padding: 0; transition: background .3s; }
.hero__dots button.is-active { background: var(--white); }

/* brand band: scrolling typographic strip */
.band { position: relative; z-index: 2; padding: clamp(1.5rem, 4vw, 3rem) 0 0; }
.band__card { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 1.4rem 0 1.5rem; display: grid; gap: 1rem; overflow: hidden; }
.band__label { text-align: center; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--g500); padding-inline: 1.2rem; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; align-items: center; gap: 0; animation: marquee 50s linear infinite; }
.marquee__track:hover { animation-play-state: paused; }
.marquee__track span { display: inline-flex; align-items: center; white-space: nowrap; font-weight: 700; font-size: clamp(1.05rem, 1.9vw, 1.5rem); letter-spacing: -0.01em; color: var(--g700); padding: .2rem 2.2rem; border-right: 1px solid var(--g200); transition: color .3s; }
.marquee__track span:hover { color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { mask-image: none; -webkit-mask-image: none; } .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } .marquee__track span { border: 0; padding: .3rem .9rem; } }

.band__actions { display: flex; justify-content: center; padding-top: .2rem; }
.band__all { padding: .4rem 1.2rem 0; }
.band__all ul { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.band__all li { padding: .5rem .95rem; border: 1px solid var(--g300); border-radius: 999px; font-size: .85rem; font-weight: 600; color: var(--g700); background: var(--paper); }
.band__all[hidden] { display: none; }

/* ---------- about ---------- */
.about { display: grid; gap: 2.5rem; }
.about__text p + p { margin-top: 1rem; }
.about__text p { color: var(--g600); max-width: 62ch; }
.about__text .h2 { margin-bottom: 1.4rem; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.stat { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r); padding: 1.3rem 1.2rem; box-shadow: var(--shadow); }
.stat__num { font-size: clamp(2.1rem, 4.5vw, 3rem); font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.stat__num .muted { font-weight: 600; }
.stat__label { margin-top: .45rem; font-size: .85rem; color: var(--g500); font-weight: 500; }
.about__badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.badge { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem .9rem; border-radius: 999px; background: var(--g100); font-size: .82rem; font-weight: 600; }
.badge svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 1.8; }
@media (min-width: 900px) {
  .about { grid-template-columns: 1.1fr .9fr; gap: 4.5rem; align-items: center; }
  .stat { padding: 1.8rem 1.6rem; }
}

/* ---------- services ---------- */
.services { display: grid; gap: 1rem; }
.service { background: var(--g900); border: 1px solid var(--g800); border-radius: var(--r); padding: 1.5rem 1.4rem; display: grid; gap: .8rem; align-content: start; transition: transform .35s var(--ease), border-color .3s; }
.service:hover { transform: translateY(-3px); border-color: var(--g600); }
.service__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.service__num { font-size: .75rem; font-weight: 600; letter-spacing: .14em; color: var(--g400); }
.service__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--white); color: var(--ink); display: grid; place-items: center; flex: none; }
.service__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service__title { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; }
.service__desc { color: var(--g300); font-size: .95rem; }
.service__toggle { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; color: var(--white); margin-top: .2rem; }
.service__toggle::after { content: "+"; display: grid; place-items: center; width: 1.3rem; height: 1.3rem; border-radius: 50%; border: 1px solid var(--g600); font-size: .9rem; }
.service__toggle[aria-expanded="true"]::after { content: "–"; }
.service__list { display: grid; gap: .4rem; padding-top: .8rem; border-top: 1px solid var(--g800); font-size: .875rem; color: var(--g300); }
.service__list[hidden] { display: none; }
.service__list li { display: flex; gap: .6rem; align-items: baseline; }
.service__list li::before { content: ""; width: .4rem; height: .4rem; border-radius: 50%; background: var(--g500); flex: none; transform: translateY(-.15em); }
.services__note { margin-top: 1.2rem; font-size: .8rem; color: var(--g500); }
@media (min-width: 640px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services { grid-template-columns: repeat(3, 1fr); } .service { padding: 1.8rem 1.6rem; } }
@media (min-width: 1240px) { .services { grid-template-columns: repeat(5, 1fr); } .service { padding: 1.5rem 1.3rem; } }

/* ---------- work grid / cards ---------- */
.work-grid { display: grid; gap: 1.5rem 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .work-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1.4rem; } }
@media (min-width: 1000px) { .work-grid { grid-template-columns: repeat(3, 1fr); gap: 2.2rem 1.8rem; } }
.work-grid--featured .card:first-child { grid-column: 1 / -1; }
@media (min-width: 1000px) { .work-grid--featured .card:first-child .card__media { aspect-ratio: 21 / 9; } }

.card { display: block; position: relative; }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--g100); border-radius: var(--r); box-shadow: var(--shadow); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s; }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.3)); opacity: 0; transition: opacity .5s; }
.card__count { position: absolute; right: .75rem; bottom: .75rem; z-index: 1; font-size: .72rem; font-weight: 600; padding: .3rem .6rem; background: rgba(0,0,0,.6); color: var(--white); border-radius: 999px; backdrop-filter: blur(6px); }
.card__body { padding-top: .9rem; display: grid; gap: .15rem; }
.card__tag { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--g500); }
.card__title { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.015em; line-height: 1.3; }
.card__loc { font-size: .9rem; color: var(--g500); }
@media (hover: hover) {
  .card__media img { filter: grayscale(1) contrast(1.02); }
  .card:hover .card__media img { filter: none; transform: scale(1.04); }
  .card:hover .card__media::after { opacity: 1; }
}
.work-more { margin-top: clamp(2rem, 5vw, 3rem); display: flex; justify-content: center; }

/* filters */
.filters { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .6rem; margin-bottom: 1.4rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.filters::-webkit-scrollbar { display: none; }
.filter { flex: none; padding: .6rem 1.05rem; border-radius: 999px; border: 1px solid var(--g300); font-size: .85rem; font-weight: 600; color: var(--g700); background: var(--white); transition: background .25s, color .25s, border-color .25s; }
.filter[aria-pressed="true"] { background: var(--ink); color: var(--white); border-color: var(--ink); }
.filter small { opacity: .6; margin-left: .3rem; font-weight: 500; }
.work-count { font-size: .875rem; color: var(--g500); margin-bottom: 1.2rem; }

/* ---------- process (tabs) ---------- */
.tabs { display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; padding-bottom: .4rem; margin-bottom: 1.2rem; }
.tabs::-webkit-scrollbar { display: none; }
.tab { flex: none; display: inline-flex; align-items: center; gap: .6rem; padding: .7rem 1.2rem; border-radius: 999px; border: 1px solid var(--g300); background: var(--white); font-weight: 600; font-size: .9rem; color: var(--g700); transition: background .25s, color .25s, border-color .25s; }
.tab span { font-size: .72rem; font-weight: 600; color: var(--g500); }
.tab[aria-selected="true"] { background: var(--ink); color: var(--white); border-color: var(--ink); }
.tab[aria-selected="true"] span { color: var(--g400); }
.tab-panel { display: none; background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); padding: 1.6rem 1.4rem; box-shadow: var(--shadow); }
.tab-panel.is-active { display: grid; gap: 1.4rem; }
.tab-panel__num { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em; color: var(--g300); line-height: 1; }
.tab-panel__title { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 700; letter-spacing: -0.02em; margin-top: .3rem; }
.tab-panel__desc { color: var(--g600); margin-top: .6rem; max-width: 60ch; }
.tab-panel__list h4 { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--g500); margin-bottom: .7rem; }
.tab-panel__list ul { display: grid; gap: .5rem; }
.tab-panel__list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; }
.tab-panel__list li svg { width: 1.1rem; height: 1.1rem; flex: none; margin-top: .2rem; stroke: var(--ink); fill: none; stroke-width: 2; }
@media (min-width: 900px) {
  .tab-panel.is-active { grid-template-columns: 1.2fr 1fr; gap: 3rem; padding: 2.4rem 2.4rem; }
}
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin-top: clamp(1.6rem, 4vw, 2.5rem); }
.value { display: flex; flex-direction: column; gap: .7rem; padding: 1.1rem; background: var(--white); border: 1px solid var(--g200); border-radius: var(--r); font-size: .9rem; font-weight: 600; line-height: 1.35; }
.value svg { width: 1.4rem; height: 1.4rem; stroke: var(--ink); fill: none; stroke-width: 1.6; }
@media (min-width: 900px) { .values { grid-template-columns: repeat(4, 1fr); gap: 1rem; } .value { padding: 1.4rem; } }

/* ---------- sectors ---------- */
.sectors { display: flex; flex-wrap: wrap; gap: .6rem; }
.sector { padding: .7rem 1.1rem; border: 1px solid var(--g700); border-radius: 999px; font-size: .9rem; font-weight: 500; color: var(--g200); transition: background .3s, color .3s, border-color .3s; }
.sector:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
@media (min-width: 900px) { .sector { font-size: 1rem; padding: .8rem 1.3rem; } }

/* ---------- team ---------- */
.team { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; } }
.member { display: grid; grid-template-columns: 118px 1fr; gap: 1rem; align-items: start; background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); padding: 1rem; box-shadow: var(--shadow); }
@media (min-width: 600px) { .member { grid-template-columns: 170px 1fr; gap: 1.4rem; padding: 1.3rem; } }
.member__photo { aspect-ratio: 4 / 5; overflow: hidden; background: var(--g100); border-radius: var(--r); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .6s; }
.member:hover .member__photo img { filter: none; }
.member__mono { width: 100%; height: 100%; display: grid; place-items: center; background: var(--ink); color: var(--white); font-size: clamp(2.2rem, 6vw, 3.4rem); font-weight: 800; letter-spacing: -0.05em; }
.member__body { min-width: 0; display: grid; gap: .3rem; align-content: start; }
.member__name { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.015em; }
@media (min-width: 600px) { .member__name { font-size: 1.3rem; } }
.member__role { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--g500); }
.member__bio { margin-top: .3rem; font-size: .9rem; color: var(--g600); }
.member__more { margin-top: .3rem; }
.member__more summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 600; color: var(--ink); }
.member__more summary::-webkit-details-marker { display: none; }
.member__more summary::after { content: "+"; display: grid; place-items: center; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--g100); font-weight: 500; }
.member__more[open] summary::after { content: "–"; }
.member__more p { margin-top: .5rem; font-size: .88rem; color: var(--g600); }
.member__links { margin-top: .5rem; display: flex; flex-wrap: wrap; gap: .3rem .9rem; font-size: .8rem; font-weight: 600; overflow-wrap: anywhere; }
.member__links a { border-bottom: 1px solid var(--g300); }

/* ---------- contact ---------- */
.contact { display: grid; gap: 3rem; }
@media (min-width: 960px) { .contact { grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; } }
.contact__list { display: grid; gap: 1.1rem; margin-top: 2rem; }
.contact__item { display: grid; grid-template-columns: 2.6rem 1fr; gap: .9rem; align-items: start; }
.contact__item svg { width: 2.6rem; height: 2.6rem; padding: .65rem; border-radius: 12px; background: var(--g900); border: 1px solid var(--g800); stroke: currentColor; fill: none; stroke-width: 1.6; }
.contact__item b { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--g400); font-weight: 600; margin-bottom: .15rem; }
.contact__item a { font-weight: 600; border-bottom: 1px solid var(--g700); transition: border-color .3s; }
.contact__item a:hover { border-color: var(--white); }
.contact__quick { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }

.form { background: var(--white); color: var(--ink); padding: 1.4rem; border-radius: var(--r-lg); display: grid; gap: 1rem; box-shadow: var(--shadow-lg); }
@media (min-width: 600px) { .form { padding: 2rem; } .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; } }
.form h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; }
.form > p { font-size: .9rem; color: var(--g600); margin-top: -.5rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .78rem; font-weight: 600; color: var(--g600); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; padding: .85rem .95rem; border: 1px solid var(--g300); border-radius: var(--r-sm); background: var(--paper); color: var(--ink);
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); background: var(--white); box-shadow: 0 0 0 3px rgba(0,0,0,.06); }
.field textarea { min-height: 7rem; resize: vertical; }
.form__actions { display: grid; gap: .6rem; }
@media (min-width: 600px) { .form__actions { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: .78rem; color: var(--g500); }

.map { margin-top: clamp(2.5rem, 6vw, 4rem); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--g800); filter: grayscale(1) contrast(1.05); aspect-ratio: 16 / 9; max-height: 420px; background: var(--g900); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--ink); color: var(--white); border-radius: var(--r-lg); padding: 2rem 1.5rem; display: grid; gap: 1.2rem; box-shadow: var(--shadow-lg); }
.cta-banner h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); letter-spacing: -0.02em; }
.cta-banner p { color: var(--g300); max-width: 60ch; margin-top: .4rem; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
@media (min-width: 900px) { .cta-banner { grid-template-columns: 1fr auto; align-items: center; padding: 2.6rem 3rem; } }

/* ---------- footer ---------- */
.footer { background: var(--black); color: var(--g400); padding: 3.5rem 0 calc(1.5rem + var(--mobile-bar, 0px)); font-size: .9rem; }
.footer__grid { display: grid; gap: 2.2rem; }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; } }
.footer .logo { color: var(--white); }
.footer h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; padding-bottom: .6rem; position: relative; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 2rem; height: 2px; background: var(--white); border-radius: 2px; }
.footer ul { display: grid; gap: .5rem; }
.footer a:hover { color: var(--white); }
.footer__tag { margin-top: 1.1rem; max-width: 36ch; }
.footer__bottom { margin-top: 2.5rem; padding: 1rem 1.3rem; border-radius: var(--r); background: var(--g900); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; font-size: .8rem; }

/* ---------- mobile action bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(10,10,10,.95); color: var(--white); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--g800); padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%); transition: transform .4s var(--ease);
}
.mobile-bar.show { transform: none; }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: .2rem; padding: .6rem 0 .5rem; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.mobile-bar a + a { border-left: 1px solid var(--g800); }
.mobile-bar svg { width: 1.2rem; height: 1.2rem; stroke: currentColor; fill: none; stroke-width: 1.6; }
.mobile-bar a.primary { background: var(--white); color: var(--ink); }
@media (min-width: 960px) { .mobile-bar { display: none; } }
body.has-mobile-bar { --mobile-bar: 64px; }

/* ---------- page hero (work page) ---------- */
.page-hero { padding: calc(var(--nav-h) + clamp(2rem, 6vw, 4rem)) 0 clamp(1.5rem, 4vw, 2.5rem); }

/* ---------- project modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 80; background: var(--white); color: var(--ink);
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  transform: translateY(4%); opacity: 0; visibility: hidden;
  transition: transform .45s var(--ease), opacity .35s, visibility 0s .45s;
}
.modal.open { transform: none; opacity: 1; visibility: visible; transition: transform .45s var(--ease), opacity .35s, visibility 0s; }
.modal__bar { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--nav-h); padding-inline: var(--gutter); background: rgba(255,255,255,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--g200); }
.modal__bar .btn-icon { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; }
.modal__bar .btn-icon svg { width: 1.1rem; height: 1.1rem; stroke: currentColor; fill: none; stroke-width: 1.8; }
.modal__nav { display: inline-flex; gap: .4rem; }
.modal__nav button { width: 40px; height: 40px; border: 1px solid var(--g300); border-radius: 50%; display: grid; place-items: center; transition: background .25s, color .25s; }
.modal__nav button:hover { background: var(--ink); color: var(--white); }
.modal__nav svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 1.8; }
.modal__head { padding: clamp(1.6rem, 4vw, 3rem) 0 clamp(1.2rem, 3vw, 2rem); display: grid; gap: 1.2rem; }
@media (min-width: 900px) { .modal__head { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; } }
.modal__title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
.modal__meta { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; font-size: .85rem; color: var(--g500); margin-top: .7rem; }
.modal__meta b { color: var(--ink); font-weight: 600; }
.modal__desc { color: var(--g600); font-size: 1rem; max-width: 58ch; }
.gallery { display: grid; gap: .7rem; padding-bottom: clamp(2.5rem, 6vw, 4rem); }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 1rem; } .gallery figure.wide, .gallery figure:first-child:not(.small) { grid-column: 1 / -1; } }
.gallery figure { margin: 0; background: var(--g100); border-radius: var(--r); overflow: hidden; cursor: zoom-in; }
.gallery img { width: 100%; height: auto; display: block; }
.gallery figure.small { display: grid; place-items: center; padding: 1rem; }
.gallery figure.small img { width: auto; max-width: 100%; max-height: 520px; border-radius: var(--r-sm); }
.modal__foot { border-top: 1px solid var(--g200); padding: 1.5rem 0 3rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.modal__foot a { display: grid; gap: .15rem; }
.modal__foot small { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--g500); font-weight: 600; }
.modal__foot span { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.modal__foot a:last-child { text-align: right; }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,.96); color: var(--white); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s, visibility 0s .3s; touch-action: pan-y; }
.lightbox.open { opacity: 1; visibility: visible; transition: opacity .3s, visibility 0s; }
.lightbox img { max-width: 100vw; max-height: 100svh; object-fit: contain; user-select: none; -webkit-user-drag: none; }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: .6rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: .6rem; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 1.2rem; height: 1.2rem; stroke: currentColor; fill: none; stroke-width: 1.8; }
.lightbox__count { position: absolute; left: 1.2rem; bottom: calc(1rem + env(safe-area-inset-bottom)); font-size: .8rem; font-weight: 600; letter-spacing: .08em; color: var(--g400); }
@media (max-width: 700px) { .lightbox__prev, .lightbox__next { display: none; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__slides img { transition: opacity .6s; transform: none; } }

/* utilities */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ============================================================
   v2 additions: brand logos, why-ADB, case studies, FAQ
   ============================================================ */

/* brand band with logos (light card, grayscale → colour on hover) */


/* why ADB */
.why { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; } }
.why__item { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r); padding: 1.4rem 1.3rem; box-shadow: var(--shadow); display: grid; gap: .6rem; align-content: start; }
.why__num { font-size: .72rem; font-weight: 700; letter-spacing: .14em; color: var(--g500); }
.why__item h3 { font-size: 1.1rem; letter-spacing: -0.015em; }
.why__item p { font-size: .92rem; color: var(--g600); }
.why__proof { display: inline-block; margin-top: .2rem; font-size: .78rem; font-weight: 600; color: var(--ink); background: var(--g100); padding: .3rem .6rem; border-radius: 999px; }

/* case studies */
.cs-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .cs-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; } }
@media (min-width: 1000px) { .cs-grid { grid-template-columns: repeat(3, 1fr); } }
.cs-card { display: grid; grid-template-rows: auto 1fr; background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s; }
.cs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cs-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--g100); }
.cs-card__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .5s, transform 1s var(--ease); }
.cs-card:hover .cs-card__media img { filter: none; transform: scale(1.03); }
.cs-card__body { padding: 1.2rem 1.2rem 1.3rem; display: grid; gap: .5rem; align-content: start; }
.cs-card__theme { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--g500); }
.cs-card__title { font-size: 1.1rem; line-height: 1.35; letter-spacing: -0.015em; }
.cs-card__meta { font-size: .85rem; color: var(--g500); }
.cs-card .link-more { margin-top: .4rem; }

.cs-list { display: grid; gap: 1.2rem; }
.cs { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); scroll-margin-top: calc(var(--nav-h) + 1rem); }
.cs__top { display: grid; }
@media (min-width: 900px) { .cs__top { grid-template-columns: 2fr 3fr; } }
.cs__media { background: var(--g100); aspect-ratio: 16 / 10; position: relative; }
.cs__media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) { .cs__media { aspect-ratio: auto; min-height: 260px; } .cs__media img { position: absolute; inset: 0; } }
.cs__body { padding: 1.4rem 1.3rem; display: grid; gap: .7rem; align-content: start; }
@media (min-width: 900px) { .cs__body { padding: 2rem 2.2rem; } }
.cs__theme { display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); background: var(--g100); padding: .35rem .7rem; border-radius: 999px; width: max-content; }
.cs__title { font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.3; letter-spacing: -0.02em; }
.cs__meta { font-size: .875rem; color: var(--g500); }
.cs__meta b { color: var(--ink); font-weight: 600; }
.cs__challenge { color: var(--g600); }
.cs__challenge b { color: var(--ink); font-weight: 700; }
.cs__more { border-top: 1px solid var(--g200); }
.cs__more summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.3rem; font-weight: 700; font-size: .95rem; }
@media (min-width: 900px) { .cs__more summary { padding: 1.1rem 2.2rem; } }
.cs__more summary::-webkit-details-marker { display: none; }
.cs__more summary::after { content: "+"; display: grid; place-items: center; width: 1.6rem; height: 1.6rem; border-radius: 50%; border: 1px solid var(--g300); font-weight: 500; flex: none; transition: transform .3s; }
.cs__more[open] summary::after { content: "–"; }
.cs__detail { padding: 0 1.3rem 1.5rem; display: grid; gap: 1.4rem; }
@media (min-width: 900px) { .cs__detail { padding: 0 2.2rem 2rem; grid-template-columns: 1fr 1fr; } .cs__detail .link-more { grid-column: 1 / -1; } }
.cs__detail h4 { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--g500); margin-bottom: .6rem; }
.cs__detail ul { display: grid; gap: .55rem; }
.cs__detail li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; color: var(--g700); }
.cs__detail li::before { content: ""; flex: none; width: .45rem; height: .45rem; border-radius: 50%; background: var(--ink); margin-top: .55rem; }

.theme-nav { display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; padding-bottom: .5rem; margin-bottom: 1.6rem; }
.theme-nav::-webkit-scrollbar { display: none; }
.theme-nav a { flex: none; padding: .55rem 1rem; border-radius: 999px; border: 1px solid var(--g300); background: var(--white); font-size: .82rem; font-weight: 600; color: var(--g700); transition: background .25s, color .25s; }
.theme-nav a:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* FAQ */
.faq { display: grid; gap: .7rem; }
@media (min-width: 900px) { .faq-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; } .faq-wrap .section-head { margin-bottom: 0; display: block; } }
.faq__item { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r); box-shadow: var(--shadow); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.05rem 1.2rem; font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; display: grid; place-items: center; flex: none; width: 1.7rem; height: 1.7rem; border-radius: 50%; background: var(--g100); font-weight: 500; }
.faq__item[open] summary::after { content: "–"; background: var(--ink); color: var(--white); }
.faq__item p { padding: 0 1.2rem 1.2rem; color: var(--g600); font-size: .95rem; }
.faq__item p + p { margin-top: -.6rem; }
.faq__cta { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem; }

/* home CTA banner spacing */
.section--banner { padding-block: 0 var(--section); }

/* ============================================================
   v3 additions: hero video, showreel, partners, gallery video
   ============================================================ */
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero__slides { z-index: 0; }
.hero__shade { z-index: 2; }
.hero__content, .hero__foot { z-index: 3; }
.hero__cta .btn svg { width: .9em; height: .9em; }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }

.reel { display: grid; gap: 1.5rem; background: var(--ink); color: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
@media (min-width: 900px) { .reel { grid-template-columns: 1.4fr 1fr; align-items: center; } }
.reel__poster { position: relative; display: block; padding: 0; aspect-ratio: 16 / 9; overflow: hidden; background: var(--g900); }
.reel__poster img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .6s; filter: grayscale(.4); }
.reel__poster:hover img { transform: scale(1.03); filter: none; }
.reel__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 78px; height: 78px; border-radius: 50%; background: var(--white); color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .3s var(--ease); }
.reel__poster:hover .reel__play { transform: translate(-50%, -50%) scale(1.06); }
.reel__play svg { width: 30px; height: 30px; margin-left: 4px; }
.reel__text { padding: 1.5rem 1.4rem 1.8rem; }
@media (min-width: 900px) { .reel__text { padding: 2.4rem 2.6rem 2.4rem 1rem; } }
.reel__text .eyebrow { color: var(--g400); }
.reel__text .lead { color: var(--g300); }
.reel__text .btn { background: var(--white); color: var(--ink); border-color: var(--white); }

.reel-modal { position: fixed; inset: 0; z-index: 95; background: rgba(0,0,0,.96); display: grid; place-items: center; padding: 1rem; }
.reel-modal[hidden] { display: none; }
.reel-modal__video { width: min(100%, 1200px); max-height: 90svh; border-radius: var(--r); background: #000; box-shadow: var(--shadow-lg); }
.reel-modal__close { position: absolute; top: 1rem; right: 1rem; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); color: var(--white); display: grid; place-items: center; }
.reel-modal__close svg { width: 1.2rem; height: 1.2rem; stroke: currentColor; fill: none; stroke-width: 1.8; }

.partners { margin-top: 1.4rem; background: var(--g900); border: 1px solid var(--g800); border-radius: var(--r-lg); padding: 1.5rem 1.4rem; display: grid; gap: 1.4rem; }
@media (min-width: 1000px) { .partners { grid-template-columns: 1fr 2fr; gap: 2.5rem; padding: 2rem 2.2rem; } }
.partners__head .h3 { margin-bottom: .6rem; }
.partners__head .muted { color: var(--g400); font-size: .95rem; }
.partners__grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .partners__grid { grid-template-columns: 1fr 1fr; } }
.partner { background: var(--black); border: 1px solid var(--g800); border-radius: var(--r); padding: 1.3rem 1.2rem; display: grid; gap: .55rem; align-content: start; }
.partner__tag { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--g400); }
.partner h4 { font-size: 1.05rem; letter-spacing: -0.01em; }
.partner p { font-size: .9rem; color: var(--g300); }
.partner__links { display: flex; flex-wrap: wrap; gap: .3rem 1rem; font-size: .82rem; font-weight: 600; }
.partner__links a { border-bottom: 1px solid var(--g600); }
.partner__links a:hover { border-color: var(--white); }

.gallery figure.video { cursor: default; background: #000; }
.gallery figure.video video { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; }
.gallery figure.video figcaption { padding: .6rem .9rem; font-size: .8rem; font-weight: 600; color: var(--g300); background: var(--ink); }
.card__count--film { left: .75rem; right: auto; background: var(--white); color: var(--ink); }

.hero--video .hero__foot { display: none; }
@media (min-width: 1100px) { .team { grid-template-columns: repeat(3, 1fr); } .team .member { grid-template-columns: 140px 1fr; gap: 1.1rem; padding: 1.1rem; } }
