:root {
  --black: #050505;
  --dark: #0b0b0b;
  --dark-2: #111111;
  --dark-3: #181818;
  --white: #ffffff;
  --text: #e8e8e8;
  --muted: #a8a8a8;
  --gold: #d9a441;
  --gold-light: #f2c76b;
  --border: rgba(217, 164, 65, 0.28);
  --red: #b71919;
  --paper: #f5f3ef;
  --paper-2: #ece8df;
  --ink: #111111;
  --soft-ink: #55504a;
  --grey-border: rgba(12, 12, 12, 0.1);
  --container: 1280px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  background: rgba(5, 5, 5, 0.74);
  border-bottom: 1px solid rgba(217, 164, 65, 0.18);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.93);
  border-color: rgba(217, 164, 65, 0.32);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.header-inner {
  width: min(100% - 38px, 1440px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-lockup {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  isolation: isolate;
}

.brand-lockup::before {
  content: none;
  position: absolute;
  top: -7px;
  left: 2px;
  z-index: -1;
  width: 116px;
  height: 16px;
  border-top: 2px solid rgba(217, 164, 65, 0.8);
  border-radius: 60% 70% 0 0;
  transform: skewX(-18deg);
}

.brand-item {
  display: grid;
  gap: 1px;
  line-height: 1;
  white-space: nowrap;
}

.brand-image-item {
  width: 190px;
  height: 66px;
  overflow: hidden;
  align-items: center;
  background: transparent;
}

.brand-image-auto {
  width: 210px;
}

.brand-image-pesu {
  width: 174px;
  height: 76px;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.32));
}

.brand-logo-auto {
  object-position: center;
}

.brand-logo-pesu {
  object-fit: contain;
  object-position: center;
}

.brand-name {
  color: var(--gold-light);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(217, 164, 65, 0.72), transparent);
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.nav-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  line-height: 1.15;
}

.header-contact svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-contact strong,
.header-contact span span {
  display: block;
}

.header-contact strong {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.header-contact span span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  position: relative;
  z-index: 110;
  width: 46px;
  height: 46px;
  justify-self: end;
  place-items: center;
  padding: 12px;
  background: rgba(217, 164, 65, 0.1);
  border: 1px solid var(--border);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--gold-light);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-gtr.jpg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.92) 28%, rgba(5, 5, 5, 0.35) 62%, rgba(5, 5, 5, 0.15) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.08) 48%, rgba(5, 5, 5, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 70px;
}

.hero-kicker,
.label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 970px;
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(54px, 5.3vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.mobile-title-break {
  display: none;
}

.hero h1 span:last-child {
  color: var(--gold);
}

.hero-text {
  max-width: 630px;
  margin: 26px 0 0;
  color: rgba(232, 232, 232, 0.84);
  font-size: 18px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn span {
  font-size: 16px;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #080808;
  border-color: rgba(242, 199, 107, 0.6);
  box-shadow: 0 16px 34px rgba(217, 164, 65, 0.2);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), #ffe08a);
  box-shadow: 0 20px 42px rgba(217, 164, 65, 0.3);
}

.btn-outline {
  background: rgba(5, 5, 5, 0.52);
  color: var(--gold-light);
  border-color: rgba(217, 164, 65, 0.6);
}

.btn-outline:hover {
  background: var(--gold);
  color: #070707;
  border-color: var(--gold);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-light-outline {
  background: transparent;
  color: var(--black);
  border-color: rgba(5, 5, 5, 0.42);
}

.btn-light-outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.trust-strip {
  background: var(--dark-2);
  border-block: 1px solid rgba(217, 164, 65, 0.17);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  gap: 18px;
  min-height: 148px;
  padding: 34px 26px;
  border-right: 1px solid rgba(217, 164, 65, 0.14);
}

.trust-item:first-child {
  border-left: 1px solid rgba(217, 164, 65, 0.14);
}

.trust-item svg {
  flex: 0 0 auto;
  width: 33px;
  height: 33px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item h2 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section {
  position: relative;
  overflow: hidden;
  padding-block: 112px;
}

.light-section {
  background: var(--paper);
  color: var(--ink);
}

.dark-section {
  background: var(--black);
  color: var(--text);
}

.section-copy h2,
.expertise-copy h2,
.gallery-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p:not(.label),
.expertise-copy > p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--soft-ink);
  font-size: 17px;
}

.section-copy-dark p:not(.label),
.expertise-copy > p {
  color: rgba(232, 232, 232, 0.76);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.82fr 2.12fr;
  gap: 58px;
  align-items: start;
}

.services-layout .section-copy {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  padding-top: 10px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  min-height: 438px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--grey-border);
  box-shadow: 0 18px 45px rgba(10, 10, 10, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 164, 65, 0.35);
  box-shadow: 0 24px 52px rgba(10, 10, 10, 0.13);
}

