:root {
  --red: #f0061d;
  --red-dark: #bc0014;
  --black: #090a0a;
  --deep: #101010;
  --soft: #202020;
  --text: #ffffff;
  --muted: #a8a8a8;
  --line: rgba(255, 255, 255, 0.13);
  --container: min(2550px, calc(100vw - 230px));
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI Variable Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--deep);
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0;
  font-synthesis: none;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
  background: none;
}

body:not(.subpage) .reveal-on-scroll {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(44px);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

body:not(.subpage) .reveal-from-left {
  transform: translateX(-48px);
}

body:not(.subpage) .reveal-from-right {
  transform: translateX(48px);
}

body:not(.subpage) .reveal-zoom {
  transform: translateY(34px) scale(0.96);
}

body:not(.subpage) .reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  body:not(.subpage) .reveal-on-scroll {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  background: transparent;
  transform: translateY(0);
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.site-header.is-hidden {
  transform: translateY(-104%);
  pointer-events: none;
}

.top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: var(--container);
  min-height: 44px;
  margin: 0 auto;
  color: #b7b7b7;
  font-size: clamp(11px, 0.65vw, 16px);
  font-weight: 500;
  overflow: hidden;
  transition: min-height 220ms ease, opacity 180ms ease, transform 220ms ease;
}

.site-header.is-scrolled .top-line {
  min-height: 0;
  opacity: 0;
  transform: translateY(-12px);
}

.top-line p {
  margin: 0;
  white-space: nowrap;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 48px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.phone-link svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.socials {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.main-nav {
  display: grid;
  grid-template-columns: 120px 1fr 72px;
  align-items: center;
  width: var(--container);
  min-height: 100px;
  margin: 0 auto;
  gap: 34px;
  transition: min-height 220ms ease;
}

.site-header.is-scrolled .main-nav {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 92px;
  max-width: 100%;
  transition: width 220ms ease;
}

.site-header.is-scrolled .brand {
  width: 72px;
}

.brand img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.35vw, 48px);
  font-size: clamp(13px, 0.78vw, 18px);
  font-weight: 700;
}

.nav-links a {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.94);
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.whatsapp-head {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 54px;
  height: 54px;
  border-radius: 9px;
  background: #22d465;
  box-shadow: 0 13px 32px rgba(0, 0, 0, 0.24);
  transition: width 220ms ease, height 220ms ease;
}

.site-header.is-scrolled .whatsapp-head {
  width: 46px;
  height: 46px;
}

.whatsapp-head svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.menu-button {
  display: none;
}

.menu-glyph {
  display: none;
}

.mobile-menu-visual {
  position: fixed;
  top: 19px;
  right: 17px;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 1051px) {
  .mobile-menu-visual {
    display: none;
  }
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding-top: 148px;
  padding-bottom: 110px;
  overflow: hidden;
  isolation: isolate;
  background: #070808;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/asl-hero-bg.png");
  background-repeat: no-repeat;
  background-size: min(1220px, 88vw) auto;
  background-position: center 62%;
  opacity: 0.78;
  transform: scale(1.02);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 48% 47%, rgba(240, 6, 29, 0.11), transparent 33%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.54) 47%, rgba(0, 0, 0, 0.96)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), #0d0d0d 93%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: 260px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 8, 8, 0), #070808 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(2500px, calc(100vw - 220px));
  margin: 0 auto 45px;
  text-align: center;
  transform: translateY(34px);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 5.65vw, 116px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  font-stretch: normal;
}

.hero-word {
  display: inline;
}

.hero-line {
  white-space: nowrap;
}

.hero-title-tight {
  white-space: nowrap;
}

.hero p {
  width: min(1420px, 86vw);
  margin: 60px auto 0;
  color: #b8b8b8;
  font-size: clamp(16px, 0.95vw, 25px);
  font-weight: 500;
  line-height: 1.65;
  white-space: normal;
  overflow-wrap: break-word;
}

.hero-button {
  margin-top: 42px;
}

.brand-strip {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 440px;
  margin-top: -130px;
  padding: 205px 0 58px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 8, 8, 0), #090a0a 30%, #111214 64%, #181818 100%);
}

.brand-strip::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: 180px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0), rgba(37, 37, 37, 0.44) 50%, #161616 100%);
}

.brand-strip-inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: var(--container);
  margin: 0 auto;
  min-height: 230px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.brand-logo-track {
  --brand-logo-width: var(--container);
  --brand-logo-gap: clamp(96px, calc(8vw - 18px), 205px);
  display: flex;
  align-items: center;
  gap: var(--brand-logo-gap);
  width: max-content;
  animation: brandLogoDrift 42s linear infinite;
  will-change: transform;
}

.brand-strip-inner:hover .brand-logo-track {
  animation-play-state: paused;
}

.brand-logo-track img {
  flex: 0 0 auto;
  width: var(--brand-logo-width);
  height: auto;
  object-fit: contain;
}

