:root {
  --orange: #ff9500;
  --orange-strong: #f58200;
  --ink: #0f141a;
  --charcoal: #1f2731;
  --steel: #cdd3da;
  --foam: #f7f8fa;
  --kraft: #e7d5b2;
  --white: #ffffff;
  --line: rgba(15, 20, 26, 0.13);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shell: min(1220px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--foam);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

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

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

.skip-link {
  z-index: 999;
  color: var(--ink);
  background: var(--orange);
  padding: .75rem 1rem;
  position: fixed;
  top: .75rem;
  left: .75rem;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

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

.section {
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.section-label {
  color: var(--orange-strong);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
  font-size: .7rem;
  font-weight: 800;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 390px);
  gap: 1.5rem 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: -.2rem;
}

.section-heading h2,
.process__intro h2,
.coverage__content h2,
.about__statement h2,
.final-cta h2 {
  letter-spacing: -.035em;
  text-transform: uppercase;
  margin: 0;
  font: 800 clamp(3.4rem, 6.5vw, 6.8rem)/.88 "Barlow Condensed", Impact, sans-serif;
}

.section-heading > p:last-child {
  color: #59616b;
  margin: 0;
  font-size: .98rem;
}

.button {
  min-height: 58px;
  border: 1px solid transparent;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 1.25rem;
  font-size: .72rem;
  font-weight: 800;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

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

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

.button--orange:hover {
  background: var(--white);
}

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

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

.button--small {
  min-height: 46px;
  padding-inline: 1rem;
  gap: 1rem;
}

.site-header {
  z-index: 100;
  width: 100%;
  height: 90px;
  color: var(--white);
  display: grid;
  grid-template-columns: 220px 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 0 max(24px, calc((100vw - 1220px) / 2));
  position: fixed;
  inset: 0 0 auto;
  transition: height .3s var(--ease), background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(15, 20, 26, .95);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .09);
  backdrop-filter: blur(18px);
}

.brand {
  width: 185px;
}

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

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.6rem);
}

.main-nav a {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .65rem;
  font-weight: 800;
  position: relative;
}

.main-nav a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--orange);
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  transition: width .25s var(--ease);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-phone {
  line-height: 1.15;
  display: grid;
  gap: .22rem;
}

.header-phone span {
  color: rgba(255, 255, 255, .6);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .55rem;
  font-weight: 700;
}

.header-phone strong {
  font-size: .8rem;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 780px;
  height: 100svh;
  color: var(--white);
  background: var(--ink);
  display: grid;
  align-items: center;
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  animation: hero-breathe 14s var(--ease) both;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 20, 26, .97) 0%, rgba(15, 20, 26, .86) 42%, rgba(15, 20, 26, .25) 74%, rgba(15, 20, 26, .38) 100%),
    linear-gradient(0deg, rgba(15, 20, 26, .72) 0%, transparent 38%, rgba(15, 20, 26, .25) 100%);
}

.hero::before {
  content: "";
  z-index: -1;
  width: 1px;
  background: rgba(255, 255, 255, .18);
  position: absolute;
  top: 90px;
  bottom: 70px;
  left: max(24px, calc((100vw - 1220px) / 2));
}

.hero__content {
  padding-top: 72px;
}

.eyebrow {
  color: var(--orange);
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 0 0 1.5rem;
  font-size: .65rem;
  font-weight: 800;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  max-width: 870px;
  letter-spacing: -.055em;
  text-transform: uppercase;
  margin: 0;
  font: 800 clamp(5rem, 9.5vw, 10rem)/.75 "Barlow Condensed", Impact, sans-serif;
}

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

.hero__lead {
  max-width: 650px;
  color: rgba(255, 255, 255, .78);
  margin: 2rem 0 0;
  font-size: clamp(.95rem, 1.2vw, 1.08rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem 2.5rem;
  margin-top: 2.2rem;
}

.hero__call {
  line-height: 1.2;
  display: grid;
  gap: .3rem;
}

.hero__call span {
  color: rgba(255, 255, 255, .58);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .58rem;
  font-weight: 700;
}

.hero__call strong {
  font-size: 1rem;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 190px));
  gap: 1rem;
  margin: clamp(2.6rem, 6vh, 4.5rem) 0 0;
  padding: 0;
  list-style: none;
}

