/* ==========================================================================
   Viziado — official site
   Every colour lives in :root. Change --brand and the whole site follows.
   ========================================================================== */

:root {
  /* Brand ------------------------------------------------------------------
     One blue, used at four strengths. Nothing else on the page is coloured. */
  --brand:      #0b63ff;   /* the blue */
  --brand-deep: #0a49c8;   /* darker end of the gradient, pressed states */
  --brand-soft: #e3edff;   /* tint behind icons */
  --brand-tint: #f4f8ff;   /* faintest wash, for hovers */
  --brand-rgb:  11, 99, 255;
  --grad:       linear-gradient(120deg, var(--brand-deep) 0%, var(--brand) 100%);

  /* Ink — neutrals biased toward the blue so they read as chosen ---------- */
  --ink:        #0c1730;   /* headings */
  --ink-2:      #2c3a55;   /* body */
  --muted:      #6b768f;   /* secondary text */
  --line:       #e4e9f2;
  --ink-rgb:    12, 23, 48;

  /* Surfaces ------------------------------------------------------------- */
  --bg:         #ffffff;
  --bg-alt:     #f6f9fd;
  --bg-deep:    #071026;
  --card:       #ffffff;

  /* Shape ---------------------------------------------------------------- */
  --r-sm: 10px;  --r-md: 16px;  --r-lg: 22px;  --r-xl: 30px;  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(var(--ink-rgb),.06), 0 4px 12px rgba(var(--ink-rgb),.05);
  --shadow-md: 0 8px 28px rgba(var(--ink-rgb),.10);
  --shadow-lg: 0 24px 60px rgba(var(--ink-rgb),.16);
  --shadow-brand: 0 12px 32px rgba(var(--brand-rgb),.28);

  /* Rhythm --------------------------------------------------------------- */
  /* Grows with the screen instead of sitting in a narrow ribbon on a big
     monitor. max-width means small screens are still governed by width:100%. */
  --wrap: clamp(1160px, 80vw, 1520px);
  --pad: clamp(20px, 5vw, 40px);
  --sec: clamp(72px, 10vw, 128px);

  --ease: cubic-bezier(.22,.75,.28,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* Reset -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }

/* Inter at medium (500) with a -0.02em track — matches the reference. */
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; letter-spacing: -.02em; font-weight: 500; }
h1 { font-size: clamp(2.1rem, 3.1vw, 3rem); }
h2 { font-size: clamp(1.8rem, 2.9vw, 2.6rem); }
h3 { font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }

/* Layout helpers ----------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: 820px; }
.section { padding-block: var(--sec); }
.section--alt { background: var(--bg-alt); }
.center { text-align: center; }
.lede { color: var(--muted); font-size: 1.125rem; line-height: 1.5; max-width: 62ch; }
.center .lede { margin-inline: auto; }
.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand);
}
.grad-text {
  background: var(--grad);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: hue-drift 9s var(--ease) infinite alternate;
}
@keyframes hue-drift { to { background-position: 100% 0; } }

/* Buttons ------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--ink);
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: .95rem;
  background: var(--btn-bg); color: #fff;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s;
  will-change: transform;
}
.btn::after {                       /* sheen sweep on hover */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.34) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0) scale(.985); }
.btn--brand { background: var(--grad); box-shadow: var(--shadow-brand); }
.btn--brand:hover { box-shadow: 0 16px 40px rgba(var(--brand-rgb),.38); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { background: var(--brand-tint); border-color: var(--brand-soft); }
.btn--sm { padding: .55rem 1.1rem; font-size: .875rem; }
.btn .arrow { transition: transform .35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* Header ------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 2px 20px rgba(var(--ink-rgb),.05); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 68px; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand__mark { width: 30px; height: 30px; border-radius: 9px; transition: transform .5s var(--ease-out); }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.08); }
.brand__name { font-weight: 700; color: var(--ink); font-size: .98rem; letter-spacing: -.01em; line-height: 1.15; }
.brand__sub { display: block; font-weight: 500; font-size: .72rem; color: var(--muted); letter-spacing: .02em; }

