/* =========================================================
   VELIÉ — Marketing estratégico para saúde e estética
   Estilos globais
   ========================================================= */

/* Fontes auto-hospedadas (Instrument Sans e Instrument Serif — SIL Open Font License) */
@font-face { font-family: "Instrument Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/instrument-sans-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Instrument Sans"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/instrument-sans-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Instrument Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/instrument-sans-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Instrument Serif"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/instrument-serif-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Instrument Serif"; font-style: italic; font-weight: 400; font-display: swap; src: url("fonts/instrument-serif-latin-400-italic.woff2") format("woff2"); }

:root {
  --paper: #F3F3F0;
  --paper-2: #E8EAE6;
  --white: #FBFBF9;
  --ink: #1E2226;
  --ink-2: #4C535A;
  --ink-3: #767D84;
  --line: #D3D7D3;
  --line-dark: rgba(255, 255, 255, .16);
  --slate: #3C444D;
  --graphite: #22272C;
  --teal: #237572;
  --teal-2: #2F8C89;
  --teal-bg: #2E8784;
  --mist: #9DD2CE;

  --chrome: linear-gradient(100deg, #2b3035 0%, #9aa3ab 28%, #f3f5f7 47%, #818a92 66%, #2b3035 100%);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  --font-sans: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Instrument Serif", "Iowan Old Style", "Times New Roman", serif;

  --max: 1240px;
  --gutter: clamp(16px, 4.2vw, 44px);
  --header-h: 76px;
  --radius: 8px;
  --radius-lg: 18px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--mist); color: var(--ink); }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 999px;
  text-decoration: none; font-size: .9rem;
}
.skip-link:focus { top: 12px; }

.wrap {
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Tipografia ---------- */

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.03em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); letter-spacing: -.042em; line-height: .98; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.6rem); letter-spacing: -.038em; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); letter-spacing: -.02em; line-height: 1.15; }
p { margin: 0; text-wrap: pretty; }

h1 em, h2 em, h3 em, .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--teal-2);
}
h1 em, h2 em { font-size: 1.08em; line-height: .9; }

.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.55; color: var(--ink-2); max-width: 60ch; }
.muted { color: var(--ink-2); }
.small { font-size: .9rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow::before {
  content: ""; width: 34px; height: 2px; border-radius: 2px;
  background: var(--chrome); background-size: 200% 100%;
  animation: chrome 6s linear infinite;
}
@keyframes chrome { to { background-position: -200% 0; } }

.stack > * + * { margin-top: var(--stack, 1.25rem); }

/* ---------- Botões ---------- */

.btn {
  --bg: var(--teal); --fg: #fff; --bd: var(--teal);
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  min-height: 52px; padding: .85rem 1.55rem;
  border-radius: 999px; border: 1px solid var(--bd);
  background: var(--bg); color: var(--fg);
  font-size: .98rem; font-weight: 500; letter-spacing: -.005em; line-height: 1.2;
  text-decoration: none; cursor: pointer;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .35s var(--ease); }
.btn:hover { --bg: var(--graphite); --bd: var(--graphite); transform: translateY(-2px); box-shadow: 0 12px 28px -14px rgba(30, 34, 38, .55); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0); }

