/* ============================================================
   Libanza — Site styles  (styles/site.css)
   Refined-editorial / cinematic. Two-colour brand.
   ============================================================ */

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: var(--lh-normal);
  color: var(--fg-1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--red-100); color: var(--libanza-red-deep); }

/* ---- Active nav link ---- */
.nav__link--active { color: var(--brand); }
.nav__link--active::after { transform: scaleX(1); }

/* ---- Layout primitives ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 132px); }
.section--tight { padding-block: clamp(56px, 7vw, 92px); }
.section--dark { background: var(--ink-900); color: var(--ink-50); }
.section--muted { background: var(--bg-muted); }

/* ---- Type helpers ---- */
.eyebrow {
  font-weight: 700; font-size: 12px; text-transform: uppercase;
  letter-spacing: var(--tracking-cap); color: var(--brand);
  display: inline-flex; align-items: center; gap: 10px;
}
/* Red dash before eyebrows removed per brand direction */
.section--dark .eyebrow { color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: var(--tracking-tight); line-height: var(--lh-snug); text-wrap: balance; }
.h-xl { font-weight: 800; font-size: clamp(40px, 6vw, 84px); line-height: var(--lh-tight); letter-spacing: -0.035em; }
.h-lg { font-weight: 800; font-size: clamp(32px, 4.4vw, 58px); line-height: 1.05; }
.h-md { font-weight: 700; font-size: clamp(24px, 2.6vw, 36px); }
.h-sm { font-weight: 700; font-size: clamp(20px, 2vw, 26px); }
.lead { font-size: clamp(18px, 1.55vw, 22px); line-height: var(--lh-relaxed); color: var(--fg-2); text-wrap: pretty; }
.section--dark .lead { color: var(--ink-300); }
.muted { color: var(--fg-2); }
em.accent { color: var(--brand); font-style: italic; }
.mono { font-family: var(--font-mono); }

.rule { width: 52px; height: 3px; background: var(--brand); border: 0; margin: 0; }