.nav__links { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  position: relative; padding: .45rem .8rem; border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
  transition: color .25s, background .25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: .18rem;
  width: 0; height: 2px; border-radius: 2px; background: var(--grad);
  transform: translateX(-50%);
  transition: width .35s var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after { width: 42%; }
.nav__cta { margin-left: .4rem; }

.nav__toggle { display: none; width: 40px; height: 40px; place-items: center; border-radius: 10px; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .35s var(--ease-out), opacity .2s, background .2s;
}
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after  { transform: translateY(4px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-1px); }

/* Hero --------------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(52px, 7vw, 100px) clamp(60px, 8vw, 104px); overflow: hidden; }
.hero__glow {
  position: absolute; inset: -22% -10% auto; height: 640px; z-index: -2;
  background:
    radial-gradient(48% 54% at 24% 30%, rgba(var(--brand-rgb),.13), transparent 70%),
    radial-gradient(44% 48% at 76% 28%, rgba(var(--brand-rgb),.09), transparent 70%);
  filter: blur(6px);
  animation: glow-drift 16s ease-in-out infinite alternate;
}
@keyframes glow-drift {
  from { transform: translate3d(-2%, 0, 0) scale(1); }
  to   { transform: translate3d(3%, 2%, 0) scale(1.08); }
}
/* Three columns. The centre is capped; the two sides take whatever is left and
   clip their contents, so the mosaic runs off both edges of the viewport. */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, min(960px, 52vw)) 1fr;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}
.hero__copy { text-align: center; padding-inline: var(--pad); }
/* The headline is the loud element on the page — everything else stays quiet.
   One phrase carries the accent; the rest is ink. */
.hero__title {
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.08;
  max-width: 15ch;
  margin-inline: auto;
  margin-bottom: .9rem;
  text-wrap: balance;
}
.hero__title .hl { color: var(--brand); }
.hero__sub {
  color: var(--muted); font-size: 1rem; line-height: 1.55;
  margin-inline: auto; max-width: 42ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.5rem; }

/* hero mosaic — two horizontal rows per side, drifting outward */
.hero__side {
  --tile: clamp(150px, 12vw, 231px);
  --tile-gap: 16px;
  position: relative;
  overflow: hidden;                        /* this is what bleeds the tiles */
  height: calc(var(--tile) * 9 / 16 * 2 + var(--tile-gap));
}
/* Both tracks anchor LEFT. Anchoring the left one to the right edge looks
   right at rest but the animation then walks it clean out of its own window,
   leaving the column blank. The small negative offset keeps a tile clipped by
   the viewport edge so the mosaic always reads as bleeding off-screen. */