.hero__trust li {
  border-top: 1px solid rgba(255, 255, 255, .25);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .8rem;
  padding-top: .8rem;
}

.hero__trust strong {
  color: var(--orange);
  font: 700 2rem/1 "Barlow Condensed", Impact, sans-serif;
}

.hero__trust span {
  color: rgba(255, 255, 255, .62);
  text-transform: uppercase;
  font-size: .52rem;
  line-height: 1.35;
  font-weight: 700;
}

.route-tape {
  z-index: 4;
  width: 110%;
  color: var(--ink);
  background: var(--orange);
  position: absolute;
  bottom: -15px;
  left: -5%;
  transform: rotate(-1.35deg);
  overflow: hidden;
}

.route-tape > div {
  width: max-content;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding-inline: 2rem;
  animation: tape-run 26s linear infinite;
}

.route-tape span {
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  font: 800 1rem/1 "Barlow Condensed", Impact, sans-serif;
}

.route-tape i {
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
}

.proof-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-strip .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip .shell > div {
  min-height: 130px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem clamp(1.2rem, 3vw, 2.5rem);
}

.proof-strip .shell > div:first-child {
  border-left: 1px solid var(--line);
}

.proof-strip__icon {
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.proof-strip p {
  color: #626a73;
  margin: 0;
  font-size: .75rem;
  line-height: 1.5;
}

.proof-strip strong {
  color: var(--ink);
  display: block;
  text-transform: uppercase;
  font-size: .72rem;
}

.services {
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), var(--line) 50%, transparent calc(50% + .5px)),
    var(--foam);
}

.service-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service {
  min-height: 310px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 250, .88);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.6rem, 3vw, 2.7rem);
  transition: background .3s ease, transform .3s var(--ease);
}

.service:hover {
  background: var(--white);
  transform: translateY(-5px);
}

.service > span,
.service__image + div > span {
  color: var(--orange-strong);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-size: .6rem;
  font-weight: 800;
}

.service h3 {
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0;
  font: 700 clamp(1.9rem, 3vw, 3.3rem)/.95 "Barlow Condensed", Impact, sans-serif;
}

.service p {
  color: #646c75;
  margin: 1rem 0 0;
  font-size: .82rem;
}

.service--featured {
  min-height: 560px;
  color: var(--white);
  background: var(--ink);
  grid-row: span 2;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.service--featured:hover {
  background: var(--ink);
  transform: none;
}

.service__image {
  position: absolute;
  inset: 0;
}

.service__image::after {
  content: "";
  background: linear-gradient(0deg, rgba(15, 20, 26, .97) 0%, rgba(15, 20, 26, .3) 72%, transparent 100%);
  position: absolute;
  inset: 0;
}

.service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.service--featured:hover img {
  transform: scale(1.04);
}

.service--featured > div:last-child {
  z-index: 1;
  padding: clamp(1.8rem, 3vw, 3rem);
  position: relative;
}

.service--featured p {
  color: rgba(255, 255, 255, .7);
}

.service--featured a {
  color: var(--orange);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: .65rem;
  font-weight: 800;
}

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

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, .6);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  grid-template-rows: 340px 340px;
  gap: 1rem;
}

