﻿:root {
  --wine: #9f1d1d;
  --wine-dark: #6f1111;
  --gold: #f0d21a;
  --gold-dark: #c7a900;
  --graphite: #24262b;
  --graphite-soft: #3a3d44;
  --muted: #6f7480;
  --line: #e6e8ec;
  --surface: #ffffff;
  --surface-soft: #f6f7f9;
  --ink: #15171b;
  --shadow: 0 20px 60px rgba(20, 20, 20, 0.14);
  --radius: 8px;
  --container: 1180px;
  --header-height: 104px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

body.is-loading {
  overflow: hidden;
}

html.preloader-seen body.is-loading {
  overflow: auto;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #f8f9fb;
  opacity: 1;
  visibility: visible;
  transition: opacity 240ms ease, visibility 240ms ease;
  will-change: opacity;
}

html.preloader-seen .site-preloader {
  display: none;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: clamp(112px, 18vw, 190px);
  height: auto;
  object-fit: contain;
  transform-origin: center;
  backface-visibility: hidden;
  will-change: opacity, transform;
  animation: preloaderMark 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes preloaderMark {
  0% {
    opacity: 0;
    transform: translate3d(0, 4px, 0) scale(0.985);
  }
  38% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  68% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.045);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(240, 210, 26, 0.82);
  outline-offset: 3px;
}

.container {
  width: calc(100% - 32px);
  max-width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--graphite);
  border-radius: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(36, 38, 43, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
}

.site-header .header-inner {
  width: calc(100% - 48px);
  max-width: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img,
.footer-logo img {
  width: auto;
  object-fit: contain;
  object-position: center;
}

.brand img {
  max-width: 188px;
  height: 92px;
  max-height: 92px;
}

.header-cta {
  flex: 0 0 auto;
  padding-inline: 23px;
}

.site-header nav {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: max-content;
  max-width: calc(100% - 400px);
  transform: translate(-50%, -50%);
}

.footer-logo img {
  width: min(100%, 260px);
  height: auto;
  max-height: 214px;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(9px, 1.2vw, 17px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  padding: 10px 10px;
  border-radius: 6px;
  color: var(--graphite);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--wine);
  background: rgba(240, 210, 26, 0.18);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--graphite);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(36, 38, 43, 0.16);
}

.button.header-cta {
  padding-inline: 23px;
}

.button-primary {
  background: var(--wine);
  color: #fff;
}

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

.button-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--graphite);
}

.button-secondary:hover {
  background: var(--surface-soft);
}

.button-gold {
  background: var(--gold);
  color: var(--graphite);
}

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

.button-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.button-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
}

.button-whatsapp:hover {
  background: #1fb85a;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
}

[data-budget-form] .button[type="submit"] {
  background: #25D366;
  color: #062d16;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
}

[data-budget-form] .button[type="submit"]:hover {
  background: #1ebe5d;
  color: #041f0f;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.32);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--graphite);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.86) 0%, rgba(20, 20, 20, 0.62) 42%, rgba(20, 20, 20, 0.18) 100%);
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(980px, 82vw);
  padding-block: 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: inherit;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  letter-spacing: 0;
}

.hero-content h1 {
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.28rem;
}

.lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

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

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  background: var(--graphite);
  color: #fff;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
  max-width: 880px;
}

.home-main .section-head {
  max-width: 920px;
}

.home-main .section-head h2 {
  max-width: 860px;
}

.section-head p {
  max-width: 720px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-head p,
.page-intro p,
.card p {
  color: var(--muted);
  margin: 0;
}

.section-dark .section-head p,
.section-dark .card p {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid > *,
.split > *,
.section-head > * {
  min-width: 0;
}

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

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(36, 38, 43, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--graphite);
  font-weight: 900;
}

.company-numbers-section {
  background: linear-gradient(180deg, #fff, var(--surface-soft));
}

.company-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.company-number-card {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(36, 38, 43, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.company-number-card:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 29, 29, 0.22);
  box-shadow: 0 18px 48px rgba(20, 20, 20, 0.1);
}

.number-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: rgba(240, 210, 26, 0.2);
  color: var(--wine);
}

.company-number-card strong {
  color: var(--wine);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.company-number-card span:last-child {
  color: var(--graphite);
  font-weight: 900;
}

.institutional-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 56px rgba(20, 20, 20, 0.12);
}

.company-facade-media {
  align-self: stretch;
  aspect-ratio: 2 / 3;
  border: 0;
  background: transparent;
  box-shadow: 0 24px 58px rgba(20, 20, 20, 0.16);
}

.institutional-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-soft);
}