@keyframes brandLogoDrift {
  to {
    transform: translateX(calc(0px - var(--brand-logo-width) - var(--brand-logo-gap)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo-track {
    animation: none;
  }
}

.section-pad {
  padding: 132px max(112px, calc((100vw - 2550px) / 2)) 125px;
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(80px, 6vw, 145px);
  align-items: start;
  padding-top: 78px;
  background: linear-gradient(180deg, #161616 0, #111 135px, #111 100%);
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-photo {
  width: 100%;
  aspect-ratio: 0.747;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.33);
}

.photo-low {
  margin-top: 86px;
}

.kicker {
  position: relative;
  display: inline-block;
  margin-bottom: 44px;
  color: #fff;
  font-size: clamp(13px, 0.74vw, 20px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.kicker::before,
.kicker::after {
  position: absolute;
  left: 0;
  height: 4px;
  content: "";
  background: var(--red);
}

.kicker::before {
  top: -28px;
  width: 245px;
}

.kicker::after {
  bottom: -18px;
  width: 122px;
}

.about h2,
.section-title h2,
.faq-heading h2,
.cta-red h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

.about h2 {
  max-width: 1180px;
  font-size: clamp(40px, 2.95vw, 70px);
  line-height: 1.26;
}

.about p {
  max-width: 1260px;
  margin: 50px 0 48px;
  color: #a8a8a8;
  font-size: clamp(16px, 1vw, 26px);
  font-weight: 500;
  line-height: 1.82;
}

.red-button,
.service-hover a,
.cta-red a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 30px;
  border-radius: 7px;
  color: #fff;
  background: var(--red);
  font-size: clamp(15px, 0.86vw, 21px);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.red-button:hover,
.service-hover a:hover,
.cta-red a:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
}

.stats {
  position: relative;
  overflow: hidden;
  background: #121212;
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(2510px, calc(100vw - 220px));
  margin: 0 auto;
  padding: 105px 0 96px;
  gap: 50px;
}

.stats article {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.stats svg {
  width: 62px;
  height: 62px;
  fill: var(--red);
  filter: drop-shadow(0 0 35px rgba(240, 6, 29, 0.45));
}

.stats strong {
  font-family: var(--font-display);
  font-size: clamp(40px, 2.55vw, 62px);
  font-weight: 800;
  line-height: 1;
}

.stats span {
  color: #aaa;
  font-size: clamp(16px, 0.9vw, 23px);
  font-weight: 500;
}

.parts-backdrop {
  min-height: 360px;
  background-image: linear-gradient(180deg, rgba(18, 18, 18, 0.14), rgba(18, 18, 18, 0.58)), url("assets/asl-workshop-wide.jpg");
  background-size: cover;
  background-position: center;
}

.services {
  background: #222;
}

.center {
  text-align: center;
}

.section-title {
  margin-bottom: 145px;
}

.section-title .kicker::before {
  left: 50%;
  width: 415px;
  transform: translateX(-50%);
}

.section-title .kicker::after {
  left: 50%;
  width: 248px;
  transform: translateX(-50%);
}

.section-title h2 {
  font-size: clamp(43px, 3.25vw, 76px);
  line-height: 1.12;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  width: min(1700px, calc(100vw - 220px));
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.62;
  border-radius: 14px;
  background: #151515;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72));
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease, opacity 280ms ease;
}

.custom-card img {
  opacity: 0.86;
}

.custom-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.74)),
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.16), transparent 38%);
}

.service-card > .card-number,
.service-card > h3 {
  position: absolute;
  z-index: 2;
  left: 30px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
}

.service-card > .card-number {
  top: 28px;
  font-size: clamp(24px, 1.55vw, 38px);
}

.service-card > h3 {
  right: 28px;
  bottom: 38px;
  margin: 0;
  font-size: clamp(20px, 1.2vw, 30px);
  line-height: 1.1;
}

.service-hover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 44px;
  padding: 72px;
  opacity: 0;
  text-align: center;
  background: rgba(20, 20, 20, 0.42);
  backdrop-filter: blur(2px);
  transition: opacity 240ms ease;
}

.service-hover p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 0.9vw, 24px);
  font-weight: 500;
  line-height: 1.68;
}

.service-hover a {
  min-height: 56px;
}

.service-card:hover img,
.service-card:focus-within img {
  filter: blur(8px) saturate(0.9);
  transform: scale(1.04);
}

.service-card:hover .service-hover,
.service-card:focus-within .service-hover {
  opacity: 1;
}

.service-card:hover .card-number,
.service-card:hover h3,
.service-card:focus-within .card-number,
.service-card:focus-within h3 {
  opacity: 0;
}

.cta-band {
  background: #0f0f0f;
}

.cta-red {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 320px;
  padding: 0 max(205px, calc((100vw - 2550px) / 2));
  background: var(--red);
}

.cta-red h2 {
  font-size: clamp(32px, 2.3vw, 54px);
  line-height: 1.16;
}

.cta-red a {
  min-width: 230px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: transparent;
}

.cta-red a:hover {
  color: var(--red);
  background: #fff;
}

.cta-band > img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.faq {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 100px;
  background: #101010;
}