.work-card {
  margin: 0;
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.work-card--wide {
  grid-row: 1 / 3;
}

.work-card--tall {
  grid-row: 1 / 3;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .4s ease;
}

.work-card::after {
  content: "";
  z-index: 0;
  background: linear-gradient(0deg, rgba(15, 20, 26, .88), transparent 55%);
  position: absolute;
  inset: 0;
}

.work-card:hover img {
  filter: saturate(.8);
  transform: scale(1.045);
}

.work-card figcaption {
  z-index: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  display: grid;
  gap: .25rem;
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  font: 700 1.2rem/1 "Barlow Condensed", Impact, sans-serif;
}

.work-card figcaption span {
  color: var(--orange);
  letter-spacing: .14em;
  font: 800 .55rem/1 "Manrope", sans-serif;
}

.process {
  background: var(--white);
}

.process__layout {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) 1.2fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.process__intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.process__intro > p:not(.section-label) {
  color: #656d76;
  max-width: 430px;
  margin: 1.8rem 0;
}

.text-link {
  color: var(--orange-strong);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 1rem;
  font-size: .68rem;
  font-weight: 800;
}

.process-list {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 2.3rem 0;
}

.process-list li > span {
  color: var(--orange);
  font: 700 2rem/1 "Barlow Condensed", Impact, sans-serif;
}

.process-list h3 {
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0;
  font: 700 clamp(1.8rem, 3vw, 2.8rem)/1 "Barlow Condensed", Impact, sans-serif;
}

.process-list p {
  color: #656d76;
  max-width: 580px;
  margin: .65rem 0 0;
  font-size: .86rem;
}

.coverage {
  min-height: 760px;
  background: var(--orange);
  display: grid;
  align-items: center;
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.coverage::before {
  content: "DESTINO";
  z-index: -1;
  color: rgba(15, 20, 26, .07);
  letter-spacing: -.04em;
  position: absolute;
  right: -1vw;
  bottom: -4vw;
  font: 800 24vw/.75 "Barlow Condensed", Impact, sans-serif;
}

.coverage__media {
  width: 42%;
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
}

.coverage__media::after {
  content: "";
  background: linear-gradient(90deg, transparent 55%, var(--orange));
  position: absolute;
  inset: 0;
}

.coverage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.45) contrast(1.04);
  mix-blend-mode: multiply;
}

.coverage__content {
  padding-left: 48%;
}

.coverage__content .section-label {
  color: rgba(15, 20, 26, .68);
}

.coverage__content > p:not(.section-label) {
  max-width: 600px;
  margin: 1.5rem 0;
}

.coverage__content ul {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2rem;
  margin: 2rem 0 2.5rem;
  padding: 0;
  list-style: none;
}

.coverage__content li {
  border-top: 1px solid rgba(15, 20, 26, .28);
  padding: .8rem 0;
  font-size: .8rem;
  font-weight: 700;
}

.about {
  color: var(--white);
  background: var(--charcoal);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.about__statement h2 {
  max-width: 760px;
}

.about__copy > p {
  color: rgba(255, 255, 255, .7);
  margin: 0 0 2.5rem;
}

.about__points {
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.about__points > div {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 1.3rem 0;
}

.about__points strong {
  color: var(--orange);
  text-transform: uppercase;
  font: 700 1.15rem/1 "Barlow Condensed", Impact, sans-serif;
}

.about__points span {
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
}

.faq {
  background: var(--foam);
}

.faq__layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.faq__layout .section-heading {
  align-content: start;
  display: block;
  margin: 0;
}

.faq__layout .section-heading h2 {
  max-width: 520px;
}

.faq__layout .section-heading > p:last-child {
  max-width: 430px;
  margin-top: 1.5rem;
}

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

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.55rem 0;
  font: 700 clamp(1.4rem, 2.2vw, 2rem)/1.05 "Barlow Condensed", Impact, sans-serif;
}

.faq-item button span {
  color: var(--orange-strong);
  font: 400 2rem/1 "Manrope", sans-serif;
  transition: transform .3s var(--ease);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}

.faq-answer > p {
  color: #656d76;
  margin: 0;
  overflow: hidden;
  font-size: .85rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 1.5rem;
}

.faq-item.is-open button span {
  transform: rotate(45deg);
}

.final-cta {
  min-height: 720px;
  color: var(--white);
  background: var(--ink);
  display: grid;
  place-items: center;
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.final-cta__media,
.final-cta__shade {
  position: absolute;
  inset: 0;
}

.final-cta__media {
  z-index: -2;
}

.final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.25);
}

.final-cta__shade {
  z-index: -1;
  background: rgba(15, 20, 26, .79);
}

.final-cta__content {
  text-align: center;
}

.final-cta__content h2 {
  max-width: 950px;
  margin-inline: auto;
}

.final-cta__content > p:not(.section-label) {
  color: rgba(255, 255, 255, .7);
  margin: 1.4rem 0 2rem;
}

.final-cta__content > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.2rem;
}

.final-cta__phone {
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  font-weight: 700;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 5rem 0 2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
}

.site-footer__grid img {
  width: 180px;
}

.site-footer__grid > div:first-child p {
  color: rgba(255, 255, 255, .52);
  max-width: 330px;
  margin: 1.2rem 0 0;
  font-size: .78rem;
}

.site-footer h2 {
  color: var(--orange);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
  font-size: .65rem;
}