.institutional-media img.company-facade-photo {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  background: transparent;
}

.institutional-media figcaption {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 12px;
  max-width: min(220px, calc(100% - 28px));
  padding: 5px 9px;
  color: var(--graphite);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 6px 16px rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(6px);
}

.product-card,
.gallery-card {
  overflow: hidden;
  padding: 0;
}

.product-card img,
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-soft);
  transition: transform 260ms ease, filter 260ms ease;
}

.product-card img.product-image-contain {
  padding: 16px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.product-card:hover img,
.gallery-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.product-card div,
.gallery-card div {
  padding: 20px;
}

.product-button {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--graphite);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: border 160ms ease, transform 160ms ease;
}

.product-button:hover {
  border-color: var(--wine);
  transform: translateY(-1px);
}

.catalog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.catalog-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  background: var(--surface-soft);
  transition: transform 240ms ease;
}

.catalog-item:hover img {
  transform: scale(1.02);
}

.catalog-item img.catalog-image-contain {
  padding: 16px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.product-card img[src$="catalogo-talha-eletrica-cwb.webp"],
.catalog-item img[src$="catalogo-talha-eletrica-cwb.webp"] {
  padding: 24px;
}

.catalog-item > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.catalog-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(240, 210, 26, 0.18);
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-item h3,
.catalog-item p,
.catalog-item dl {
  margin: 0;
}

.catalog-item p,
.catalog-item dd {
  color: var(--muted);
}

.catalog-item dl {
  display: grid;
  gap: 4px;
}

.catalog-item dt {
  color: var(--graphite);
  font-weight: 900;
}

.catalog-item dd {
  margin: 0;
}

.catalog-cta {
  max-width: 860px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 20, 20, 0.08);
}

.catalog-cta p {
  max-width: 720px;
  color: var(--muted);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-solution-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(36, 38, 43, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 29, 29, 0.22);
  box-shadow: 0 18px 48px rgba(20, 20, 20, 0.1);
}

.service-solution-card img {
  align-self: stretch;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  min-height: 245px;
  object-fit: cover;
  background: var(--surface-soft);
}

.service-solution-card > div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.service-solution-card h3,
.service-solution-card p {
  margin: 0;
}

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

.portfolio-case-grid {
  display: grid;
  width: 95%;
  margin-inline: auto;
  gap: 24px;
}

.portfolio-case-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(36, 38, 43, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.portfolio-case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 29, 29, 0.22);
  box-shadow: 0 18px 48px rgba(20, 20, 20, 0.1);
}

.portfolio-case-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--surface-soft);
}

.portfolio-case-card > div {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  gap: 12px;
  min-height: 430px;
  padding: 26px;
}

.portfolio-case-card .catalog-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: max-content;
  height: 28px;
  padding: 0 10px;
  line-height: 1;
  text-align: center;
}

.portfolio-case-card h3,
.portfolio-case-card p,
.portfolio-case-card dl {
  margin: 0;
}

.portfolio-case-card p,
.portfolio-case-card dd {
  color: var(--muted);
}

.portfolio-case-card dl {
  display: grid;
  grid-template-columns: minmax(142px, 0.34fr) 1fr;
  align-items: center;
  gap: 8px 14px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.portfolio-case-card dt {
  color: var(--graphite);
  font-weight: 900;
  line-height: 1.35;
}

.portfolio-case-card dd {
  margin: 0;
  line-height: 1.35;
}

.partners-section {
  background: linear-gradient(180deg, #fff, var(--surface-soft));
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 168px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--graphite);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 34px rgba(36, 38, 43, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-logo img {
  width: auto;
  max-width: min(250px, 100%);
  height: auto;
  max-height: clamp(58px, 6vw, 82px);
  object-fit: contain;
  object-position: center;
}

.partner-logo img.partner-logo-featured {
  max-width: min(282px, 100%);
  max-height: clamp(70px, 7vw, 98px);
  transform: scale(1.16);
  transform-origin: center;
}

.partner-logo strong {
  display: block;
  color: var(--graphite);
  font-size: 1.04rem;
  line-height: 1.2;
}

.partner-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 29, 29, 0.22);
  box-shadow: 0 18px 48px rgba(20, 20, 20, 0.1);
}

.partners-cta-section {
  background: #fff;
}

.partners-cta {
  max-width: 900px;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--surface-soft));
  box-shadow: 0 18px 48px rgba(20, 20, 20, 0.08);
}