.faq-heading h2 {
  font-size: clamp(44px, 2.9vw, 70px);
  line-height: 1.12;
}

.faq-list {
  display: grid;
  gap: 0;
}

details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
  gap: 28px;
  cursor: pointer;
  color: #f3f3f3;
  font-size: clamp(19px, 1vw, 27px);
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "⌄";
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

details[open] summary::after {
  transform: rotate(180deg);
}

details p {
  margin: -16px 0 35px;
  max-width: 1200px;
  color: #a8a8a8;
  font-size: clamp(16px, 0.85vw, 23px);
  font-weight: 500;
  line-height: 1.62;
}

.faq-intro {
  background: #1f1f1f;
}

.faq-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(2550px, calc(100vw - 220px));
  margin: 0 auto;
}

.faq-intro-grid article {
  min-height: 250px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #151515;
}

.faq-intro-grid span {
  display: block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(26px, 1.65vw, 40px);
  font-weight: 800;
  line-height: 1;
}

.faq-intro-grid h2 {
  margin: 34px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(24px, 1.35vw, 34px);
  font-weight: 800;
  line-height: 1.15;
}

.faq-intro-grid p {
  margin: 0;
  color: #aaa;
  font-size: clamp(15px, 0.82vw, 21px);
  font-weight: 500;
  line-height: 1.62;
}

.faq-page-block {
  background: #101010;
}

.faq-page-block .faq-heading {
  align-self: start;
  position: sticky;
  top: 118px;
}

.faq-page-block .faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.blog {
  background: #1f1f1f;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  width: min(2550px, calc(100vw - 220px));
  margin: 0 auto;
}

.blog-grid article {
  min-height: 265px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #151515;
}

.blog-grid p {
  margin: 0 0 30px;
  color: #b7b7b7;
  font-size: clamp(15px, 0.82vw, 22px);
  font-weight: 500;
  line-height: 1.55;
}

.blog-grid span {
  color: #fff;
  font-size: clamp(15px, 0.77vw, 19px);
  font-weight: 800;
}

.blog-grid span {
  color: var(--red);
  letter-spacing: 0;
}

.blog-grid h3 {
  margin: 22px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(21px, 1.13vw, 31px);
  line-height: 1.18;
}

.blog-grid article {
  transition: transform 180ms ease, border-color 180ms ease;
}

.blog-grid article:hover {
  border-color: rgba(240, 6, 29, 0.5);
  transform: translateY(-3px);
}

.blog-grid article a {
  display: grid;
  height: 100%;
}

.blog-grid strong {
  align-self: end;
  color: var(--red);
  font-size: clamp(14px, 0.76vw, 18px);
  font-weight: 900;
}

.blog-page-section,
.blog-detail-layout {
  background: #1f1f1f;
}

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(2550px, calc(100vw - 220px));
  margin: 0 auto;
}

.blog-page-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #151515;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease;
}

.blog-page-card:hover {
  border-color: rgba(240, 6, 29, 0.52);
  transform: translateY(-4px);
}

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

.blog-page-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 300ms ease, filter 300ms ease;
}

.blog-page-card:hover img {
  filter: saturate(1);
  transform: scale(1.035);
}

.blog-page-card div {
  display: grid;
  padding: 32px;
}

.blog-page-card small,
.blog-related small {
  color: var(--red);
  font-size: clamp(12px, 0.68vw, 16px);
  font-weight: 900;
}

.blog-page-card h3 {
  margin: 18px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(23px, 1.35vw, 34px);
  font-weight: 800;
  line-height: 1.15;
}

.blog-page-card p {
  margin: 0 0 30px;
  color: #aaa;
  font-size: clamp(15px, 0.84vw, 21px);
  font-weight: 500;
  line-height: 1.58;
}

.blog-page-card span {
  align-self: end;
  color: #fff;
  font-size: clamp(14px, 0.78vw, 18px);
  font-weight: 900;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: clamp(70px, 6vw, 150px);
  align-items: start;
}

.blog-detail-menu {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.blog-detail-menu span {
  padding: 0 0 26px;
  color: #fff;
  font-size: clamp(18px, 1vw, 24px);
  font-weight: 900;
}

.blog-detail-menu a {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #a8a8a8;
  font-size: clamp(14px, 0.86vw, 20px);
  font-weight: 800;
  line-height: 1.35;
  transition: color 180ms ease, padding-left 180ms ease;
}

.blog-detail-menu a:hover,
.blog-detail-menu a.active {
  padding-left: 14px;
  color: var(--red);
}

.blog-detail-content {
  min-width: 0;
}

.blog-detail-image {
  width: 100%;
  max-height: 680px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.32);
}

.blog-copy-block {
  margin-top: 72px;
}

.blog-copy-block h2 {
  margin: 0 0 42px;
  font-family: var(--font-display);
  font-size: clamp(42px, 3.2vw, 78px);
  font-weight: 800;
  line-height: 1.12;
}

.blog-copy-block p {
  max-width: 1320px;
  margin: 0 0 28px;
  color: #aaa;
  font-size: clamp(17px, 1vw, 25px);
  font-weight: 500;
  line-height: 1.72;
}

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

