:root {
  --ink: #595353;
  --title: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  --subtitle: "Montserrat", Arial, sans-serif;
  --title-tracking: 0.018em;
  --subtitle-tracking: 0.025em;
  --container: min(1180px, calc(100vw - 48px));
  --radius: 24px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.55;
}

button,
input,
textarea {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--brand);
  color: var(--paper);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.eyebrow {
  font-family: var(--subtitle);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--title);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: var(--title-tracking);
  text-transform: uppercase;
}
h2 {
  font-size: clamp(2.15rem, 3.75vw, 4.25rem);
}
h3 {
  font-family: var(--subtitle);
  font-size: clamp(1.75rem, 2.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: var(--subtitle-tracking);
}

.button {
  font-family: var(--subtitle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}
.button--outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(89, 83, 83, 0.25);
}
.button--outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.button__arrow {
  font-size: 1.2rem;
  transition: transform 0.3s var(--ease);
}
.button:hover .button__arrow {
  transform: translateX(4px);
}

.visual-word,
.case-shape {
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px 0;
  transition:
    padding 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(241, 231, 231, 0.88);
  backdrop-filter: blur(18px);
  border-color: rgba(89, 83, 83, 0.08);
}

.brand {
  font-family: var(--subtitle);
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.22em;
}

.brand--header {
  width: 158px;
  height: 50px;
  overflow: hidden;
  display: block;
  mix-blend-mode: multiply;
}

.brand--header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 51%;
  transform: scale(1.04);
}