.partners-cta p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.service-card-grid .card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 6px;
  border-radius: 999px;
  background: rgba(240, 210, 26, 0.2);
  color: var(--wine);
}

.page-hero {
  min-height: 300px;
  display: grid;
  align-items: center;
  padding: 64px 0;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(36, 38, 43, 0.94), rgba(111, 17, 17, 0.88)),
    url("../images/hero-ponte-rolante.webp") center / cover;
}

.page-intro {
  max-width: min(960px, 86vw);
}

.page-intro h1 {
  max-width: 900px;
}

.page-intro .lead {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.88);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 38px;
  align-items: center;
}

.company-story {
  gap: 18px;
}

.company-story p {
  max-width: 760px;
  text-align: left;
}

.info-panel {
  min-width: 0;
  border-left: 5px solid var(--gold);
  padding: 26px;
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.legal-content {
  display: grid;
  gap: 26px;
  max-width: 960px;
}

.legal-content article {
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(20, 20, 20, 0.08);
}

.legal-content h2 {
  margin-top: 0;
}

.legal-content h3 {
  margin: 24px 0 8px;
  color: var(--graphite);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  padding-left: 20px;
}

.legal-note {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(240, 210, 26, 0.14);
  color: var(--graphite);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.standards-grid .card,
.hover-card-grid .card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.standards-grid .card::before,
.hover-card-grid .card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(240, 210, 26, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.standards-grid .card:hover,
.hover-card-grid .card:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 29, 29, 0.22);
  box-shadow: 0 18px 48px rgba(20, 20, 20, 0.12);
}

.standards-grid .card:hover::before,
.hover-card-grid .card:hover::before {
  opacity: 1;
}

.standard-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--wine);
  background: rgba(240, 210, 26, 0.22);
  font-size: 1.18rem;
}

.thank-you-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  gap: 34px;
  align-items: center;
}

.thank-you-message {
  max-width: 720px;
  color: var(--muted);
}

.google-reviews-card {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: clamp(22px, 4vw, 30px);
  border-color: rgba(159, 29, 29, 0.14);
  box-shadow: 0 18px 48px rgba(20, 20, 20, 0.09);
}

.google-reviews-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

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

.google-reviews-button {
  justify-self: start;
  margin-top: 6px;
}

.google-reviews-note {
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-service-summary {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  align-items: start;
}

.home-service-copy h2 {
  max-width: 820px;
}

.home-service-copy p {
  max-width: 780px;
  color: var(--muted);
}

.service-summary-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-summary-list li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--graphite);
  font-weight: 800;
  line-height: 1.25;
}

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

.contact-list a,
.contact-list span {
  display: block;
  padding: 14px 16px;
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--graphite);
  font-weight: 700;
  overflow-wrap: anywhere;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--graphite);
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.modal {
  width: min(92vw, 480px);
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(20, 20, 20, 0.62);
}

.modal-inner {
  padding: 28px;
}

.modal-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.site-footer {
  padding: 72px 0 34px;
  background: #000;
  color: #fff;
}

.footer-shell {
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(150px, 0.75fr) repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.footer-brand-block {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.footer-logo img {
  width: min(100%, 245px);
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 32px rgba(255, 255, 255, 0.08));
}

.footer-block {
  min-width: 0;
}

.footer-block h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin: 18px 0 24px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.25));
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social-icons a,
.footer-contact-line i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: #fff;
  font-size: 1.35rem;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-icons a:hover,
.footer-contact-line:hover i {
  transform: translateY(-3px);
  background: #fff;
  color: #000;
  border-color: #fff;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-contact-line:hover {
  opacity: 0.82;
  transform: translateX(2px);
}