.section__head { max-width: 760px; display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head .lead { margin-top: 2px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 15px; line-height: 1;
  padding: 15px 24px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background var(--dur-fast) var(--ease-std), color var(--dur-fast),
              border-color var(--dur-fast), transform var(--dur-fast);
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn__arr { font-family: var(--font-mono); font-weight: 700; transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .btn__arr { transform: translateX(4px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover, .btn--primary:hover .btn__arr, .btn--primary:focus-visible { background: var(--brand-hover); color: #fff; }
.btn--dark { background: var(--ink-900); color: #fff; }
.btn--dark:hover { background: var(--ink-700); }
.btn--ghost { border-color: var(--border-strong); color: var(--fg-1); }
.btn--ghost:hover { border-color: var(--ink-900); background: var(--ink-900); color: #fff; }
.btn--on-dark { border-color: rgba(255,255,255,.28); color: #fff; }
.btn--on-dark:hover { background: #fff; color: var(--ink-900); border-color: #fff; }
.btn--lg { font-size: 16px; padding: 17px 30px; }

/* ---- Text link with arrow ---- */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--brand);
  transition: gap var(--dur-base) var(--ease-out);
}
.tlink .btn__arr { color: var(--brand); }
.tlink:hover { gap: 13px; }
.section--dark .tlink { color: #fff; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: 80ms; }
.reveal[data-d="2"]{ transition-delay: 160ms; }
.reveal[data-d="3"]{ transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- Skip link ---- */
.skip { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--ink-900); color: #fff; padding: 10px 16px; border-radius: var(--radius-md); font-weight: 700; transition: top var(--dur-base); }
.skip:focus { top: 16px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background var(--dur-base) var(--ease-std), border-color var(--dur-base), box-shadow var(--dur-base);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--border-subtle);
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 74px; }
.nav__brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink-900); flex-shrink: 0; }
.nav__brand svg { height: 26px; width: auto; transition: transform var(--dur-base) var(--ease-out); }
.nav__brand:hover svg { transform: translateY(-1px); }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  position: relative; font-weight: 600; font-size: 14.5px; color: var(--fg-1);
  padding: 9px 13px; border-radius: var(--radius-pill); transition: color var(--dur-fast), background var(--dur-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-base) var(--ease-out);
}
.nav__link:hover { color: var(--brand); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__tools { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* language toggle */
.lang { display: inline-flex; align-items: center; border: 1.5px solid var(--border-strong); border-radius: var(--radius-pill); overflow: hidden; }
.lang__btn { padding: 6px 12px; font-weight: 700; font-size: 12.5px; letter-spacing: .04em; color: var(--fg-2); transition: background var(--dur-fast), color var(--dur-fast); }
.lang__btn[aria-pressed="true"] { background: var(--ink-900); color: #fff; }

.nav__cta { display: inline-flex; }

/* mobile menu */
.nav__burger { display: none; width: 42px; height: 42px; border-radius: var(--radius-md); align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--ink-900); position: relative; transition: background var(--dur-fast); }
.nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink-900); transition: transform var(--dur-base) var(--ease-out); }
.nav__burger span::before { top: -6px; } .nav__burger span::after { top: 6px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px){
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile {
    position: fixed; inset: 74px 0 0; z-index: 99; background: var(--ink-0);
    transform: translateX(100%); transition: transform var(--dur-base) var(--ease-out);
    display: flex; flex-direction: column; padding: 24px var(--gutter); gap: 4px; overflow-y: auto;
  }
  body.menu-open .nav__mobile { transform: none; }
  .nav__mobile a { font-family: var(--font-display); font-weight: 700; font-size: 26px; padding: 14px 0; border-bottom: 1px solid var(--border-subtle); }
  .nav__mobile .btn { margin-top: 18px; justify-content: center; }
}
@media (min-width: 941px){ .nav__mobile { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-block: clamp(56px, 9vw, 116px) clamp(64px, 8vw, 104px); overflow: hidden; background: var(--bg); }
.hero::before {
  content: ""; position: absolute; top: -10%; right: -6%; width: 46vw; height: 46vw; max-width: 640px; max-height: 640px;
  background: radial-gradient(circle at 50% 50%, rgba(237,28,36,.08), transparent 66%); pointer-events: none;
}
.hero__inner { position: relative; max-width: 1020px; }
.hero__kicker { margin-bottom: 26px; }
.hero h1 { margin-bottom: 28px; }
.hero h1 .tick { display: inline-block; width: .62em; height: .62em; color: var(--brand); vertical-align: baseline; margin-left: .04em; }
.hero__lead { max-width: 620px; margin-bottom: 36px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__meta { margin-top: clamp(44px, 6vw, 72px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 28px; padding-top: 30px; border-top: 1px solid var(--border); }
.hero__stat b { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -0.02em; display: block; line-height: 1; }
.hero__stat span { font-size: 13px; color: var(--fg-3); display: block; margin-top: 8px; line-height: 1.35; }
@media (max-width: 720px){ .hero__meta { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   CLIENTS STRIP
   ============================================================ */
.clients { padding-block: clamp(40px, 5vw, 60px); border-bottom: 1px solid var(--border-subtle); overflow: hidden; }
.clients__label { font-size: 13px; font-weight: 600; color: var(--fg-3); text-align: center; margin-bottom: 26px; }

/* ---- Leadership / team grid (about.html) ---- */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 760px){ .team { grid-template-columns: 1fr; } }
.member { display: grid; grid-template-columns: 84px 1fr; gap: 20px; align-items: start; padding: 26px; background: var(--ink-0); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); transition: box-shadow var(--dur-base), border-color var(--dur-base); }
.member:hover { box-shadow: var(--shadow-card); border-color: var(--border); }
.member__ph { width: 84px; height: 84px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--ink-900); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: 0.02em; overflow: hidden; }
.member__ph img { width: 100%; height: 100%; object-fit: cover; }
.member__name { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; margin: 2px 0 2px; }
.member__role { font-size: 12.5px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: var(--tracking-cap); margin: 0 0 12px; }
.member__bio { font-size: 14px; line-height: 1.6; color: var(--fg-2); margin: 0; text-wrap: pretty; }

/* ---- Compact leadership strip (home) ---- */
.leads { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 920px){ .leads { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .leads { grid-template-columns: 1fr; } }
.ldr { display: flex; align-items: center; gap: 16px; padding: 18px; background: var(--ink-0); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); text-decoration: none; transition: border-color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base) var(--ease-out); }
.ldr:hover { border-color: var(--border); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.ldr__ph { width: 56px; height: 56px; flex: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--ink-900); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: .02em; }
.ldr__ph img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ldr__name { display: block; font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; color: var(--ink-900); margin: 0 0 3px; }
.ldr__role { display: block; font-size: 11.5px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: var(--tracking-cap); margin: 0; line-height: 1.35; }
.ldr__linkedin { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; font-size: 11px; font-weight: 600; color: var(--ink-500); }
.ldr__linkedin svg { width: 13px; height: 13px; }
.member__linkedin { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; font-size: 12.5px; font-weight: 700; color: var(--brand); text-decoration: none; }
.member__linkedin svg { width: 15px; height: 15px; }
.member__linkedin:hover { text-decoration: underline; }

/* ---- Films page: real embed grid ---- */
.filmgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 760px){ .filmgrid { grid-template-columns: 1fr; } }
.filmgrid + .filmgrid { margin-top: 26px; }
.filmitem { display: flex; flex-direction: column; }
.filmitem__cap { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 12px; }
.filmitem__cap b { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.filmitem__cap span { font-size: 12px; color: var(--fg-3); white-space: nowrap; }
.filmitem__client { font-size: 12.5px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: var(--tracking-cap); margin-top: 10px; }
.filmgroup__head { display: flex; align-items: center; gap: 14px; margin: 40px 0 20px; }
.filmgroup__head:first-child { margin-top: 0; }
.filmgroup__head h3 { font-family: var(--font-display); font-weight: 800; font-size: 20px; margin: 0; }
.filmgroup__head .rule { flex: 1; height: 1px; background: var(--border); }

/* ---- Logo-design showcase wall (work/logo-design.html) ---- */
.logowall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px){ .logowall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .logowall { grid-template-columns: 1fr; } }
.logocard { position: relative; display: flex; flex-direction: column; background: var(--ink-0); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--dur-base), border-color var(--dur-base), transform var(--dur-base); }
.logocard:hover { box-shadow: var(--shadow-pop); border-color: var(--border); transform: translateY(-3px); }
.logocard__art { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; padding: 30px; background: var(--ink-50); }
.logocard__art img { max-width: 78%; max-height: 76%; object-fit: contain; }
.logocard__body { padding: 16px 18px 18px; border-top: 1px solid var(--border-subtle); }
.logocard__body h3 { font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; margin: 0 0 6px; }
.logocard__body p { font-size: 13.5px; line-height: 1.5; color: var(--fg-2); margin: 0; text-wrap: pretty; }
a.logocard { text-decoration: none; color: inherit; }
.logocard__view { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); }
a.logocard:hover .logocard__view { gap: 10px; }

/* ---- Single logo detail page ---- */
.logodetail { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (max-width: 820px){ .logodetail { grid-template-columns: 1fr; } }
.logodetail__art { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; padding: clamp(36px, 6vw, 72px); background: var(--ink-50); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); margin: 0; }
.logodetail__art img { max-width: 76%; max-height: 70%; object-fit: contain; }
.logofacts { display: grid; grid-template-columns: 1fr; gap: 0; margin: 22px 0 26px; border-top: 1px solid var(--border-subtle); }
.logofacts div { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--border-subtle); }
.logofacts dt { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-3); margin: 0; }
.logofacts dd { font-size: 14px; font-weight: 600; color: var(--ink-900); margin: 0; text-align: right; }

/* ---- Case hero: link to cloud assets (Google Drive) ---- */
a.casehero__media--drive { display: block; cursor: pointer; }
.casehero__drivebtn { position: absolute; top: 16px; right: 16px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #fff; background: rgba(14,13,12,.62); backdrop-filter: blur(4px); padding: 9px 14px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,.28); transition: background var(--dur-base), gap var(--dur-base); }
a.casehero__media--drive:hover .casehero__drivebtn { background: var(--brand); gap: 12px; }

/* ---- Logo marquee (single line, auto-scroll, pause + tooltip on hover) ---- */
.marquee {
  --logo-h: 72px;        /* doubled from the old ~36px cap */
  --logo-gap: 64px;
  --marquee-dur: 46s;    /* lower = faster */
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee.is-rtl .marquee__track { animation: marquee-rtl var(--marquee-dur) linear infinite; }
.marquee.is-ltr .marquee__track { animation: marquee-ltr var(--marquee-dur) linear infinite; }
.marquee.is-paused .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: var(--logo-gap); padding-inline: calc(var(--logo-gap) / 2); }
@keyframes marquee-rtl { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes marquee-ltr { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.mlogo { margin: 0; display: flex; align-items: center; cursor: default; }
img.clients__logo {
  height: var(--logo-h); width: auto; max-width: calc(var(--logo-h) * 3.4);
  object-fit: contain; display: block;
  filter: grayscale(1); opacity: .55;
  transition: opacity var(--dur-base), filter var(--dur-base), transform var(--dur-base);
}
.marquee:not(.no-gray) .mlogo:hover img.clients__logo,
.marquee.no-gray img.clients__logo { filter: grayscale(0); opacity: 1; }
.mlogo:hover img.clients__logo { transform: scale(1.04); }

/* Brand tooltip */
.marquee__tip {
  position: absolute; left: 0; top: 0; z-index: 5;
  transform: translate(-50%, 10px);
  max-width: 280px; padding: 12px 15px;
  background: var(--ink-900); color: #fff;
  border-radius: var(--radius-md, 10px);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  opacity: 0; pointer-events: none;
  transition: opacity .18s var(--ease-out), transform .18s var(--ease-out);
  text-align: left;
}
.marquee__tip.show { opacity: 1; transform: translate(-50%, 16px); }
.marquee__tip::before {
  content: ""; position: absolute; top: -6px; left: 50%; margin-left: -6px;
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-bottom: 6px solid var(--ink-900);
}
.marquee__tip strong { display: block; font-family: var(--font-display); font-size: 14px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 3px; }
.marquee__tip span { display: block; font-size: 12.5px; line-height: 1.45; color: rgba(255,255,255,.82); }
@media (prefers-reduced-motion: reduce) {
  .marquee.is-rtl .marquee__track, .marquee.is-ltr .marquee__track { animation: none; }
}

/* ============================================================
   SERVICES — 4 categories, depth via <details>
   ============================================================ */
.svc { display: grid; gap: 16px; }
.svc__item { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--ink-0); overflow: hidden; transition: border-color var(--dur-base), box-shadow var(--dur-base); }
.svc__item:hover { border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.svc__item[open] { border-color: var(--ink-900); }
.svc__summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: auto 1fr auto; gap: clamp(16px, 3vw, 40px); align-items: center; padding: clamp(24px, 3vw, 38px) clamp(22px, 3vw, 40px); }
.svc__summary::-webkit-details-marker { display: none; }
.svc__num { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--brand); padding-top: 6px; }
.svc__head h3 { margin-bottom: 8px; }
.svc__head p { color: var(--fg-2); font-size: 15.5px; max-width: 620px; line-height: 1.55; }
.svc__toggle { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border-strong); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-base) var(--ease-out); }
.svc__toggle::before { content: ""; width: 13px; height: 13px; background: currentColor; -webkit-mask: var(--plus) center/contain no-repeat; mask: var(--plus) center/contain no-repeat; --plus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E"); color: var(--ink-900); }
.svc__item[open] .svc__toggle { background: var(--brand); border-color: var(--brand); color: #fff; transform: rotate(135deg); }
.svc__body { padding: 0 clamp(22px, 3vw, 40px) clamp(28px, 3vw, 38px); }
.svc__body-inner { border-top: 1px solid var(--border-subtle); padding-top: 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px 36px; }
.svc__group h4 { font-family: var(--font-body); font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: var(--tracking-cap); color: var(--brand); padding-bottom: 9px; margin-bottom: 10px; border-bottom: 1px solid var(--border-subtle); }
.svc__group li { padding: 5px 0; }
.svc__group a { font-size: 14.5px; color: var(--ink-800); display: inline-flex; align-items: center; gap: 7px; transition: color var(--dur-fast); }
.svc__group a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); opacity: .5; transition: opacity var(--dur-fast), transform var(--dur-fast); }
.svc__group a:hover { color: var(--brand); }
.svc__group a:hover::before { opacity: 1; transform: scale(1.5); }
.svc__cats-foot { margin-top: 22px; }

/* ============================================================
   RESONANCE POINT
   ============================================================ */
.rp { position: relative; overflow: hidden; }
.rp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
@media (max-width: 900px){ .rp__grid { grid-template-columns: 1fr; } }
.rp__copy .lead { margin-block: 18px 24px; }
.rp__def { font-size: 16px; line-height: 1.7; color: var(--ink-300); border-left: 3px solid var(--brand); padding-left: 20px; max-width: 540px; }
.rp__def b { color: #fff; font-weight: 700; }

.rp__diagram { position: relative; aspect-ratio: 1 / 1; width: 100%; max-width: 480px; margin-inline: auto; }
.rp__diagram svg { width: 100%; height: 100%; overflow: visible; }
.rp__ring { fill: none; stroke: rgba(255,255,255,.10); stroke-width: 1; }
.rp__spoke { stroke: rgba(255,255,255,.16); stroke-width: 1; stroke-dasharray: 220; stroke-dashoffset: 220; transition: stroke-dashoffset 900ms var(--ease-out); }
.rp.in .rp__spoke { stroke-dashoffset: 0; }
.rp__core { fill: var(--brand); transform-origin: center; transform-box: fill-box; }
.rp.in .rp__core { animation: rp-pulse 3.4s var(--ease-out) infinite; }
@keyframes rp-pulse { 0%,100%{ transform: scale(1); opacity: 1; } 50%{ transform: scale(1.16); opacity: .9; } }
.rp__core-label { fill: #fff; font-family: var(--font-display); font-weight: 800; font-size: 9px; letter-spacing: .04em; text-anchor: middle; }
.rp__node circle { fill: var(--ink-900); stroke: rgba(255,255,255,.3); stroke-width: 1.5; transition: fill var(--dur-base), stroke var(--dur-base); }
.rp__node text { fill: #fff; font-family: var(--font-display); font-weight: 700; font-size: 8.4px; text-anchor: middle; }
.rp__node.on circle { fill: var(--brand); stroke: var(--brand); }
.rp__forces { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.rp__force { display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px; border: 1px solid var(--border-on-dark); border-radius: var(--radius-pill); font-size: 13.5px; font-weight: 600; color: var(--ink-300); transition: border-color var(--dur-fast), color var(--dur-fast); cursor: default; }
.rp__force i { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); font-style: normal; }
.rp__force:hover, .rp__force.on { border-color: var(--brand); color: #fff; }

/* ============================================================
   WORK
   ============================================================ */
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px){ .work__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .work__grid { grid-template-columns: 1fr; } }
.work__card { display: flex; flex-direction: column; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; background: var(--ink-0); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base), border-color var(--dur-base); }
.work__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--border-strong); }
.work__thumb { aspect-ratio: 4 / 3; position: relative; overflow: hidden; background: var(--ink-100); }
.work__thumb svg { width: 100%; height: 100%; transition: transform 700ms var(--ease-out); }
.work__card:hover .work__thumb svg { transform: scale(1.05); }
.work__kind { position: absolute; top: 14px; left: 14px; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 11px; border-radius: var(--radius-pill); background: rgba(255,255,255,.92); color: var(--ink-900); backdrop-filter: blur(6px); }
.work__kind--case { background: var(--brand); color: #fff; }
.work__kind--ai { background: var(--ink-900); color: #fff; }
.work__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.work__client { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); }
.work__card h3 { font-size: 22px; font-weight: 700; }
.work__card p { font-size: 14.5px; line-height: 1.55; color: var(--fg-2); }
.work__foot { margin-top: auto; padding-top: 14px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-subtle); font-size: 12.5px; color: var(--fg-3); }
.work__foot .mono { color: var(--fg-3); }
.section__cta-row { margin-top: clamp(36px, 4vw, 52px); display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ============================================================
   BLOG / FIELD NOTES
   ============================================================ */
.notes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px){ .notes__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .notes__grid { grid-template-columns: 1fr; } }
.note { display: flex; flex-direction: column; gap: 14px; padding: 30px 28px; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); background: var(--ink-0); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base), border-color var(--dur-base); }
.note:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--border-strong); }
.note__meta { display: flex; gap: 12px; align-items: center; font-size: 12px; color: var(--fg-3); }
.note__cat { font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); }
.note h3 { font-size: 22px; font-weight: 700; line-height: 1.18; }
.note p { font-size: 14.5px; line-height: 1.55; color: var(--fg-2); }
.note__foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-subtle); font-size: 13px; color: var(--fg-3); }
.note__foot b { color: var(--ink-900); }

