:root {
  --red: #e90018;
  --red-dark: #b90016;
  --whatsapp-green: #25d366;
  --ink: #121214;
  --ink-soft: #4f4f55;
  --paper: #ffffff;
  --mist: #f3f3f1;
  --line: rgba(18, 18, 20, 0.14);
  --radius-sm: 14px;
  --radius-md: 26px;
  --radius-lg: 44px;
  --shadow: 0 24px 70px rgba(18, 18, 20, 0.14);
  --section: min(92vw, 1240px);
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  overflow-x: hidden;
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
}

::selection {
  background: var(--red);
  color: white;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 18px;
  top: 18px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--section);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 7.5vw, 7.8rem);
  font-weight: 850;
  overflow-wrap: break-word;
  hyphens: auto;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 820;
}

h3 {
  font-size: 1.35rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: white;
  cursor: pointer;
  font-weight: 760;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(233, 0, 24, 0.25);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(233, 0, 24, 0.35);
  outline-offset: 4px;
}

.button--compact {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.button--light {
  border-color: white;
  background: white;
  color: var(--red);
}

.button--light:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 740;
  text-decoration: none;
}

.text-link span {
  color: var(--red);
  font-size: 1.35rem;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

/* Intro */
.intro {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: white;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro__center {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.intro__logo-frame {
  width: clamp(145px, 18vw, 235px);
  height: clamp(250px, 32vw, 410px);
  overflow: hidden;
}

.intro__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  clip-path: inset(100% 0 0 0);
  animation: logoReveal 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.intro__phrase {
  margin: 0;
  opacity: 0;
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: phraseReveal 0.7s ease 1.45s forwards;
}

.intro__skip {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

@keyframes logoReveal {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes phraseReveal {
  to {
    opacity: 1;
  }
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding-inline: max(4vw, 24px);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(18, 18, 20, 0.05);
}

.brand {
  display: flex;
  width: 58px;
  height: 68px;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 40px);
}

.main-nav > a {
  position: relative;
  padding-block: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--mist);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.25s ease;
}

/* Hero */
.hero {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  padding-block: clamp(60px, 8vw, 120px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.hero__principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero__principles li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-team {
  position: relative;
  display: grid;
  min-height: 610px;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.hero-team::before {
  position: absolute;
  z-index: -1;
  inset: 11% -8% -4% 9%;
  border-radius: 48% 52% 42% 58% / 43% 42% 58% 57%;
  background: rgba(233, 0, 24, 0.07);
  content: "";
  filter: blur(2px);
}

.hero-team__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.hero-team__item:hover,
.hero-team__item:focus-visible {
  z-index: 4;
  outline: none;
  transform: scale(1.025) rotate(-0.4deg);
  box-shadow: var(--shadow);
}

.hero-team__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.03);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.hero-team__item:hover img,
.hero-team__item:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.03);
}

.hero-team__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, rgba(18, 18, 20, 0) 40%, rgba(18, 18, 20, 0.92) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-team__item:hover .hero-team__overlay,
.hero-team__item:focus-visible .hero-team__overlay {
  opacity: 1;
  transform: translateY(0);
}

.hero-team__overlay h3 {
  margin-bottom: 4px;
  color: white;
  font-size: 1.05rem;
}

.hero-team__role {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-team__bio {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* Manifesto */
.manifesto {
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  padding-block: clamp(100px, 13vw, 190px);
}

.manifesto__mark {
  position: sticky;
  top: calc(var(--header-height) + 60px);
  display: flex;
  height: 420px;
  align-items: center;
  justify-content: center;
}

.manifesto__mark img {
  width: 44%;
  max-width: 230px;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(18, 18, 20, 0.14));
}

.manifesto__content > p:not(.eyebrow) {
  max-width: 790px;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.manifesto__dimensions {
  display: grid;
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.manifesto__dimensions article {
  display: grid;
  gap: 22px;
  grid-template-columns: 60px minmax(180px, 0.6fr) minmax(0, 1fr);
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.manifesto__dimensions article > span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
}

.manifesto__dimensions h3 {
  margin: 0;
}

.manifesto__dimensions p {
  margin: 0;
  color: var(--ink-soft);
}

/* Services */
.services {
  padding-block: clamp(90px, 12vw, 170px);
  background: var(--mist);
}

.services__intro {
  display: grid;
  align-items: end;
  gap: 60px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 70px;
}

.services__intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.services__intro > p {
  max-width: 520px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.service-collage {
  display: grid;
  min-height: 980px;
  gap: 14px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, minmax(120px, 1fr));
}

.service-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  border: 0;
  border-radius: var(--radius-md);
  background: white;
  cursor: pointer;
  text-align: left;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.service-card:hover {
  z-index: 4;
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-card:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 4; }
.service-card:nth-child(2) { grid-column: 6 / 10; grid-row: 1 / 3; }
.service-card:nth-child(3) { grid-column: 10 / 13; grid-row: 1 / 3; }
.service-card:nth-child(4) { grid-column: 6 / 9; grid-row: 3 / 5; }
.service-card:nth-child(5) { grid-column: 9 / 13; grid-row: 3 / 6; }
.service-card:nth-child(6) { grid-column: 1 / 5; grid-row: 4 / 6; }
.service-card:nth-child(7) { grid-column: 5 / 9; grid-row: 5 / 7; }

.service-card__number {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 24px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.service-card__copy {
  position: relative;
  z-index: 3;
  display: grid;
  max-width: 92%;
  gap: 8px;
}

.service-card__copy > span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-card__copy strong {
  max-width: 520px;
  font-size: clamp(1.55rem, 2.7vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.service-card__copy small {
  max-width: 500px;
  opacity: 0.78;
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-card__arrow {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 22px;
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__arrow {
  transform: translate(4px, -4px);
}

.service-card__visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
}

.service-card--strategy,
.service-card--content,
.service-card--technology {
  color: white;
  background: var(--ink);
}

.service-card--demand,
.service-card--events {
  color: white;
  background: var(--red);
}

.service-card--growth,
.service-card--community {
  border: 1px solid rgba(18, 18, 20, 0.08);
  background: white;
}

.service-card--strategy .service-card__visual {
  background:
    radial-gradient(circle at 72% 28%, rgba(233,0,24,.95) 0 7%, transparent 7.5%),
    radial-gradient(circle at 52% 22%, rgba(233,0,24,.75) 0 4%, transparent 4.5%),
    linear-gradient(118deg, transparent 52%, rgba(233,0,24,.8) 52.4% 53%, transparent 53.4%),
    linear-gradient(70deg, transparent 66%, rgba(255,255,255,.22) 66.4% 67%, transparent 67.4%);
}

.service-card--demand .service-card__visual::before,
.service-card--demand .service-card__visual::after {
  position: absolute;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 50%;
  content: "";
}

.service-card--demand .service-card__visual::before {
  width: 220px;
  height: 220px;
  top: -80px;
  right: -35px;
}

.service-card--demand .service-card__visual::after {
  width: 120px;
  height: 120px;
  top: -30px;
  right: 15px;
}

.service-card--growth .service-card__visual {
  background: repeating-linear-gradient(90deg, transparent 0 29px, rgba(18,18,20,.055) 30px), repeating-linear-gradient(0deg, transparent 0 29px, rgba(18,18,20,.055) 30px);
}

.service-card--growth .service-card__visual i {
  position: absolute;
  bottom: 30%;
  width: 10%;
  border-radius: 999px 999px 0 0;
  background: var(--red);
}

.service-card--growth .service-card__visual i:nth-child(1) { left: 16%; height: 18%; }
.service-card--growth .service-card__visual i:nth-child(2) { left: 31%; height: 27%; }
.service-card--growth .service-card__visual i:nth-child(3) { left: 46%; height: 38%; }
.service-card--growth .service-card__visual i:nth-child(4) { left: 61%; height: 51%; }
.service-card--growth .service-card__visual i:nth-child(5) { left: 76%; height: 65%; }

.service-card--community .service-card__visual i {
  position: absolute;
  border: 1px solid rgba(233,0,24,.65);
  border-radius: 50%;
}

.service-card--community .service-card__visual i:nth-child(1) { width: 170px; height: 170px; top: -30px; right: -30px; }
.service-card--community .service-card__visual i:nth-child(2) { width: 105px; height: 105px; top: 30px; right: 70px; }
.service-card--community .service-card__visual i:nth-child(3) { width: 48px; height: 48px; top: 95px; right: 155px; background: var(--red); }

.service-card--content .service-card__visual {
  background: linear-gradient(135deg, transparent 0 55%, rgba(233,0,24,.85) 55% 67%, transparent 67%);
}

.service-card--content .service-card__visual i {
  position: absolute;
  top: 15%;
  width: 10px;
  border-radius: 999px;
  background: var(--red);
}

.service-card--content .service-card__visual i:nth-child(1) { left: 55%; height: 20%; }
.service-card--content .service-card__visual i:nth-child(2) { left: 62%; height: 42%; }
.service-card--content .service-card__visual i:nth-child(3) { left: 69%; height: 28%; }
.service-card--content .service-card__visual i:nth-child(4) { left: 76%; height: 54%; }
.service-card--content .service-card__visual i:nth-child(5) { left: 83%; height: 34%; }

.service-card--events .service-card__visual {
  background: radial-gradient(circle at 70% 27%, rgba(255,255,255,.98) 0 3%, rgba(255,255,255,.24) 3.5% 18%, transparent 18.5%), radial-gradient(circle at 70% 27%, transparent 0 31%, rgba(255,255,255,.35) 31.5% 32%, transparent 32.5%);
}

.service-card--technology .service-card__visual {
  background: repeating-linear-gradient(90deg, transparent 0 58px, rgba(255,255,255,.055) 59px), repeating-linear-gradient(0deg, transparent 0 58px, rgba(255,255,255,.055) 59px);
}

.service-card--technology .service-card__visual::before {
  position: absolute;
  top: 14%;
  right: 12%;
  width: 120px;
  height: 120px;
  border: 2px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(233,0,24,.08), 0 0 0 48px rgba(233,0,24,.05);
  content: "";
}

/* Method */
.method {
  display: grid;
  gap: clamp(55px, 8vw, 120px);
  grid-template-columns: 0.75fr 1.25fr;
  padding-block: clamp(110px, 14vw, 190px);
}

.method__heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.method__heading h2 {
  max-width: 520px;
}

.method__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method__steps li {
  display: grid;
  gap: 18px;
  grid-template-columns: 56px 0.62fr 1fr;
  padding-block: 30px;
  border-top: 1px solid var(--line);
}

.method__steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.method__steps span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
}

.method__steps h3,
.method__steps p {
  margin: 0;
}

.method__steps p {
  color: var(--ink-soft);
}

/* Balance */
.balance {
  overflow: hidden;
  padding-block: clamp(90px, 11vw, 150px);
  background: var(--ink);
  color: white;
}

.balance__inner {
  display: grid;
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: 0.95fr 1.05fr;
}

.balance__graphic {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
}

.balance__circle {
  position: relative;
  display: grid;
  width: min(72vw, 340px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center, rgba(255,255,255,.05) 0 3px, transparent 3px 9px);
  animation: slowRotate 20s linear infinite;
}

.balance__circle::before,
.balance__circle::after {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  content: "";
}

.balance__circle::before {
  width: 38%;
  height: 38%;
  background: var(--red);
  box-shadow: 0 0 0 2px rgba(255,255,255,.18);
}

.balance__circle::after {
  width: 14px;
  height: 14px;
  background: var(--ink);
  box-shadow: 0 0 0 2px rgba(255,255,255,.5);
}

.balance__circle-logo {
  position: absolute;
  inset: 0;
  width: 30%;
  height: 30%;
  margin: auto;
  transform: rotate(-12deg);
}

.balance__circle span {
  position: absolute;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-weight: 900;
  animation: counterRotate 20s linear infinite;
}

.balance__circle span:nth-of-type(1) { top: 2%; left: 8%; }
.balance__circle span:nth-of-type(2) { top: 50%; right: -3%; }
.balance__circle span:nth-of-type(3) { bottom: 0; left: 18%; background: var(--red); color: white; }

.balance__beam {
  position: absolute;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: rotate(-12deg);
}

@keyframes slowRotate {
  to { transform: rotate(360deg); }
}

@keyframes counterRotate {
  to { transform: rotate(-360deg); }
}

.balance__copy .eyebrow {
  color: #ff7b88;
}

.balance__copy p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(255,255,255,.7);
  font-size: 1.15rem;
}

/* FAQ */
.faq {
  display: grid;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: 0.8fr 1.2fr;
  padding-top: clamp(110px, 14vw, 190px);
  padding-bottom: clamp(110px, 14vw, 190px);
}

.faq__heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.faq__heading > p:last-child {
  max-width: 440px;
  color: var(--ink-soft);
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: grid;
  align-items: center;
  gap: 18px;
  grid-template-columns: 42px 1fr 30px;
  padding-block: 24px;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 760;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq summary span {
  color: var(--red);
  font-size: 0.72rem;
}

.faq details > p {
  max-width: 700px;
  margin: -4px 0 26px 60px;
  color: var(--ink-soft);
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 13vw, 170px);
  background: var(--red);
  color: white;
}

.contact__wave {
  position: absolute;
  top: -30px;
  right: -6%;
  width: 58%;
  height: 115%;
  opacity: 0.22;
  background:
    radial-gradient(ellipse at 50% 0%, transparent 0 38%, white 38.5% 39.2%, transparent 39.8%),
    radial-gradient(ellipse at 50% 15%, transparent 0 47%, white 47.5% 48%, transparent 48.5%),
    radial-gradient(ellipse at 50% 30%, transparent 0 57%, white 57.5% 58%, transparent 58.5%);
  transform: rotate(12deg);
}

.contact__inner {
  position: relative;
  z-index: 2;
}

.contact .eyebrow {
  color: white;
  opacity: 0.72;
}

.contact h2 {
  max-width: 920px;
}

.contact p:not(.eyebrow) {
  max-width: 730px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.78);
  font-size: 1.13rem;
}

/* Footer */
.site-footer {
  display: grid;
  align-items: end;
  gap: 40px;
  grid-template-columns: 1fr auto;
  padding-block: 54px 34px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer__brand img {
  width: 64px;
  height: 92px;
  object-fit: contain;
}

.site-footer__brand p {
  max-width: 280px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.site-footer__nav a {
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration: none;
}

.site-footer__legal {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

/* Floating action */
.whatsapp-fab {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--whatsapp-green);
  box-shadow: 0 12px 34px rgba(18,18,20,.28);
  color: white;
  cursor: pointer;
  font-weight: 760;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
  background: var(--red);
}

.whatsapp-fab svg {
  width: 24px;
  fill: currentColor;
}

.scroll-top {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 86px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 12px 34px rgba(18,18,20,.28);
  color: white;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  fill: currentColor;
}

/* Dialogs */
dialog {
  width: min(92vw, 1040px);
  max-height: min(90svh, 850px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 120px rgba(18,18,20,.35);
}

dialog::backdrop {
  background: rgba(18,18,20,.72);
  backdrop-filter: blur(10px);
}

.dialog-close {
  position: absolute;
  z-index: 6;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(18,18,20,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.service-dialog {
  grid-template-columns: 0.72fr 1.28fr;
}

.service-dialog[open] {
  display: grid;
}

.service-dialog__art {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--red);
}

.service-dialog__art::before,
.service-dialog__art::after,
.service-dialog__art i {
  position: absolute;
  border: 2px solid rgba(255,255,255,.48);
  border-radius: 50%;
  content: "";
}

.service-dialog__art::before { width: 360px; height: 360px; top: -80px; left: -130px; }
.service-dialog__art::after { width: 220px; height: 220px; top: 90px; right: -90px; }
.service-dialog__art i:nth-child(1) { width: 38px; height: 38px; top: 40%; left: 20%; background: white; }
.service-dialog__art i:nth-child(2) { width: 120px; height: 120px; bottom: 15%; right: 12%; }
.service-dialog__art i:nth-child(3) { width: 16px; height: 16px; bottom: 26%; left: 35%; background: white; }
.service-dialog__art i:nth-child(4) { width: 64px; height: 64px; top: 18%; left: 54%; }

.service-dialog__art.visual-strategy,
.service-dialog__art.visual-content,
.service-dialog__art.visual-technology {
  background: var(--ink);
}

.service-dialog__content {
  padding: clamp(52px, 7vw, 88px);
}

.service-dialog__content h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.service-dialog__description {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.service-dialog__content h3 {
  margin: 34px 0 14px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-dialog__content ul {
  display: grid;
  gap: 9px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.service-dialog__content li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.service-dialog__content li::before {
  position: absolute;
  top: 0.65em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.booking-dialog {
  width: min(92vw, 760px);
  padding: clamp(36px, 6vw, 68px);
}

.booking-dialog__intro {
  max-width: 590px;
  margin-bottom: 30px;
}

.booking-dialog h2 {
  margin-bottom: 15px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.booking-dialog__intro > p:last-child {
  color: var(--ink-soft);
}

#booking-form {
  display: grid;
  gap: 18px;
}

#booking-form label {
  display: grid;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 780;
}

#booking-form input,
#booking-form select,
#booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  color: var(--ink);
}

#booking-form input,
#booking-form select {
  min-height: 50px;
  padding-inline: 14px;
}

#booking-form textarea {
  padding: 14px;
  resize: vertical;
}

.booking-form__row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.consent-row input {
  min-height: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.consent-row a {
  color: var(--red);
  text-decoration: underline;
}

.legal-page {
  padding-block: calc(var(--header-height) + 48px) 64px;
}

.legal-container {
  max-width: 760px;
  margin-inline: auto;
}

.legal-container h1 {
  margin-top: 8px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.legal-container h2 {
  margin-top: 40px;
  font-size: 1.2rem;
}

.legal-container p,
.legal-container li {
  color: var(--ink-soft);
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 16px;
  font-size: 0.88rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--mist);
}

.check-list {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-back {
  margin-top: 32px;
}

.legal-back a {
  color: var(--red);
  font-weight: 700;
}

.booking-form__note {
  min-height: 24px;
  margin: 0;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
}

/* Reveal */
html.is-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

html.is-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-team {
    width: min(100%, 800px);
    min-height: 460px;
  }

  .service-collage {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .service-card:nth-child(n) {
    min-height: 360px;
    grid-column: auto;
    grid-row: auto;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(5) {
    grid-column: 1 / -1;
  }

}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    padding-inline: 20px;
  }

  .brand {
    width: 48px;
    height: 58px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 100;
    display: grid;
    gap: 4px;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 34px rgba(18,18,20,.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a {
    padding: 13px 4px;
  }

  .main-nav .button {
    margin-top: 8px;
  }

  .manifesto,
  .method,
  .faq,
  .balance__inner {
    grid-template-columns: 1fr;
  }

  .manifesto__mark {
    position: relative;
    top: auto;
    height: 300px;
  }

  .method__heading,
  .faq__heading {
    position: relative;
    top: auto;
  }

  .services__intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .method__steps li {
    grid-template-columns: 42px 0.7fr 1fr;
  }

  .service-dialog[open] {
    display: block;
  }

  .service-dialog__art {
    min-height: 200px;
  }
}

@media (max-width: 620px) {
  :root {
    --section: min(90vw, 560px);
    --radius-md: 20px;
    --radius-lg: 26px;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 5.3rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.8rem);
  }

  .hero {
    gap: 46px;
    padding-top: 48px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-team {
    min-height: 380px;
    gap: 8px;
  }

  .manifesto__dimensions article {
    gap: 8px;
    grid-template-columns: 42px 1fr;
  }

  .manifesto__dimensions article p {
    grid-column: 2;
  }

  .service-collage {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(n) {
    min-height: 330px;
    grid-column: auto;
  }

  .service-card__copy strong {
    font-size: 2rem;
  }

  .method__steps li {
    gap: 8px;
    grid-template-columns: 38px 1fr;
  }

  .method__steps li p {
    grid-column: 2;
  }

  .balance__graphic {
    min-height: 350px;
  }

  .faq details > p {
    margin-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }

  .site-footer__legal {
    grid-column: auto;
  }

  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-fab span {
    display: none;
  }

  .scroll-top {
    right: 14px;
    bottom: 78px;
    width: 46px;
    height: 46px;
  }

  .booking-form__row {
    grid-template-columns: 1fr;
  }

  .booking-dialog,
  .service-dialog {
    width: calc(100vw - 18px);
    max-height: calc(100svh - 18px);
  }

  .service-dialog__content,
  .booking-dialog {
    padding: 40px 24px 28px;
  }
}

/* Short viewports (e.g. phones in landscape): keep the floating WhatsApp
   button from covering content by collapsing it to icon-only. */
@media (max-height: 480px) {
  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-fab span {
    display: none;
  }

  .scroll-top {
    right: 78px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .intro {
    display: none;
  }

  html.is-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