.blog-highlight-grid article {
  min-height: 150px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #171717;
}

.blog-highlight-grid span {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 22px;
  background: var(--red);
}

.blog-highlight-grid p {
  margin: 0;
  color: #ddd;
  font-size: clamp(15px, 0.86vw, 21px);
  font-weight: 700;
  line-height: 1.5;
}

.blog-related {
  margin-top: 78px;
}

.blog-related h3 {
  margin: 0 0 34px;
  font-family: var(--font-display);
  font-size: clamp(30px, 2vw, 48px);
  font-weight: 800;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-related-grid a {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #171717;
  transition: transform 180ms ease, border-color 180ms ease;
}

.blog-related-grid a:hover {
  border-color: rgba(240, 6, 29, 0.55);
  transform: translateY(-3px);
}

.blog-related-grid span {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(15px, 0.86vw, 20px);
  font-weight: 800;
  line-height: 1.35;
}

.footer {
  padding: 135px max(112px, calc((100vw - 2550px) / 2)) 105px;
  background: #222;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.62fr 1fr 1.1fr;
  gap: clamp(70px, 6vw, 150px);
  width: min(2550px, 100%);
  margin: 0 auto;
}

.footer img {
  width: 170px;
  border-radius: 8px;
  margin-bottom: 55px;
}

.footer p,
.footer a {
  color: #aaa;
  font-size: clamp(16px, 0.9vw, 23px);
  font-weight: 700;
  line-height: 1.58;
}

.footer p {
  margin: 0;
}

.footer h3 {
  margin: 0 0 54px;
  color: #fff;
  font-size: clamp(19px, 1vw, 27px);
}

.footer-grid > div:not(.footer-about) {
  display: grid;
  align-content: start;
  gap: 24px;
}

.footer-contact strong {
  color: #fff;
  font-size: clamp(18px, 1vw, 26px);
  font-weight: 900;
}

.back-top {
  position: fixed;
  z-index: 60;
  right: 34px;
  bottom: 36px;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.back-top svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: 170px max(112px, calc((100vw - 2550px) / 2)) 120px;
  overflow: hidden;
  isolation: isolate;
  background: #070808;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/asl-page-title-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 18%;
  opacity: 0.62;
  transform: scale(1.08);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 46% 44%, rgba(240, 6, 29, 0.16), transparent 25%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48) 50%, rgba(0, 0, 0, 0.9)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), #111 96%);
}

.page-hero-content {
  width: min(1680px, 100%);
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 6vw, 120px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  width: min(930px, 86vw);
  margin: 42px auto 0;
  color: #b8b8b8;
  font-size: clamp(17px, 1vw, 25px);
  font-weight: 500;
  line-height: 1.65;
}

.about-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 6vw, 150px);
  align-items: center;
  background: #111;
}

.about-detail-media {
  position: relative;
  min-height: 720px;
}

.about-detail-main,
.about-detail-float {
  position: absolute;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.34);
}

.about-detail-main {
  top: 0;
  left: 0;
  width: 68%;
  height: 82%;
}

.about-detail-float {
  right: 0;
  bottom: 0;
  width: 55%;
  height: 68%;
}

.about-detail-copy h2,
.about-flow-copy h2,
.principle-grid h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.about-detail-copy h2,
.about-flow-copy h2 {
  margin: 0;
  font-size: clamp(40px, 2.95vw, 70px);
  font-weight: 800;
  line-height: 1.18;
}

.about-detail-copy p {
  max-width: 1120px;
  margin: 38px 0 0;
  color: #aaa;
  font-size: clamp(16px, 1vw, 26px);
  font-weight: 500;
  line-height: 1.72;
}

.about-feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.about-feature-list article,
.principle-grid article,
.flow-steps article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #171717;
}

.about-feature-list article {
  padding: 28px;
}

.about-feature-list strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(27px, 2vw, 47px);
  font-weight: 800;
  line-height: 1;
}

.about-feature-list span {
  display: block;
  margin-top: 12px;
  color: #aaa;
  font-size: clamp(14px, 0.82vw, 20px);
  font-weight: 600;
  line-height: 1.35;
}

.about-principles {
  background: #1f1f1f;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  width: min(2550px, calc(100vw - 220px));
  margin: 0 auto;
}

.principle-grid article {
  min-height: 330px;
  padding: 38px;
}

.principle-grid span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(28px, 1.8vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.principle-grid h3 {
  margin: 36px 0 22px;
  font-size: clamp(24px, 1.35vw, 34px);
  font-weight: 800;
  line-height: 1.15;
}

.principle-grid p,
.flow-steps p {
  margin: 0;
  color: #aaa;
  font-size: clamp(15px, 0.82vw, 22px);
  font-weight: 500;
  line-height: 1.65;
}

.about-flow {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(70px, 6vw, 150px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.96)),
    url("assets/asl-workshop-wide.jpg") center / cover no-repeat;
}

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