/* ============================================================
   CAREERS TEASER
   ============================================================ */
.careers { background: var(--ink-900); color: var(--ink-50); }
.careers__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
@media (max-width: 860px){ .careers__grid { grid-template-columns: 1fr; } }
.careers__values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px){ .careers__values { grid-template-columns: 1fr; } }
.careers__value { padding: 22px; border: 1px solid var(--border-on-dark); border-radius: var(--radius-md); transition: border-color var(--dur-base), background var(--dur-base); }
.careers__value:hover { border-color: var(--brand); background: rgba(237,28,36,.06); }
.careers__value h4 { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.careers__value p { font-size: 13.5px; line-height: 1.5; color: var(--ink-300); }

/* ============================================================
   FAQ — answer-engine block
   ============================================================ */
.faq__list { display: grid; gap: 12px; max-width: 860px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--ink-0); overflow: hidden; transition: border-color var(--dur-base); }
.faq__item[open] { border-color: var(--ink-900); }
.faq__q { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 22px 24px; font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 1.7vw, 20px); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; font-family: var(--font-mono); font-size: 24px; color: var(--brand); transition: transform var(--dur-base) var(--ease-out); flex-shrink: 0; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 24px 24px; }
.faq__a p { color: var(--fg-2); line-height: 1.65; font-size: 16px; max-width: 70ch; }
.faq__a p + p { margin-top: 12px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--brand); color: #fff; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
@media (max-width: 860px){ .contact__grid { grid-template-columns: 1fr; } }
.contact h2 { color: #fff; }
.contact .rule { background: #fff; }
.contact__lead { color: rgba(255,255,255,.9); margin-block: 18px 30px; max-width: 460px; font-size: clamp(18px,1.5vw,21px); line-height: 1.6; }
.contact__channels { display: flex; flex-direction: column; gap: 10px; }
.contact__channel { display: flex; align-items: center; gap: 15px; padding: 16px 20px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); transition: background var(--dur-fast), transform var(--dur-fast); }
.contact__channel:hover { background: rgba(255,255,255,.2); transform: translateX(3px); }
.contact__channel-ic { width: 40px; height: 40px; border-radius: 9px; background: #fff; color: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__channel-ic svg { width: 20px; height: 20px; }
.contact__channel b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.contact__channel span { font-size: 13.5px; color: rgba(255,255,255,.85); }
.contact__channel .btn__arr { margin-left: auto; }

.contact__form { background: #fff; color: var(--fg-1); padding: clamp(26px, 3vw, 38px); border-radius: var(--radius-lg); box-shadow: var(--shadow-pop); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--fg-2); margin-bottom: 7px; }
.field input, .field textarea, .field select { width: 100%; font-family: var(--font-body); font-size: 15px; padding: 13px 15px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-md); background: #fff; color: var(--fg-1); transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.field textarea { resize: vertical; min-height: 96px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px){ .field--row { grid-template-columns: 1fr; } }
.contact__form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.contact__form-note { font-size: 12px; color: var(--fg-3); margin-top: 12px; text-align: center; }

/* ============================================================
   FOOTER — semantic crawl map
   ============================================================ */
.footer { background: var(--ink-900); color: var(--ink-300); padding-block: clamp(56px, 7vw, 88px) 32px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px 28px; }
@media (max-width: 980px){ .footer__top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 560px){ .footer__top { grid-template-columns: 1fr 1fr; } }
.footer__brand { grid-column: span 1; }
@media (max-width: 980px){ .footer__brand { grid-column: 1 / -1; } }
.footer__brand svg { height: 28px; width: auto; color: #fff; margin-bottom: 16px; }
.footer__brand p { font-size: 14px; line-height: 1.6; color: var(--ink-400); max-width: 320px; }
.footer__motto { font-style: italic; color: #fff !important; border-left: 2px solid var(--brand); padding-left: 13px; margin-top: 16px !important; }
.footer__col h4 { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-cap); color: #fff; margin-bottom: 15px; }
.footer__col li { margin-bottom: 9px; }
.footer__col a { font-size: 14px; color: var(--ink-300); transition: color var(--dur-fast); }
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: #fff; transition: background var(--dur-fast), border-color var(--dur-fast); }
.footer__social a:hover { background: var(--brand); border-color: var(--brand); }
.footer__social svg { width: 16px; height: 16px; }

/* floating action stack: WhatsApp + Share */
.fab-stack { position: fixed; right: 20px; bottom: 20px; z-index: 400; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px rgba(0,0,0,.22); transition: transform var(--dur-fast); color: #fff; }
.fab:hover { transform: translateY(-2px); }
.fab--wa { background: var(--ink-900); }
.fab--share { background: var(--brand); }
.fab svg { width: 26px; height: 26px; }
.sharepop { position: absolute; right: 0; bottom: 66px; background: var(--ink-0); border: 1px solid var(--border); border-radius: var(--radius-lg, 14px); box-shadow: 0 16px 40px rgba(0,0,0,.22); padding: 10px; display: none; flex-direction: column; gap: 2px; min-width: 210px; }
.sharepop.show { display: flex; }
.sharepop a, .sharepop button { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 9px; font-size: 13.5px; font-weight: 600; color: var(--fg-1); text-align: left; width: 100%; }
.sharepop a:hover, .sharepop button:hover { background: var(--ink-50); }
.sharepop svg { width: 17px; height: 17px; flex-shrink: 0; }
.footer__bottom { margin-top: clamp(40px, 5vw, 64px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: 12.5px; color: var(--ink-500); }
.footer__bottom a:hover { color: #fff; }

/* ============================================================
   SUBPAGE HERO + BREADCRUMB
   ============================================================ */
.subhero { padding-block: clamp(40px, 6vw, 76px) clamp(36px, 4vw, 52px); border-bottom: 1px solid var(--border-subtle); position: relative; overflow: hidden; }
.subhero--dark { background: var(--ink-900); color: var(--ink-50); border-bottom-color: transparent; }
.subhero--brand { background: var(--brand); color: #fff; border-bottom-color: transparent; }
.crumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: var(--fg-3); margin-bottom: 22px; }
.subhero--dark .crumb, .subhero--brand .crumb { color: rgba(255,255,255,.7); }
.crumb a { color: inherit; transition: color var(--dur-fast); }
.crumb a:hover { color: var(--brand); }
.subhero--dark .crumb a:hover, .subhero--brand .crumb a:hover { color: #fff; text-decoration: underline; }
.crumb span { opacity: .5; }
.subhero h1 { margin-block: 14px 18px; }
.subhero .lead { max-width: 720px; }
.subhero--dark h1, .subhero--brand h1 { color: #fff; }

/* ============================================================
   PROSE (article + long-form body)
   ============================================================ */
.prose { max-width: 720px; }
.prose > * + * { margin-top: 24px; }
.prose p { font-size: 18px; line-height: 1.72; color: var(--ink-700); }
.prose h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 800; margin-top: 48px; }
.prose h3 { font-size: clamp(20px, 2.2vw, 24px); font-weight: 700; margin-top: 36px; }
.prose ul { display: flex; flex-direction: column; gap: 12px; padding-left: 0; }
.prose li { position: relative; padding-left: 26px; font-size: 17px; line-height: 1.6; color: var(--ink-700); }
.prose li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.prose blockquote { margin: 40px 0; padding: 4px 0 4px 26px; border-left: 3px solid var(--brand); font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.3; color: var(--ink-900); }
.prose strong { font-weight: 700; color: var(--ink-900); }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

.article__meta { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; font-size: 14px; color: var(--fg-3); }
.article__meta .note__cat { font-size: 12px; }
.article__layout { display: grid; grid-template-columns: 1fr; gap: 0; }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } }
.deliverables { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
@media (max-width: 560px){ .deliverables { grid-template-columns: 1fr; } }
.deliverables li { position: relative; padding: 14px 16px 14px 40px; background: var(--ink-50); border-radius: var(--radius-md); font-size: 15px; line-height: 1.4; color: var(--ink-800); }
.deliverables li::before { content: ""; position: absolute; left: 15px; top: 15px; width: 15px; height: 13px; background: var(--brand); -webkit-mask: var(--tick) center/contain no-repeat; mask: var(--tick) center/contain no-repeat; --tick: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 96'%3E%3Cpath d='M6 50 L36 86 L94 8 L72 8 L33 60 L22 46 Z' fill='black'/%3E%3C/svg%3E"); }
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 560px){ .cap-grid { grid-template-columns: 1fr; } }
.cap { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--ink-0); transition: border-color var(--dur-base), transform var(--dur-base) var(--ease-out); }
.cap:hover { border-color: var(--brand); transform: translateY(-3px); }
.cap h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.cap p { font-size: 14px; line-height: 1.5; color: var(--fg-2); }
.cap ul { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.cap ul li { font-size: 12.5px; color: var(--ink-700); background: var(--ink-50); border-radius: var(--radius-pill); padding: 5px 11px; }
a.cap { display: block; text-decoration: none; color: inherit; }
a.cap h3 { color: var(--ink-900); }
.cap__arr { display: inline-block; margin-left: 6px; color: var(--brand); opacity: 0; transform: translateX(-4px); transition: opacity var(--dur-base), transform var(--dur-base); }
a.cap:hover .cap__arr { opacity: 1; transform: translateX(0); }
/* Group title as link on category pages */
.cap h3 a, h4 a.grouplink { color: inherit; text-decoration: none; }
.cap h3 a:hover, h4 a.grouplink:hover { color: var(--brand); }
.grouplink__arr { color: var(--brand); display: inline-block; margin-left: 6px; transition: transform var(--dur-base); }
a.grouplink:hover .grouplink__arr, .cap h3 a:hover .grouplink__arr { transform: translateX(3px); }

/* ============================================================
   KPI / STATS (case study)
   ============================================================ */
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 640px){ .kpis { grid-template-columns: 1fr; } }
.kpi { padding: 28px; border-radius: var(--radius-lg); background: var(--ink-900); color: #fff; }
.kpi b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4vw, 48px); letter-spacing: -0.02em; color: #fff; line-height: 1; }
.kpi span { display: block; margin-top: 12px; font-size: 14px; color: var(--ink-300); line-height: 1.4; }
.kpi--brand { background: var(--brand-gradient); }

.casehero__media { aspect-ratio: 16 / 7; border-radius: var(--radius-lg); overflow: hidden; margin-top: 8px; }
.casehero__media svg { width: 100%; height: 100%; }
.credits { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 18px 28px; }
.credits dt { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-cap); color: var(--fg-3); margin-bottom: 4px; }
.credits dd { font-size: 15px; color: var(--ink-800); margin: 0; }

/* ============================================================
   AI BAND / PAGE
   ============================================================ */
.ai-band { background: var(--ink-900); color: var(--ink-50); position: relative; overflow: hidden; }
.ai-band::after { content: ""; position: absolute; right: -8%; bottom: -30%; width: 50vw; max-width: 560px; height: 560px; background: radial-gradient(circle, rgba(237,28,36,.16), transparent 64%); pointer-events: none; }
.ai-band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; position: relative; z-index: 1; }
@media (max-width: 860px){ .ai-band__grid { grid-template-columns: 1fr; } }
.ai-chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border: 1px solid var(--brand); border-radius: var(--radius-pill); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.ai-uses { display: grid; gap: 12px; }
.ai-use { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 20px 22px; border: 1px solid var(--border-on-dark); border-radius: var(--radius-md); transition: border-color var(--dur-base), background var(--dur-base); }
.ai-use:hover { border-color: var(--brand); background: rgba(237,28,36,.06); }
.ai-use__n { font-family: var(--font-mono); font-size: 13px; color: var(--brand); padding-top: 3px; }
.ai-use h3 { font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.ai-use p { font-size: 14px; line-height: 1.5; color: var(--ink-300); }

/* ============================================================
   LISTING: filters + count
   ============================================================ */
.listing__bar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 32px; padding-bottom: 22px; border-bottom: 1px solid var(--border-subtle); }
.chip { font-weight: 600; font-size: 13.5px; padding: 9px 16px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-pill); color: var(--fg-1); transition: all var(--dur-fast); }
.chip:hover { border-color: var(--ink-900); }
.chip.on { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }
.listing__count { margin-left: auto; font-family: var(--font-mono); font-size: 13px; color: var(--fg-3); }

/* full-bleed work card link wrapper */
a.work__card, a.note { color: inherit; }
.work__card.hide, .note.hide { display: none; }

/* ============================================================
   CTA BAND (reusable)
   ============================================================ */
.cta-band { background: var(--brand); color: #fff; }
.cta-band--dark { background: var(--ink-900); }
.cta-band__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.2vw, 40px); max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 8px; max-width: 46ch; }

/* prev / next */
.pager { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px){ .pager { grid-template-columns: 1fr; } }
.pager a { padding: 24px 26px; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: border-color var(--dur-base), transform var(--dur-base) var(--ease-out); }
.pager a:hover { border-color: var(--brand); transform: translateY(-3px); }
.pager small { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-3); }
.pager b { display: block; margin-top: 7px; font-family: var(--font-display); font-size: 19px; font-weight: 700; }
.pager .next { text-align: right; }

/* scoped bilingual toggle (contact only) */
.langmini { display: inline-flex; border: 1.5px solid rgba(255,255,255,.4); border-radius: var(--radius-pill); overflow: hidden; margin-bottom: 22px; }
.langmini button { padding: 6px 14px; font-weight: 700; font-size: 12.5px; color: rgba(255,255,255,.8); }
.langmini button[aria-pressed="true"] { background: #fff; color: var(--brand); }
/* contact bilingual scope */
.contact [data-lang] { display: none; }
.contact[data-clang="en"] [data-lang="en"], .contact[data-clang="bn"] [data-lang="bn"] { display: revert; }
.contact[data-clang="bn"] { font-family: 'Hind Siliguri', 'Noto Sans Bengali', var(--font-body); }

/* ============================================================
   READABILITY — sub-copy on dark / brand backgrounds
   (.subhero--dark .lead inherited dark --fg-2: dark-on-dark.)
   ============================================================ */
.subhero--dark .lead, .subhero--brand .lead { color: var(--ink-200); }
.subhero--dark p, .subhero--brand p { color: var(--ink-200); }
.subhero--dark .crumb, .subhero--brand .crumb { color: rgba(255,255,255,.80); }
.subhero--dark h1, .subhero--brand h1 { color: #fff; }
.section--dark .lead, .section--dark p.lead { color: var(--ink-200); }
.rp__def { color: var(--ink-100); }
.rp__def b { color: #fff; }
.careers__value p, .ai-use p, .kpi span { color: var(--ink-200); }
.careers .lead, .ai-band .lead { color: var(--ink-200); }
.cta-band p { color: rgba(255,255,255,.94); }
.contact__lead { color: rgba(255,255,255,.96); }
.contact__channel span { color: rgba(255,255,255,.92); }
.films__lead { color: var(--ink-200); }

/* ============================================================
   NAV — dropdown panels (desktop) + mobile accordion
   ============================================================ */
.nav__links { gap: 2px; }
.nav__item { position: relative; display: flex; align-items: center; }
.nav__item > .nav__link { display: inline-flex; align-items: center; gap: 6px; }
.nav__item--has-menu > .nav__link::before {
  content: ""; width: 6px; height: 6px; border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translateY(-1px);
  margin-left: 2px; opacity: .55; transition: transform var(--dur-fast), opacity var(--dur-fast);
  order: 2;
}
.nav__item--has-menu:hover > .nav__link::before,
.nav__item--has-menu:focus-within > .nav__link::before { opacity: 1; transform: rotate(225deg) translateY(2px); }

.nav__panel {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 248px; background: var(--ink-0);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop); padding: 10px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-std), transform var(--dur-base) var(--ease-out);
  z-index: 120;
}
.nav__panel--wide { min-width: 320px; }
.nav__panel::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav__item:hover > .nav__panel, .nav__item:focus-within > .nav__panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav__panel-label { display: block; padding: 8px 14px 6px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-cap); color: var(--fg-3); }
.nav__panel a {
  display: flex; align-items: baseline; gap: 9px; padding: 9px 14px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; color: var(--ink-800);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav__panel a span.n { font-family: var(--font-mono); font-size: 11px; color: var(--brand); }
.nav__panel a:hover { background: var(--ink-50); color: var(--brand); }
.nav__panel hr { border: 0; border-top: 1px solid var(--border-subtle); margin: 8px 6px; }

/* mobile accordion submenus */
.nav__mobile .m-item { border-bottom: 1px solid var(--border-subtle); }
.nav__mobile .m-row { display: flex; align-items: center; }
.nav__mobile .m-row > a { flex: 1; font-family: var(--font-display); font-weight: 700; font-size: 24px; padding: 14px 0; }
.nav__mobile .m-acc { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--brand); flex-shrink: 0; }
.nav__mobile .m-acc::before { content: "+"; transition: transform var(--dur-base) var(--ease-out); }
.nav__mobile .m-item.open .m-acc::before { transform: rotate(45deg); }
.nav__mobile .m-sub { display: none; padding: 4px 0 16px 4px; flex-direction: column; gap: 2px; }
.nav__mobile .m-item.open .m-sub { display: flex; }
.nav__mobile .m-sub a { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--ink-700); padding: 9px 0; border: 0; }
.nav__mobile .m-sub a:hover { color: var(--brand); }

/* ============================================================
   MEDIA BANNERS / PLACEHOLDERS (detail pages)
   ============================================================ */
.media-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.media-banner--wide { aspect-ratio: 16 / 7; }
.media-banner--tall { aspect-ratio: 4 / 5; }
.media-banner--square { aspect-ratio: 1 / 1; }
.media-ph {
  position: absolute; inset: 0; background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 11px), var(--ink-900);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
}
.media-ph--brand { background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 2px, transparent 2px 11px), var(--brand-gradient); }
.media-ph--muted { background:
    repeating-linear-gradient(135deg, rgba(14,13,12,.05) 0 2px, transparent 2px 11px), var(--ink-100); }