.brand-mark {
  width: 12px;
  height: 12px;
  margin-right: 11px;
  border: 2px solid var(--brand);
  border-radius: 50% 50% 50% 8%;
  transform: rotate(45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-family: var(--subtitle);
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

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

.nav-action .button {
  min-height: 46px;
  padding-inline: 19px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(89, 83, 83, 0.22);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 120px 24px 40px;
  background: var(--paper);
  align-content: start;
  gap: 18px;
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a:not(.button) {
  font-family: var(--title);
  font-size: 2.6rem;
  line-height: 1;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(89, 83, 83, 0.15);
  padding-bottom: 15px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 155px 0 76px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  top: -130px;
  right: -120px;
  background: var(--rose);
  border-radius: 50%;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 45%;
  top: 28%;
  left: 62%;
  background: rgba(89, 83, 83, 0.11);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  max-width: 820px;
  margin-bottom: 34px;
  font-size: clamp(3.5rem, 7.1vw, 7.7rem);
  letter-spacing: var(--title-tracking);
}

.hero h1 .accent {
  color: var(--brand);
  font-style: normal;
}

.hero-intro {
  max-width: 650px;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 1200px;
}

.visual-frame {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: 0.74;
  border-radius: 190px 190px 28px 28px;
  background: var(--ink);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(89, 83, 83, 0.18);
  transform: rotate(-2deg);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(241, 231, 231, 0.28);
  border-radius: inherit;
}

.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(241, 231, 231, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 231, 231, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

.visual-word {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%) rotate(-90deg);
  color: var(--paper);
  font-family: var(--title);
  font-size: clamp(4.4rem, 7vw, 7rem);
  letter-spacing: var(--title-tracking);
  white-space: nowrap;
}

.visual-orbit {
  position: absolute;
  width: 230px;
  height: 230px;
  top: 54px;
  left: -64px;
  border: 1px solid var(--brand);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.visual-orbit::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 26px;
  right: 26px;
  background: var(--brand);
  border-radius: 50%;
}

.floating-note {
  font-family: var(--subtitle);
  position: absolute;
  z-index: 3;
  width: 190px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid rgba(89, 83, 83, 0.1);
  box-shadow: 0 22px 55px rgba(89, 83, 83, 0.13);
  border-radius: 16px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-note strong {
  display: block;
  margin-top: 7px;
  color: var(--brand);
  font-size: 1.15rem;
  letter-spacing: 0;
  text-transform: none;
}
.floating-note--one {
  top: 60px;
  right: -35px;
}
.floating-note--two {
  left: -48px;
  bottom: 70px;
}

.scroll-cue {
  font-family: var(--subtitle);
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--muted);
  animation: pulseWidth 2s var(--ease) infinite;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(89, 83, 83, 0.1);
  background: var(--rose);
}

.marquee-track {
  display: flex;
  width: max-content;
  padding: 21px 0;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  font-family: var(--subtitle);
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 30px;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.marquee-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.statement {
  padding: 150px 0 130px;
  background: var(--paper);
}
.statement-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(55px, 9vw, 150px);
  align-items: start;
}

.statement-title {
  position: sticky;
  top: 135px;
}
.statement-title h2 {
  margin-bottom: 30px;
}
.statement-title p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}

.problem-list {
  display: grid;
  gap: 18px;
}
.problem-card {
  position: relative;
  min-height: 230px;
  padding: 32px;
  border: 1px solid rgba(89, 83, 83, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    background 0.45s var(--ease),
    color 0.45s var(--ease);
}

.problem-card::after {
  content: attr(data-index);
  position: absolute;
  right: 20px;
  bottom: -38px;
  font-family: var(--title);
  font-size: 8rem;
  color: rgba(167, 43, 24, 0.11);
  line-height: 1;
}

.problem-card:hover {
  transform: translateX(-10px);
  background: var(--brand);
  color: var(--paper);
}
.problem-card:hover p,
.problem-card:hover .problem-number {
  color: var(--paper);
}
.problem-number {
  font-family: var(--subtitle);
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.problem-card h3 {
  max-width: 500px;
  margin: 22px 0 18px;
  font-size: clamp(1.75rem, 2.5vw, 2.75rem);
}
.problem-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  transition: color 0.45s var(--ease);
}

.method {
  position: relative;
  padding: 150px 0;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.method::before {
  content: "VAN";
  position: absolute;
  top: -60px;
  right: -10px;
  color: rgba(241, 231, 231, 0.025);
  font-family: var(--title);
  font-size: 32vw;
  line-height: 1;
}

.method-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 78px;
}

.method-top h2 {
  max-width: 730px;
  margin-bottom: 0;
}
.method-top p {
  max-width: 390px;
  margin: 0;
  color: rgba(241, 231, 231, 0.62);
}
.method .eyebrow {
  color: var(--rose);
}

.method-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(241, 231, 231, 0.18);
}

.method-step {
  min-height: 400px;
  padding: 35px 28px;
  border-right: 1px solid rgba(241, 231, 231, 0.18);
  transition:
    background 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.method-step:last-child {
  border-right: 0;
}
.method-step:hover {
  background: var(--brand);
  transform: translateY(-10px);
}
.step-num {
  font-family: var(--subtitle);
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.method-step h3 {
  margin: 140px 0 20px;
  font-size: clamp(1.7rem, 2.3vw, 2.55rem);
}
.method-step p {
  color: rgba(241, 231, 231, 0.64);
}
.method-step:hover p {
  color: var(--paper);
}

.services {
  padding: 150px 0;
  background: var(--rose);
}
.services-head {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 70px;
}

.services-head h2 {
  margin-bottom: 0;
}
.services-head p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.service-list {
  border-top: 1px solid rgba(89, 83, 83, 0.18);
}
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 130px;
  border-bottom: 1px solid rgba(89, 83, 83, 0.18);
  overflow: hidden;
  cursor: default;
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}

.service-row:hover::before {
  transform: translateY(0);
}
.service-row > * {
  position: relative;
  z-index: 1;
  transition:
    color 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.service-row:hover > * {
  color: var(--paper);
}
.service-row:hover .service-arrow {
  transform: rotate(45deg);
}
.service-index {
  font-family: var(--subtitle);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
}
.service-name {
  font-family: var(--subtitle);
  font-size: clamp(1.85rem, 3.4vw, 3.85rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: var(--subtitle-tracking);
}
.service-arrow {
  font-size: 2rem;
  transition:
    transform 0.35s var(--ease),
    color 0.35s var(--ease);
}

.cases {
  padding: 150px 0;
  background: var(--paper);
}
.cases-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
}

.cases-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}
.case-controls {
  display: flex;
  gap: 10px;
}
.circle-button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(89, 83, 83, 0.2);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.circle-button:hover {
  background: var(--ink);
  color: var(--paper);
  transform: scale(1.05);
}

.case-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 10px;
}
.case-track::-webkit-scrollbar {
  display: none;
}

.case-card {
  flex: 0 0 min(78vw, 760px);
  min-height: 570px;
  display: grid;
  grid-template-rows: 1fr auto;
  scroll-snap-align: start;
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.case-card--brand {
  background: var(--brand);
}
.case-visual {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(241, 231, 231, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 231, 231, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
}

.case-shape {
  width: 220px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 231, 231, 0.55);
  border-radius: 50%;
  font-family: var(--title);
  font-size: 5.5rem;
  transform: rotate(-8deg);
}

.case-badge {
  font-family: var(--subtitle);
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(241, 231, 231, 0.4);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-copy {
  padding: 34px;
}
.case-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
}
.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}
.metric strong {
  display: block;
  font-family: var(--title);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}
.metric span {
  font-family: var(--subtitle);
  color: rgba(241, 231, 231, 0.65);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clients {
  padding: 120px 0;
  background: var(--paper);
  border-top: 1px solid rgba(89, 83, 83, 0.1);
}

.clients > .container > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 58px;
}

.client-logo {
  position: relative;
  min-height: 180px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(89, 83, 83, 0.12);
  border-radius: 22px;
  background: rgba(253, 253, 253, 0.52);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    background 0.4s var(--ease);
}

.client-logo::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -105px;
  bottom: -115px;
  border: 1px solid rgba(167, 43, 24, 0.18);
  border-radius: 50%;
  z-index: -1;
  transition: transform 0.55s var(--ease);
}

.client-logo:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 43, 24, 0.24);
  background: rgba(253, 253, 253, 0.8);
  box-shadow: 0 24px 55px rgba(89, 83, 83, 0.12);
}

