
@font-face {
  font-family: "MPT Lato";
  src: url("../../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MPT Lato";
  src: url("../../fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MPT Lato";
  src: url("../../fonts/Lato/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #d91414;
  --red-dark: #a80f12;
  --black: #101014;
  --ink: #202127;
  --muted: #666b76;
  --line: #e5e7eb;
  --silver: #f2f4f7;
  --white: #ffffff;
  --whatsapp: #128c4a;
  --shadow: 0 18px 40px rgba(16, 16, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "MPT Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--black);
}

h1 {
  max-width: 760px;
  font-size: 4rem;
  font-weight: 900;
}

h2 {
  font-size: 2.3rem;
  font-weight: 900;
}

h3 {
  font-size: 1.25rem;
  font-weight: 900;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

html.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.reveal-ready .reveal-on-scroll--hero {
  transform: none;
}

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

html.reveal-ready .reveal-on-scroll :where(
  .quick-contact > a,
  .service-card,
  .proof-grid > *,
  .stat-grid > *,
  .values-grid > *,
  .area-card,
  .area-links > a,
  .mini-services > a,
  .review-card:not([aria-hidden="true"]),
  .contact-method,
  .faq-item,
  .media-panel
) {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + var(--item-delay, 80ms));
}

html.reveal-ready .reveal-on-scroll.is-revealed :where(
  .quick-contact > a,
  .service-card,
  .proof-grid > *,
  .stat-grid > *,
  .values-grid > *,
  .area-card,
  .area-links > a,
  .mini-services > a,
  .review-card:not([aria-hidden="true"]),
  .contact-method,
  .faq-item,
  .media-panel
) {
  opacity: 1;
  transform: none;
}

html.reveal-ready .reveal-on-scroll.is-revealed :where(
  .quick-contact > a,
  .service-card,
  .proof-grid > *,
  .stat-grid > *,
  .values-grid > *,
  .area-card,
  .area-links > a,
  .mini-services > a,
  .review-card:not([aria-hidden="true"]),
  .contact-method,
  .faq-item,
  .media-panel
):nth-child(2) {
  --item-delay: 140ms;
}

html.reveal-ready .reveal-on-scroll.is-revealed :where(
  .quick-contact > a,
  .service-card,
  .proof-grid > *,
  .stat-grid > *,
  .values-grid > *,
  .area-card,
  .area-links > a,
  .mini-services > a,
  .review-card:not([aria-hidden="true"]),
  .contact-method,
  .faq-item,
  .media-panel
):nth-child(3) {
  --item-delay: 200ms;
}

html.reveal-ready .reveal-on-scroll.is-revealed :where(
  .quick-contact > a,
  .service-card,
  .proof-grid > *,
  .stat-grid > *,
  .values-grid > *,
  .area-card,
  .area-links > a,
  .mini-services > a,
  .review-card:not([aria-hidden="true"]),
  .contact-method,
  .faq-item,
  .media-panel
):nth-child(n + 4) {
  --item-delay: 260ms;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
}

.skip-link:focus {
  top: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.top-strip {
  background: var(--black);
  color: var(--white);
  font-size: 0.9rem;
}

.top-strip__inner,
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip__inner {
  min-height: 38px;
}

.top-strip a {
  font-weight: 900;
}

.header-main {
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 8px 0;
}

.brand__logo img {
  width: 190px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 900;
}

.desktop-nav a,
.nav-dropdown__trigger {
  padding: 12px 10px;
  border-radius: 6px;
  color: var(--black);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.nav-dropdown.is-current .nav-dropdown__trigger,
.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown:focus-within .nav-dropdown__trigger {
  color: var(--red);
  background: #fff1f1;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown__trigger i {
  font-size: 0.72rem;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 25;
  min-width: 232px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 11px 12px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(124deg, rgba(217, 20, 20, 0.38) 0 12%, transparent 12% 58%, rgba(255, 255, 255, 0.1) 58% 59%, transparent 59%),
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(255, 255, 255, 0.055) 78px 79px),
    repeating-linear-gradient(0deg, transparent 0 78px, rgba(255, 255, 255, 0.035) 78px 79px);
  mix-blend-mode: screen;
  opacity: 0.78;
}

.hero::after {
  top: auto;
  left: auto;
  right: -8vw;
  bottom: 9%;
  width: min(520px, 52vw);
  height: 98px;
  background: linear-gradient(90deg, transparent, rgba(217, 20, 20, 0.82), rgba(255, 255, 255, 0.18));
  transform: skewX(-22deg);
  opacity: 0.86;
}

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

.hero__media {
  z-index: 0;
}

.hero__image,
.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.55) 46%, rgba(0, 0, 0, 0.15)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 44%);
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 130px 0 54px;
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero p {
  max-width: 650px;
  font-size: 1.2rem;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.section--dark .eyebrow,
.cta-band .eyebrow {
  color: #ff5757;
}

.hero__actions,
.cta-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button--primary:hover {
  background: var(--red-dark);
}

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

.button--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button--outline {
  border-color: var(--black);
  color: var(--black);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero__trust span {
  min-height: 42px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.section {
  padding: 82px 0;
}

.section--tight {
  padding: 24px 0;
}

.section--grey {
  background: var(--silver);
}

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

.section--dark h2,
.section--dark p {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick-contact a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, var(--red), #7f080b);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(217, 20, 20, 0.26);
  overflow: hidden;
  position: relative;
}

.quick-contact a::after {
  content: "";
  position: absolute;
  inset: auto -18px -34px auto;
  width: 120px;
  height: 90px;
  background: rgba(255, 255, 255, 0.12);
  transform: skewX(-24deg);
}

.quick-contact i {
  grid-row: span 2;
  color: var(--white);
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.quick-contact span {
  color: #ffd9d9;
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.quick-contact strong {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.split,
.proof-grid,
.area-band,
.contact-layout,
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.media-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  align-items: end;
}

.recovery-carousel,
.media-panel {
  position: relative;
  padding: 14px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(135deg, var(--red), #67070a);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.recovery-carousel::before,
.media-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.recovery-carousel__stage {
  position: relative;
  z-index: 1;
  min-height: 440px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--black);
}

.recovery-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  animation: carouselFade 24s infinite;
}

.recovery-carousel__slide:nth-child(2) {
  animation-delay: 6s;
}

.recovery-carousel__slide:nth-child(3) {
  animation-delay: 12s;
}

.recovery-carousel__slide:nth-child(4) {
  animation-delay: 18s;
}

.recovery-carousel__slide picture,
.recovery-carousel__slide img {
  width: 100%;
  height: 100%;
}

.recovery-carousel__slide img {
  object-fit: cover;
}

.recovery-carousel figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 10px 12px;
  border-left: 4px solid var(--red);
  border-radius: 6px;
  background: rgba(16, 16, 20, 0.82);
  color: var(--white);
  font-weight: 900;
}

@keyframes carouselFade {
  0%,
  21% {
    opacity: 1;
    transform: scale(1);
  }
  27%,
  94% {
    opacity: 0;
    transform: scale(1.035);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.media-stack picture:first-child img,
.media-panel img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-stack picture:last-child img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-panel picture {
  position: relative;
  z-index: 1;
  display: block;
}

.media-panel img {
  width: 100%;
  border-radius: 6px;
  box-shadow: none;
}

.tick-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 5px var(--white);
}

.service-grid,
.values-grid,
.area-grid,
.mini-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.values-grid article,
.review-card,
.area-card,
.mini-services article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(16, 16, 20, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card__content,
.values-grid article,
.review-card,
.area-card,
.mini-services article {
  padding: 24px;
}

.service-card i,
.values-grid i {
  color: var(--red);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-card span,
.text-link {
  color: var(--red);
  font-weight: 900;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat-grid div {
  padding: 24px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
}

.stat-grid strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--white);
}

.stat-grid span {
  color: #c9ced8;
  font-weight: 700;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-links a {
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: var(--white);
  font-weight: 900;
}

.area-links--light a {
  background: var(--white);
  border-color: var(--line);
  color: var(--black);
}

.area-links .area-links__more {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.review-carousel {
  display: grid;
  gap: 28px;
  overflow: hidden;
}

.review-carousel__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.review-carousel__intro > div {
  max-width: 720px;
}

.review-carousel__viewport {
  position: relative;
  overflow: hidden;
  padding: 6px 0 10px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.review-carousel__track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: reviewTrack 44s linear infinite;
}

.review-carousel__viewport:hover .review-carousel__track {
  animation-play-state: paused;
}

.review-card {
  position: relative;
  flex: 0 0 370px;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 278px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(16, 16, 20, 0.08);
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 8px 0 0 8px;
  background: var(--red);
}

.review-card__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.review-card__avatar {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.review-card__top strong,
.review-card__top small {
  display: block;
}

.review-card__top small {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  color: #f5a400;
  font-size: 0.95rem;
}

.review-card blockquote {
  margin: 0;
  color: var(--black);
  font-size: 1.04rem;
  font-weight: 700;
}

.review-card__source {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.review-card__source i {
  color: #4285f4;
}

@keyframes reviewTrack {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.faq-wrap {
  align-items: start;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

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

.faq-item summary {
  cursor: pointer;
  color: var(--black);
  font-weight: 900;
}

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
}

.cta-band {
  padding: 54px 0;
  background: var(--black);
  color: var(--white);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  max-width: 720px;
  color: var(--white);
  font-size: 2rem;
}

.contact-layout {
  align-items: start;
}

.contact-panel,
.enquiry-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 16, 20, 0.06);
}

.contact-method {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-method i {
  grid-row: span 2;
  color: var(--red);
  font-size: 1.25rem;
}

.contact-method span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-method strong {
  overflow-wrap: anywhere;
}

.enquiry-form {
  display: grid;
  gap: 16px;
}

.enquiry-form label {
  display: grid;
  gap: 6px;
  color: var(--black);
  font-weight: 900;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfd3da;
  border-radius: 6px;
  font: inherit;
}

.enquiry-form textarea {
  resize: vertical;
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-feedback {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 900;
}

.form-feedback--success,
.form-feedback--error {
  display: block;
}

.form-feedback--success {
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #badbcc;
}

.form-feedback--error {
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f5c2c7;
}

.site-footer {
  background: #151519;
  color: #d7d9df;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 28px;
  padding: 58px 0;
}

.footer-logo {
  display: inline-block;
  padding: 8px;
  margin-bottom: 14px;
  background: var(--white);
  border-radius: 6px;
}

.footer-logo img {
  width: 160px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: #f2f3f6;
}

.sub-footer {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.sub-footer p {
  margin: 0;
}

.sub-footer a {
  display: inline;
  color: var(--white);
  text-decoration: underline;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  gap: 8px;
}

.floating-cta a {
  display: inline-grid;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-items: center;
  padding: 0;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(16, 16, 20, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 16, 20, 0.3);
}

.floating-cta__call,
.floating-cta__mail {
  background: var(--red);
}

.floating-cta__whatsapp {
  background: var(--whatsapp);
}

.simple-page__main {
  display: grid;
  min-height: 100vh;
  align-content: center;
  justify-items: start;
}

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    position: relative;
  }

  .mobile-nav summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
  }

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

  .mobile-nav div {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: min(320px, calc(100vw - 40px));
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .mobile-nav a {
    display: block;
    padding: 12px;
    border-radius: 6px;
    font-weight: 900;
  }

  .mobile-nav__label {
    display: block;
    padding: 12px 12px 6px;
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-nav a:hover {
    background: var(--silver);
    color: var(--red);
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero {
    min-height: 600px;
  }

  .hero::before {
    opacity: 0.55;
  }

  .hero::after {
    width: 62vw;
    height: 70px;
    bottom: 16%;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.4));
  }

  .quick-contact,
  .split,
  .proof-grid,
  .area-band,
  .contact-layout,
  .faq-wrap,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    display: grid;
  }

  .service-grid,
  .values-grid,
  .area-grid,
  .mini-services,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-carousel__intro {
    display: grid;
  }

  .review-card {
    flex-basis: 340px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .top-strip {
    display: none;
  }

  .header-main {
    min-height: 76px;
  }

  .brand__logo img {
    width: 150px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero__content {
    padding: 100px 0 118px;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero__actions,
  .cta-actions,
  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .section--tight {
    padding: 18px 0;
  }

  .recovery-carousel__stage {
    min-height: 330px;
  }

  .review-carousel__viewport {
    mask-image: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .review-carousel__track {
    animation: none;
    width: auto;
    padding-right: 18px;
  }

  .review-card {
    flex-basis: min(316px, calc(100vw - 48px));
    scroll-snap-align: start;
  }

  .review-card[aria-hidden="true"] {
    display: none;
  }

  .media-stack,
  .recovery-carousel,
  .service-grid,
  .values-grid,
  .area-grid,
  .mini-services,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    left: auto;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
  }

  .floating-cta a {
    width: 50px;
    height: 50px;
    font-size: 1.05rem;
  }

  .site-footer {
    padding-bottom: 72px;
  }
}

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

  html.reveal-ready .reveal-on-scroll,
  html.reveal-ready .reveal-on-scroll :where(
    .quick-contact > a,
    .service-card,
    .proof-grid > *,
    .stat-grid > *,
    .values-grid > *,
    .area-card,
    .area-links > a,
    .mini-services > a,
    .review-card:not([aria-hidden="true"]),
    .contact-method,
    .faq-item,
    .media-panel
  ) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