.flow-steps article {
  min-height: 220px;
  padding: 34px;
  background: rgba(16, 16, 16, 0.78);
  backdrop-filter: blur(8px);
}

.flow-steps strong {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(20px, 1.1vw, 29px);
  font-weight: 800;
}

.about-stats {
  background: #121212;
}

.services-catalog {
  background: #1f1f1f;
}

.service-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(2550px, calc(100vw - 220px));
  margin: 0 auto;
}

.catalog-card {
  overflow: hidden;
  border-radius: 8px;
  background: #141414;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.catalog-card a {
  position: relative;
  display: grid;
  min-height: 520px;
  color: #fff;
}

.catalog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 320ms ease, filter 320ms ease;
}

.catalog-card a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.78));
}

.catalog-card:hover img {
  filter: blur(2px) saturate(0.86);
  transform: scale(1.04);
}

.catalog-number,
.catalog-copy {
  position: relative;
  z-index: 1;
}

.catalog-number {
  align-self: start;
  padding: 34px;
  font-family: var(--font-display);
  font-size: clamp(28px, 1.9vw, 48px);
  font-weight: 800;
}

.catalog-copy {
  align-self: end;
  padding: 34px;
}

.catalog-copy small,
.service-related small {
  color: var(--red);
  font-size: clamp(12px, 0.68vw, 16px);
  font-weight: 800;
}

.catalog-copy h3 {
  margin: 16px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.25vw, 32px);
  font-weight: 800;
  line-height: 1.15;
}

.catalog-copy p {
  margin: 0;
  color: #b8b8b8;
  font-size: clamp(14px, 0.8vw, 20px);
  font-weight: 500;
  line-height: 1.55;
}

.service-row-section {
  background: #151515;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.service-row-list {
  width: min(2550px, calc(100vw - 220px));
  margin: 0 auto;
}

.service-row-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 118px;
  gap: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #f4f4f4;
  transition: color 180ms ease, padding-left 220ms ease, background 220ms ease;
}

.service-row-link:last-child {
  border-bottom: 0;
}

.service-row-link span {
  font-family: var(--font-display);
  font-size: clamp(28px, 1.9vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-row-link strong {
  color: #8f8f8f;
  font-size: clamp(13px, 0.8vw, 18px);
  font-weight: 800;
}

.service-row-link:hover {
  padding-left: 28px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.02);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: clamp(70px, 6vw, 150px);
  align-items: start;
  background: #111;
}

.service-detail-menu {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-detail-menu span {
  padding: 0 0 26px;
  color: #fff;
  font-size: clamp(18px, 1vw, 24px);
  font-weight: 900;
}

.service-detail-menu a {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #a8a8a8;
  font-size: clamp(14px, 0.86vw, 20px);
  font-weight: 800;
  line-height: 1.35;
  transition: color 180ms ease, padding-left 180ms ease;
}

.service-detail-menu a:hover,
.service-detail-menu a.active {
  padding-left: 14px;
  color: var(--red);
}

.service-detail-content {
  min-width: 0;
}

.service-detail-image {
  width: 100%;
  max-height: 680px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.32);
}

.service-copy-block {
  margin-top: 72px;
}

.service-copy-block h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 3.2vw, 78px);
  font-weight: 800;
  line-height: 1.12;
}

.service-copy-block p {
  max-width: 1320px;
  margin: 42px 0 0;
  color: #aaa;
  font-size: clamp(17px, 1vw, 25px);
  font-weight: 500;
  line-height: 1.72;
}

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

.service-bullet-grid article {
  min-height: 155px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #171717;
}

.service-bullet-grid span {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 22px;
  background: var(--red);
}

.service-bullet-grid p {
  margin: 0;
  color: #ddd;
  font-size: clamp(15px, 0.86vw, 21px);
  font-weight: 700;
  line-height: 1.5;
}

.service-process,
.service-related {
  margin-top: 78px;
}

.service-process h3,
.service-related h3 {
  margin: 0 0 34px;
  font-family: var(--font-display);
  font-size: clamp(30px, 2vw, 48px);
  font-weight: 800;
}

.service-process > div {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-process article {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.service-process strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(22px, 1.35vw, 34px);
  font-weight: 800;
}

.service-process p {
  margin: 0;
  color: #b8b8b8;
  font-size: clamp(15px, 0.86vw, 21px);
  font-weight: 600;
  line-height: 1.5;
}

.service-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-related-grid a {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #171717;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-related-grid a:hover {
  border-color: rgba(240, 6, 29, 0.55);
  transform: translateY(-3px);
}

.service-related-grid span {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(15px, 0.86vw, 20px);
  font-weight: 800;
  line-height: 1.35;
}

.contact-section {
  background: #111;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(70px, 6vw, 150px);
  width: min(2550px, 100%);
  margin: 0 auto;
  align-items: start;
}

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

.contact-grid-single .contact-info {
  width: min(1500px, 100%);
}

.contact-info h2,
.contact-map-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 2.95vw, 70px);
  font-weight: 800;
  line-height: 1.18;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.contact-card-grid article,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #171717;
}