.client-logo:hover::before {
  transform: scale(1.35);
}

.client-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 104px;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.94);
  transition:
    transform 0.45s var(--ease),
    filter 0.45s var(--ease);
}

.client-logo:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}

.client-logo--dark {
  background: #171717;
  border-color: #171717;
}

.client-logo--dark::before {
  border-color: rgba(221, 178, 178, 0.24);
}

.client-logo--dark:hover {
  background: #101010;
  border-color: rgba(167, 43, 24, 0.48);
}

.client-logo--burger img {
  padding: 20px;
  max-width: 88%;
  max-height: 122px;
}

.client-logo--helus img {
  max-width: 72%;
  max-height: 108px;
}

.client-logo--lc img {
  max-width: 86%;
  max-height: 104px;
}

.client-logo--dafne img {
  max-width: 58%;
  max-height: 122px;
}

.client-logo--cron img {
  max-width: 82%;
  max-height: 90px;
}

.client-logo--mc img {
  max-width: 80%;
  max-height: 92px;
}

.about {
  padding: 150px 0;
  color: var(--paper);
  background: linear-gradient(135deg, #a24d4b 0%, #9b443f 58%, #a72b18 125%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(52px, 7vw, 100px);
  align-items: center;
}

.about-art {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 2;
  border-radius: 190px 190px 28px 28px;
  background: var(--rose);
  overflow: hidden;
  box-shadow: 0 34px 78px rgba(64, 26, 23, 0.28);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s var(--ease);
}

.about-photo:hover img {
  transform: scale(1.025);
}

.about-photo figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(241, 231, 231, 0.52);
  border-radius: 999px;
  background: rgba(89, 83, 83, 0.58);
  backdrop-filter: blur(12px);
  color: var(--paper);
  font-family: var(--subtitle);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about .eyebrow {
  color: var(--rose);
}
.about h2 {
  max-width: 760px;
}
.about-copy > p {
  max-width: 650px;
  color: rgba(241, 231, 231, 0.76);
  font-size: 1.05rem;
}
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}
.about-person {
  padding-top: 22px;
  border-top: 1px solid rgba(241, 231, 231, 0.35);
}
.about-person h3 {
  margin-bottom: 12px;
  font-size: 2.15rem;
}
.about-person p {
  color: rgba(241, 231, 231, 0.7);
  font-size: 0.95rem;
}

.cta {
  position: relative;
  padding: 170px 0;
  background: var(--rose);
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: 50%;
  right: -250px;
  border: 1px solid rgba(167, 43, 24, 0.3);
  border-radius: 50%;
  transform: translateY(-50%);
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}

.cta h2 {
  max-width: 870px;
  margin-bottom: 0;
}
.cta-side p {
  max-width: 430px;
  color: var(--muted);
}
.cta-side .button {
  margin-top: 15px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 0.7fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(241, 231, 231, 0.14);
}

.footer .brand {
  margin-bottom: 22px;
}