.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: rgba(30, 34, 38, .28); }
.btn--ghost:hover { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn--light { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn--light:hover { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn--line-light { --bg: transparent; --fg: #fff; --bd: rgba(255, 255, 255, .45); }
.btn--line-light:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn--sm { min-height: 44px; padding: .6rem 1.15rem; font-size: .92rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 500; text-decoration: none; color: var(--ink);
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--teal); }
.link-arrow:hover svg { transform: translateX(4px); }

.actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* ---------- Header ---------- */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.site-header .wrap {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.site-header.is-scrolled {
  background: rgba(243, 243, 240, .86);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 rgba(30, 34, 38, .08);
}
.site-header.is-hidden { transform: translateY(-100%); }

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: 128px; height: auto; transition: width .4s var(--ease); }
.is-scrolled .brand img { width: 112px; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav__list { display: flex; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav__list a {
  position: relative; text-decoration: none; font-size: .96rem; color: var(--ink-2);
  padding-block: .4rem; transition: color .3s var(--ease);
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--chrome); background-size: 200% 100%;
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.nav__list a:hover, .nav__list a[aria-current="page"] { color: var(--ink); }
.nav__list a:hover::after, .nav__list a[aria-current="page"]::after { transform: scaleX(1); }

.burger {
  display: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(30, 34, 38, .2); background: transparent; cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute; left: 13px; right: 13px; height: 1.5px; background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s;
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 26px; }
.nav-open .burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Seções ---------- */

main { display: block; }
.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--paper2 { background: var(--paper-2); }
.section--white { background: var(--white); }
.section--dark { background: var(--graphite); color: #EEF0F1; }
.section--slate { background: var(--slate); color: #EEF0F1; }
.section--dark .muted, .section--slate .muted, .section--dark .lead, .section--slate .lead { color: rgba(238, 240, 241, .74); }
.section--dark .eyebrow, .section--slate .eyebrow { color: rgba(238, 240, 241, .7); }
.section--dark h2 em, .section--slate h2 em, .section--dark h3 em, .section--slate h3 em,
.section--dark h1 em, .section--slate h1 em { color: var(--mist); }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--grain); opacity: .22; mix-blend-mode: overlay;
}
.grain > * { position: relative; z-index: 1; }

.section-head { display: grid; gap: 1.2rem; max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--split {
  max-width: none; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 2rem 4rem;
}

/* ---------- Hero (home) ---------- */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(620px, 94vh, 900px);
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 3rem); padding-bottom: 5rem;
  background: var(--paper);
}
.hero__media { position: absolute; inset: -6% 0 0 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; will-change: transform; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(243, 243, 240, .72) 0%, rgba(243, 243, 240, .5) 45%, rgba(243, 243, 240, .15) 100%),
    linear-gradient(180deg, rgba(243, 243, 240, .55) 0%, rgba(243, 243, 240, 0) 30%, rgba(243, 243, 240, .9) 100%);
}
.hero__inner { text-align: center; display: grid; justify-items: center; gap: 1.6rem; }
.hero h1 { font-size: clamp(2.6rem, 5.3vw, 4.7rem); }
.hero h1 em { display: inline-block; }
.hero .lead { max-width: 58ch; color: var(--ink-2); }
.hero .lead strong { color: var(--ink); font-weight: 600; }
.hero .actions { justify-content: center; margin-top: .6rem; }
.hero__tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.4rem;
  margin-top: 1.4rem; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
}
.hero__tags span + span::before { content: "·"; margin-right: 1.4rem; color: var(--teal-2); }
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(30, 34, 38, .35); border-radius: 20px;
}
.scroll-cue::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px;
  border-radius: 2px; background: var(--ink); animation: cue 2s var(--ease) infinite;
}
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Page hero (páginas internas) ---------- */

.page-hero {
  padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 6.5rem));
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  position: relative;
}
.page-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.page-hero__text { display: grid; gap: 1.5rem; align-content: center; }
.page-hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.8rem); }
.page-hero__media { position: relative; }
.page-hero__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); }
.page-hero__media--wide img { aspect-ratio: 5 / 4; }
.page-hero__badge {
  position: absolute; left: -1.5rem; bottom: 2rem;
  background: var(--white); border-radius: 999px; padding: .75rem 1.2rem .75rem .8rem;
  display: flex; align-items: center; gap: .7rem; font-size: .88rem; font-weight: 500;
  box-shadow: 0 18px 40px -22px rgba(30, 34, 38, .5);
}
.page-hero__badge i {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--chrome); background-size: 200% 100%; animation: chrome 5s linear infinite;
}
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__text { justify-items: center; }
.page-hero--center .lead { margin-inline: auto; }

.breadcrumb { font-size: .88rem; color: var(--ink-3); }
.breadcrumb a { text-decoration: none; color: var(--ink-2); }
.breadcrumb a:hover { color: var(--teal); }