.site-footer__grid a {
  color: rgba(255, 255, 255, .72);
  display: block;
  margin: .45rem 0;
  font-size: .76rem;
}

.site-footer__grid a:hover {
  color: var(--orange);
}

.site-footer__grid > div > p {
  color: rgba(255, 255, 255, .62);
  margin: 0;
  font-size: .76rem;
}

.site-footer__bottom {
  color: rgba(255, 255, 255, .42);
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 1.5rem;
  font-size: .68rem;
}

.site-footer__bottom p {
  margin: 0;
}

.whatsapp-float {
  z-index: 90;
  min-height: 54px;
  color: var(--white);
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 0 1.1rem;
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  font-size: .72rem;
  font-weight: 800;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.whatsapp-float:hover {
  box-shadow: 0 22px 48px rgba(0, 0, 0, .28);
  transform: translateY(-3px);
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-breathe {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@keyframes tape-run {
  to { transform: translateX(-50%); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
  }

  .header-phone {
    display: none;
  }

  .work-grid {
    grid-template-columns: 1.3fr .8fr;
  }

  .work-card--wide {
    grid-row: 1 / 3;
  }

  .work-card--tall {
    grid-row: auto;
  }

  .work-card:last-child {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .section {
    padding: 6.5rem 0;
  }

  .site-header {
    height: 74px;
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .site-header.is-scrolled {
    height: 68px;
  }

  .brand {
    width: 165px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .28);
    display: grid;
    place-content: center;
    gap: 5px;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--white);
    display: block;
    transition: transform .25s ease, opacity .25s ease;
  }

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

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

  .main-nav {
    z-index: -1;
    color: var(--white);
    background: var(--ink);
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 1.2rem;
    padding: 6rem 18px 2rem;
    position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    font: 700 clamp(2.8rem, 12vw, 5rem)/.9 "Barlow Condensed", Impact, sans-serif;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 820px;
    height: 100svh;
    align-items: end;
  }

  .hero::before {
    top: 74px;
    left: 18px;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(15, 20, 26, .98) 0%, rgba(15, 20, 26, .82) 48%, rgba(15, 20, 26, .1) 82%, rgba(15, 20, 26, .32) 100%);
  }

  .hero__content {
    padding: 0 0 108px;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 20vw, 7rem);
  }

  .hero__lead {
    max-width: 620px;
    margin-top: 1.3rem;
    font-size: .88rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1.6rem;
  }

  .hero__trust {
    display: none;
  }

  .route-tape > div {
    height: 54px;
  }

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

  .proof-strip .shell > div {
    min-height: 100px;
    border-left: 1px solid var(--line);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service--featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p:last-child {
    max-width: 550px;
    margin-top: 1.4rem;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 520px 300px;
  }

  .work-card--wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .work-card:last-child {
    display: block;
  }

  .process__layout,
  .about__grid,
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .process__intro {
    position: static;
  }

  .coverage {
    padding-top: 24rem;
  }

  .coverage__media {
    width: 100%;
    height: 25rem;
  }

  .coverage__media::after {
    background: linear-gradient(0deg, var(--orange), transparent 62%);
  }

  .coverage__content {
    padding-left: 0;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .section {
    padding: 5.5rem 0;
  }

  .section-heading h2,
  .process__intro h2,
  .coverage__content h2,
  .about__statement h2,
  .final-cta h2 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    padding-bottom: 92px;
  }

  .eyebrow {
    max-width: 320px;
    line-height: 1.4;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .service {
    min-height: 270px;
  }

  .service--featured {
    min-height: 520px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 360px);
  }

  .work-card--wide {
    grid-column: auto;
  }

  .work-card:last-child {
    display: none;
  }

  .process-list li {
    grid-template-columns: 52px 1fr;
  }

  .coverage {
    min-height: auto;
    padding-top: 22rem;
  }

  .coverage__media {
    height: 23rem;
  }

  .coverage__content ul {
    grid-template-columns: 1fr;
  }

  .about__points > div {
    grid-template-columns: 1fr;
  }

  .final-cta {
    min-height: 640px;
  }

  .final-cta__content > div {
    flex-direction: column;
  }

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

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: .5rem;
  }

  .whatsapp-float {
    width: 54px;
    justify-content: center;
    padding: 0;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