.footer-contact-line i {
  width: 40px;
  height: 40px;
  font-size: 1.05rem;
}

.footer-contact-line strong {
  color: #fff;
  font-weight: 900;
}

.footer-legal-links {
  display: grid;
  gap: 12px;
}

.footer-legal-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  line-height: 1.45;
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-legal-links a::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 999px;
  opacity: 0.9;
}

.footer-legal-links a:hover {
  opacity: 0.82;
  transform: translateX(3px);
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(calc(100% - 32px), 980px);
  padding: 18px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(36, 38, 43, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(20, 20, 20, 0.18);
  transform: translateX(-50%);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.cookie-consent p {
  margin: 6px 0 0;
  color: var(--muted);
}

.cookie-consent a {
  color: var(--wine);
  font-weight: 800;
}

.cookie-actions,
.cookie-preferences-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-preferences {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cookie-consent.is-configuring .cookie-preferences {
  display: grid;
  gap: 14px;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cookie-option:last-of-type {
  border-bottom: 0;
}

.cookie-option strong {
  display: block;
  color: var(--graphite);
}

.cookie-option span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--wine);
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #fff;
  line-height: 1.65;
}

.footer-tagline {
  margin-top: 12px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.95rem;
}

.reveal {
  animation: reveal 680ms ease both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
    margin-left: auto;
  }

  .site-header nav {
    position: static;
    flex: 0 0 auto;
    display: block;
    width: auto;
    max-width: none;
    transform: none;
  }

  .nav-list {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-list.is-open {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .section-head,
  .home-main .section-head,
  .split,
  .home-service-summary,
  .thank-you-panel {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-consent-inner {
    grid-template-columns: 1fr;
  }

  .cookie-actions,
  .cookie-preferences-actions {
    justify-content: flex-start;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-logo {
    justify-content: center;
  }

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

  .catalog-grid,
  .company-numbers-grid,
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-item {
    grid-template-columns: 1fr;
  }

  .service-solution-card,
  .portfolio-case-card {
    grid-template-columns: 1fr;
  }

  .service-solution-card img {
    min-height: 220px;
    aspect-ratio: 1 / 1;
  }

  .portfolio-case-card img {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .catalog-item img {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .company-facade-media {
    width: min(100%, 560px);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 24px);
  }

  .site-header .header-inner {
    width: calc(100% - 24px);
  }

  .brand img {
    max-width: 132px;
    height: 78px;
    max-height: 78px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    max-width: 100%;
    padding-block: 72px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.86), rgba(20, 20, 20, 0.52));
  }

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

  .section {
    padding: 62px 0;
  }

  .info-panel {
    padding: 20px;
  }

  .grid-3,
  .grid-4,
  .catalog-grid,
  .company-numbers-grid,
  .solutions-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .catalog-item,
  .service-solution-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .catalog-item img,
  .service-solution-card img {
    display: block;
    align-self: auto;
    width: 100%;
    height: auto;
  }

  .catalog-item > div,
  .service-solution-card > div {
    position: static;
    min-width: 0;
  }

  .portfolio-case-card dl {
    grid-template-columns: minmax(112px, 0.42fr) 1fr;
    gap: 8px 12px;
  }

  .company-facade-media {
    width: min(100%, 390px);
  }

  .button {
    width: 100%;
  }

  .site-footer {
    padding: 56px 0 28px;
    text-align: center;
  }

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

  .footer-brand-block,
  .footer-logo,
  .social-icons,
  .footer-contact-line,
  .footer-legal-links a {
    justify-content: center;
  }

  .footer-logo img {
    width: min(100%, 230px);
  }

  .footer-divider {
    margin-inline: auto;
    background: linear-gradient(90deg, transparent, #fff, transparent);
  }

  .footer-contact-line {
    align-items: center;
    text-align: left;
  }

  .footer-map-link {
    text-align: center;
  }

  .cookie-consent {
    bottom: 12px;
    padding: 16px;
  }

  .cookie-actions,
  .cookie-preferences-actions {
    display: grid;
  }

  .cookie-option {
    grid-template-columns: 1fr;
  }
}