.footer h4 {
  font-family: var(--subtitle);
  margin: 0 0 20px;
  color: var(--rose);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--paper);
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--paper);
  box-shadow: 0 16px 42px rgba(89, 83, 83, 0.23);
  transition: transform 0.3s var(--ease);
}
.whatsapp:hover {
  transform: translateY(-4px) rotate(-4deg);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="1"] {
  transition-delay: 0.1s;
}
[data-delay="2"] {
  transition-delay: 0.2s;
}
[data-delay="3"] {
  transition-delay: 0.3s;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulseWidth {
  0%,
  100% {
    transform: scaleX(0.5);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 32px, 760px);
  }
  .nav {
    grid-template-columns: 1fr auto;
  }
  .brand--header {
    width: 142px;
    height: 46px;
  }
  .nav-links,
  .nav-action {
    display: none;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }
  .hero-grid,
  .statement-grid,
  .services-head,
  .about-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 130px;
  }
  .hero-visual {
    min-height: 520px;
  }
  .hero::after {
    display: none;
  }
  .statement-title {
    position: static;
  }
  .method-top {
    display: block;
  }
  .method-top p {
    margin-top: 25px;
  }
  .method-steps {
    grid-template-columns: 1fr 1fr;
  }
  .method-step:nth-child(2) {
    border-right: 0;
  }
  .method-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(241, 231, 231, 0.18);
  }
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-art {
    min-height: 500px;
    max-width: 600px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100vw - 24px);
    --radius: 18px;
  }
  .site-header {
    padding-top: 10px;
  }
  .hero {
    min-height: auto;
    padding: 118px 0 85px;
  }
  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .hero-visual {
    min-height: 460px;
    margin-top: 25px;
  }
  .visual-frame {
    width: 86%;
  }
  .floating-note {
    width: 160px;
    font-size: 0.64rem;
  }
  .floating-note--one {
    right: 0;
  }
  .floating-note--two {
    left: 0;
  }
  .scroll-cue {
    display: none;
  }
  .statement,
  .method,
  .services,
  .cases,
  .about,
  .cta {
    padding: 100px 0;
  }
  h2 {
    font-size: clamp(2.65rem, 12vw, 4.25rem);
  }
  .problem-card {
    padding: 24px;
    min-height: 205px;
  }
  .method-steps {
    grid-template-columns: 1fr;
  }
  .method-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(241, 231, 231, 0.18);
  }
  .method-step h3 {
    margin-top: 70px;
  }
  .service-row {
    grid-template-columns: 45px 1fr auto;
    min-height: 105px;
  }
  .service-name {
    font-size: 2.2rem;
  }
  .cases-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .case-card {
    flex-basis: 91vw;
    min-height: 520px;
  }
  .case-copy {
    padding: 26px;
  }
  .case-metrics {
    gap: 20px;
  }
  .metric strong {
    font-size: 1.9rem;
  }
  .client-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .client-logo {
    min-height: 150px;
    padding: 26px;
  }
  .client-logo img {
    max-height: 94px;
  }
  .about-art {
    min-height: 430px;
  }
  .about-columns {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .whatsapp {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(34px, 5vw, 82px);
}
.hero h1 {
  max-width: 730px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 5.45vw, 6.15rem);
  line-height: 1;
}
.hero-intro {
  max-width: 690px;
}