/* ---------- Split / mercado ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 7vw, 6.5rem); align-items: center; }
.split--rev .split__media { order: -1; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); }
.split__media figcaption {
  position: absolute; right: 1rem; bottom: 1rem; max-width: 70%;
  background: rgba(251, 251, 249, .9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: .7rem 1rem; border-radius: 12px; font-size: .88rem; color: var(--ink-2);
}

.contrast-list { list-style: none; margin: 2rem 0 0; padding: 0; border-top: 1px solid var(--line); }
.contrast-list li {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1rem;
}
.contrast-list b { font-weight: 500; }
.contrast-list span { color: var(--ink-3); }

.statement {
  font-size: clamp(1.7rem, 3.4vw, 2.9rem); line-height: 1.15; letter-spacing: -.03em; font-weight: 500;
  max-width: 24ch; text-wrap: balance;
}
.statement em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--teal-2); }

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden; border-block: 1px solid var(--line); background: var(--white);
  padding-block: 1.3rem; position: relative;
}
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 2.4rem; padding-right: 2.4rem;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem); letter-spacing: -.03em; white-space: nowrap; color: var(--ink);
}
.marquee__item:nth-child(even) { font-family: var(--font-serif); font-style: italic; color: var(--teal-2); letter-spacing: -.01em; }
.marquee__item::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--chrome); background-size: 300% 100%;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards de serviços ---------- */

.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.service {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: 0 0 0 1px rgba(30, 34, 38, .06);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.service__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--paper-2); }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s var(--ease); filter: saturate(.9); }
.service__body { display: grid; gap: .7rem; padding: 1.5rem 1.5rem 1.7rem; flex: 1; align-content: start; }
.service__body p { color: var(--ink-2); font-size: .98rem; line-height: 1.55; }
.service__more {
  margin-top: auto; padding: 0 1.5rem 1.5rem; display: flex; align-items: center; gap: .5rem;
  font-size: .9rem; font-weight: 500; color: var(--teal);
}
.service__more svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.service:hover { transform: translateY(-6px); box-shadow: 0 0 0 1px rgba(30, 34, 38, .06), 0 28px 50px -30px rgba(30, 34, 38, .45); }
.service:hover .service__media img { transform: scale(1.06); filter: saturate(1); }
.service:hover .service__more svg { transform: translateX(5px); }

/* ---------- Processo ---------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; list-style: none; margin: 0; padding: 0; counter-reset: step; }
.step { position: relative; padding: 2.2rem 1.6rem 0 0; counter-increment: step; }
.step::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--line-dark);
}
.step::after {
  content: ""; position: absolute; left: 0; top: -6px; width: 13px; height: 13px; border-radius: 50%;
  background: var(--mist); box-shadow: 0 0 0 5px rgba(157, 210, 206, .16);
}
.step__num {
  display: block; font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--mist); margin-bottom: .6rem;
}
.step__num::before { content: "0" counter(step); }
.step h3 { margin-bottom: .7rem; }
.step p { color: rgba(238, 240, 241, .72); font-size: .98rem; }
.section--paper2 .step::before, .section--white .step::before, .steps--light .step::before { background: var(--line); }
.steps--light .step p { color: var(--ink-2); }
.steps--light .step__num { color: var(--teal-2); }
.steps--light .step::after { background: var(--teal-2); box-shadow: 0 0 0 5px rgba(47, 140, 137, .14); }

/* ---------- Case destaque ---------- */

.feature-case { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.feature-case__media { position: relative; }
.feature-case__media img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 3 / 2; object-fit: cover; background: #2c3238; }
.feature-case__traits { list-style: none; padding: 0; margin: 1.8rem 0 2.2rem; display: grid; gap: .2rem; }
.feature-case__traits li { font-size: clamp(1.3rem, 2.2vw, 1.8rem); letter-spacing: -.025em; line-height: 1.3; }
.feature-case__traits li:nth-child(2) { font-family: var(--font-serif); font-style: italic; color: var(--mist); letter-spacing: -.005em; }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  display: inline-flex; align-items: center; padding: .35rem .85rem; border-radius: 999px;
  border: 1px solid currentColor; font-size: .8rem; letter-spacing: .04em; opacity: .8;
}