.image-link,
.service-card .image-link {
  display: block;
  height: 178px;
  overflow: hidden;
  background: var(--dark-3);
}

.image-link img,
.feature-image img,
.split-image img,
.detail-image img,
.gallery-card img {
  transition: transform 0.35s ease;
}

.service-card:hover img,
.feature-image:hover img,
.split-image:hover img,
.detail-image:hover img,
.gallery-card:hover img {
  transform: scale(1.03);
}

.card-content {
  padding: 24px 22px 26px;
}

.card-content h3 {
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.card-content p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.6;
}

.card-content a,
.price-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.autopunkt-content-panel {
  grid-column: 1 / -1;
  margin-top: 28px;
  padding-top: 48px;
  border-top: 1px solid rgba(5, 5, 5, 0.12);
}

.autopunkt-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}

.autopunkt-text-grid article {
  max-width: 620px;
}

.autopunkt-text-grid p:not(.label) {
  margin: 0 0 14px;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.7;
}

.autopunkt-services-list {
  margin-top: 34px;
  padding-block: 32px;
  border-block: 1px solid rgba(217, 164, 65, 0.34);
}

.autopunkt-services-list h3,
.autopunkt-detail-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.autopunkt-services-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 34px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.autopunkt-services-list li {
  position: relative;
  padding-left: 20px;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.45;
}

.autopunkt-services-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.autopunkt-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 34px;
}

.autopunkt-detail-grid article {
  padding-left: 22px;
  border-left: 2px solid rgba(217, 164, 65, 0.52);
}

.autopunkt-detail-grid p {
  margin: 14px 0 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.65;
}

.expertise-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 164, 65, 0.12), transparent 34%),
    linear-gradient(180deg, #070707, #050505 48%, #0b0b0b);
}

.expertise-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(430px, 1fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 3vw, 44px);
  align-items: center;
}

.feature-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  height: clamp(360px, 34vw, 470px);
  min-height: 0;
  background: var(--dark-3);
  border: 1px solid var(--border);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.46);
}

.feature-image::after,
.split-image::after,
.detail-image::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.16));
}

.feature-image-right {
  height: clamp(300px, 27vw, 390px);
  min-height: 0;
  align-self: end;
}

.expertise-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-block: 12px;
}

.expertise-copy h2 {
  color: var(--white);
  max-width: 560px;
  font-size: clamp(40px, 3.7vw, 56px);
}

.stats-list {
  max-width: 560px;
  margin-top: 38px;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.stat-item strong {
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(31px, 2.35vw, 35px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.stat-item div {
  min-width: 0;
}

.stat-item h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.stat-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.tread-bg::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -80px;
  width: 440px;
  height: 720px;
  opacity: 0.055;
  background:
    repeating-linear-gradient(118deg, transparent 0 20px, #050505 20px 28px, transparent 28px 56px),
    repeating-linear-gradient(62deg, transparent 0 22px, #050505 22px 30px, transparent 30px 58px);
  transform: rotate(-12deg);
  pointer-events: none;
}

.split-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 0.9fr 0.8fr;
  gap: 38px;
  align-items: center;
}

.split-image,
.detail-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--dark-3);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.16);
}

