:root {
  --bg: #080908;
  --panel: #101110;
  --panel-2: #171816;
  --line: rgba(232, 194, 112, 0.18);
  --text: #f7f3ea;
  --muted: #c8c0b3;
  --soft: #8e8576;
  --accent: #d6aa52;
  --accent-strong: #f0cf84;
  --accent-dark: #8b6b2e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --font-body: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Unbounded, Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  color-scheme: dark;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 96px 96px,
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 38rem);
  opacity: 0.42;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 32px));
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 1px solid var(--line);
  background: rgba(7, 8, 8, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  text-shadow: 0 0 28px rgba(240, 207, 132, 0.16);
}

.brand img {
  width: 38px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(214, 170, 82, 0.18));
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand strong {
  color: var(--text);
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.22em;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.54em;
  line-height: 1;
}

.nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a,
.header-location,
.phone-link {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.phone-link {
  color: var(--accent-strong);
  white-space: nowrap;
}

.phone-link strong {
  display: none;
}

.nav-phone {
  display: none;
}

.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-switch a {
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

.lang-switch a.is-active,
.lang-switch a:hover {
  color: var(--accent-strong);
}

.nav a:hover,
.nav a.is-active,
.phone-link:hover {
  color: var(--accent-strong);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.btn--dark,
.btn--ghost {
  background: rgba(255,255,255,0.035);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 128px max(24px, calc((100vw - 1180px) / 2)) 58px;
  overflow: hidden;
}

.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
}

.hero__shade {
  background: linear-gradient(90deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.46) 44%, rgba(0,0,0,0.22) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 28%);
}

.hero__content {
  position: relative;
  width: min(650px, 100%);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(54px, 7.4vw, 104px);
  font-weight: 800;
  line-height: 0.98;
  max-width: 780px;
  letter-spacing: 0;
  text-shadow:
    0 20px 44px rgba(0, 0, 0, 0.62),
    0 1px 0 rgba(240, 207, 132, 0.2);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 66px);
  font-weight: 700;
  line-height: 1.05;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

h3 {
  font-size: 23px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero p {
  width: min(620px, 100%);
  margin-top: 22px;
  font-size: 20px;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.56);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  margin-top: 30px;
  border: 1px solid var(--line);
  background: rgba(15, 16, 15, 0.72);
}

.trust-strip span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: var(--accent-strong);
  border-right: 1px solid var(--line);
  font-size: 16px;
  font-weight: 800;
}

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

.section,
.split-section {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.section__intro {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section__intro--row {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 800;
}

.authority {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  border-bottom: 1px solid var(--line);
}

.authority__copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

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

.service-card,
.project-card,
.faq-list details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  border-radius: 6px;
}

.service-card {
  min-height: 280px;
  padding: 20px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
}

.service-card__media {
  position: absolute;
  inset: 0 0 auto;
  height: 132px;
  width: 100%;
  object-fit: cover;
  opacity: 0.64;
  filter: grayscale(0.3);
}

.service-card__number {
  position: relative;
  color: var(--accent);
  font-weight: 800;
}

.service-card h3,
.service-card p {
  position: relative;
}

.service-card p {
  margin-top: 10px;
  font-size: 16px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-line li {
  min-height: 128px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.process-line span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-size: 12px;
}

.process-line p {
  font-size: 16px;
  color: var(--text);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-section > div {
  display: grid;
  align-content: center;
  gap: 18px;
}

.split-section__video {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  background: var(--accent);
}

.text-link {
  width: fit-content;
  color: var(--accent);
  font-weight: 800;
  transition: transform 180ms ease;
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
  border-block: 1px solid var(--line);
}

.brand-marquee div {
  display: flex;
  width: max-content;
  gap: 54px;
  animation: marquee 34s linear infinite;
}

.brand-marquee span {
  color: rgba(244, 241, 234, 0.74);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.project-card {
  overflow: hidden;
}

.project-card[hidden] {
  display: none;
}

.project-card a {
  display: grid;
  height: 100%;
}

.project-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-card div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.project-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-card p {
  font-size: 16px;
}

.project-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.project-card li {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-top: 12px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 420px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.contact-panel > div {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 42px;
}

.map-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(240,207,132,0.2), transparent 8px),
    radial-gradient(circle at 50% 45%, rgba(240,207,132,0.08), transparent 68px),
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent 38%),
    repeating-linear-gradient(35deg, transparent 0 42px, rgba(255,255,255,0.075) 43px 44px),
    repeating-linear-gradient(105deg, transparent 0 58px, rgba(255,255,255,0.055) 59px 60px),
    #111311;
  color: inherit;
}

.contact-panel iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  background: #151713;
  filter: grayscale(0.82) invert(0.9) contrast(0.95) brightness(0.86);
  opacity: 0.92;
}

.map-fallback {
  position: absolute;
  z-index: 2;
  left: 42px;
  bottom: 42px;
  display: grid;
  gap: 4px;
  padding: 18px 20px 18px 54px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(9, 10, 10, 0.82);
  backdrop-filter: blur(12px);
}

.map-fallback strong {
  font-size: 16px;
}

.map-fallback small {
  color: var(--muted);
}

.map-pin {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  transform: rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #111;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
}

.whatsapp-widget {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 18px;
  background: #22c313;
  box-shadow:
    0 18px 46px rgba(31, 196, 101, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: whatsapp-pulse 3.2s ease-in-out infinite;
}

.whatsapp-widget img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.whatsapp-widget span,
.whatsapp-widget strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.whatsapp-widget:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 54px rgba(31, 196, 101, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    filter: brightness(1);
    box-shadow:
      0 18px 46px rgba(31, 196, 101, 0.24),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  }

  50% {
    filter: brightness(1.08);
    box-shadow:
      0 18px 54px rgba(31, 196, 101, 0.42),
      0 0 0 7px rgba(31, 196, 101, 0.08),
      0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  }
}

.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 168px 0 70px;
  border-bottom: 1px solid var(--line);
}