.statement {
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "GUARDA";
  position: absolute;
  left: -7rem;
  bottom: 2rem;
  color: rgba(167, 43, 24, 0.035);
  font-family: var(--title);
  font-size: clamp(8rem, 19vw, 23rem);
  letter-spacing: var(--title-tracking);
  line-height: 0.8;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  pointer-events: none;
}
.statement-title,
.problem-list {
  position: relative;
  z-index: 1;
}
.statement-signature {
  width: min(100%, 560px);
  margin-top: 52px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(89, 83, 83, 0.13);
  border-radius: 999px;
  font-family: var(--subtitle);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand);
}
.statement-signature i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.services {
  position: relative;
  overflow: hidden;
}
.services::after {
  content: "SISTEMA";
  position: absolute;
  right: -1rem;
  bottom: -2.5rem;
  color: rgba(89, 83, 83, 0.04);
  font-family: var(--title);
  font-size: clamp(8rem, 18vw, 21rem);
  letter-spacing: var(--title-tracking);
  line-height: 0.75;
  pointer-events: none;
}
.services .container {
  position: relative;
  z-index: 1;
}
.services-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}
.service-row {
  grid-template-columns: 58px minmax(220px, 1fr) minmax(190px, 0.76fr) auto;
  gap: 18px;
  min-height: 142px;
  outline: none;
}
.service-name {
  font-size: clamp(1.5rem, 2.25vw, 2.7rem);
}
.service-summary {
  position: relative;
  z-index: 1;
  max-width: 300px;
  color: rgba(89, 83, 83, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
  transition:
    color 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.service-row:hover .service-summary,
.service-row:focus .service-summary,
.service-row.active .service-summary {
  color: var(--paper);
}
.service-row.active::before,
.service-row:focus::before {
  transform: translateY(0);
}
.service-row.active > *,
.service-row:focus > * {
  color: var(--paper);
}
.service-row.active .service-arrow,
.service-row:focus .service-arrow {
  transform: rotate(45deg);
}

.services-visual {
  position: sticky;
  top: 122px;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.services-frame {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 0.82;
  overflow: hidden;
  border-radius: 28px 210px 28px 28px;
  background: var(--ink);
  box-shadow: 0 34px 72px rgba(89, 83, 83, 0.18);
  transition:
    transform 0.65s var(--ease),
    border-radius 0.65s var(--ease),
    background 0.65s var(--ease);
  transform: rotate(1.5deg);
}
.services-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(241, 231, 231, 0.24);
  border-radius: inherit;
}
.services-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(241, 231, 231, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 231, 231, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
}
.services-word {
  position: absolute;
  left: 50%;
  top: 52%;
  max-width: 90%;
  color: var(--paper);
  font-family: var(--title);
  font-size: clamp(2.5rem, 4.4vw, 4.65rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-align: center;
  overflow-wrap: anywhere;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition:
    opacity 0.22s ease,
    transform 0.65s var(--ease);
}
.services-word.is-changing {
  opacity: 0;
  transform: translate(-50%, -46%) rotate(-90deg);
}
.services-visual-index {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 2;
  color: var(--rose);
  font-family: var(--subtitle);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}
.services-orbit {
  position: absolute;
  width: 245px;
  height: 245px;
  right: -72px;
  bottom: -50px;
  border: 1px solid var(--brand);
  border-radius: 50%;
  animation: orbit 20s linear infinite reverse;
}
.services-orbit::before,
.services-orbit::after,
.services-orbit i {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.services-orbit::before {
  inset: 28px;
  border: 1px solid rgba(221, 178, 178, 0.35);
}
.services-orbit::after {
  width: 15px;
  height: 15px;
  left: 22px;
  top: 72px;
  background: var(--brand);
}
.services-orbit i {
  width: 7px;
  height: 7px;
  right: 22px;
  top: 98px;
  background: var(--rose);
}
.services-note {
  position: absolute;
  right: -16px;
  bottom: 66px;
  width: 205px;
  padding: 18px;
  border: 1px solid rgba(89, 83, 83, 0.1);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 22px 55px rgba(89, 83, 83, 0.13);
  font-family: var(--subtitle);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.services-note strong {
  display: block;
  margin-top: 7px;
  color: var(--brand);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}
.services-cross {
  position: absolute;
  width: 24px;
  height: 24px;
}
.services-cross::before,
.services-cross::after {
  content: "";
  position: absolute;
  background: rgba(241, 231, 231, 0.42);
}
.services-cross::before {
  width: 100%;
  height: 1px;
  top: 50%;
}
.services-cross::after {
  width: 1px;
  height: 100%;
  left: 50%;
}
.services-cross--one {
  top: 88px;
  right: 58px;
}
.services-cross--two {
  left: 54px;
  bottom: 74px;
  transform: rotate(45deg);
}

.about-art {
  background-image:
    linear-gradient(rgba(89, 83, 83, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 83, 83, 0.065) 1px, transparent 1px);
  background-size: 42px 42px;
}
.about-art span {
  z-index: 2;
}

@media (max-width: 1120px) {
  .services-shell {
    grid-template-columns: 1fr;
  }
  .services-visual {
    position: relative;
    top: auto;
    min-height: 500px;
    margin-top: 20px;
  }
  .services-frame {
    width: min(100%, 390px);
  }
  .services-note {
    right: calc(50% - 230px);
  }
}

@media (max-width: 980px) {
  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.4rem, 9vw, 5.8rem);
  }
  .service-row {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }
  .service-summary {
    grid-column: 2 / 3;
    margin: -20px 0 24px;
    max-width: 540px;
  }
  .service-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(2.8rem, 12.3vw, 4.15rem);
    letter-spacing: 0.065em;
  }
  .statement-signature {
    box-sizing: border-box;
    grid-template-columns: auto minmax(32px, 1fr) auto;
    gap: 12px;
    width: 100%;
    margin-top: 42px;
    padding: 18px 20px;
    border-radius: 999px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .statement-signature i {
    width: 100%;
    min-width: 32px;
  }
  .service-row {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 132px;
    padding-block: 18px;
  }
  .service-name {
    font-size: 1.75rem;
  }
  .service-summary {
    margin: -7px 0 12px;
    font-size: 0.8rem;
  }
  .services-visual {
    min-height: 455px;
  }
  .services-frame {
    width: 84%;
  }
  .services-note {
    right: 2px;
    bottom: 38px;
    width: 170px;
  }
  .services-word {
    font-size: clamp(2.15rem, 10vw, 3.3rem);
  }
}

.brand--header {
  position: relative;
  width: 172px;
  height: 50px;
  overflow: hidden;
  mix-blend-mode: normal;
}
.brand--header img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 362%;
  max-width: none;
  height: auto;
  object-fit: initial;
  object-position: initial;
  transform: translate(-50%, -50%);
}

.hero {
  min-height: 100svh;
  padding-top: clamp(128px, 12vh, 158px);
  padding-bottom: clamp(64px, 8vh, 92px);
}
.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  align-items: center;
}
.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(2.55rem, 3.55vw, 4.15rem);
  line-height: 1.04;
  letter-spacing: 0.072em;
}
.hero-intro {
  max-width: 670px;
}
.hero-visual {
  min-height: min(540px, 62vh);
}
.visual-frame {
  width: min(100%, 390px);
}