.split-image {
  min-height: 510px;
}

.tire-layout .split-image {
  border: 1px solid rgba(5, 5, 5, 0.1);
}

.side-stack {
  display: grid;
  gap: 20px;
}

.price-card,
.mini-card {
  background: #101010;
  color: var(--text);
  border: 1px solid rgba(217, 164, 65, 0.25);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.price-card {
  padding: 28px;
}

.mini-card {
  padding: 25px 28px;
}

.price-card h3,
.mini-card h3 {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.price-table {
  display: grid;
  gap: 0;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(217, 164, 65, 0.16);
  color: rgba(232, 232, 232, 0.82);
  font-size: 14px;
  line-height: 1.35;
}

.price-row strong {
  color: var(--white);
  font-size: 16px;
}

.price-heading {
  padding-top: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.mini-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(232, 232, 232, 0.84);
}

.mini-card li {
  position: relative;
  padding-left: 20px;
}

.mini-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.wash-section {
  background:
    radial-gradient(circle at 80% 35%, rgba(183, 25, 25, 0.16), transparent 32%),
    linear-gradient(180deg, #080808, #050505);
}

.wash-main-image {
  min-height: 560px;
  border: 1px solid var(--border);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.48);
}

.wash-side {
  align-self: stretch;
}

.price-card-dark {
  min-height: 290px;
  background: rgba(16, 16, 16, 0.94);
}

.detail-image {
  min-height: 250px;
  border: 1px solid var(--border);
}

.wash-price-board {
  margin-top: 64px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 24%),
    #1f1f21;
  border: 1px solid rgba(217, 164, 65, 0.38);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.44);
}

.wash-price-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 28px 18px;
  background:
    linear-gradient(90deg, #1b1b1d, rgba(11, 11, 11, 0.72)),
    url("../images/detailing-closeup.jpg") right center / 420px auto no-repeat;
  border-bottom: 7px solid var(--gold);
}

.wash-price-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0.02em;
}

.wash-price-head div {
  display: grid;
  gap: 4px;
  color: var(--gold-light);
  font-size: clamp(17px, 1.7vw, 28px);
  font-weight: 900;
  line-height: 1.18;
  text-align: right;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.64);
}

.wash-price-head a {
  color: inherit;
}

.tire-price-head {
  background:
    linear-gradient(90deg, #1b1b1d, rgba(11, 11, 11, 0.72)),
    url("../images/tires.jpg") right center / 420px auto no-repeat;
}

.tire-price-head h2 {
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 0.92;
}

.wash-price-scroll {
  overflow-x: auto;
  scrollbar-color: var(--gold) #151515;
}

.wash-price-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--white);
}

.wash-price-table th,
.wash-price-table td {
  border: 0;
}

.wash-price-table thead th {
  padding: 16px 18px 14px;
  background: #2d2c2e;
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.wash-price-table thead th:first-child {
  text-align: center;
  width: 39%;
}

.wash-price-table tbody tr {
  border-top: 6px solid #111111;
}

.wash-price-table tbody th,
.wash-price-table tbody td {
  padding: 14px 18px;
  background: #515154;
}

.wash-price-table tbody tr:nth-child(even) th,
.wash-price-table tbody tr:nth-child(even) td {
  background: #3f3f42;
}

.wash-price-table tbody th {
  text-align: left;
}

.wash-price-table tbody th span {
  display: block;
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.wash-price-table tbody th small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.wash-price-table tbody td {
  width: 20.33%;
  border-left: 4px solid #2a2a2c;
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.wash-price-table .price-section-row th {
  padding: 13px 18px;
  background: #171719;
  color: var(--gold-light);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.wash-price-table td.price-wide {
  text-align: center;
}

.wash-price-note {
  margin: 0;
  padding: 18px 24px 20px;
  background: #171719;
  color: var(--gold-light);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 36px;
}

.gallery-heading h2 {
  color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: var(--dark-2);
  color: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.12);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.12);
}

.gallery-card img {
  position: absolute;
  inset: 0;
}

.gallery-card::after {
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58));
}