.page-hero div {
  width: min(760px, 100%);
}

.page-hero p {
  margin-top: 20px;
  font-size: 18px;
}

.about-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  border-bottom: 1px solid var(--line);
}

.about-workshop {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.about-workshop__media {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 12px;
}

.about-workshop__media video,
.about-workshop__media img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.about-workshop__media video {
  grid-row: span 2;
  height: 488px;
}

.about-workshop > div:last-child {
  display: grid;
  gap: 18px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-card {
  min-height: 390px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(214,170,82,0.06)),
    var(--panel);
}

.team-card__photo {
  height: 210px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid rgba(232, 194, 112, 0.12);
  background:
    linear-gradient(145deg, rgba(240,207,132,0.22), rgba(255,255,255,0.02) 46%, rgba(0,0,0,0.24)),
    url("img/mockups/porsche-protection.png") center / cover;
  overflow: hidden;
}

.team-card:nth-child(2) .team-card__photo {
  background:
    linear-gradient(145deg, rgba(240,207,132,0.18), rgba(255,255,255,0.02) 46%, rgba(0,0,0,0.28)),
    url("img/mockups/bmw-m-workshop.png") center / cover;
}

.team-card:nth-child(3) .team-card__photo {
  background:
    linear-gradient(145deg, rgba(240,207,132,0.18), rgba(255,255,255,0.02) 46%, rgba(0,0,0,0.28)),
    url("img/mockups/audi-rs-workshop.png") center / cover;
}

.team-card__photo span {
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 900;
}

.team-card h3 {
  margin: 0;
  font-size: 22px;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
}

.quality-list li {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  gap: 30px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

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

.quality-list span {
  color: var(--accent-strong);
  font-weight: 900;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filters button {
  min-height: 38px;
  padding: 0 16px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.filters button.is-active {
  color: #111;
  background: var(--accent);
  border-color: var(--accent);
}

.project-detail {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 70px;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 38px;
}

.project-detail__copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.project-detail dl {
  display: grid;
  gap: 12px;
  margin: 10px 0 0;
}

.project-detail dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--soft);
  font-size: 13px;
}

dd {
  margin: 0;
}

.project-detail__gallery {
  display: grid;
  gap: 12px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-thumbs button {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  opacity: 0.62;
}

.gallery-thumbs button.is-active {
  opacity: 1;
  border-color: var(--accent);
}

.gallery-thumbs img,
.gallery-thumbs video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.project-story {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: calc(var(--i, 0) * 45ms);
}

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

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

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

@media (max-width: 920px) {
  .site-header {
    top: 0;
    width: 100%;
    min-height: 62px;
    border-inline: 0;
    border-top: 0;
  }

  .nav {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    background: rgba(7,8,8,0.96);
    border-bottom: 1px solid var(--line);
  }

  .menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .nav-phone {
    display: grid;
    gap: 4px;
    margin-top: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(214,170,82,0.08);
  }

  .nav-phone span {
    color: var(--soft);
    font-size: 13px;
  }

  .nav-phone strong {
    color: var(--accent-strong);
    font-size: 18px;
  }

  .header-location,
  .header-actions .btn {
    display: none;
  }

  .phone-link {
    min-height: 42px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(214,170,82,0.08);
  }

  .phone-link span {
    display: none;
  }

  .phone-link strong {
    display: block;
    font-size: 13px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 96svh;
    padding: 104px 20px 34px;
  }

  .hero__shade {
    background: linear-gradient(0deg, var(--bg) 0%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.28) 100%);
  }

  h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 46px);
  }

  .hero p {
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
  }

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

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .split-section,
  .about-workshop,
  .page-hero,
  .project-detail,
  .footer {
    width: calc(100% - 28px);
  }

  .section,
  .split-section {
    padding: 58px 0;
  }

  .authority,
  .about-intro,
  .about-workshop,
  .split-section,
  .contact-panel,
  .project-detail {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .projects-grid,
  .projects-grid--large,
  .team-grid,
  .quality-list {
    grid-template-columns: 1fr;
  }

  .about-workshop__media {
    grid-template-columns: 1fr;
  }

  .about-workshop__media video,
  .about-workshop__media img {
    height: 260px;
  }

  .quality-list li {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .service-card {
    min-height: 190px;
    padding-left: 132px;
  }

  .service-card__media {
    width: 108px;
    height: 100%;
    right: auto;
  }

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

  .split-section__video {
    height: 320px;
  }

  .contact-panel > div {
    padding: 28px;
  }

  .map-frame,
  .contact-panel iframe {
    min-height: 320px;
  }

  .map-fallback {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .footer {
    display: grid;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .whatsapp-widget img {
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-widget {
    animation: none;
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 8px;
  }

  .brand img {
    width: 32px;
    height: 38px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 8px;
  }

  .section__intro--row,
  .process-line,
  .project-detail dl div,
  .gallery-thumbs {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 168px;
    padding: 18px;
  }

  .service-card__media {
    position: relative;
    width: 100%;
    height: 110px;
    margin: -18px -18px 16px;
  }

  .brand-marquee span {
    font-size: 18px;
  }

  .page-hero {
    padding-top: 118px;
  }

  .contact-actions {
    display: grid;
  }
}