.statement::before,
.services::after,
.cta::before {
  content: none;
  display: none;
}
.about-art {
  background: var(--rose);
}

.services-shell {
  display: block;
}
.service-list {
  width: 100%;
}
.service-row {
  grid-template-columns: 64px minmax(260px, 1.15fr) minmax(220px, 0.85fr) auto;
  gap: 22px;
  min-height: 136px;
  cursor: default;
}
.service-name {
  margin: 0;
  font-family: var(--subtitle) !important;
  font-size: clamp(1.55rem, 2.25vw, 2.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: none;
}
.service-summary {
  max-width: 420px;
  font-family: var(--body);
  font-size: 0.9rem;
  line-height: 1.6;
}
.service-row:hover .service-summary {
  color: var(--paper);
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: clamp(2.5rem, 4.8vw, 3.85rem);
  }
  .hero-visual {
    min-height: 500px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }
  .hero h1 {
    max-width: 760px;
    font-size: clamp(2.55rem, 7vw, 4rem);
  }
  .service-row {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }
  .service-summary {
    grid-column: 2 / 3;
    margin: -18px 0 24px;
    max-width: 640px;
  }
  .service-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
  }
}

@media (max-width: 620px) {
  .brand--header {
    width: 142px;
    height: 42px;
  }
  .hero {
    padding-top: 112px;
  }
  .hero h1 {
    font-size: clamp(2.15rem, 9.4vw, 3.05rem);
    line-height: 1.05;
    letter-spacing: 0.058em;
  }
  .hero-visual {
    min-height: 440px;
  }
  .service-row {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 128px;
    padding-block: 18px;
  }
  .service-name {
    font-size: 1.58rem;
    letter-spacing: 0.025em;
  }
  .service-summary {
    margin: -4px 0 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 980px) {
  .about-art {
    width: min(100%, 720px);
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 620px) {
  .about-art {
    aspect-ratio: 4 / 3;
    border-radius: 120px 120px 22px 22px;
  }
  .about-photo figcaption {
    left: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

h1,
h2 {
  font-family: var(--title);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: var(--title-tracking);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(3rem, 5vw, 5.7rem);
}

h3,
.eyebrow,
.button,
.nav-links,
.nav-action,
.mobile-menu,
.footer,
.case-badge,
.floating-note {
  font-family: var(--subtitle);
}

.visual-word,
.footer-brand .brand {
  font-family: var(--institutional);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.statement-signature,
.problem-card h3,
.problem-number,
.method-step h3,
.step-num,
.service-index,
.service-name,
.case-copy h3,
.case-shape,
.metric strong,
.marquee-item span,
.about-person h3 {
  font-family: var(--title) !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.problem-card h3,
.method-step h3,
.case-copy h3,
.about-person h3 {
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 0.96;
}

.problem-number,
.step-num,
.service-index {
  font-size: 1.15rem;
  line-height: 1;
}

.service-name {
  font-size: clamp(2.25rem, 3.5vw, 4.15rem);
  line-height: 0.92;
  letter-spacing: 0.016em;
}

.marquee-item span {
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 5vw, 5.65rem);
  line-height: 0.91;
  letter-spacing: 0.012em;
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: clamp(3.25rem, 5.7vw, 5rem);
  }
}

@media (max-width: 980px) {
  .hero h1 {
    max-width: 720px;
    font-size: clamp(3.1rem, 8vw, 4.8rem);
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(2.85rem, 12vw, 4rem);
    line-height: 0.93;
    letter-spacing: 0.01em;
  }

  h2 {
    font-size: clamp(2.7rem, 12vw, 4.25rem);
  }

  .service-name {
    font-size: 2.15rem;
  }
}

.visual-word {
  top: 49%;
  font-size: clamp(3.25rem, 5vw, 5.15rem);
  letter-spacing: 0.055em;
}

@media (max-width: 980px) {
  .visual-word {
    font-size: clamp(3rem, 7vw, 4.7rem);
  }
}

@media (max-width: 620px) {
  .visual-word {
    font-size: clamp(2.65rem, 12vw, 4rem);
    letter-spacing: 0.045em;
  }
}

.brand--header {
  width: 174px;
  height: auto;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  mix-blend-mode: multiply;
}

.brand--header img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.footer-logo-card {
  display: inline-flex;
  width: 218px;
  padding: 13px 17px;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.footer-logo-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 980px) {
  .brand--header {
    width: 158px;
  }
}

@media (max-width: 620px) {
  .brand--header {
    width: 145px;
  }
  .footer-logo-card {
    width: 190px;
  }
}

.site-header .brand {
  width: 174px;
  height: auto;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  mix-blend-mode: multiply;
  font-size: 0;
  line-height: 0;
}

.site-header .brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transform: none;
  clip-path: none;
}

@media (max-width: 980px) {
  .site-header .brand {
    width: 158px;
  }
}

@media (max-width: 620px) {
  .site-header .brand {
    width: 145px;
  }
}

.whatsapp {
  background: #25d366;
  color: #ffffff;
}

.whatsapp:hover {
  background: #1fbe5d;
}

.client-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.client-logo--articular img {
  max-width: 70%;
  max-height: 96px;
}

.client-logo--urucum img {
  max-width: 68%;
  max-height: 100px;
}

@media (max-width: 1100px) {
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .client-grid {
    grid-template-columns: 1fr;
  }
}

.client-logo--burger {
  background: linear-gradient(
    145deg,
    rgba(253, 253, 253, 0.98),
    rgba(247, 241, 241, 0.98)
  );
  border-color: rgba(167, 43, 24, 0.14);
}

.client-logo--burger::before {
  border-color: rgba(167, 43, 24, 0.18);
}

.client-logo--burger:hover {
  background: #ffffff;
  border-color: rgba(167, 43, 24, 0.28);
}

.client-logo--burger img {
  max-width: 74%;
  max-height: 104px;
  filter: none;
}

.client-logo--burger img {
  width: 100%;
  max-width: 100%;
  max-height: none;
  transform: scale(1.18);
  transform-origin: center;
}

.client-logo--burger:hover img {
  transform: scale(1.23);
}

@media (max-width: 620px) {
  .client-logo--burger img {
    width: 94%;
    transform: scale(1.16);
  }

  .client-logo--burger:hover img {
    transform: scale(1.2);
  }
}

.client-grid {
  grid-auto-rows: 180px;
  align-items: stretch;
}

.client-logo {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.client-logo--burger img {
  width: auto;
  max-width: 92%;
  max-height: 128px;
  transform: scale(1.08);
  transform-origin: center;
}

.client-logo--burger:hover img {
  transform: scale(1.12);
}

@media (max-width: 1100px) {
  .client-grid {
    grid-auto-rows: 170px;
  }
}

@media (max-width: 620px) {
  .client-grid {
    grid-auto-rows: 150px;
  }

  .client-logo {
    height: 150px;
  }

  .client-logo--burger img {
    width: auto;
    max-width: 90%;
    max-height: 112px;
    transform: scale(1.06);
  }

  .client-logo--burger:hover img {
    transform: scale(1.1);
  }
}

.visual-stack {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  aspect-ratio: 0.74;
  transform-style: preserve-3d;
}

.visual-stack .visual-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms var(--ease);
}

.visual-frame--back {
  z-index: 1;
  background: linear-gradient(145deg, #a24d4b 0%, #7f3735 100%);
  box-shadow: 0 28px 65px rgba(89, 83, 83, 0.14);
  transform: translate(32px, -22px) rotate(5deg);
}

.visual-frame--back::before {
  border-color: rgba(241, 231, 231, 0.18);
}

.visual-frame--back .visual-grid {
  opacity: 0.55;
}

.visual-frame--front {
  z-index: 2;
  background: var(--ink);
  box-shadow: 0 40px 80px rgba(89, 83, 83, 0.2);
  transform: translate(0, 0) rotate(-2deg);
}

.visual-frame--front .visual-word {
  z-index: 2;
}

.visual-orbit {
  z-index: 0;
}

.floating-note {
  z-index: 4;
}

@media (max-width: 620px) {
  .visual-stack {
    width: 82%;
  }

  .visual-frame--back {
    transform: translate(20px, -14px) rotate(4deg);
  }
}

/* Etapa 1: estabilização do hero em tablets e celulares */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(36px, 7vw, 56px);
    align-items: start;
  }

  .hero-grid > *,
  .hero-copy,
  .hero-visual {
    min-width: 0;
    max-width: 100%;
  }

  .hero-visual {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .hero {
    overflow: hidden;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero h1,
  .hero-intro {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-visual {
    min-height: 430px;
  }

  .visual-stack {
    width: min(82%, 320px);
  }
}

/* Etapa 2: links, prova e alinhamento dos cases */

a.service-row {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.service-row:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 5px;
}

a.service-row:focus-visible::before {
  transform: translateY(0);
}

a.service-row:focus-visible > * {
  color: var(--paper);
}

a.service-row:focus-visible .service-summary {
  color: var(--paper);
}

a.service-row:focus-visible .service-arrow {
  transform: rotate(45deg);
}

.case-card {
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.case-card:hover,
.case-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 30px 72px rgba(89, 83, 83, 0.2);
}

.case-card:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 5px;
}

.case-card--organic-home {
  background: linear-gradient(135deg, #7c3432 0%, #682826 58%, #8b2518 128%);
}

.case-shape--wide {
  width: 250px;
  border-radius: 999px;
  font-size: clamp(3.25rem, 5vw, 4.6rem);
}

.case-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--rose);
  font-family: var(--subtitle);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.case-card-link i {
  font-style: normal;
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}

.case-card:hover .case-card-link i,
.case-card:focus-visible .case-card-link i {
  transform: translate(3px, -3px);
}

.clients-proof {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  align-items: stretch;
  margin-top: 20px;
  border-top: 1px solid rgba(89, 83, 83, 0.14);
  border-bottom: 1px solid rgba(89, 83, 83, 0.14);
}

.clients-proof > div,
.clients-proof > a {
  min-height: 150px;
  padding: 28px 0;
}

.clients-proof > div + div,
.clients-proof > a {
  padding-left: 28px;
  border-left: 1px solid rgba(89, 83, 83, 0.14);
}

.clients-proof span {
  display: block;
  margin-bottom: 14px;
  color: var(--brand);
  font-family: var(--subtitle);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.clients-proof strong {
  display: block;
  max-width: 410px;
  color: var(--ink);
  font-family: var(--subtitle);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.clients-proof > a {
  min-width: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--subtitle);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}

.clients-proof > a i {
  font-style: normal;
  font-size: 1rem;
}

.clients-proof > a:hover,
.clients-proof > a:focus-visible {
  color: var(--paper);
  background: var(--brand);
  outline: none;
}

@media (max-width: 980px) {
  .clients-proof {
    grid-template-columns: 1fr 1fr;
  }

  .clients-proof > a {
    grid-column: 1 / -1;
    min-height: 80px;
    padding: 20px;
    border-top: 1px solid rgba(89, 83, 83, 0.14);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .case-shape--wide {
    width: 205px;
    font-size: 3.35rem;
  }

  .clients-proof {
    grid-template-columns: 1fr;
  }

  .clients-proof > div,
  .clients-proof > a {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }

  .clients-proof > div + div,
  .clients-proof > a {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(89, 83, 83, 0.14);
  }

  .clients-proof > a {
    padding-inline: 18px;
  }
}

/* Ajustes de contraste e leitura mobile da Etapa 2 */
.case-card {
  color: var(--paper);
}

.case-card .case-copy h3,
.case-card .metric strong,
.case-card .metric span {
  color: inherit;
}

@media (max-width: 620px) {
  a.service-row {
    grid-template-columns: 38px minmax(0, 1fr) 28px;
  }

  a.service-row .service-name {
    font-size: 1.95rem;
    overflow-wrap: break-word;
  }

  a.service-row .service-arrow {
    justify-self: end;
  }
}

/* Estrutura definitiva da seção de apresentação */

.statement .statement-intro {
  position: sticky;
  top: 135px;

  display: flex;
  flex-direction: column;

  min-width: 0;
}

.statement .statement-title {
  position: static !important;
  top: auto !important;
}

.statement .statement-signature {
  box-sizing: border-box;
}

/* Tablet e mobile */

@media (max-width: 980px) {
  .statement .statement-grid {
    display: flex !important;
    flex-direction: column;
    gap: 0 !important;
    align-items: stretch;
  }

  .statement .statement-intro {
    position: static !important;
    top: auto !important;

    width: 100%;
    min-width: 0;

    margin: 0 0 48px;
    transform: none !important;
  }

  .statement .statement-title {
    width: 100%;
    min-width: 0;
  }

  .statement .statement-signature {
    position: static !important;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    width: 100%;
    min-height: 64px;

    margin: 42px 0 0 !important;
    padding: 17px 22px;

    border-radius: 999px;
    background: var(--paper);

    overflow: visible;
    white-space: nowrap;
    transform: none !important;
  }

  .statement .statement-signature span {
    flex: 0 0 auto;
  }

  .statement .statement-signature i {
    flex: 1 1 auto;

    width: auto;
    min-width: 30px;
    height: 1px;
  }

  .statement .problem-list {
    position: relative;
    z-index: 1;

    width: 100%;
    clear: both;
    margin: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 620px) {
  .statement .statement-intro {
    margin-bottom: 34px;
  }

  .statement .statement-signature {
    min-height: 58px;

    margin-top: 36px !important;
    padding: 15px 18px;
    gap: 10px;

    font-size: 0.64rem;
  }

  .statement .statement-signature i {
    min-width: 24px;
  }
}