.hero__rows { position: absolute; top: 0; left: 0; display: grid; gap: var(--tile-gap); }
.hero__side--l .hero__rows { left: calc(var(--tile) * -.32); }
.hero__row {
  display: flex; gap: var(--tile-gap); width: max-content;
  animation: drift-left 60s linear infinite;
}
.hero__row:nth-child(2) { animation-duration: 74s; }
.hero__side--r .hero__row { animation-name: drift-right; }
.hero__side:hover .hero__row { animation-play-state: paused; }
/* doubled track: one cycle is half the width plus half a gap (see col-up) */
@keyframes drift-left  { to { transform: translateX(calc(-1 * var(--shift, 50%))); } }
@keyframes drift-right {
  from { transform: translateX(calc(-1 * var(--shift, 50%))); }
  to   { transform: translateX(0); }
}
.hero__row img {
  width: var(--tile); height: auto; aspect-ratio: 16/9; object-fit: cover; flex: none;
  border-radius: var(--r-md);              /* 16px, same as the reference     */
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.hero__row img:hover { transform: scale(1.05); box-shadow: var(--shadow-md); }

/* mobile fallback for the rails: one horizontal strip */
.hero__strip { display: none; margin-top: 2.4rem; }
.hero__strip img {
  width: 200px; height: auto; aspect-ratio: 16/9; object-fit: cover; flex: none;
  border-radius: var(--r-sm); box-shadow: var(--shadow-sm);
}

/* Logo marquee ------------------------------------------------------------- */
.trust { background: var(--bg-alt); padding-block: clamp(36px, 5vw, 56px); overflow: hidden; }
.trust__label { text-align: center; font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee + .marquee { margin-top: .7rem; }
.marquee__track { display: flex; width: max-content; animation: slide-left 62s linear infinite; }
.marquee--rev .marquee__track { animation-name: slide-right; animation-duration: 72s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide-left  { to { transform: translateX(calc(-1 * var(--shift, 50%))); } }
@keyframes slide-right { from { transform: translateX(calc(-1 * var(--shift, 50%))); } to { transform: translateX(0); } }

/* one client: avatar, name with a verified tick, subscriber count */
.client {
  display: inline-flex; align-items: center; gap: .7rem;
  white-space: nowrap;
  padding: .55rem clamp(1.1rem, 2vw, 1.9rem);
  border-left: 1px solid var(--line);
}
.client__av {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%; object-fit: cover;
  transition: transform .35s var(--ease-out);
}
.client__av--ph {
  display: grid; place-items: center;
  color: #fff; font-size: 1rem; font-weight: 700; letter-spacing: -.02em;
  background: linear-gradient(135deg,
    hsl(var(--h) 82% 62%), hsl(calc(var(--h) - 18) 78% 42%));
}
.client:hover .client__av { transform: scale(1.08); }
.client__meta { display: grid; gap: .1rem; }
.client__name {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .92rem; font-weight: 600; color: var(--ink);
  transition: color .25s;
}
.client:hover .client__name { color: var(--brand); }
.client__tick { flex: none; color: #9aa3b5; transition: color .25s; }
.client:hover .client__tick { color: var(--brand); }
.client__subs { font-size: .82rem; color: var(--muted); }

/* Why ---------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-block: clamp(36px, 5vw, 56px); }
.stat { text-align: center; padding: 1.2rem .6rem; border-radius: var(--r-lg); transition: background .35s, transform .35s var(--ease-out); }
.stat:hover { background: var(--brand-tint); transform: translateY(-3px); }
.stat__num { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -.03em; }
.stat__label { font-size: .85rem; color: var(--muted); margin-top: .2rem; }

.why__split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
.feature { display: flex; gap: .9rem; padding: .85rem .9rem; border-radius: var(--r-md); transition: background .3s, transform .3s var(--ease-out); }
.feature:hover { background: var(--brand-tint); transform: translateX(4px); }
.feature__ico {
  flex: none; width: 32px; height: 32px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center;
  transition: background .3s, color .3s, transform .4s var(--ease-out);
}
.feature:hover .feature__ico { background: var(--grad); color: #fff; transform: rotate(-6deg) scale(1.06); }
.feature p { font-size: .9rem; color: var(--muted); margin-top: .15rem; }
.why__media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.why__media img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; transition: transform .8s var(--ease-out); }
.why__media:hover img { transform: scale(1.05); }
.why__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, rgba(var(--brand-rgb),.12), transparent 55%);
}

/* Testimonials ------------------------------------------------------------- */
.quotes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  height: 560px; overflow: hidden; margin-top: 2.4rem;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}
.quotes__col {
  --col-gap: 1rem;
  display: grid; gap: var(--col-gap); align-content: start;
  animation: col-up 32s linear infinite;
}
.quotes__col:nth-child(2) { animation-duration: 42s; animation-direction: reverse; }
.quotes__col:nth-child(3) { animation-duration: 37s; }
.quotes:hover .quotes__col { animation-play-state: paused; }
/* The card list is doubled, so one full cycle is half the height PLUS half a
   gap — otherwise the loop jumps by one gap on every repeat. */
@keyframes col-up { to { transform: translateY(calc(-1 * var(--shift, 50%))); } }

.quote {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.25rem; box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s;
}
/* an accent edge that wipes down as the card is hovered */
.quote::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--brand); transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--ease-out);
}
.quote:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: var(--shadow-md); border-color: var(--brand-soft);
}
.quote:hover::before { transform: scaleY(1); }
.quote p { color: var(--ink-2); font-size: .95rem; }
.quote__who { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .82rem;
  background: var(--grad);
  transition: transform .45s var(--ease-out);
}
.quote:hover .avatar { transform: scale(1.12) rotate(-6deg); }
.quote__id { display: grid; gap: .05rem; }   /* name over count, not beside it */
.quote__name { font-size: .875rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.quote__meta { font-size: .78rem; color: var(--muted); line-height: 1.3; }

/* Services ----------------------------------------------------------------- */
.svc__title em { font-style: italic; color: var(--brand); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; margin-top: clamp(32px, 4vw, 52px); }
.svc {
  display: grid; grid-template-rows: auto 1fr;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--card); overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .35s;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand-soft); }

/* the illustration panel above each card's text */
.svc__art {
  position: relative; height: 208px;
  display: grid; place-content: center; gap: .9rem;
  padding: 1.25rem;
  background: linear-gradient(165deg, rgba(var(--brand-rgb), .10), rgba(var(--brand-rgb), .03));
  border-bottom: 1px solid var(--line);
}
.svc:nth-child(2) .svc__art { background: linear-gradient(165deg, rgba(var(--ink-rgb), .07), rgba(var(--ink-rgb), .02)); }
.svc:nth-child(3) .svc__art { background: linear-gradient(165deg, rgba(var(--brand-rgb), .16), rgba(var(--brand-rgb), .04)); }