.media-ph__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.media-ph--muted .media-ph__label { color: var(--fg-3); }
.media-ph__play { width: 76px; height: 76px; border-radius: 50%; border: 2px solid rgba(255,255,255,.85); display: flex; align-items: center; justify-content: center; transition: transform var(--dur-base) var(--ease-out), background var(--dur-base); }
.media-ph__play::after { content: ""; border-left: 20px solid #fff; border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px; }
.media-banner:hover .media-ph__play { transform: scale(1.08); background: rgba(255,255,255,.12); }
.media-cap { position: absolute; left: 18px; bottom: 16px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: #fff; z-index: 2; }
/* Clickable work cards */
a.media-banner { display: block; text-decoration: none; cursor: pointer; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
a.media-banner:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.media-cap__arr { display: inline-block; margin-left: 7px; opacity: 0; transform: translateX(-4px); transition: opacity var(--dur-base), transform var(--dur-base); }
a.media-banner:hover .media-cap__arr { opacity: 1; transform: translateX(0); }
.media-tag { position: absolute; top: 16px; left: 16px; z-index: 2; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 11px; border-radius: var(--radius-pill); background: rgba(255,255,255,.92); color: var(--ink-900); }

.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 760px){ .media-grid { grid-template-columns: 1fr 1fr; } }
.media-grid--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px){ .media-grid--2 { grid-template-columns: 1fr; } }

/* logo wall (client logos placeholder) */
.logo-wall { display: flex; flex-wrap: wrap; gap: 12px; }
.logo-chip { display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--ink-0); font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--ink-500); letter-spacing: -0.01em; transition: color var(--dur-base), border-color var(--dur-base); }
.logo-chip:hover { color: var(--ink-900); border-color: var(--border-strong); }
.logo-wall--dark .logo-chip { background: transparent; border-color: var(--border-on-dark); color: var(--ink-300); }
.logo-wall--dark .logo-chip:hover { color: #fff; border-color: rgba(255,255,255,.4); }

/* ============================================================
   REAL MEDIA — images, logos & video embeds (drop-in)
   ============================================================ */
/* Work thumbnails: image/video fills the 4:3 slot and keeps the SVG hover-zoom */
.work__thumb img, .work__thumb video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 700ms var(--ease-out); }
.work__card:hover .work__thumb img, .work__card:hover .work__thumb video { transform: scale(1.05); }