.gallery-card h3 {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 4;
  margin: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer {
  background:
    linear-gradient(180deg, #090909, #050505),
    var(--black);
  color: var(--text);
  border-top: 1px solid rgba(217, 164, 65, 0.22);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 34px;
  padding-bottom: 54px;
}

.footer-logo {
  align-items: flex-start;
}

.footer-logo .brand-image-item {
  width: 210px;
  height: 74px;
}

.footer-logo .brand-image-auto {
  width: 230px;
}

.footer-logo .brand-image-pesu {
  width: 198px;
  height: 86px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
  font-style: normal;
}

.footer-col h2 {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.footer-col a,
.footer-col span {
  color: rgba(232, 232, 232, 0.78);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(217, 164, 65, 0.16);
  color: rgba(232, 232, 232, 0.6);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

@media (max-width: 1240px) {
  .header-contacts {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .services-layout,
  .expertise-layout,
  .split-layout {
    gap: 30px;
  }
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 16px;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-layout .section-copy {
    position: static;
  }

  .service-cards,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 380px;
  }

  .autopunkt-detail-grid {
    grid-template-columns: 1fr;
  }

  .expertise-layout,
  .split-layout {
    grid-template-columns: 1fr 1fr;
  }

  .expertise-copy,
  .split-layout .section-copy {
    grid-column: 1 / -1;
  }

  .feature-image,
  .feature-image-right,
  .split-image {
    min-height: 420px;
  }

  .side-stack {
    align-self: stretch;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    width: min(calc(100% - 28px), 1440px);
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-image-item {
    width: 130px;
    height: 46px;
  }

  .brand-image-auto {
    width: 144px;
  }

  .brand-image-pesu {
    width: 120px;
    height: 54px;
  }

  .brand-subtitle {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-divider {
    height: 30px;
  }

  .brand-lockup::before {
    width: 92px;
  }

  .mobile-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: auto;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    display: grid;
    justify-self: stretch;
    justify-items: stretch;
    gap: 0;
    padding: 18px 24px 24px;
    background: rgba(5, 5, 5, 0.97);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.45);
    transform: translate(-50%, -130%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0.28s ease;
  }

  .primary-nav.is-open {
    transform: translate(-50%, 0);
    visibility: visible;
  }

  .nav-link {
    min-height: 54px;
    border-bottom: 1px solid rgba(217, 164, 65, 0.12);
    font-size: 14px;
  }

  .nav-link::after {
    bottom: 0;
    transform-origin: left;
  }

  .hero {
    min-height: 690px;
  }

  .hero-bg {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.88) 44%, rgba(5, 5, 5, 0.62) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.72));
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(42px, 9vw, 58px);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(odd) {
    border-left: 1px solid rgba(217, 164, 65, 0.14);
  }

  .section {
    padding-block: 82px;
  }

  .section-copy h2,
  .expertise-copy h2,
  .gallery-heading h2 {
    font-size: clamp(34px, 7vw, 46px);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-lockup {
    max-width: calc(100vw - 92px);
    overflow: hidden;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-image-item {
    width: 118px;
    height: 38px;
  }

  .brand-image-auto {
    width: 134px;
  }

  .brand-image-pesu {
    width: 98px;
    height: 44px;
  }

  .brand-subtitle {
    font-size: 7px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding-block: 54px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.2vw, 42px);
  }

  .mobile-title-break {
    display: block;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .button-row {
    display: grid;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
  }

  .trust-grid,
  .service-cards,
  .autopunkt-text-grid,
  .autopunkt-services-list ul,
  .expertise-layout,
  .split-layout,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
    padding: 28px 6px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(217, 164, 65, 0.14);
  }

  .trust-item:first-child,
  .trust-item:nth-child(odd) {
    border-left: 0;
  }

  .section {
    padding-block: 68px;
  }

  .service-card {
    min-height: auto;
  }

  .autopunkt-content-panel {
    margin-top: 16px;
    padding-top: 34px;
  }

  .autopunkt-services-list {
    padding-block: 26px;
  }

  .image-link,
  .service-card .image-link {
    height: 230px;
  }

  .feature-image,
  .feature-image-right,
  .split-image,
  .wash-main-image,
  .detail-image {
    min-height: 310px;
  }

  .stat-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat-item strong {
    font-size: 40px;
  }

  .price-card,
  .mini-card {
    padding: 24px 20px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-heading {
    grid-template-columns: 1fr auto;
  }

  .wash-price-board {
    margin-top: 38px;
  }

  .wash-price-head {
    display: grid;
    gap: 12px;
    padding: 20px 18px 16px;
    background-size: 340px auto;
  }

  .wash-price-head div {
    font-size: 17px;
    text-align: left;
  }

  .tire-price-head h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1;
  }

  .wash-price-scroll {
    margin-inline: 0;
    overflow-x: visible;
  }

  .wash-price-table,
  .wash-price-table tbody,
  .wash-price-table tr,
  .wash-price-table th,
  .wash-price-table td {
    display: block;
    width: 100%;
  }

  .wash-price-table {
    min-width: 0;
  }

  .wash-price-table thead {
    display: none;
  }

  .wash-price-table tbody tr {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 10px;
    border: 1px solid #171719;
  }

  .wash-price-table tbody tr.price-section-row {
    display: block;
  }

  .wash-price-table tbody tr.wide-price-row {
    grid-template-columns: 1fr;
  }

  .wash-price-table tbody th {
    grid-column: 1 / -1;
    padding: 12px;
    background: #4b4b4e;
  }

  .wash-price-table tbody tr.price-section-row th {
    display: block;
    width: 100%;
  }

  .wash-price-table tbody tr:nth-child(even) th {
    background: #3f3f42;
  }

  .wash-price-table tbody th span {
    font-size: 14px;
  }

  .wash-price-table tbody th small {
    font-size: 10px;
  }

  .wash-price-table tbody td {
    padding: 10px 8px 12px;
    border-top: 1px solid #202023;
    border-left: 1px solid #202023;
    background: #303033;
    font-size: 13px;
    white-space: nowrap;
  }

  .wash-price-table tbody td:first-of-type {
    border-left: 0;
  }

  .wash-price-table tbody td.price-wide {
    grid-column: 1 / -1;
    width: 100%;
  }

  .wash-price-table tbody td::before {
    display: block;
    margin-bottom: 3px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .wash-price-table tbody td:nth-of-type(1)::before {
    content: "SÕIDUAUTO";
  }

  .wash-price-table tbody td:nth-of-type(2)::before {
    content: "MAASTUR";
  }

  .wash-price-table tbody td:nth-of-type(3)::before {
    content: "VÄIKEBUSS";
  }

  .wash-price-table tbody td.price-wide::before {
    content: "HIND";
  }

  .wash-price-note {
    padding-inline: 14px;
    font-size: 17px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .gallery-heading {
    display: grid;
    align-items: start;
  }

  .gallery-card {
    min-height: 340px;
  }

  .footer-bottom,
  .footer-bottom div {
    display: grid;
    gap: 10px;
  }
}

@media (max-width: 460px) {
  .brand-lockup {
    gap: 6px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-image-item {
    width: 92px;
    height: 30px;
  }

  .brand-image-auto {
    width: 106px;
  }

  .brand-image-pesu {
    width: 78px;
    height: 35px;
  }

  .brand-subtitle {
    display: block;
    font-size: 6px;
    letter-spacing: 0.1em;
  }

  .brand-divider {
    height: 22px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .section-copy h2,
  .expertise-copy h2,
  .gallery-heading h2 {
    font-size: 32px;
  }

  .gallery-card {
    min-height: 300px;
  }
}