.svc__body { padding: 1.15rem 1.25rem 1.4rem; }
.svc__head { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.svc__ico {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand);
  transition: background .35s, color .35s, transform .45s var(--ease-out);
}
.svc:hover .svc__ico { background: var(--brand); color: #fff; transform: rotate(-6deg); }
.svc__head h3 { font-size: 1.05rem; font-weight: 600; }
.svc__body p { font-size: .9rem; color: var(--muted); }

/* 1 · the strategy-call mockup ------------------------------------------- */
.callcard {
  width: 244px; padding: .7rem .8rem;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: grid; gap: .5rem;
}
.callcard__top { display: flex; align-items: center; justify-content: space-between; }
.callcard__live { display: inline-flex; align-items: center; gap: .38rem; font-size: .74rem; font-weight: 500; color: var(--ink); }
.callcard__live i { width: 6px; height: 6px; border-radius: 50%; background: #22a35a; }
.tag-live {
  font-size: .58rem; font-weight: 700; letter-spacing: .06em;
  padding: .12rem .34rem; border-radius: 4px;
  background: #e0342c; color: #fff;
}
.callcard__who {
  display: flex; align-items: center; gap: .45rem;
  font-size: .7rem; color: var(--ink-2);
  white-space: nowrap;
}
.mini-av {
  width: 17px; height: 17px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: .55rem; font-weight: 700; color: #fff;
  background: var(--brand);
}
.mini-av--alt { background: var(--ink); }
.wave { display: flex; align-items: flex-end; gap: 2px; height: 18px; }
.wave i {
  flex: 1; background: var(--brand); border-radius: 1px; opacity: .55;
  height: 30%;
  animation: bob 1.1s ease-in-out infinite alternate;
}
.wave i:nth-child(2n)   { animation-delay: .12s; height: 62%; }
.wave i:nth-child(3n)   { animation-delay: .26s; height: 88%; }
.wave i:nth-child(5n)   { animation-delay: .4s;  height: 45%; }
.svc:hover .wave i { opacity: .9; }
@keyframes bob { to { height: 100%; } }

/* 2 · brief → concept ---------------------------------------------------- */
.flow { display: flex; align-items: center; gap: .75rem; }
.flow__brief, .flow__out {
  width: 76px; height: 92px; padding: .55rem;
  background: #fff; border: 1px solid var(--line); border-radius: 9px;
  box-shadow: var(--shadow-sm);
  display: grid; align-content: start; gap: .3rem;
}
.flow__out { place-content: center; gap: 0; background: var(--brand-tint); }
.ph-block { height: 30px; border-radius: 4px; background: var(--bg-alt); }
.ph-line { height: 5px; border-radius: 3px; background: var(--line); }
.ph-line--short { width: 60%; }
.ph-face { width: 22px; height: 22px; border-radius: 50%; background: var(--brand); opacity: .55; margin: 0 auto; }
.ph-bust { width: 40px; height: 20px; border-radius: 20px 20px 0 0; background: var(--brand); opacity: .55; margin: .28rem auto 0; }
.flow__arrow { color: var(--brand); font-size: 1.05rem; transition: transform .4s var(--ease-out); }
.svc:hover .flow__arrow { transform: translateX(4px); }

/* 3 · layered canvas ----------------------------------------------------- */
.canvas {
  position: relative; width: 176px; height: 99px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.canvas__layer {
  position: absolute; border-radius: 5px;
  transition: transform .5s var(--ease-out);
}
.canvas__layer--1 { left: 20px; top: 24px; width: 58px; height: 40px; background: var(--brand); opacity: .85; }
.canvas__layer--2 { left: 44px; top: 34px; width: 58px; height: 40px; background: var(--brand); opacity: .5; }
.canvas__layer--3 { left: 68px; top: 20px; width: 58px; height: 40px; background: var(--ink); opacity: .22; }
.svc:hover .canvas__layer--1 { transform: translate(-5px, 3px); }
.svc:hover .canvas__layer--3 { transform: translate(5px, -3px); }
.canvas__play {
  position: absolute; right: 12px; bottom: 12px;
  width: 0; height: 0;
  border-left: 9px solid var(--muted);
  border-top: 6px solid transparent; border-bottom: 6px solid transparent;
  opacity: .6;
}
.swatches { display: flex; gap: .4rem; justify-content: center; }
.swatches i { width: 11px; height: 11px; border-radius: 50%; background: var(--brand); }
.swatches i:nth-child(2) { opacity: .7; }
.swatches i:nth-child(3) { opacity: .45; }
.swatches i:nth-child(4) { opacity: .25; }

/* Transformations ---------------------------------------------------------- */
.tf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.tf {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 16/9; box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.tf:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tf img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tf__after { clip-path: inset(0 0 0 0); transition: clip-path .7s var(--ease-out); }
.tf:hover .tf__after, .tf:focus-within .tf__after { clip-path: inset(0 0 0 100%); }
.tf__tag {
  position: absolute; left: .6rem; bottom: .6rem; z-index: 3;
  padding: .22rem .6rem; border-radius: var(--r-pill);
  background: rgba(var(--ink-rgb),.72); color: #fff;
  font-size: .7rem; font-weight: 600; letter-spacing: .04em;
  backdrop-filter: blur(6px);
}
.tf__hint {
  position: absolute; right: .6rem; top: .6rem; z-index: 3;
  padding: .22rem .6rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,.92); color: var(--ink);
  font-size: .7rem; font-weight: 600;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.tf:hover .tf__hint { opacity: 1; transform: translateY(0); }

/* FAQ ---------------------------------------------------------------------- */
.faq { max-width: 760px; margin: 2.4rem auto 0; display: grid; gap: .55rem; }
.qa {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: box-shadow .35s, border-color .3s;
}
.qa[open] { box-shadow: var(--shadow-md); border-color: var(--brand-soft); }
.qa__q {
  display: flex; align-items: center; gap: .7rem;
  padding: .95rem 1.1rem; cursor: pointer; list-style: none;
  font-size: .95rem; font-weight: 600; color: var(--ink);
  transition: background .25s;
}
.qa__q::-webkit-details-marker { display: none; }
.qa__q:hover { background: var(--brand-tint); }
.qa__sign {
  flex: none; width: 20px; height: 20px; position: relative; color: var(--brand);
  transition: transform .4s var(--ease-out);
}
.qa__sign::before, .qa__sign::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: currentColor; border-radius: 2px;
  transform: translate(-50%,-50%);
}
.qa__sign::before { width: 11px; height: 2px; }
.qa__sign::after  { width: 2px; height: 11px; transition: transform .4s var(--ease-out), opacity .3s; }
.qa[open] .qa__sign { transform: rotate(180deg); }
.qa[open] .qa__sign::after { transform: translate(-50%,-50%) scaleY(0); opacity: 0; }
.qa__a { padding: 0 1.1rem 1.1rem 2.8rem; color: var(--muted); font-size: .92rem; }
.qa[open] .qa__a { animation: qa-in .4s var(--ease-out) both; }
@keyframes qa-in { from { opacity: 0; transform: translateY(-6px); } }
.faq__after { text-align: center; margin-top: 2rem; }
.faq__after p { font-size: .9rem; color: var(--muted); margin-bottom: .8rem; }

/* CTA ---------------------------------------------------------------------- */
.cta__inner {
  position: relative; text-align: center; overflow: hidden;
  padding: clamp(48px, 7vw, 84px) var(--pad);
  border-radius: var(--r-xl);
  background: var(--bg-deep); color: #fff;
  isolation: isolate;
}
.cta__inner::before {
  content: ""; position: absolute; inset: -40%; z-index: -1;
  background:
    radial-gradient(34% 44% at 26% 28%, rgba(var(--brand-rgb),.60), transparent 66%),
    radial-gradient(30% 40% at 74% 68%, rgba(var(--brand-rgb),.34), transparent 66%);
  animation: glow-drift 14s ease-in-out infinite alternate;
}
.cta__inner h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta__inner p { color: rgba(255,255,255,.72); margin-top: .8rem; }
.cta__inner .btn { margin-top: 1.6rem; background: #fff; color: var(--ink); }

/* Footer ------------------------------------------------------------------- */
.footer { border-top: 1px solid var(--line); padding-block: clamp(44px, 6vw, 68px) 1.6rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2rem; }
.footer__blurb { color: var(--muted); font-size: .9rem; margin-top: .9rem; max-width: 34ch; }
.footer h4 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: .8rem; }
.footer li + li { margin-top: .45rem; }
.footer__grid a { font-size: .9rem; color: var(--muted); transition: color .25s, transform .25s var(--ease-out); display: inline-block; }
.footer__grid a:hover { color: var(--brand); transform: translateX(3px); }
.footer__bar {
  margin-top: 2.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between;
  font-size: .82rem; color: var(--muted);
}

/* Gallery page ------------------------------------------------------------- */
.page-head { padding-block: clamp(48px, 7vw, 84px) 0; }
.filters { display: flex; flex-wrap: wrap; gap: .45rem; justify-content: center; margin-top: 1.8rem; }
.filter {
  padding: .45rem 1rem; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: #fff;
  font-size: .875rem; font-weight: 500; color: var(--ink-2);
  transition: color .3s, border-color .3s, transform .3s var(--ease-out), background .3s, box-shadow .3s;
}
.filter:hover { border-color: var(--brand-soft); color: var(--brand); transform: translateY(-2px); }
.filter.is-on { background: var(--grad); color: #fff; border-color: transparent; box-shadow: var(--shadow-brand); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.work {
  position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16/9;
  background: var(--bg-alt); box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.work:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.work img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.work:hover img { transform: scale(1.06); }
.work__cap {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 1.6rem .9rem .8rem;
  background: linear-gradient(transparent, rgba(var(--ink-rgb),.82));
  color: #fff; font-size: .85rem; font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s, transform .35s var(--ease-out);
}
.work:hover .work__cap { opacity: 1; transform: translateY(0); }
.work.is-hidden { display: none; }

/* Contact page ------------------------------------------------------------- */
.contact { padding-block: clamp(48px, 7vw, 88px) clamp(64px, 9vw, 112px); }
.contact__title { font-size: clamp(2.1rem, 4.4vw, 3.25rem); font-weight: 700; letter-spacing: -.035em; }
.contact__lede { color: var(--muted); font-size: 1rem; margin-top: .55rem; }

.form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.5rem;
  margin-top: clamp(28px, 4vw, 44px);
}
.field { display: grid; gap: .4rem; align-content: start; }
.field--wide { grid-column: 1 / -1; margin-top: .9rem; }

.label { font-size: .9rem; font-weight: 500; color: var(--ink); }
.label__opt { color: var(--muted); font-weight: 400; }

.input {
  width: 100%;
  font: inherit; font-size: .95rem; color: var(--ink);
  padding: .8rem 1rem;
  background: var(--bg-alt);
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.input::placeholder { color: var(--muted); opacity: .85; }
.input:hover { border-color: var(--line); }
.input:focus {
  outline: none;
  background: var(--bg);
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .14);
}
.textarea { resize: vertical; min-height: 132px; line-height: 1.55; }

/* native select, with our own chevron */
.select-wrap { position: relative; }
.select { appearance: none; -webkit-appearance: none; padding-right: 2.6rem; cursor: pointer; }
.select:invalid { color: var(--muted); }
.select-wrap::after {
  content: ""; position: absolute; right: 1.05rem; top: 50%; pointer-events: none;
  width: 8px; height: 8px; margin-top: -6px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* validation */
.field__err { font-size: .82rem; color: #c0332e; min-height: 0; }
.field.is-bad .input { border-color: #c0332e; background: #fdf3f2; }
.field.is-bad .input:focus { box-shadow: 0 0 0 4px rgba(192,51,46,.14); }

.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.4rem; }
.form__foot .btn[disabled] { opacity: .6; pointer-events: none; }
.form__status { font-size: .9rem; color: var(--muted); }
.form__status.is-ok  { color: #1a7f4b; }
.form__status.is-bad { color: #c0332e; }
.form__status a { color: var(--brand); font-weight: 500; text-decoration: underline; }

@media (max-width: 620px) {
  .form { grid-template-columns: 1fr; }
  .field--wide { margin-top: .3rem; }
}

/* Scroll reveal ------------------------------------------------------------ */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* Responsive --------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__side { display: none; }
  .hero__strip { display: block; }
  .why__split { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: repeat(2, 1fr); height: 480px; }
  .tf-grid, .work-grid, .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__toggle { display: grid; }
  .nav__links {
    position: fixed; inset: 68px 0 auto; z-index: 55;
    flex-direction: column; align-items: stretch; gap: .2rem;
    padding: 1rem var(--pad) 1.4rem;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: opacity .3s, transform .35s var(--ease-out);
  }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__link { padding: .7rem .6rem; font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin: .5rem 0 0; justify-content: center; }
  .stats { grid-template-columns: 1fr; gap: .4rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; height: 430px; }
  .tf-grid, .work-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* Motion off --------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__row, .quotes__col, .marquee__track { animation: none !important; }
  .quotes { height: auto; -webkit-mask-image: none; mask-image: none; }
}