/* Client logo strip styling now lives in the CLIENTS STRIP / marquee section below */

/* Responsive video embed (YouTube / Vimeo) */
.embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink-900); }
.embed iframe, .embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* When an embed sits inside a fixed-ratio media-banner, fill it instead */
.media-banner .embed { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; }
.media-banner > img, .media-banner > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Case-study hero media (work detail pages) */
.casehero__media img, .casehero__media video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Optional image on a field-note card */
.note__thumb { aspect-ratio: 16 / 9; border-radius: var(--radius-md); overflow: hidden; margin: -6px 0 4px; background: var(--ink-100); }
.note__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 700ms var(--ease-out); }
.note:hover .note__thumb img { transform: scale(1.04); }

/* ============================================================
   WORK — search + type filters
   ============================================================ */
.worksearch { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.worksearch__field { position: relative; flex: 1; max-width: 460px; }
.worksearch__field svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--fg-3); pointer-events: none; }
.worksearch input { width: 100%; font-family: var(--font-body); font-size: 15px; padding: 13px 16px 13px 44px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-pill); background: var(--ink-0); color: var(--fg-1); transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
.worksearch input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.worksearch__clear { width: 36px; height: 36px; border-radius: 50%; display: none; align-items: center; justify-content: center; color: var(--fg-3); font-size: 20px; }
.worksearch__field.has-val .worksearch__clear { display: flex; }
.work__empty { display: none; padding: 48px 0; text-align: center; color: var(--fg-3); font-size: 16px; }
.work__empty.show { display: block; }
.work__kind--work { background: var(--ink-50); color: var(--ink-800); }
.work__kind--social { background: #fff; color: var(--brand); }

/* ============================================================
   FILMS PAGE
   ============================================================ */
.films-hero { background: var(--ink-900); color: #fff; }
.films-hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 880px){ .films-hero__grid { grid-template-columns: 1fr; } }
.films-hero__stats { display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.films-hero__stats b { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.4vw, 40px); display: block; line-height: 1; }
.films-hero__stats span { font-size: 13px; color: var(--ink-300); display: block; margin-top: 8px; max-width: 130px; line-height: 1.35; }
.films__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px){ .films__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .films__grid { grid-template-columns: 1fr; } }
.film-card { padding: 28px 26px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--ink-0); transition: border-color var(--dur-base), transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
.film-card:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.film-card__k { display: inline-flex; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--brand); border: 1px solid var(--brand); border-radius: var(--radius-pill); padding: 5px 11px; margin-bottom: 16px; }
.film-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.film-card p { font-size: 14.5px; line-height: 1.55; color: var(--fg-2); }