/* ---------- FAQ ---------- */

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.faq__intro { position: sticky; top: calc(var(--header-h) + 2rem); display: grid; gap: 1.4rem; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; font-size: clamp(1.08rem, 1.5vw, 1.25rem); font-weight: 500; letter-spacing: -.015em;
  transition: color .3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--teal); }
.faq summary i {
  position: relative; width: 38px; height: 38px; flex: none; border-radius: 50%;
  border: 1px solid var(--line); transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .45s var(--ease);
}
.faq summary i::before, .faq summary i::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; margin: -.75px 0 0 -6px;
  background: currentColor; transition: transform .45s var(--ease);
}
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i { background: var(--ink); border-color: var(--ink); color: #fff; transform: rotate(180deg); }
.faq details[open] summary i::after { transform: rotate(0deg); }
.faq__answer { overflow: hidden; }
.faq__answer p { padding: 0 3.5rem 1.6rem 0; color: var(--ink-2); max-width: 62ch; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--teal-bg); color: #fff;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: var(--grain); opacity: .35; mix-blend-mode: overlay;
}
.cta-band::before {
  content: ""; position: absolute; z-index: -1; width: 60vw; height: 60vw; right: -18vw; top: -30vw;
  border-radius: 50%; background: radial-gradient(closest-side, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0));
}
.cta-band__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem 4rem; align-items: end; }
.cta-band h2 { color: #fff; }
.cta-band h2 em { color: #D4EFEC; }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 46ch; }
.cta-band .actions { justify-content: flex-end; }
.cta-band__side { display: grid; justify-items: end; text-align: right; }
.cta-band .contact-lines { margin-top: 1.4rem; display: grid; gap: .3rem; font-size: .95rem; }
.cta-band .contact-lines a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .35); }
.cta-band .contact-lines a:hover { border-color: #fff; }

/* ---------- Footer ---------- */

.site-footer { background: var(--graphite); color: rgba(238, 240, 241, .78); padding-top: clamp(4rem, 7vw, 5.5rem); padding-bottom: 2rem; font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__brand img { width: 150px; margin-bottom: 1.2rem; }
.footer__brand p { max-width: 34ch; }
.site-footer h4 { font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer a { text-decoration: none; transition: color .25s; }
.site-footer a:hover { color: #fff; }
.footer__bottom {
  margin-top: 3.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .84rem; color: rgba(238, 240, 241, .55);
}
.footer__chrome { height: 2px; background: var(--chrome); background-size: 200% 100%; animation: chrome 8s linear infinite; opacity: .7; }

/* ---------- WhatsApp flutuante ---------- */

.wa-float {
  position: fixed; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: 90;
  display: inline-flex; align-items: center; gap: .6rem;
  height: 56px; padding: 0 1.1rem 0 .95rem; border-radius: 999px;
  background: var(--ink); color: #fff; text-decoration: none; font-size: .92rem; font-weight: 500;
  box-shadow: 0 16px 36px -14px rgba(30, 34, 38, .6);
  transition: transform .35s var(--ease), background-color .35s var(--ease);
}
.wa-float svg { width: 24px; height: 24px; flex: none; }
.wa-float { box-shadow: 0 0 0 1px rgba(255, 255, 255, .22), 0 16px 36px -14px rgba(30, 34, 38, .6); }
.wa-float:hover { transform: translateY(-3px); background: var(--teal); }
.wa-float__pulse {
  position: absolute; left: 12px; top: 50%; width: 32px; height: 32px; margin-top: -16px; border-radius: 50%;
  border: 2px solid rgba(157, 210, 206, .7); animation: pulse 2.6s var(--ease) infinite; pointer-events: none;
}
@keyframes pulse { 0% { transform: scale(.7); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

/* ---------- Diálogo / formulário ---------- */

.dialog {
  width: min(560px, calc(100% - 32px)); max-height: calc(100dvh - 32px);
  border: 0; border-radius: 22px; padding: 0; background: var(--white); color: var(--ink);
  box-shadow: 0 40px 90px -30px rgba(20, 24, 28, .55);
}
.dialog::backdrop { background: rgba(26, 30, 34, .55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.dialog[open] { animation: dialogIn .45s var(--ease); }
@keyframes dialogIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }
.dialog__inner { padding: clamp(1.5rem, 4vw, 2.4rem); display: grid; gap: 1.3rem; }
.dialog__head { display: flex; justify-content: space-between; gap: 1rem; align-items: start; }
.dialog__head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.dialog__close {
  width: 42px; height: 42px; flex: none; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer;
  display: grid; place-items: center; transition: background-color .3s, color .3s;
}
.dialog__close:hover { background: var(--ink); color: #fff; }
.dialog__close svg { width: 16px; height: 16px; }

.form { display: grid; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 500; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: .8rem .95rem; transition: border-color .25s, box-shadow .25s, background-color .25s;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-2); background: #fff; box-shadow: 0 0 0 4px rgba(47, 140, 137, .14);
}
.field [aria-invalid="true"] { border-color: #B4533F; }
.field__error { font-size: .8rem; color: #A0402E; min-height: 0; }
.form__note { font-size: .8rem; color: var(--ink-3); }
.form .btn { width: 100%; }

/* ---------- Posicionamento: comparação e pilares ---------- */

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.6rem); }
.compare__col { border-radius: var(--radius-lg); padding: clamp(1.6rem, 3.4vw, 2.6rem); display: grid; gap: 1.2rem; align-content: start; }
.compare__col--a { background: var(--paper-2); color: var(--ink-2); }
.compare__col--b { background: var(--graphite); color: #EEF0F1; position: relative; overflow: hidden; isolation: isolate; }
.compare__col--b::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .2; mix-blend-mode: overlay; z-index: -1; }
.compare__col h3 { font-size: 1.5rem; }
.compare__col--a h3 { color: var(--ink); }
.compare__col--b h3 em { color: var(--mist); }
.compare ul { list-style: none; margin: 0; padding: 0; display: grid; }
.compare li { padding: .9rem 0 .9rem 2rem; border-top: 1px solid rgba(30, 34, 38, .1); position: relative; }
.compare__col--b li { border-color: rgba(255, 255, 255, .12); }
.compare li::before { content: ""; position: absolute; left: 0; top: 1.35rem; width: 14px; height: 1.5px; background: currentColor; opacity: .5; }
.compare__col--b li::before { background: var(--mist); opacity: 1; width: 16px; }

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.pillar { padding: 2rem 1.6rem 2rem 0; display: grid; gap: .8rem; align-content: start; border-right: 1px solid var(--line); padding-left: 1.6rem; }
.pillar:first-child { padding-left: 0; }
.pillar:last-child { border-right: 0; }
.pillar__word { font-family: var(--font-serif); font-style: italic; font-size: clamp(2rem, 3vw, 2.6rem); color: var(--teal-2); line-height: 1; letter-spacing: -.01em; }
.pillar p { color: var(--ink-2); font-size: .98rem; }

.audience { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.audience span {
  padding: .55rem 1rem; border-radius: 999px; background: var(--white); box-shadow: 0 0 0 1px rgba(30, 34, 38, .08);
  font-size: .92rem;
}

/* ---------- O que fazemos: blocos ---------- */

.subnav {
  position: sticky; top: var(--header-h); z-index: 40; background: rgba(243, 243, 240, .92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-block: 1px solid var(--line);
}
.subnav ul { display: flex; gap: .4rem; list-style: none; margin: 0; padding: .7rem 0; overflow-x: auto; scrollbar-width: none; }
.subnav ul::-webkit-scrollbar { display: none; }
.subnav li:first-child { margin-left: auto; } .subnav li:last-child { margin-right: auto; }
.subnav a {
  display: inline-flex; white-space: nowrap; padding: .5rem 1rem; border-radius: 999px; text-decoration: none; font-size: .9rem; color: var(--ink-2);
  transition: background-color .3s, color .3s;
}
.subnav a:hover { background: var(--white); color: var(--ink); }
.subnav a.is-active { background: var(--ink); color: #fff; }

.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; padding-block: clamp(3.5rem, 7vw, 6rem); border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 70px); }
.svc-block:last-child { border-bottom: 0; }
.svc-block:nth-child(even) .svc-block__media { order: 2; }
.svc-block__media { overflow: hidden; border-radius: var(--radius-lg); }
.svc-block__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; transition: transform 1.2s var(--ease); }
.svc-block:hover .svc-block__media img { transform: scale(1.04); }
.svc-block__text { display: grid; gap: 1.2rem; align-content: center; }
.svc-block__text h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
.svc-block__label { font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }
.checks { list-style: none; margin: .4rem 0 0; padding: 0; display: grid; gap: .1rem; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: .6rem; padding: .7rem 0; border-top: 1px solid var(--line); color: var(--ink-2); font-size: .98rem; }
.checks svg { width: 18px; height: 18px; margin-top: 3px; color: var(--teal-2); }

/* ---------- Sobre ---------- */

.manifesto { font-size: clamp(1.5rem, 2.9vw, 2.45rem); line-height: 1.25; letter-spacing: -.025em; max-width: 30ch; text-wrap: balance; }
.manifesto em { font-family: var(--font-serif); font-style: italic; color: var(--mist); letter-spacing: -.005em; }
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.principle { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.3rem); display: grid; gap: .8rem; align-content: start; box-shadow: 0 0 0 1px rgba(30, 34, 38, .06); }
.principle__icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); color: var(--teal); }
.principle__icon svg { width: 20px; height: 20px; }
.principle p { color: var(--ink-2); }
.collage { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1rem; align-items: start; }
.collage img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; }
.collage img:first-child { aspect-ratio: 4 / 5; }
.collage img:last-child { aspect-ratio: 3 / 4; margin-top: 4.5rem; }
.principles--3 { grid-template-columns: repeat(3, 1fr); margin-top: clamp(2rem, 4vw, 3rem); }

/* ---------- Portfólio ---------- */

.case-card {
  display: grid; grid-template-columns: 1.15fr .85fr; border-radius: 22px; overflow: hidden; text-decoration: none; color: #EEF0F1;
  background: var(--graphite); position: relative; isolation: isolate;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.case-card::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .18; mix-blend-mode: overlay; z-index: -1; pointer-events: none; }
.case-card__media { position: relative; overflow: hidden; min-height: 360px; background: #2b3036; }
.case-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.case-card__body { padding: clamp(1.8rem, 4vw, 3.2rem); display: grid; gap: 1.2rem; align-content: center; }
.case-card__body h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.case-card__body p { color: rgba(238, 240, 241, .74); }
.case-card__cta { display: inline-flex; align-items: center; gap: .6rem; font-weight: 500; color: #fff; margin-top: .6rem; }
.case-card__cta svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.case-card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -40px rgba(20, 24, 28, .7); }
.case-card:hover .case-card__media img { transform: scale(1.05); }
.case-card:hover .case-card__cta svg { transform: translateX(5px); }
.case-meta { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 1rem 2.5rem; font-size: .9rem; }
.case-meta dt { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; opacity: .6; margin-bottom: .2rem; }
.case-meta dd { margin: 0; }

/* ---------- Case: Robertto Melo ---------- */

.case-hero { padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem)); padding-bottom: clamp(3.5rem, 7vw, 5.5rem); }
.case-hero__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; margin-top: 2rem; }
.case-hero__logo {
  background: var(--white); border-radius: var(--radius-lg); aspect-ratio: 5 / 4; display: grid; place-items: center; padding: 12%;
  box-shadow: 0 0 0 1px rgba(30, 34, 38, .06);
}
.case-hero__logo img { width: 100%; max-width: 360px; }
.case-hero__logo .case-hero__fallback { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); text-align: center; }
.case-hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); }