.contact-card-grid article {
  min-height: 190px;
  padding: 30px;
}

.contact-card-grid small {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: clamp(12px, 0.68vw, 16px);
  font-weight: 900;
}

.contact-card-grid a,
.contact-card-grid p {
  display: block;
  margin: 0 0 12px;
  color: #e8e8e8;
  font-size: clamp(16px, 0.95vw, 24px);
  font-weight: 700;
  line-height: 1.45;
}

.contact-card-grid p {
  color: #aaa;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(34px, 3vw, 64px);
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: #fff;
  font-size: clamp(14px, 0.8vw, 19px);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  outline: 0;
  background: #0f0f0f;
  color: #fff;
  font: inherit;
  font-size: clamp(15px, 0.86vw, 20px);
}

.contact-form input,
.contact-form select {
  min-height: 54px;
  padding: 0 18px;
}

.contact-form textarea {
  resize: vertical;
  padding: 16px 18px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(240, 6, 29, 0.72);
}

.contact-form button {
  justify-self: start;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 7px;
  cursor: pointer;
  color: #fff;
  background: var(--red);
  font-size: clamp(15px, 0.86vw, 20px);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
}

.contact-map-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
  align-items: center;
  gap: clamp(42px, 5vw, 115px);
  padding: 120px max(112px, calc((100vw - 2550px) / 2));
  background: #101010;
}

.contact-map-copy {
  width: min(900px, 100%);
}

.contact-map-frame {
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #171717;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 500px;
}

.contact-map-copy p {
  margin: 34px 0;
  color: #b8b8b8;
  font-size: clamp(17px, 1vw, 25px);
  font-weight: 600;
  line-height: 1.65;
}

@media (max-width: 1500px) {
  :root {
    --container: min(1180px, calc(100vw - 64px));
  }

  .top-line {
    min-height: 34px;
    font-size: 12px;
  }

  .socials {
    gap: 15px;
    font-size: 15px;
  }

  .phone-link svg {
    width: 20px;
    height: 20px;
  }

  .main-nav {
    grid-template-columns: 94px 1fr 50px;
    min-height: 76px;
  }

  .brand {
    width: 72px;
  }

  .site-header.is-scrolled .brand {
    width: 62px;
  }

  .nav-links {
    gap: 24px;
    font-size: 14px;
  }

  .whatsapp-head {
    width: 42px;
    height: 42px;
  }

  .site-header.is-scrolled .whatsapp-head {
    width: 38px;
    height: 38px;
  }

  .whatsapp-head svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 78px;
  }

  .hero-content,
  .brand-strip-inner,
  .stats-grid,
  .service-grid,
  .blog-grid,
  .blog-page-grid,
  .blog-detail-layout {
    width: min(1180px, calc(100vw - 64px));
  }

  .hero h1 {
    font-size: clamp(43px, 5.8vw, 82px);
  }

  .hero p {
    margin-top: 34px;
    font-size: 15px;
  }

  .brand-strip {
    min-height: 350px;
    margin-top: -105px;
    padding: 155px 0 44px;
  }

  .brand-strip::after {
    height: 140px;
  }

  .brand-logo-track {
    --brand-logo-gap: 94px;
  }

  .section-pad,
  .footer {
    padding-right: max(32px, calc((100vw - 1180px) / 2));
    padding-left: max(32px, calc((100vw - 1180px) / 2));
  }

  .about {
    gap: 54px;
  }

  .about-images {
    gap: 24px;
  }

  .about h2 {
    font-size: 40px;
  }

  .about p {
    font-size: 15px;
  }

  .red-button,
  .service-hover a,
  .cta-red a {
    min-height: 46px;
    padding: 0 24px;
    font-size: 15px;
  }

  .section-title {
    margin-bottom: 82px;
  }

  .service-grid {
    gap: 24px;
  }

  .service-hover {
    padding: 42px;
    gap: 28px;
  }

  .service-hover p {
    font-size: 15px;
  }

  .cta-red {
    min-height: 220px;
    padding-right: max(64px, calc((100vw - 1180px) / 2));
    padding-left: max(64px, calc((100vw - 1180px) / 2));
  }

  .cta-band > img {
    height: 250px;
  }

  summary {
    min-height: 92px;
  }

  .footer img {
    width: 150px;
  }

  .page-hero {
    min-height: 560px;
    padding: 132px max(32px, calc((100vw - 1180px) / 2)) 92px;
  }

  .page-hero h1 {
    font-size: clamp(46px, 5.2vw, 82px);
  }

  .about-detail-media {
    min-height: 560px;
  }

  .principle-grid {
    gap: 20px;
    width: min(1180px, calc(100vw - 64px));
  }

  .principle-grid article {
    min-height: 285px;
    padding: 28px;
  }

  .service-catalog-grid,
  .service-row-list,
  .service-detail-layout {
    width: min(1180px, calc(100vw - 64px));
  }

  .service-catalog-grid {
    gap: 22px;
  }

  .catalog-card a {
    min-height: 420px;
  }

  .service-row-link {
    min-height: 96px;
  }

  .service-detail-layout {
    grid-template-columns: 300px 1fr;
    gap: 54px;
  }

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

  .contact-grid {
    width: min(1180px, 100%);
    gap: 54px;
  }

  .contact-map-section {
    padding-right: max(32px, calc((100vw - 1180px) / 2));
    padding-left: max(32px, calc((100vw - 1180px) / 2));
  }
}

