:root {
  --ink: #0b1015;
  --ink-soft: #151c23;
  --paper: #ffffff;
  --mist: #f2f4f6;
  --line: #d9dee3;
  --muted: #59626c;
  --red: #e31922;
  --red-dark: #ba1118;
  --green: #09a94f;
  --green-dark: #07863f;
  --gold: #f5aa13;
  --shadow: 0 24px 65px rgba(4, 10, 16, 0.16);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}

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,
input,
textarea,
select {
  font: inherit;
}

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 92px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 16, 21, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: cover;
}

.brand-name {
  display: grid;
  line-height: 0.92;
  text-transform: uppercase;
}

.brand-name strong,
.brand-name span {
  font-family: "Arial Narrow", "Aptos Narrow", Impact, sans-serif;
}

.brand-name strong {
  color: var(--red);
  font-size: 1.55rem;
  letter-spacing: 0.025em;
  text-shadow: 1px 1px 0 #111;
}

.brand-name span {
  margin-top: 5px;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 33px 0 30px;
  font-size: 0.92rem;
  font-weight: 760;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 1.04rem;
  font-weight: 900;
  white-space: nowrap;
}

.header-phone svg {
  fill: currentColor;
  stroke: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 19px;
  color: #fff;
  border: 0;
  border-radius: 3px;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.button svg {
  flex: 0 0 auto;
}

.button-call {
  background: var(--red);
}

.button-call:hover,
.button-call:focus-visible {
  background: var(--red-dark);
}

.button-call svg,
.button-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.button-whatsapp {
  background: var(--green);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: var(--green-dark);
}

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

.button-dark svg {
  margin-left: 6px;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(420px, 44%) 1fr;
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(227, 25, 34, 0.1), transparent 45%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.08), transparent 32%),
    var(--ink);
}

.hero-copy::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -70px;
  width: 140px;
  height: 100%;
  content: "";
  background: var(--ink);
  clip-path: polygon(0 0, 50% 0, 100% 100%, 50% 100%);
}

.hero-copy-inner {
  width: min(560px, calc(100% - 64px));
  margin-left: max(32px, calc((100vw - 1180px) / 2));
  padding: 64px 0 54px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 3px;
  display: inline-block;
  background: var(--red);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.76);
}

.hero h1,
.section h2,
.gallery-heading h2,
.review-panel h2,
.contact h2 {
  margin: 0;
  font-family: "Arial Narrow", "Aptos Narrow", Impact, sans-serif;
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 580px;
  font-size: clamp(3.2rem, 5.4vw, 5.75rem);
}

.hero-lead {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.86);
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.84rem;
  font-weight: 760;
}

.trust-strip span:first-child {
  padding-left: 0;
}

.trust-strip span:last-child {
  border-right: 0;
}

.trust-strip svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.hero-image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #aeb9c4;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(11, 16, 21, 0.18), transparent 35%), linear-gradient(0deg, rgba(11, 16, 21, 0.28), transparent 40%);
  pointer-events: none;
}

.hero-image > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 52% 38%;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 32px;
  max-width: 310px;
  padding: 17px 20px 17px 24px;
  color: #fff;
  background: rgba(11, 16, 21, 0.88);
  border-left: 5px solid var(--red);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  font-size: 1.04rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-note span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.section-intro h2,
.gallery-heading h2,
.review-panel h2,
.contact h2 {
  font-size: clamp(2.55rem, 4.3vw, 4.65rem);
}

.section-intro > p,
.gallery-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.service-card {
  position: relative;
  min-height: 295px;
  padding: 34px 32px;
  overflow: hidden;
  background: var(--mist);
  border-top: 4px solid transparent;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  content: "";
  border: 18px solid rgba(227, 25, 34, 0.05);
  border-radius: 50%;
}

.service-card:hover {
  z-index: 1;
  transform: translateY(-7px);
  background: #fff;
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(11, 16, 21, 0.12);
  font-size: 2.2rem;
  font-weight: 950;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff;
  box-shadow: 0 8px 26px rgba(6, 12, 18, 0.07);
}

.service-icon svg {
  width: 39px;
  height: 39px;
  stroke-width: 1.7;
}

.service-card h3 {
  margin: 26px 0 7px;
  font-size: 1.42rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.gallery-section {
  position: relative;
  padding: 100px 0 108px;
  color: #fff;
  background: var(--ink-soft);
  overflow: hidden;
}

.gallery-section::before {
  position: absolute;
  top: 0;
  right: -140px;
  width: 450px;
  height: 450px;
  content: "";
  border: 64px solid rgba(227, 25, 34, 0.055);
  border-radius: 50%;
}

.gallery-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 70px;
}

.gallery-heading > p {
  color: rgba(255, 255, 255, 0.63);
}

.gallery-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
  gap: 14px;
  margin-top: 48px;
}

.gallery-card {
  position: relative;
  height: 500px;
  display: block;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #26303a;
  border: 0;
  cursor: zoom-in;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 8, 12, 0.75), transparent 48%);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 39%;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-card:nth-child(2) img {
  object-position: center 54%;
}

.gallery-card:nth-child(3) img {
  object-position: center 38%;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.045);
}

.gallery-card:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.gallery-card span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.gallery-card span::before {
  width: 29px;
  height: 3px;
  content: "";
  background: var(--red);
}

.reviews {
  padding-top: 84px;
  padding-bottom: 84px;
}

.review-panel {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 50px;
  background: var(--mist);
  border-left: 6px solid var(--red);
}