/* ============================================================
   BRIEF FORM (rich) + APPLY FORM + file dropzones + voice
   ============================================================ */
.formtabs { display: inline-flex; gap: 4px; padding: 4px; background: var(--ink-50); border-radius: var(--radius-pill); margin-bottom: 22px; }
.formtabs button { padding: 9px 18px; font-weight: 700; font-size: 13.5px; border-radius: var(--radius-pill); color: var(--fg-2); transition: background var(--dur-fast), color var(--dur-fast); }
.formtabs button[aria-selected="true"] { background: var(--ink-900); color: #fff; }
.formpane { display: none; }
.formpane.show { display: block; }

.brief { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin: 4px 0 18px; }
.brief__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 18px; background: var(--ink-50); border-bottom: 1px solid var(--border-subtle); }
.brief__head h4 { font-size: 14px; font-weight: 700; }
.brief__progress { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; color: var(--fg-3); }
.brief__progress i { display: block; width: 80px; height: 5px; border-radius: 4px; background: var(--ink-200); position: relative; overflow: hidden; }
.brief__progress i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--w,0%); background: var(--brand); transition: width var(--dur-base) var(--ease-out); }
.brief__row { border-bottom: 1px solid var(--border-subtle); }
.brief__row:last-child { border-bottom: 0; }
.brief__row-head { width: 100%; display: flex; align-items: center; gap: 13px; padding: 14px 18px; text-align: left; }
.brief__row-num { font-family: var(--font-mono); font-size: 12px; color: var(--brand); }
.brief__row-label { flex: 1; font-size: 14.5px; font-weight: 600; color: var(--ink-800); }
.brief__row-chev { font-family: var(--font-mono); font-size: 18px; color: var(--fg-3); transition: transform var(--dur-base); }
.brief__row.is-open .brief__row-chev { transform: rotate(45deg); }
.brief__row-tick { color: var(--brand); margin-right: 6px; }
.brief__row-body { display: none; padding: 0 18px 16px; }
.brief__row.is-open .brief__row-body { display: block; }
.brief__hint { display: block; font-size: 13px; color: var(--fg-3); line-height: 1.5; margin-bottom: 10px; }