.challenge { position: relative; isolation: isolate; overflow: hidden; }
.challenge__bg { position: absolute; inset: 0; z-index: -2; }
.challenge__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.4); }
.challenge::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(34, 39, 44, .9), rgba(34, 39, 44, .82) 50%, rgba(34, 39, 44, .94)); }
.challenge__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); }
.challenge h2 { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -.015em; margin-bottom: 1.4rem; }
.challenge p strong { color: #fff; font-weight: 600; }
.challenge .lead { color: rgba(238, 240, 241, .78); }
.problems { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1rem; }
.problems li { padding: 1.2rem 1.3rem; border-radius: 14px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); }
.problems b { display: block; color: #fff; font-weight: 600; margin-bottom: .25rem; }

.swot { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.8rem, 1.6vw, 1.2rem); }
.swot__card { background: var(--white); border-radius: var(--radius-lg); padding: 1.6rem; display: grid; gap: 1rem; align-content: start; box-shadow: 0 0 0 1px rgba(30, 34, 38, .06); }
.swot__card h3 { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.9rem; letter-spacing: -.01em; }
.swot__card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .55rem; }
.swot__card li { font-size: .95rem; color: var(--ink-2); padding-left: 1rem; position: relative; }
.swot__card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-2); }
.swot__card--s { border-top: 3px solid var(--teal-2); }
.swot__card--w { border-top: 3px solid #A9B0B6; }
.swot__card--o { border-top: 3px solid #6FB8B3; }
.swot__card--t { border-top: 3px solid var(--slate); }
.swot__letter { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }

.text-cols { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.text-cols h2 { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -.015em; }
.pull { font-size: clamp(1.3rem, 2.3vw, 1.85rem); line-height: 1.3; letter-spacing: -.02em; font-weight: 500; border-left: 2px solid var(--teal-2); padding-left: 1.4rem; }

.traits { display: grid; gap: .3rem; }
.traits span { font-size: clamp(2rem, 5vw, 4.2rem); letter-spacing: -.04em; line-height: 1.08; font-weight: 500; }
.traits span:nth-child(2) { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--teal-2); letter-spacing: -.015em; padding-left: clamp(1rem, 8vw, 7rem); }
.traits span:nth-child(3) { padding-left: clamp(2rem, 16vw, 14rem); }

.ba { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1600 / 1053; background: #2b3036; user-select: none; touch-action: pan-y; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__line { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; margin-left: -1px; background: #fff; pointer-events: none; }
.ba__handle {
  position: absolute; top: 50%; left: var(--pos, 50%); width: 52px; height: 52px; margin: -26px 0 0 -26px; border-radius: 50%;
  background: #fff; color: var(--ink); display: grid; place-items: center; box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .6); pointer-events: none;
}
.ba__handle svg { width: 22px; height: 22px; }
.ba__label { position: absolute; top: 1rem; padding: .35rem .8rem; border-radius: 999px; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; background: rgba(20, 24, 28, .72); color: #fff; pointer-events: none; }
.ba__label--a { left: 1rem; }
.ba__label--b { right: 1rem; background: rgba(255, 255, 255, .9); color: var(--ink); }
.ba input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.ba:focus-within .ba__handle { box-shadow: 0 0 0 4px rgba(157, 210, 206, .8), 0 10px 30px -10px rgba(0, 0, 0, .6); }

.next-case { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }

.img-failed { display: none !important; }

/* ---------- Texto legal ---------- */

.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-top: 2.6rem; margin-bottom: .8rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose p + p { margin-top: 1rem; }
.prose ul { padding-left: 1.2rem; display: grid; gap: .4rem; margin: 1rem 0; }
.prose a { color: var(--teal); }

/* ---------- Revelar ao rolar ---------- */

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal-img { clip-path: inset(0 0 0 0 round var(--radius-lg)); }
.js .reveal-img.reveal { opacity: 1; transform: none; clip-path: inset(12% 0 0 0 round var(--radius-lg)); transition: clip-path 1.3s var(--ease); }
.js .reveal-img.reveal.is-in { clip-path: inset(0 0 0 0 round var(--radius-lg)); }

.hero .hero__line { display: block; }
.hero .eyebrow { text-wrap: balance; justify-content: center; }
.js .hero .hero__line { opacity: 0; transform: translateY(.45em); animation: rise 1.1s var(--ease) forwards; }
.js .hero .hero__line:nth-child(2) { animation-delay: .12s; }
.js .hero .hero__line:nth-child(3) { animation-delay: .24s; }
.js .hero .hero__fade { opacity: 0; animation: fadeIn 1.2s var(--ease) .45s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ---------- Responsivo ---------- */

@media (max-width: 1100px) {
  .nav__list { gap: 1.3rem; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .swot { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: 0; }
  .pillar:nth-child(3) { padding-left: 0; }
  .pillar:nth-child(n+3) { border-top: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  :root { --header-h: 68px; }
  .burger { display: inline-block; z-index: 2; }
  .nav {
    position: fixed; inset: 0; z-index: 1; flex-direction: column; justify-content: center; align-items: flex-start; gap: 2.2rem;
    padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
    background: var(--paper);
    opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
  }
  .nav-open .nav { opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; gap: .4rem; }
  .nav__list a { font-size: clamp(2rem, 8vw, 2.8rem); letter-spacing: -.035em; color: var(--ink); }
  .nav__list a[aria-current="page"] { font-family: var(--font-serif); font-style: italic; color: var(--teal-2); }
  .nav__list a::after { display: none; }
  .js .nav-open .nav__list li { animation: rise .7s var(--ease) both; }
  .nav-open .nav__list li:nth-child(2) { animation-delay: .05s; }
  .nav-open .nav__list li:nth-child(3) { animation-delay: .1s; }
  .nav-open .nav__list li:nth-child(4) { animation-delay: .15s; }
  .nav-open .nav__list li:nth-child(5) { animation-delay: .2s; }
  .nav-open { overflow: hidden; }
  .nav-open .site-header { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .brand { position: relative; z-index: 2; }

  .page-hero__grid, .split, .feature-case, .faq, .cta-band__grid, .svc-block, .challenge__grid, .text-cols, .case-hero__grid, .section-head--split, .case-card { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .svc-block:nth-child(even) .svc-block__media { order: 0; }
  .faq__intro { position: static; }
  .cta-band .actions { justify-content: flex-start; }
  .cta-band__side { justify-items: start; text-align: left; }
  .page-hero__badge { left: 1rem; }
  .compare { grid-template-columns: 1fr; }
  .collage img:last-child { margin-top: 2.5rem; }
  .principles--3 { grid-template-columns: 1fr; }
  .case-card__media { min-height: 0; aspect-ratio: 16 / 10; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .services { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .swot { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar, .pillar:nth-child(3) { padding-left: 0; border-right: 0; border-top: 1px solid var(--line); }
  .pillar:first-child { border-top: 0; }
  .principles { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .contrast-list li { grid-template-columns: 1fr; gap: .2rem; }
  .hero__tags span + span::before { margin-right: .6rem; }
  .hero__tags { gap: .4rem .6rem; font-size: .72rem; }
  .wa-float { padding: 0; width: 56px; justify-content: center; }
  .wa-float__text { display: none; }
  .wa-float__pulse { left: 12px; }
  .faq__answer p { padding-right: 0; }
  .case-meta { grid-template-columns: 1fr 1fr; }
  .page-hero__media img { aspect-ratio: 4 / 4.4; }
  .actions .btn { flex: 1 1 100%; }
  .scroll-cue { display: none; }
  .hero .eyebrow::before { display: none; }
  .hero__tags { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .hero .hero__line, .js .hero .hero__fade { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

@media print {
  .site-header, .wa-float, .cta-band, .site-footer, .dialog { display: none !important; }
  body { background: #fff; }
}
