@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-Black.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --cream: #fff8f0;
  --paper: #fffdf9;
  --ink: #090b0a;
  --ink-soft: #292b29;
  --muted: #675f57;
  --line: #ded8cf;
  --teal: #20c997;
  --teal-dark: #0f8262;
  --teal-deep: #063c30;
  --yellow: #f4c430;
  --pink: #fe395c;
  --white: #ffffff;
  --page: min(1280px, calc(100vw - 72px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Aileron", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 9999;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.announcement {
  min-height: 36px;
  padding: 8px 36px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement a {
  margin-left: 16px;
  color: var(--teal);
}

.announcement a:hover {
  color: var(--yellow);
}

.announcement-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(32, 201, 151, 0.16);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  min-height: 76px;
  padding: 0 max(36px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 240, 0.93);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 36px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(9, 11, 10, 0.12);
  box-shadow: 0 8px 24px rgba(9, 11, 10, 0.05);
}

.brand {
  display: block;
  width: 210px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--teal-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 17px;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  width: var(--page);
  min-height: calc(100svh - 112px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 106px) 0 clamp(68px, 7vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-on-dark {
  color: var(--teal);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 6.3vw, 108px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.89;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--teal-dark);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 54px;
  padding: 15px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease;
}

.button span {
  font-size: 18px;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 8px 8px 0 var(--yellow);
}

.button-primary:hover {
  background: var(--teal-deep);
}

.button-ink {
  background: var(--ink);
  color: var(--white);
}

.button-ink:hover {
  background: var(--teal-deep);
}

.button-cream {
  background: var(--cream);
  color: var(--teal-deep);
}

.button-cream:hover {
  background: var(--yellow);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 900;
}

.text-link span {
  transition: transform 180ms var(--ease);
}

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

.hero-proof {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 11px 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-proof span::before {
  content: "+";
  margin-right: 7px;
  color: var(--teal-dark);
}

.hero-visual {
  position: relative;
  min-height: min(650px, 66vw);
  background: var(--teal-deep);
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-color: var(--yellow);
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  top: 18px;
  right: 18px;
  border-top: 2px solid var(--yellow);
  border-right: 2px solid var(--yellow);
}

.hero-visual::after {
  bottom: 18px;
  left: 18px;
  border-bottom: 2px solid var(--yellow);
  border-left: 2px solid var(--yellow);
}

.hero-visual > img:not(.hero-mark img) {
  width: 100%;
  height: 100%;
  min-height: min(650px, 66vw);
  object-fit: cover;
  object-position: 53% center;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.01);
  transition: transform 900ms var(--ease);
}

.hero-visual:hover > img:not(.hero-mark img) {
  transform: scale(1.04);
}

.hero-visual::marker {
  display: none;
}

.hero-visual .frame-label {
  position: absolute;
  z-index: 3;
  right: 32px;
  left: 32px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.frame-label-top {
  top: 32px;
  justify-content: flex-end;
}

.frame-label-bottom {
  bottom: 31px;
}

.hero-mark {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 76px;
  width: 68px;
  opacity: 0.96;
}

.film-rail {
  min-height: 54px;
  padding: 12px 0;
  background: var(--yellow);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.film-rail::before,
.film-rail::after {
  position: absolute;
}

.film-rail span {
  min-width: 760px;
  padding-right: 60px;
  animation: rail 20s linear infinite;
}

@keyframes rail {
  to {
    transform: translateX(-100%);
  }
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.services {
  padding: clamp(88px, 10vw, 150px) max(36px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(520px, 1.32fr);
  align-items: start;
  gap: clamp(72px, 9vw, 150px);
}

.section-intro {
  position: sticky;
  top: 130px;
}

.section-intro h2,
.approach h2,
.stories h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5.1vw, 76px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-intro > p:last-child {
  max-width: 510px;
  margin: 30px 0 0;
  color: #b8b9b7;
  font-size: 18px;
  line-height: 1.7;
}

.service-list {
  border-top: 1px solid #3a3c3a;
}

.service-row {
  padding: 31px 0 35px;
  border-bottom: 1px solid #3a3c3a;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 22px;
  transition: border-color 180ms ease, color 180ms ease;
}

.service-row:hover {
  border-color: var(--teal);
}

.service-number {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(23px, 2.3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-row p {
  max-width: 630px;
  margin: 13px 0 0;
  color: #b8b9b7;
  font-size: 15px;
  line-height: 1.65;
}

.service-row > a {
  align-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-row > a span {
  font-size: 17px;
  transition: transform 180ms var(--ease);
}

.service-row > a:hover span {
  transform: translate(3px, -3px);
}

.approach {
  padding: clamp(90px, 10vw, 148px) max(36px, calc((100vw - 1280px) / 2));
  background: var(--yellow);
  color: var(--ink);
}

.approach-heading {
  max-width: 840px;
}

.approach-heading .eyebrow {
  color: var(--ink);
}

.approach-heading > p:last-child {
  max-width: 670px;
  margin: 28px 0 0;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
}

.process {
  margin: clamp(64px, 8vw, 100px) 0 46px;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.process li {
  min-height: 275px;
  padding: 24px 28px 30px 0;
  border-right: 1px solid rgba(9, 11, 10, 0.3);
}

.process li + li {
  padding-left: 28px;
}

.process li:last-child {
  border-right: 0;
}

.process span {
  display: block;
  margin-bottom: 52px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.process p {
  max-width: 340px;
  margin: 14px 0 0;
  line-height: 1.65;
}

.stories {
  padding: clamp(96px, 11vw, 168px) max(36px, calc((100vw - 1280px) / 2));
  background: var(--cream);
}

.stories-heading {
  margin-bottom: clamp(52px, 7vw, 88px);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.stories-heading > p {
  max-width: 420px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: auto auto;
  gap: 28px;
}

.story {
  position: relative;
  min-height: 360px;
  margin: 0;
  background: var(--ink);
  overflow: hidden;
}

.story-wide {
  min-height: 580px;
}

.story-tall {
  min-height: 580px;
}

.story-square,
.story-small {
  min-height: 380px;
}

.story img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 400ms ease;
}

.story::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.82));
  content: "";
}

.story:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.story figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  color: var(--white);
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: end;
  gap: 12px;
}

.story figcaption span,
.story figcaption small {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story figcaption strong {
  font-size: clamp(23px, 2.2vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.faq {
  padding: clamp(88px, 10vw, 148px) max(36px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

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

.faq summary {
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

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

.faq summary span {
  color: var(--teal-dark);
  font-size: 28px;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq details p {
  max-width: 720px;
  margin: -4px 0 27px;
  padding-right: 50px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  min-height: 590px;
  padding: clamp(90px, 10vw, 146px) max(36px, calc((100vw - 1280px) / 2));
  background: var(--teal-deep);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.final-cta > div {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.final-cta h2 {
  font-size: clamp(58px, 8vw, 118px);
}

.final-cta p:not(.eyebrow) {
  max-width: 570px;
  margin: 27px 0 35px;
  color: #cfeee4;
  font-size: clamp(18px, 2vw, 25px);
}

.final-cta > img {
  position: absolute;
  right: -8%;
  bottom: -56%;
  width: min(56vw, 720px);
  opacity: 0.08;
}

.site-footer {
  padding: 66px max(36px, calc((100vw - 1280px) / 2)) 24px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 44px;
}

.footer-brand img {
  width: 220px;
  height: auto;
}

.footer-brand p {
  margin: 16px 0 0;
  color: #8c8f8c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-contact p {
  margin: 0 0 12px;
  color: #8c8f8c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact a {
  font-size: 14px;
  font-weight: 700;
}

.footer-contact a:hover {
  color: var(--teal);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #303330;
  color: #8c8f8c;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  padding: 10px 16px 10px 12px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(6, 60, 48, 0.28);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms var(--ease), background 180ms ease;
}

.floating-whatsapp:hover {
  background: var(--teal-deep);
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.floating-whatsapp svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.js [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.js .hero [data-reveal] {
  animation: hero-arrival 760ms var(--ease) both;
}

.js .hero .hero-visual[data-reveal] {
  animation-delay: 120ms;
}

@keyframes hero-arrival {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  :root {
    --page: min(100% - 48px, 980px);
  }

  .site-header {
    padding-inline: 24px;
    grid-template-columns: 200px 1fr auto;
    gap: 20px;
  }

  .desktop-nav {
    gap: 18px;
    font-size: 12px;
  }

  .brand {
    width: 190px;
  }

  .hero {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(54px, 7vw, 76px);
  }

  .hero-visual,
  .hero-visual > img:not(.hero-mark img) {
    min-height: 570px;
  }

  .services,
  .approach,
  .stories,
  .faq,
  .final-cta,
  .site-footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .services {
    gap: 72px;
  }

  .story-wide,
  .story-tall {
    min-height: 500px;
  }
}

@media (max-width: 860px) {
  .announcement {
    justify-content: flex-start;
    padding-inline: 20px;
  }

  .announcement a {
    margin-left: auto;
  }

  .site-header {
    min-height: 70px;
    grid-template-columns: 1fr auto;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .brand {
    position: relative;
    z-index: 110;
    width: 185px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 110;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    display: grid;
    place-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .menu-button span {
    width: 25px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 105;
    inset: 33px 0 0;
    padding: 130px 24px 40px;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    visibility: hidden;
    transform: translateY(-100%);
    transition: none;
  }

  .mobile-nav[data-open="true"] {
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.mobile-nav-cta) {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(30px, 8vw, 52px);
    font-weight: 900;
    letter-spacing: -0.04em;
  }

  .mobile-nav-cta {
    margin-top: 28px;
    padding: 17px 18px;
    background: var(--teal-dark);
    color: var(--white);
    font-weight: 900;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero h1 {
    font-size: clamp(60px, 12vw, 92px);
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual,
  .hero-visual > img:not(.hero-mark img) {
    min-height: 650px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .section-intro,
  .faq-heading {
    position: static;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process li,
  .process li + li {
    min-height: 0;
    padding: 26px 0 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(9, 11, 10, 0.3);
  }

  .process li:last-child {
    border-bottom: 0;
  }

  .process span {
    margin-bottom: 26px;
  }

  .stories-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-wide {
    grid-column: 1 / -1;
  }

  .story-tall,
  .story-square,
  .story-small {
    min-height: 430px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .announcement {
    min-height: 33px;
    padding: 8px 16px;
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  .announcement a,
  .announcement-dot {
    display: none;
  }

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

  .brand {
    width: 175px;
  }

  .hero {
    padding-top: 50px;
    padding-bottom: 68px;
    gap: 48px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(51px, 15vw, 76px);
    letter-spacing: -0.065em;
    line-height: 0.91;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    margin-top: 36px;
  }

  .hero-visual,
  .hero-visual > img:not(.hero-mark img) {
    min-height: 480px;
  }

  .hero-visual > img:not(.hero-mark img) {
    object-position: 59% center;
  }

  .hero-visual .frame-label {
    right: 23px;
    left: 23px;
  }

  .frame-label-top {
    top: 23px;
  }

  .frame-label-bottom {
    bottom: 23px;
  }

  .hero-mark {
    right: 23px;
    bottom: 64px;
    width: 52px;
  }

  .film-rail {
    min-height: 46px;
    font-size: 10px;
  }

  .services,
  .approach,
  .stories,
  .faq,
  .final-cta,
  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .services {
    padding-block: 84px;
    gap: 58px;
  }

  .section-intro h2,
  .approach h2,
  .stories h2,
  .faq h2 {
    font-size: clamp(41px, 12vw, 56px);
  }

  .section-intro > p:last-child {
    font-size: 16px;
  }

  .service-row {
    padding: 27px 0 30px;
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .service-row > a {
    grid-column: 2;
    justify-self: start;
  }

  .service-row h3 {
    font-size: 24px;
  }

  .approach {
    padding-block: 84px;
  }

  .process {
    margin-top: 54px;
  }

  .stories {
    padding-block: 88px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-wide,
  .story-tall,
  .story-square,
  .story-small {
    grid-column: auto;
    min-height: 440px;
  }

  .story figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
    grid-template-columns: 28px 1fr;
  }

  .story figcaption small {
    display: none;
  }

  .faq {
    padding-block: 84px;
  }

  .faq summary {
    font-size: 19px;
  }

  .faq details p {
    padding-right: 15px;
    font-size: 15px;
  }

  .final-cta {
    min-height: 560px;
    padding-block: 92px;
  }

  .final-cta h2 {
    font-size: clamp(57px, 18vw, 86px);
  }

  .final-cta > img {
    right: -40%;
    bottom: -25%;
    width: 110vw;
  }

  .site-footer {
    padding-top: 58px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .floating-whatsapp {
    right: 14px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@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;
  }
}