.drop { border: 1.5px dashed var(--border-strong); border-radius: var(--radius-md); padding: 18px; display: flex; align-items: center; gap: 14px; cursor: pointer; transition: border-color var(--dur-fast), background var(--dur-fast); background: var(--ink-0); }
.drop:hover, .drop.is-drag { border-color: var(--brand); background: var(--brand-soft); }
.drop.is-on { border-style: solid; border-color: var(--brand); }
.drop__plus { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; background: var(--ink-50); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.drop__t { font-size: 14px; font-weight: 600; color: var(--ink-800); }
.drop__hint { display: block; font-size: 12px; color: var(--fg-3); margin-top: 2px; }
.drop input[type=file] { display: none; }

.voice__bar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 14px; }
.voice__langs { display: inline-flex; gap: 6px; margin-top: 8px; }
.voice__lang-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-cap); color: var(--fg-3); }
.chip--sm { padding: 6px 12px; font-size: 12.5px; }
.voice__btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; border-radius: var(--radius-pill); background: var(--ink-900); color: #fff; font-weight: 700; font-size: 14px; }
.voice__btn.is-on { background: var(--brand); }
.voice__dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.voice__btn.is-on .voice__dot { animation: voice-pulse 1.1s infinite; }
@keyframes voice-pulse { 0%,100%{ opacity:1; transform:scale(1);} 50%{ opacity:.35; transform:scale(1.5);} }
.voice__nope { font-size: 13px; color: var(--brand-deep); background: var(--brand-soft); padding: 12px 14px; border-radius: var(--radius-md); margin-bottom: 12px; }