@media (min-width: 1501px) and (max-width: 2100px) {
  :root {
    --container: min(1560px, calc(100vw - 140px));
  }

  .top-line {
    min-height: 38px;
    font-size: 13px;
  }

  .phone-link svg {
    width: 22px;
    height: 22px;
  }

  .socials {
    gap: 18px;
    font-size: 17px;
  }

  .main-nav {
    grid-template-columns: 108px 1fr 60px;
    min-height: 86px;
    gap: 26px;
  }

  .site-header.is-scrolled .main-nav {
    min-height: 74px;
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: 82px;
  }

  .nav-links {
    gap: clamp(22px, 1.9vw, 36px);
    font-size: 15px;
  }

  .whatsapp-head,
  .site-header.is-scrolled .whatsapp-head {
    width: 44px;
    height: 44px;
  }

  .whatsapp-head svg {
    width: 21px;
    height: 21px;
  }

  .hero {
    padding-top: 106px;
    padding-bottom: 92px;
  }
}

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

  .top-line {
    display: none;
  }

  body.nav-open .site-header {
    background: rgba(10, 10, 10, 0.98);
  }

  .main-nav {
    position: relative;
    grid-template-columns: 76px 1fr 48px;
    width: calc(100vw - 34px);
    min-height: 74px;
    gap: 16px;
  }

  .brand {
    grid-column: 1;
  }

  .brand {
    width: 62px;
  }

  .site-header.is-scrolled .brand {
    width: 58px;
  }

  .menu-button {
    grid-column: 2;
    display: grid;
    justify-self: end;
    width: 36px;
    height: 36px;
    padding: 8px;
    gap: 5px;
  }

  .menu-button span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 9px;
    background: #fff;
  }

  .menu-glyph {
    display: none !important;
  }

  .menu-button {
    display: none !important;
  }

  .mobile-menu-visual {
    position: fixed;
    top: 19px;
    right: 17px;
    z-index: 120;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 7px;
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: grid;
    justify-items: center;
    gap: 0;
    padding: 18px 24px 28px;
    background: rgba(12, 12, 12, 0.98);
    border-top: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 18px 0;
    text-align: center;
    font-size: 17px;
  }

  .whatsapp-head {
    grid-column: 3;
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 820px;
    padding-top: 74px;
    padding-bottom: 58px;
  }

  .hero-content {
    width: calc(100vw - 34px);
    transform: translateY(18px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 52px);
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero p {
    width: min(640px, calc(100vw - 45px));
    font-size: 15px;
    line-height: 1.58;
  }

  .brand-strip {
    min-height: auto;
    margin-top: -70px;
    padding: 112px 0 34px;
  }

  .brand-strip::after {
    height: 110px;
  }

  .brand-strip-inner,
  .stats-grid,
  .service-grid,
  .blog-grid,
  .blog-page-grid,
  .blog-detail-layout,
  .faq-intro-grid {
    width: calc(100vw - 34px);
  }

  .brand-logo-track {
    --brand-logo-width: 760px;
    --brand-logo-gap: 62px;
  }

  .brand-logo-track img {
    min-width: var(--brand-logo-width);
    width: var(--brand-logo-width);
  }

  .brand-strip-inner {
    overflow: hidden;
  }

  .section-pad {
    padding: 86px 17px;
  }

  .about {
    padding-top: 58px;
  }

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

  .about-images {
    order: 2;
  }

  .about-copy {
    order: 1;
  }

  .photo-low {
    margin-top: 44px;
  }

  .about h2,
  .section-title h2,
  .faq-heading h2 {
    font-size: clamp(30px, 7.5vw, 46px);
  }

  .stats-grid,
  .service-grid,
  .blog-grid,
  .blog-page-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid {
    gap: 18px;
  }

  .cta-red {
    display: grid;
    padding: 54px 17px;
  }

  .cta-red h2 {
    font-size: clamp(25px, 6.1vw, 38px);
  }

  .faq {
    gap: 35px;
  }

  .faq-page-block .faq-heading {
    position: static;
  }

  .faq-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .footer {
    padding: 86px 17px;
  }

  .page-hero {
    min-height: 520px;
    padding: 120px 17px 80px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 9vw, 58px);
  }

  .page-hero p {
    font-size: 15px;
  }

  .about-detail,
  .about-flow {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-detail-media {
    min-height: 560px;
    order: 2;
  }

  .about-detail-copy {
    order: 1;
  }

  .about-detail-copy h2,
  .about-flow-copy h2 {
    font-size: clamp(30px, 7.5vw, 46px);
  }

  .about-feature-list,
  .principle-grid,
  .flow-steps {
    grid-template-columns: 1fr 1fr;
  }

  .principle-grid {
    width: calc(100vw - 34px);
  }

  .service-catalog-grid,
  .service-bullet-grid,
  .service-related-grid,
  .blog-highlight-grid,
  .blog-related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-layout,
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .service-catalog-grid,
  .service-row-list,
  .service-detail-layout,
  .blog-detail-layout {
    width: calc(100vw - 34px);
  }

  .service-detail-layout,
  .blog-detail-layout {
    gap: 42px;
  }

  .service-detail-menu,
  .blog-detail-menu {
    position: static;
  }

  .service-row-link {
    min-height: 82px;
  }

  .service-row-link span {
    font-size: clamp(22px, 4.8vw, 36px);
  }

  .catalog-card a {
    min-height: 360px;
  }

  .service-copy-block h2 {
    font-size: clamp(30px, 7.5vw, 46px);
  }

  .blog-copy-block h2 {
    font-size: clamp(30px, 7.5vw, 46px);
  }

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

  .contact-info h2,
  .contact-map-copy h2 {
    font-size: clamp(30px, 7.5vw, 46px);
  }

  .contact-map-section {
    grid-template-columns: 1fr;
    padding: 86px 17px;
  }

  .contact-map-frame {
    min-height: 360px;
  }

  .contact-map-frame iframe {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .main-nav {
    grid-template-columns: 70px 1fr 44px;
  }

  .brand {
    width: 58px;
  }

  .site-header.is-scrolled .brand {
    width: 54px;
  }

  .menu-button {
    grid-column: 3;
    position: fixed;
    top: 19px;
    right: 17px;
    transform: none;
    z-index: 80;
    display: grid !important;
    justify-self: end;
    width: 36px;
    height: 36px;
    border-radius: 7px;
    background: rgba(240, 6, 29, 0.95);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
    place-items: center;
  }

  .menu-button span {
    display: none;
  }

  .menu-glyph {
    display: block !important;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
  }

  .mobile-menu-visual {
    position: fixed;
    top: 19px;
    right: 17px;
    z-index: 120;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 7px;
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
  }

  .whatsapp-head {
    display: none;
  }

  .site-header::after {
    content: none;
  }

  .whatsapp-head {
    width: 34px;
    height: 34px;
  }

  .whatsapp-head svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    transform: translateY(10px);
  }

  .hero h1 {
    font-size: clamp(20px, 5.45vw, 26px);
    line-height: 1.18;
    max-width: calc(100vw - 54px);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-title-tight span {
    display: block;
  }

  .hero-word {
    display: block;
  }

  .hero-line {
    white-space: normal;
  }

  .hero p {
    width: min(300px, calc(100vw - 72px));
    font-size: 13px;
    line-height: 1.55;
  }

  .about-images,
  .stats-grid,
  .service-grid,
  .blog-grid,
  .blog-page-grid,
  .faq-intro-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about {
    padding-top: 44px;
  }

  .about-photo {
    aspect-ratio: 0.86;
  }

  .photo-low {
    margin-top: 0;
  }

  .kicker {
    letter-spacing: 0;
    font-size: 11px;
  }

  .section-title {
    margin-bottom: 54px;
  }

  .stats-grid {
    padding: 75px 0;
  }

  .parts-backdrop {
    min-height: 190px;
  }

  .service-card {
    min-height: 360px;
  }

  .service-hover {
    padding: 30px;
  }

  .service-hover p {
    font-size: 14px;
  }

  .cta-band > img {
    height: 180px;
  }

  summary {
    min-height: 78px;
    font-size: 16px;
  }

  .footer img {
    width: 132px;
  }

  .back-top {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .page-hero {
    min-height: 470px;
    padding-top: 104px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .page-hero p {
    width: min(300px, calc(100vw - 72px));
    font-size: 13px;
  }

  .about-detail-media {
    min-height: 430px;
  }

  .about-detail-main {
    width: 72%;
    height: 76%;
  }

  .about-detail-float {
    width: 62%;
    height: 58%;
  }

  .about-feature-list,
  .principle-grid,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .about-feature-list article,
  .principle-grid article,
  .flow-steps article {
    min-height: auto;
    padding: 26px;
  }

  .service-catalog-grid,
  .service-detail-layout,
  .service-bullet-grid,
  .service-related-grid,
  .blog-detail-layout,
  .blog-highlight-grid,
  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card a {
    min-height: 330px;
  }

  .catalog-number,
  .catalog-copy {
    padding: 26px;
  }

  .service-row-link {
    min-height: 72px;
    gap: 18px;
  }

  .service-row-link span {
    font-size: clamp(18px, 5vw, 25px);
  }

  .service-row-link strong {
    display: none;
  }

  .service-detail-image,
  .blog-detail-image {
    max-height: 360px;
  }

  .service-process article {
    grid-template-columns: 62px 1fr;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-grid article {
    min-height: auto;
    padding: 26px;
  }

  .contact-form {
    padding: 26px;
  }

  .contact-form button {
    width: 100%;
  }
}