.review-mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 13px 30px rgba(5, 12, 19, 0.14);
}

.review-mark svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.8;
}

.review-copy .eyebrow {
  margin-bottom: 14px;
}

.review-copy h2 {
  font-size: clamp(2.25rem, 3.8vw, 4rem);
}

.review-copy > p:last-child {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
}

.contact {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.contact-image,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.contact-image {
  background: url("assets/truck-rear.jpg") center 47% / cover no-repeat;
  transform: scale(1.02);
}

.contact-overlay {
  background: linear-gradient(90deg, rgba(6, 11, 17, 0.97) 0%, rgba(6, 11, 17, 0.9) 54%, rgba(6, 11, 17, 0.57) 100%);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding-top: 68px;
  padding-bottom: 68px;
}

.contact-inner > div:first-child {
  max-width: 680px;
}

.contact-inner p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 250px;
}

.button-large {
  min-height: 60px;
  padding-inline: 27px;
  font-size: 1.08rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #080c10;
}

.footer-main {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-self: start;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
}

.footer-brand span,
.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-nav {
  display: flex;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 750;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
}

.footer-phone {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 900;
}

.footer-base {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.mobile-action-bar {
  display: none;
}

.lightbox {
  width: min(1000px, calc(100% - 44px));
  height: min(86vh, 860px);
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #090d12;
  border: 0;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.lightbox::backdrop {
  background: rgba(4, 7, 10, 0.88);
  backdrop-filter: blur(7px);
}

.lightbox figure {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 0;
}

.lightbox img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #090d12;
}

.lightbox figcaption {
  padding: 14px 22px;
  background: #111820;
  font-weight: 760;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(8, 12, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.lightbox-close {
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 50px;
  height: 62px;
  font-size: 2.6rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.service-card:nth-child(2),
.gallery-card:nth-child(2) {
  transition-delay: 0.08s;
}

.service-card:nth-child(3),
.gallery-card:nth-child(3) {
  transition-delay: 0.16s;
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 32px, 1080px);
  }

  .brand-name,
  .header-phone span {
    display: none;
  }

  .main-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: minmax(390px, 48%) 1fr;
  }

  .hero-copy-inner {
    width: calc(100% - 48px);
    margin-left: 24px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
  }

  .trust-strip span {
    padding-inline: 11px;
    font-size: 0.78rem;
  }

  .review-panel {
    grid-template-columns: 92px 1fr;
  }

  .review-panel .button {
    grid-column: 2;
    justify-self: start;
  }

  .review-mark {
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    height: 76px;
  }

  .brand img {
    width: 63px;
    height: 63px;
  }

  .brand-name {
    display: grid;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 9px;
    margin-left: auto;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 100%;
    height: 3px;
    display: block;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto;
    max-height: 0;
    display: grid;
    gap: 0;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.open {
    max-height: 430px;
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    padding: 17px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav a::after {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 4px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  .main-nav a.active::after {
    transform: scaleY(1);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 575px;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-copy-inner {
    width: var(--shell);
    margin-inline: auto;
    padding: 72px 0 58px;
  }

  .hero-image {
    min-height: 520px;
  }

  .hero-image > img {
    object-position: center 38%;
  }

  .hero-note {
    right: 18px;
    bottom: 18px;
  }

  .section-intro,
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .service-card {
    min-height: 0;
  }

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

  .gallery-card-wide {
    grid-column: 1 / -1;
    height: 440px;
  }

  .gallery-card:not(.gallery-card-wide) {
    height: 420px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-actions {
    width: min(100%, 500px);
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    padding: 28px 0;
  }

  .footer-nav {
    display: none;
  }
}

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

  body {
    padding-bottom: 66px;
  }

  .brand-name strong {
    font-size: 1.15rem;
  }

  .brand-name span {
    font-size: 0.77rem;
  }

  .hero-copy {
    min-height: 545px;
  }

  .hero-copy-inner {
    padding: 56px 0 44px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    display: none;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 5px;
    margin-top: 32px;
  }

  .trust-strip span {
    padding: 0;
    border: 0;
  }

  .hero-image {
    min-height: 420px;
  }

  .hero-note {
    max-width: calc(100% - 30px);
  }

  .section,
  .gallery-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .section-intro h2,
  .gallery-heading h2,
  .review-panel h2,
  .contact h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .service-grid {
    margin-top: 36px;
  }

  .service-card {
    padding: 28px 25px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

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

  .gallery-card,
  .gallery-card-wide,
  .gallery-card:not(.gallery-card-wide) {
    height: 420px;
  }

  .reviews {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .review-panel {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 26px;
  }

  .review-panel .button {
    grid-column: auto;
    width: 100%;
  }

  .review-mark {
    width: 72px;
    height: 72px;
  }

  .contact-overlay {
    background: rgba(6, 11, 17, 0.89);
  }

  .contact-inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .contact-actions {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-phone {
    justify-self: start;
  }

  .footer-base {
    min-height: 76px;
    display: grid;
    align-content: center;
    justify-content: start;
    gap: 3px;
    padding: 13px 0;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    height: 66px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.22);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    background: var(--red);
    font-weight: 900;
  }

  .mobile-action-bar a:last-child {
    background: var(--green);
  }

  .mobile-action-bar svg {
    fill: currentColor;
    stroke: none;
  }

  .lightbox {
    width: calc(100% - 20px);
    height: min(82vh, 760px);
  }

  .lightbox-arrow {
    width: 42px;
    height: 54px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