.form-foot { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-top: 8px; }
.form-foot .legal { font-size: 12px; color: var(--fg-3); max-width: 60%; line-height: 1.4; }
.form-thanks { text-align: center; padding: 30px 10px; }
.form-thanks__check { width: 64px; height: 64px; border-radius: 50%; background: var(--brand-gradient); color: #fff; font-size: 30px; line-height: 64px; margin: 0 auto 18px; }
.form-h { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-cap); color: var(--brand); margin: 24px 0 6px; }
.form-note { font-size: 13px; color: var(--fg-3); margin-bottom: 12px; line-height: 1.5; }

/* apply page two-column */
.apply__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(32px,5vw,64px); align-items: start; }
@media (max-width: 900px){ .apply__grid { grid-template-columns: 1fr; } }
.apply__aside { position: sticky; top: 100px; }
@media (max-width: 900px){ .apply__aside { position: static; } }
.apply__role { padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 12px; }
.apply__role b { font-family: var(--font-display); font-size: 18px; display: block; }
.apply__role span { font-size: 13px; color: var(--fg-3); }

/* ============================================================
   AI uses as links (home)
   ============================================================ */
a.ai-use { color: inherit; text-decoration: none; cursor: pointer; }
.ai-use h3 { display: flex; align-items: center; gap: 8px; }
.ai-use__arr { color: var(--brand); font-weight: 700; opacity: 0; transform: translateX(-4px); transition: opacity var(--dur-base), transform var(--dur-base); }
a.ai-use:hover .ai-use__arr { opacity: 1; transform: translateX(0); }

/* ============================================================
   SECTION SEPARATOR (between dark bands)
   ============================================================ */
.band-sep { background: var(--ink-900); }
.band-sep .wrap { display: flex; align-items: center; gap: 22px; padding-block: clamp(6px, 1.4vw, 16px); }
.band-sep__line { flex: 1; height: 1px; background: rgba(255,255,255,.12); }
.band-sep__tick { width: 22px; height: 21px; color: var(--brand); flex-shrink: 0; opacity: .85; }
.band-sep__tick svg { width: 100%; height: 100%; display: block; }

/* ============================================================
   RESONANCE POINT TRIANGLE (home, dark)
   ============================================================ */
.rp__diagram--tri { aspect-ratio: auto; max-width: 540px; }
.rp__diagram--tri svg { width: 100%; height: auto; overflow: visible; }
.rp__tri-shape { transform-origin: 260px 404px; transform-box: fill-box; opacity: 0; transform: scale(.97); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.rp.in .rp__tri-shape { opacity: 1; transform: scale(1); }
.rp__tri-lines line { stroke: rgba(255,255,255,.16); stroke-width: 1; stroke-dasharray: 260; stroke-dashoffset: 260; transition: stroke-dashoffset 1s var(--ease-out) .3s; }
.rp.in .rp__tri-lines line { stroke-dashoffset: 0; }
.rp__tri-core { fill: var(--ink-900); stroke: var(--brand); stroke-width: 2; transform-origin: 260px 290px; transform-box: fill-box; }
.rp.in .rp__tri-core { animation: rp-pulse 3.6s var(--ease-out) infinite; }
/* Core group drifts toward different forces, a visible search for the Resonance Point */
.rp__tri-coreG { transition: transform 2.4s cubic-bezier(.45,.05,.2,1); }
@media (prefers-reduced-motion: reduce) { .rp__tri-coreG { transition: none; transform: none !important; } }
.rp__tri-core-a, .rp__tri-core-c { fill: #fff; opacity: .65; font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .18em; }
.rp__tri-core-c { fill: var(--brand); opacity: 1; }
.rp__tri-core-b { fill: #fff; font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: .01em; }
.rp__tri-vx { fill: #fff; font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.rp__tri-mt { fill: rgba(255,255,255,.6); font-family: var(--font-body); font-style: italic; font-size: 12px; }

/* ---- Briefing intro + contact map ---- */
.brief__intro { font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 4px 0 18px; }
.contact__map { margin-top: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--ink-0); }
.contact__map iframe { filter: grayscale(.25) contrast(1.02); }
.contact__map-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); padding: 13px 16px; }
.contact__map-link:hover { gap: 12px; }

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews__summary { display: flex; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.rv-rating { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--ink-900); line-height: 1; }
.rv-stars { display: inline-flex; gap: 2px; }
.rv-star { color: var(--border-strong); font-size: 16px; }
.rv-star.is-on { color: #F5A623; }
.rv-count { font-size: 13px; color: var(--fg-2); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
@media (max-width: 900px){ .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .reviews__grid { grid-template-columns: 1fr; } }
.rv-card { display: flex; flex-direction: column; gap: 12px; padding: 24px; background: var(--ink-0); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); margin: 0; }
.rv-card .rv-stars .rv-star { font-size: 14px; }
.rv-text { font-size: 14.5px; line-height: 1.6; color: var(--ink-800); margin: 0; flex: 1; text-wrap: pretty; display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.rv-by { display: flex; align-items: center; gap: 12px; }
.rv-av { width: 40px; height: 40px; flex: none; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--ink-900); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.rv-av img { width: 100%; height: 100%; object-fit: cover; }
.rv-by b { font-family: var(--font-display); font-size: 14.5px; }
.rv-when { display: block; font-size: 12px; color: var(--fg-3); margin-top: 2px; }
/* Fallback (no API key configured yet) */
.reviews__fallback { display: none; }
.reviews--fallback .reviews__grid, .reviews--fallback .reviews__summary { display: none; }
.reviews--fallback .reviews__fallback { display: block; margin-top: 24px; }
.reviews__fallback-card { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding: 26px 28px; background: var(--ink-0); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); }
.reviews__g { width: 46px; height: 46px; flex: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--border); font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #4285F4; }
.reviews__fallback-card > div { flex: 1; min-width: 220px; }
.reviews__fallback-card b { font-family: var(--font-display); font-size: 16px; }
.reviews__fallback-card p { font-size: 13.5px; color: var(--fg-2); margin: 4px 0 0; }




