:root {
  --bg: #050505;
  --panel: #0b0d0e;
  --panel-soft: #101316;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f7f7f7;
  --muted: #c8c8c8;
  --red: #e00000;
  --red-dark: #aa0000;
  --red-glow: rgba(224, 0, 0, 0.38);
  --header-h: 84px;
  --page-max: 1536px;
  --page-height: 1024px;
  --fit-scale: 1;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 88%, rgba(224, 0, 0, 0.13), transparent 34rem),
    linear-gradient(180deg, #020202 0%, #090909 45%, #050505 100%);
}

body.is-desktop-fit {
  overflow: hidden;
}

.site-shell {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--page-max);
  height: var(--page-height);
  margin-left: calc(var(--page-max) / -2);
  overflow: hidden;
  transform: scale(var(--fit-scale));
  transform-origin: top center;
  background: #030303;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.65);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 32px;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 148px;
  height: auto;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding: 32px 0 29px;
  color: #f2f2f2;
  white-space: nowrap;
}

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

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

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

.header-clock {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f1f1f1;
  font-size: 18px;
  white-space: nowrap;
}

.clock-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.35);
}

.clock-icon {
  position: relative;
  width: 19px;
  height: 19px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
}

.clock-icon::before,
.clock-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: 50% 100%;
}

.clock-icon::before {
  height: 6px;
  transform: translate(-50%, -100%) rotate(0deg);
}

.clock-icon::after {
  height: 5px;
  transform: translate(-50%, -100%) rotate(130deg);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  height: 410px;
  min-height: 0;
  display: grid;
  grid-template-columns: 760px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.34) 39%, rgba(0, 0, 0, 0.03) 70%, rgba(0, 0, 0, 0.22) 100%),
    url("assets/home-hero-bg.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    radial-gradient(circle at 24% 70%, rgba(255, 255, 255, 0.06), transparent 24rem);
  opacity: 0.5;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 62px 0 0 65px;
  max-width: 760px;
}

.eyebrow,
.section-heading h2,
.content-band h2,
.placeholder-section h2 {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 52px;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 7px 24px rgba(0, 0, 0, 0.75);
}

.hero-tags {
  margin: 18px 0 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: #f3f3f3;
  font-size: 25px;
  text-transform: uppercase;
}

.hero-tags span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.hero-lead {
  max-width: 520px;
  margin: 0 0 18px;
  color: #f0f0f0;
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #f00000, #bd0000);
  box-shadow: 0 18px 34px rgba(224, 0, 0, 0.24);
}

.btn-outline {
  min-width: 210px;
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.28);
}

.calendar-icon {
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 3px;
  position: relative;
}

.calendar-icon::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 5px;
  border-top: 2px solid #fff;
}

.calendar-icon::after {
  content: "";
  position: absolute;
  inset: 9px 4px 4px;
  background:
    radial-gradient(circle, #fff 1.5px, transparent 2px) 0 0 / 7px 6px;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
}

.hero-media {
  display: none;
}

.hero-car {
  position: absolute;
  right: 70px;
  bottom: -8px;
  width: min(560px, 45vw);
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.8));
}

.hero-logo-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 330px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero-logo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 52%, rgba(255, 255, 255, 0.04), transparent 48%),
    linear-gradient(115deg, rgba(0, 0, 0, 0) 0 15%, rgba(5, 7, 8, 0.96) 16% 100%);
  clip-path: polygon(27% 0, 100% 0, 100% 100%, 0 100%, 0 84%, 12% 64%, 7% 43%);
}

.hero-logo-panel img {
  position: relative;
  z-index: 1;
  width: 285px;
  max-width: 90%;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.75));
}

.offer-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  height: 229px;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 15, 17, 0.96), rgba(4, 5, 6, 0.98));
}

.offer-main {
  padding: 22px 30px 18px;
}

.section-heading h2,
.content-band h2,
.placeholder-section h2 {
  margin: 0 0 16px;
  font-size: 19px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(110px, 1fr));
  gap: 38px;
}

.service-item {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  min-height: 142px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
}

.hex-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  border: 0;
  background: transparent;
}

.hex-icon::before,
.hex-icon::after {
  content: "";
  display: block;
}

.service-icon-frame {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.18)),
    #080a0c;
}

.service-icon-frame .service-svg {
  width: 54px;
  height: 54px;
  color: #fff;
}

.service-icon-plain {
  position: relative;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: #fff;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: linear-gradient(135deg, var(--red), #7c0000);
}

.service-icon-plain::before {
  content: "";
  position: absolute;
  inset: 1px;
  clip-path: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.12)),
    #0a0c0e;
}

.service-icon-plain .service-svg {
  width: 58px;
  height: 58px;
  color: #fff;
}

.service-icon-plain img {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.engine::before,
.brake::before,
.shock::before,
.chip::before,
.car::before,
.tire::before,
.ecu::before {
  width: 36px;
  height: 28px;
  border: 3px solid #fff;
}

.engine::before {
  border-radius: 4px;
  box-shadow: -10px 7px 0 -6px #fff, 10px 7px 0 -6px #fff, 0 -10px 0 -7px #fff;
}

.brake::before {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px #0c0c0c, inset 0 0 0 11px #fff;
}

.shock::before {
  width: 13px;
  height: 50px;
  transform: rotate(38deg);
  border-radius: 10px;
  box-shadow: 0 0 0 3px #0c0c0c, 0 0 0 6px #fff;
}

.chip::before,
.ecu::before {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  box-shadow: 0 -9px 0 -6px #fff, 0 9px 0 -6px #fff, 9px 0 0 -6px #fff, -9px 0 0 -6px #fff;
}

.car::before {
  width: 46px;
  height: 26px;
  border-radius: 10px 10px 5px 5px;
  box-shadow: -14px 22px 0 -11px #fff, 14px 22px 0 -11px #fff;
}

.tire::before {
  width: 42px;
  height: 48px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #0c0c0c, inset 0 0 0 8px #fff, 7px 0 0 -1px #fff;
}

.new-badge {
  position: absolute;
  z-index: 3;
  top: -6px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.content-band {
  display: grid;
  grid-template-columns: 392px minmax(0, 1fr) 452px;
  height: 236px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #08090a, #0b0d0f 48%, #08090a);
}

.content-band > * {
  min-height: 0;
  height: 236px;
  padding: 28px clamp(22px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.why ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why li {
  position: relative;
  margin: 0 0 16px;
  padding-left: 34px;
  color: #ededed;
}

.why li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 12px;
}

.recent-work {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  padding-top: 24px;
  padding-bottom: 14px;
  background:
    radial-gradient(circle at 68% 34%, rgba(224, 0, 0, 0.1), transparent 16rem),
    rgba(255, 255, 255, 0.01);
}

.recent-work h2 {
  margin-bottom: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  min-height: 126px;
}

.work-card {
  display: grid;
  grid-template-rows: 63px auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0.72;
  transform: translateY(0);
  transition: opacity 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.work-card.active {
  opacity: 1;
  border-color: rgba(224, 0, 0, 0.78);
  box-shadow: 0 0 24px rgba(224, 0, 0, 0.18);
}

.work-card img {
  width: 100%;
  height: 63px;
  display: block;
  object-fit: cover;
}

.work-card h3 {
  margin: 10px 8px 3px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.work-card p {
  margin: 0 8px 7px;
  color: #e5e5e5;
  font-size: 10.5px;
  line-height: 1.22;
}

.work-link {
  width: 230px;
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  justify-self: center;
  margin-top: 2px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.28);
}

.work-link .arrow-icon {
  width: 12px;
  height: 12px;
}

.review-carousel {
  min-height: 74px;
}

.review-quote {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 8px;
  align-items: start;
  margin: 0;
  max-width: 370px;
}

.review-quote span {
  color: #ededed;
  font-size: 14px;
  line-height: 1.35;
  display: -webkit-box;
  max-height: calc(1.35em * 3);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.review-quote::before {
  content: "“";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ccc;
  font-size: 30px;
}

.review-meta {
  margin: 9px 0 0;
  color: #dedede;
  font-size: 13px;
}

.review {
  position: relative;
  overflow: hidden;
}

.stars {
  margin: 9px 0 10px;
  color: var(--red);
  font-size: 22px;
}

.author {
  color: #ddd;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.google-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: #f5f5f5;
  font-size: 25px;
  font-weight: 900;
}

.google-rating strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.google-rating p {
  margin: 0;
  color: #ededed;
  line-height: 1.35;
}

.google-link {
  display: inline-flex;
  margin-top: 2px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
}

.google-link-primary {
  position: absolute;
  right: 24px;
  bottom: 16px;
  min-height: 32px;
  align-items: center;
  margin: 0;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #f00000, #b90000);
  box-shadow: 0 12px 24px rgba(224, 0, 0, 0.2);
}

.dots {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.review-dots {
  position: absolute;
  left: 48px;
  bottom: 17px;
  margin-top: 0;
}

.dots span,
.dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  cursor: pointer;
}

.dots .active,
.dots button:hover {
  background: var(--red);
}

.contact-card {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  height: 228px;
  padding-top: 14px;
  padding-bottom: 8px;
  border-right: 0;
  text-align: center;
  background: linear-gradient(135deg, #f00000, #a40000);
  box-shadow: inset 30px 0 48px rgba(0, 0, 0, 0.15);
}

.contact-card > div,
.contact-card > .contact-map-link {
  width: 100%;
}

.contact-map-link {
  display: block;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.contact-map-link:hover,
.contact-map-link:focus-visible {
  background: rgba(0, 0, 0, 0.16);
  outline: 1px solid rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.contact-card h2 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.32;
}

.placeholder-section {
  display: none;
  max-width: 1160px;
  margin: 0 auto;
  padding: 44px 32px;
  border-bottom: 1px solid var(--line);
}

.placeholder-section p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-footer {
  height: 65px;
  min-height: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 58px;
  background: #030303;
}

.footer-brand img {
  width: 78px;
  max-height: 54px;
  object-fit: contain;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer nav a {
  color: #f2f2f2;
  transition: color 0.2s ease;
}

.site-footer nav button {
  padding: 0;
  border: 0;
  color: #f2f2f2;
  background: transparent;
  font: inherit;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-footer nav a:hover,
.site-footer nav a.active,
.site-footer nav button:hover,
.site-footer nav button:focus-visible {
  color: var(--red);
}

.socials {
  display: flex;
  gap: 20px;
}

.socials a {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: #a8a8a8;
  font-weight: 900;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 56px));
  max-height: calc(100vh - 56px);
  overflow: auto;
  padding: 34px 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #090b0d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.72);
}

.booking-modal__close {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

#motowarsztat-booking {
  min-height: 520px;
}

.about-main {
  height: calc(var(--page-height) - var(--header-h) - 65px);
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 52%, rgba(224, 0, 0, 0.09), transparent 22rem),
    linear-gradient(180deg, #060707 0%, #08090a 54%, #030303 100%);
}

.about-hero {
  position: relative;
  height: 445px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.about-copy {
  position: relative;
  z-index: 2;
  width: 560px;
  height: 100%;
  padding: 56px 0 0 66px;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.96) 0 82%, rgba(0, 0, 0, 0) 83% 100%);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.breadcrumb a,
.section-kicker {
  color: var(--red);
}

.about-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 64px;
  line-height: 1;
  text-transform: uppercase;
}

.about-subtitle {
  margin: 14px 0 16px;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}

.red-line {
  display: block;
  width: 40px;
  height: 2px;
  margin-bottom: 16px;
  background: var(--red);
}

.about-copy p:last-child {
  max-width: 405px;
  margin: 0;
  color: #e7e7e7;
  font-size: 16px;
  line-height: 1.55;
}

.about-copy strong,
.owners {
  color: var(--red);
}

.about-hero-photo {
  position: absolute;
  inset: 0 0 0 470px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.58)),
    url("assets/about/workshop-hero.jpg") center / cover no-repeat;
}

.about-stats {
  position: absolute;
  z-index: 3;
  left: 64px;
  right: 74px;
  bottom: 0;
  height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.about-stats > div {
  display: grid;
  grid-template-columns: 58px auto;
  align-content: center;
  column-gap: 16px;
  padding: 0 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.about-stats > div:last-child {
  border-right: 0;
}

.about-stats strong {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.about-stats p {
  grid-column: 2;
  margin: 6px 0 0;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.about-stat-icon {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  position: relative;
  display: block;
}

.about-stat-icon::before,
.about-stat-icon::after {
  content: "";
  position: absolute;
}

.about-stat-icon.award::before {
  inset: 7px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.about-stat-icon.award::after {
  left: 19px;
  bottom: 2px;
  width: 16px;
  height: 16px;
  border-left: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: rotate(45deg);
}

.about-stat-icon.people::before {
  left: 6px;
  right: 6px;
  bottom: 8px;
  height: 24px;
  border: 2px solid var(--red);
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.about-stat-icon.people::after {
  inset: 5px 4px auto;
  height: 20px;
  background:
    radial-gradient(circle at 10px 11px, transparent 0 7px, var(--red) 8px 9px, transparent 10px),
    radial-gradient(circle at 27px 7px, transparent 0 8px, var(--red) 9px 10px, transparent 11px),
    radial-gradient(circle at 44px 11px, transparent 0 7px, var(--red) 8px 9px, transparent 10px);
}

.about-stat-icon.handshake::before {
  left: 7px;
  top: 19px;
  width: 40px;
  height: 18px;
  border: 2px solid var(--red);
  border-radius: 4px;
  transform: rotate(25deg);
}

.about-stat-icon.handshake::after {
  left: 10px;
  top: 18px;
  width: 34px;
  height: 18px;
  border: 2px solid var(--red);
  border-radius: 4px;
  transform: rotate(-25deg);
}

.about-stat-icon.star::before {
  inset: 4px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.about-stat-icon.star::after {
  left: 15px;
  top: 14px;
  width: 24px;
  height: 24px;
  background: var(--red);
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
}

.about-stat-svg {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  display: block;
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-details {
  height: 325px;
  display: grid;
  grid-template-columns: 358px 300px 300px 1fr;
  gap: 20px;
  padding: 18px 64px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-kicker {
  margin: 0 0 6px;
  font-size: 14px;
  text-transform: uppercase;
}

.about-details h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
}

.about-history p:not(.section-kicker):not(.signature) {
  margin: 0;
  color: #d6d6d6;
  font-size: 14px;
  line-height: 1.43;
}

.signature {
  margin: 20px 0 0;
  color: #fff;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 30px;
  line-height: 1;
}

.owners {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

.team-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.36);
}

.team-card img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: contain;
  object-position: center top;
  background: #050505;
}

.team-card h3 {
  margin: 8px 0 0;
  color: var(--red);
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
}

.team-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 8px;
}

.team-values span {
  padding: 0 7px;
  color: #dcdcdc;
  font-size: 10px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.about-workshop {
  padding-left: 32px;
}

.about-workshop h2 {
  max-width: 320px;
  font-size: 27px;
}

.about-workshop ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.about-workshop li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 28px;
  color: #e6e6e6;
  font-size: 14px;
  line-height: 1.35;
}

.about-workshop li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 11px;
}

.process-strip {
  height: 105px;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 64px;
  background: rgba(0, 0, 0, 0.44);
}

.process-strip h2 {
  margin: 0;
  color: var(--red);
  font-size: 16px;
  text-transform: uppercase;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-steps div {
  position: relative;
  min-height: 66px;
  padding-left: 38px;
}

.process-steps b {
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 12px;
}

.process-steps strong {
  display: block;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.process-steps span {
  display: block;
  margin-top: 5px;
  color: #d2d2d2;
  font-size: 11px;
  line-height: 1.3;
}

.offer-page-main {
  height: calc(var(--page-height) - var(--header-h) - 65px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 78%, rgba(224, 0, 0, 0.1), transparent 26rem),
    linear-gradient(180deg, #060708 0%, #08090a 52%, #030303 100%);
}

.offer-hero-page {
  position: relative;
  height: 276px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 33%, rgba(0, 0, 0, 0.36) 62%, rgba(0, 0, 0, 0.16) 83%, rgba(0, 0, 0, 0.62) 100%),
    url("assets/offer-hero-bg.jpg") right center / cover no-repeat;
}

.offer-hero-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 48%, rgba(224, 0, 0, 0.18), transparent 24rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 164px);
}

.offer-hero-copy {
  position: relative;
  z-index: 2;
  width: 560px;
  height: 100%;
  padding: 58px 0 0 60px;
  background: linear-gradient(104deg, rgba(0, 0, 0, 0.95) 0 82%, rgba(0, 0, 0, 0) 83% 100%);
}

.offer-hero-copy .eyebrow {
  margin-bottom: 13px;
  font-size: 20px;
}

.offer-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 48px;
  line-height: 1.08;
  text-transform: uppercase;
}

.offer-hero-copy .red-line {
  margin-top: 14px;
  margin-bottom: 13px;
}

.offer-hero-copy p:last-child {
  max-width: 430px;
  margin: 0;
  color: #f0f0f0;
  font-size: 19px;
  line-height: 1.35;
}

.offer-hero-car {
  display: none;
}

.offer-services-panel {
  height: 306px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px 54px 13px;
  background:
    radial-gradient(circle at 46% 28%, rgba(255, 255, 255, 0.04), transparent 22rem),
    linear-gradient(180deg, rgba(13, 16, 18, 0.96), rgba(5, 6, 7, 0.98));
}

.offer-service-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 16px 16px 16px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.18));
}

.offer-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(224, 0, 0, 0.12), transparent 13rem);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.offer-service-card:hover::before {
  opacity: 1;
}

.offer-card-icon {
  position: relative;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  align-self: start;
  margin-top: 0;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: linear-gradient(135deg, var(--red), #7c0000);
}

.offer-card-icon::before {
  content: "";
  position: absolute;
  inset: 2px;
  clip-path: inherit;
  background: #0a0c0e;
}

.offer-card-icon .hex-icon {
  width: 84px;
  height: 84px;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: #0b0d0f;
}

.offer-card-icon img {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: block;
  object-fit: contain;
}

.service-svg,
.process-svg,
.stat-svg {
  display: block;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-svg {
  width: 58px;
  height: 58px;
  color: #fff;
}

.offer-service-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.12;
  text-transform: uppercase;
}

.offer-service-card p {
  margin: 0;
  color: #e1e1e1;
  font-size: 14px;
  line-height: 1.45;
}

.wrench::before {
  width: 42px;
  height: 14px;
  border: 3px solid #fff;
  border-left: 0;
  border-radius: 0 12px 12px 0;
  transform: rotate(-45deg);
  box-shadow: -20px 12px 0 -8px #fff;
}

.phone::before {
  width: 24px;
  height: 38px;
  border: 3px solid #fff;
  border-radius: 6px;
  transform: rotate(-24deg);
}

.checklist::before {
  width: 32px;
  height: 42px;
  border: 3px solid #fff;
  border-radius: 4px;
  background:
    linear-gradient(#fff, #fff) 9px 12px / 15px 2px no-repeat,
    linear-gradient(#fff, #fff) 9px 22px / 15px 2px no-repeat,
    linear-gradient(#fff, #fff) 9px 32px / 15px 2px no-repeat;
}

.offer-bottom-panel {
  height: 270px;
  display: grid;
  grid-template-columns: 450px minmax(0, 1fr) 416px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #08090a, #0c0e10 48%, #070707);
}

.offer-bottom-panel > article {
  min-height: 0;
  padding: 15px 46px;
  border-right: 1px solid var(--line);
}

.offer-bottom-panel h2 {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 18px;
  line-height: 1.18;
  text-transform: uppercase;
}

.offer-bottom-panel h2 span {
  color: #fff;
}

.offer-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 10px;
}

.offer-stat-grid div {
  min-height: 126px;
  display: grid;
  grid-template-rows: 42px 28px 30px 18px;
  align-content: center;
  align-items: center;
  justify-items: center;
  gap: 3px;
  padding: 0 6px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.offer-stat-grid div:last-child {
  border-right: 0;
}

.offer-stat-grid strong {
  color: #fff;
  font-size: 25px;
  line-height: 1;
}

.offer-stat-grid .stat-label {
  color: #dcdcdc;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
}

.offer-stat-grid b {
  color: var(--red);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 2px;
}

.offer-stat-grid div:not(:first-child)::after {
  content: "";
  width: 1px;
  height: 18px;
  display: block;
}

.offer-stats-card {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.offer-stats-card h2 {
  text-align: center;
}

.stat-svg {
  width: 42px;
  height: 42px;
  color: var(--red);
}

.stat-img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.offer-process-card {
  overflow: hidden;
}

.offer-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: start;
  text-align: center;
}

.offer-process-steps div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.offer-process-steps div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -16px;
  width: 17px;
  height: 2px;
  background: var(--red);
}

.offer-process-steps b {
  position: absolute;
  top: -4px;
  right: 24px;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 12px;
}

.process-hex {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: rgba(255, 255, 255, 0.46);
}

.process-hex::before {
  content: "";
  position: absolute;
  inset: 2px;
  clip-path: inherit;
  background: #0a0c0e;
}

.process-hex .process-svg {
  width: 68px;
  height: 68px;
  padding: 16px;
  color: #fff;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: #0b0d0f;
}

.process-hex img {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.offer-process-steps strong {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.offer-process-steps p {
  margin: 0;
  color: #d6d6d6;
  font-size: 10.5px;
  line-height: 1.35;
}

.offer-booking-card {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.1), transparent 10rem),
    linear-gradient(135deg, #8d0000 0%, #e00000 58%, #7c0000 100%);
  box-shadow:
    inset 28px 0 44px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.offer-booking-card .calendar-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
}

.offer-booking-card h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 24px;
}

.offer-booking-card p {
  max-width: 310px;
  margin: 0 0 20px;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.offer-booking-card .btn {
  min-height: 46px;
  padding: 0 26px;
  color: #fff;
  background: rgba(0, 0, 0, 0.82);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-main {
  height: calc(var(--page-height) - var(--header-h) - 65px);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 84%, rgba(224, 0, 0, 0.12), transparent 23rem),
    linear-gradient(180deg, #050606 0%, #090a0b 54%, #030303 100%);
}

.contact-hero {
  position: relative;
  height: 465px;
  padding: 52px 58px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 31%, rgba(0, 0, 0, 0.22) 67%, rgba(0, 0, 0, 0.46) 100%),
    url("assets/contact-hero-bg.jpg") right top / auto 300px no-repeat,
    #050505;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0 68%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 82% 30%, rgba(224, 0, 0, 0.12), transparent 24rem);
  pointer-events: none;
}

.contact-hero-copy,
.contact-info-grid {
  position: relative;
  z-index: 1;
}

.contact-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 62px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-hero-copy .red-line {
  width: 90px;
  margin: 18px 0 18px;
}

.contact-hero-copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 29px;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-hero-copy h2 span {
  color: var(--red);
}

.contact-hero-copy p {
  margin: 0 0 8px;
  color: #e9e9e9;
  font-size: 16px;
  line-height: 1.45;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.contact-info-card {
  position: relative;
  min-height: 166px;
  display: block;
  padding: 24px 26px 16px 100px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(8, 10, 11, 0.82);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.025);
}

.contact-card-icon {
  position: absolute;
  top: 15px;
  left: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: transparent;
}

.contact-card-icon img {
  width: 76px;
  height: 76px;
  display: block;
  object-fit: contain;
}

.contact-info-card h2 {
  margin: 0 0 13px;
  color: var(--red);
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-info-card a,
.contact-info-card p {
  display: block;
  margin: 0 0 7px;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.contact-info-card a {
  font-size: 24px;
  font-weight: 800;
}

.company-data-card {
  padding-top: 19px;
  padding-bottom: 12px;
}

.company-data-card h2 {
  margin-bottom: 10px;
}

.company-data-card p {
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.12;
}

.company-data-card .contact-company-ids {
  color: #d7d7d7;
  font-size: 11px;
  white-space: nowrap;
}

.hours-card {
  padding-left: 100px;
}

.hours-card h2 {
  margin-bottom: 10px;
}

.hours-card dl {
  margin: 0;
  max-width: 280px;
}

.hours-card dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
  line-height: 1.12;
}

.hours-card .closed {
  color: var(--red);
}

.contact-bottom {
  height: 410px;
  display: grid;
  grid-template-columns: 710px 1fr;
  gap: 28px;
  padding: 18px 58px 20px;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.98), rgba(8, 9, 10, 0.96)),
    radial-gradient(circle at 88% 45%, rgba(224, 0, 0, 0.1), transparent 18rem);
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}

.section-title-row h2 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.section-title-row h2::first-letter {
  color: var(--red);
}

.section-title-row span {
  width: 54px;
  height: 2px;
  background: var(--red);
}

.contact-map-panel,
.visit-reasons {
  min-height: 0;
}

.map-link {
  position: relative;
  height: 335px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: #101214;
}

.map-link iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  pointer-events: none;
  filter: saturate(0.84) contrast(1.02);
}

.map-open-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 12px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.map-open-label span {
  padding: 8px 12px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.72);
}

.map-open-label:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -3px;
}

.visit-reasons {
  position: relative;
  padding: 0 0 0 22px;
  overflow: hidden;
}

.visit-reasons::after {
  content: none;
}

.visit-reasons ul {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 42px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.visit-reasons li {
  position: relative;
  min-height: 31px;
  display: flex;
  align-items: center;
  padding-left: 48px;
  color: #fff;
  font-size: 16px;
}

.visit-reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 31px;
  height: 31px;
  background: url("assets/contact-icons/contact-check.png") center / contain no-repeat;
}

.visit-reasons li::after {
  content: none;
}

.contact-booking-button {
  position: relative;
  z-index: 1;
  left: 100%;
  transform: translateX(-100%);
  width: 330px;
  min-height: 50px;
  justify-content: center;
}

.contact-booking-button:hover {
  transform: translate(-100%, -2px);
}

.pricing-main {
  height: calc(var(--page-height) - var(--header-h) - 65px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 88%, rgba(224, 0, 0, 0.1), transparent 26rem),
    linear-gradient(180deg, #050505 0%, #08090a 56%, #030303 100%);
}

.pricing-hero {
  position: relative;
  height: 206px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.22) 70%, rgba(0, 0, 0, 0.6) 100%),
    url("assets/pricing-hero-bg.jpg") right center / auto 206px no-repeat,
    #050505;
}

.pricing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.pricing-hero-copy {
  position: relative;
  z-index: 1;
  width: 710px;
  padding: 38px 0 0 58px;
}

.pricing-hero-copy .red-line {
  width: 136px;
  margin: 0 0 20px 126px;
}

.pricing-hero-copy h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 61px;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-hero-copy p {
  margin: 0 0 8px;
  color: #f2f2f2;
  font-size: 17px;
  line-height: 1.25;
}

.pricing-grid {
  height: 584px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 14px;
  padding: 0 52px;
  margin-top: 0;
  align-content: center;
}

.pricing-card {
  position: relative;
  min-height: 266px;
  padding: 17px 22px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(8, 10, 11, 0.78);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.025);
}

.pricing-card-head {
  display: block;
  height: 52px;
  margin-bottom: 4px;
  padding-left: 62px;
}

.pricing-card-head img {
  position: absolute;
  top: 16px;
  left: 18px;
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
}

.pricing-card h2 {
  margin: 0;
  padding-top: 2px;
  color: #fff;
  font-size: 16px;
  line-height: 1.14;
  text-transform: uppercase;
}

.pricing-card:nth-child(5) h2,
.pricing-card:nth-child(6) h2 {
  font-size: 14.4px;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-height: 22px;
  color: #f0f0f0;
  font-size: 12.8px;
  line-height: 1.16;
}

.price-list li::before {
  content: none;
}

.price-list li span {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.price-list li span::after {
  content: "";
  flex: 1 1 auto;
  min-width: 20px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.28);
  transform: translateY(2px);
}

.price-list li b {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 12.8px;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-list li b small {
  color: #f1f1f1;
  font-size: 1em;
  font-weight: 700;
  text-transform: lowercase;
}

.price-list li b.price-lower {
  text-transform: lowercase;
}

.price-list li.price-gap {
  margin-top: 9px;
}

.price-list li em {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
}

.pricing-card-note {
  margin: 10px 0 0;
  color: #f1f1f1;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.22;
}

.pricing-card-note em {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.no-prices .price-list li {
  padding-right: 0;
}

.pricing-note {
  height: 78px;
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 22px;
  margin: 0 52px;
  padding: 0 28px;
  border: 1px solid var(--red);
  border-radius: 5px;
  background: rgba(8, 9, 10, 0.72);
}

.pricing-note img {
  width: 62px;
  height: 62px;
  display: block;
  object-fit: contain;
}

.pricing-note p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

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

.gallery-main {
  height: calc(var(--page-height) - var(--header-h) - 65px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #070809;
  background:
    radial-gradient(circle at 50% 90%, rgba(224, 0, 0, 0.12), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #08090a 56%, #030303 100%);
}

.gallery-main::-webkit-scrollbar {
  width: 9px;
}

.gallery-main::-webkit-scrollbar-track {
  background: #070809;
}

.gallery-main::-webkit-scrollbar-thumb {
  border: 2px solid #070809;
  border-radius: 5px;
  background: var(--red);
}

.gallery-hero {
  position: relative;
  height: 222px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.85) 43%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.62) 100%),
    url("assets/pricing-hero-bg.jpg") right center / auto 222px no-repeat,
    #050505;
}

.gallery-hero-copy {
  position: relative;
  z-index: 1;
  width: 720px;
  padding: 38px 0 0 58px;
}

.gallery-hero-copy .red-line {
  width: 96px;
  margin: 0 0 20px 116px;
}

.gallery-hero-copy h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 55px;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-hero-copy p {
  margin: 0 0 7px;
  color: #f2f2f2;
  font-size: 17px;
  line-height: 1.26;
}

.gallery-filter {
  position: sticky;
  top: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 58px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 4, 5, 0.96);
  backdrop-filter: blur(10px);
}

.gallery-filter button {
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  color: #f3f3f3;
  background: rgba(5, 6, 7, 0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.gallery-filter button:hover,
.gallery-filter button.active {
  color: var(--red);
  border-color: var(--red);
  background: rgba(224, 0, 0, 0.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 16px;
  padding: 0 58px 14px;
}

.gallery-card {
  height: 219px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: rgba(8, 10, 11, 0.84);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.025);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  border-color: rgba(224, 0, 0, 0.85);
  box-shadow: 0 0 22px rgba(224, 0, 0, 0.16);
  transform: translateY(-2px);
  outline: none;
}

.gallery-card > img {
  width: 100%;
  height: 146px;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.86);
}

.gallery-card > div {
  position: relative;
  min-height: 73px;
  padding: 14px 14px 10px 72px;
  background: linear-gradient(180deg, rgba(8, 9, 10, 0.78), rgba(3, 3, 3, 0.96));
}

.gallery-card-icon {
  position: absolute;
  left: 16px;
  top: 12px;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.gallery-card h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-card p {
  margin: 0;
  color: #f2f2f2;
  font-size: 12.5px;
  line-height: 1.15;
}

.gallery-cta {
  height: 88px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 190px 250px;
  align-items: center;
  gap: 18px;
  margin: 4px 58px 18px;
  padding: 0 42px 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: rgba(8, 10, 11, 0.78);
}

.gallery-cta-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}

.gallery-cta-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.gallery-cta p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.28;
}

.gallery-cta-phones {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  border-left: 1px solid rgba(229, 0, 0, 0.55);
}

.gallery-cta-phones a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.gallery-cta-phones img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  object-fit: contain;
}

.gallery-cta-phones a:hover,
.gallery-cta-phones a:focus-visible {
  color: var(--red);
}

.gallery-cta .btn {
  min-height: 54px;
  justify-self: end;
  min-width: 245px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 38px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(9px);
}

.gallery-lightbox__panel {
  position: relative;
  width: min(1180px, calc(100vw - 120px));
  height: min(820px, calc(100vh - 90px));
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 68px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #050607;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.72);
}

.gallery-lightbox__panel > img {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-lightbox__panel > p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(5, 6, 7, 0.88);
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
  color: var(--red);
  border-color: var(--red);
  outline: none;
}

.gallery-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  font-size: 28px;
}

.gallery-lightbox__nav {
  width: 54px;
  height: 72px;
  justify-self: center;
  font-size: 48px;
  line-height: 1;
}

.gallery-lightbox__nav--prev {
  grid-column: 1;
  grid-row: 1;
}

.gallery-lightbox__nav--next {
  grid-column: 3;
  grid-row: 1;
}

/* LPG page */
.lpg-main {
  height: calc(var(--page-height) - var(--header-h) - 65px);
  display: grid;
  grid-template-rows: 232px 310px 235px 98px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 42%, rgba(224, 0, 0, 0.08), transparent 34%),
    #050607;
}

.lpg-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, #030303 0%, #030303 41%, rgba(3, 3, 3, 0.9) 47%, rgba(3, 3, 3, 0.55) 58%, rgba(3, 3, 3, 0.18) 68%, rgba(3, 3, 3, 0.03) 78%),
    url("assets/lpg/lpg-direct-hero-v2.jpg") right 40% / 840px 435px no-repeat,
    #030303;
}

.lpg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
}

.lpg-hero-copy {
  position: relative;
  z-index: 1;
  width: 760px;
  padding: 36px 54px 0;
}

.lpg-hero-copy h1 {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin: 0;
  font-size: 64px;
  line-height: 1.08;
  text-transform: uppercase;
}

.lpg-hero-copy h1 span {
  color: var(--red);
  font-size: 43px;
}

.lpg-hero-copy .red-line {
  width: 150px;
  height: 3px;
  display: block;
  margin: 12px 0 15px;
  background: var(--red);
}

.lpg-hero-copy > p {
  margin: 0;
  color: #ededed;
  font-size: 16px;
  line-height: 1.45;
}

.lpg-hero-copy .lpg-lead {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 17px;
}

.lpg-lead strong {
  text-transform: uppercase;
}

.lpg-lead b {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--red);
}

.lpg-overview {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 20px;
  min-height: 0;
  padding: 14px 54px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(7, 9, 10, 0.98), rgba(9, 11, 12, 0.9));
}

.lpg-story {
  min-width: 0;
  padding-right: 8px;
}

.lpg-story h2,
.lpg-benefits h2,
.lpg-certificates h2 {
  margin: 0;
  color: #f5f5f5;
  font-size: 17px;
  line-height: 1.2;
  text-transform: uppercase;
}

.lpg-story h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 8px;
  background: var(--red);
}

.lpg-story > p {
  margin: 7px 0 7px;
  color: #d9d9d9;
  font-size: 12px;
  line-height: 1.28;
}

.lpg-story ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lpg-story li {
  position: relative;
  padding-left: 27px;
  color: #eeeeee;
  font-size: 11.7px;
  line-height: 1.22;
}

.lpg-story li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
}

.lpg-story li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

.lpg-story li strong,
.lpg-benefits h2 span {
  color: var(--red);
}

.lpg-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-height: 0;
}

.lpg-feature-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(14, 16, 17, 0.98), rgba(6, 7, 8, 0.96));
}

.lpg-feature-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.lpg-feature-card h2 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
}

.lpg-feature-card p {
  margin: 0;
  color: #dedede;
  font-size: 13px;
  line-height: 1.38;
}

.lpg-showcase {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  min-height: 0;
  border-bottom: 1px solid var(--line);
}

.lpg-benefits,
.lpg-certificates {
  min-width: 0;
  padding: 14px 28px;
}

.lpg-benefits {
  border-right: 1px solid var(--line);
}

.lpg-benefit-grid {
  height: 142px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
}

.lpg-benefit-grid > div {
  min-width: 0;
  display: grid;
  grid-template-rows: 78px auto auto;
  justify-items: center;
  align-content: start;
  padding: 0 8px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.lpg-benefit-grid > div:last-child {
  border-right: 0;
}

.lpg-benefit-grid img {
  width: 86px;
  height: 72px;
  object-fit: contain;
}

.lpg-benefit-grid strong {
  font-size: 11px;
  line-height: 1.15;
  text-transform: uppercase;
}

.lpg-benefit-grid p {
  margin: 4px 0 0;
  color: #d1d1d1;
  font-size: 10px;
  line-height: 1.22;
}

.lpg-certificates h2 {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lpg-certificates h2::after {
  content: "";
  width: 58px;
  height: 2px;
  background: var(--red);
}

.lpg-certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 9px;
}

.lpg-certificate-grid figure {
  min-width: 0;
  height: 176px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: #090a0b;
}

.lpg-certificate-grid img {
  width: 100%;
  height: 130px;
  display: block;
  object-fit: cover;
}

.lpg-certificate-grid figure:nth-child(2) img,
.lpg-certificate-grid figure:nth-child(3) img,
.lpg-certificate-grid figure:nth-child(4) img {
  object-fit: contain;
  object-position: center top;
  background: #111;
}

.lpg-certificate-grid figcaption {
  height: 45px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  color: #f2f2f2;
  font-size: 10px;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
}

.lpg-booking-strip {
  align-self: center;
  height: 78px;
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr) 242px;
  align-items: center;
  gap: 18px;
  margin: 0 28px;
  padding: 0 18px 0 24px;
  border: 1px solid var(--red);
  border-radius: 5px;
  background: linear-gradient(90deg, #070707, #0d0505 70%, rgba(78, 0, 0, 0.45));
}

.lpg-booking-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lpg-booking-title .calendar-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-color: var(--red);
}

.lpg-booking-title .calendar-icon::before {
  border-color: var(--red);
}

.lpg-booking-title .calendar-icon::after {
  background: radial-gradient(circle, var(--red) 1.5px, transparent 2px) 0 0 / 9px 8px;
}

.lpg-booking-title strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.lpg-booking-title p {
  margin: 5px 0 0;
  color: #d1d1d1;
  font-size: 11px;
}

.lpg-booking-contacts {
  min-width: 0;
  display: grid;
  grid-template-columns: 190px 1px 190px 1px minmax(190px, 1fr);
  align-items: center;
  gap: 14px;
}

.lpg-booking-phone,
.lpg-booking-address {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.lpg-booking-phone {
  font-size: 20px;
  font-weight: 800;
}

.lpg-booking-phone img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
}

.lpg-booking-address {
  font-size: 13px;
  line-height: 1.35;
}

.lpg-booking-address img {
  width: 32px;
  height: 36px;
  flex: 0 0 32px;
  object-fit: contain;
}

.lpg-booking-divider {
  width: 1px;
  height: 36px;
  background: rgba(224, 0, 0, 0.75);
}

.lpg-booking-phone:hover,
.lpg-booking-phone:focus-visible,
.lpg-booking-address:hover,
.lpg-booking-address:focus-visible {
  color: var(--red);
}

.lpg-booking-strip .btn {
  min-height: 54px;
  justify-self: stretch;
  padding: 0 20px;
}

@media (max-width: 1220px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 32px 24px;
    background: rgba(0, 0, 0, 0.97);
    border-bottom: 1px solid var(--line);
  }

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

  .main-nav a {
    padding: 15px 0;
  }

  .header-clock {
    justify-self: end;
  }

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

  .hero-copy {
    max-width: 720px;
    padding-right: 32px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-media {
    min-height: 310px;
  }

  .hero-car {
    right: 150px;
    width: min(720px, 78vw);
  }

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

  .content-band {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 76px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 0 18px;
  }

  .brand img {
    width: 84px;
  }

  .header-clock {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 38px 22px 26px;
  }

  .eyebrow {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 37px;
    line-height: 1.03;
  }

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

  .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 230px;
  }

  .hero-car {
    right: 16px;
    bottom: -4px;
    width: 92vw;
  }

  .hero-logo-panel {
    display: none;
  }

  .offer-strip {
    padding: 24px 18px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 18px 12px;
  }

  .service-item {
    min-height: 142px;
  }

  .content-band {
    grid-template-columns: 1fr;
  }

  .content-band > * {
    min-height: auto;
    padding: 28px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .calendar-card {
    grid-template-columns: 1fr;
    max-width: none;
  }

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

  .time-list button {
    min-height: 38px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 24px 18px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 14px 22px;
  }
}

/* Privacy and cookie consent */
.privacy-main {
  height: calc(var(--page-height) - var(--header-h) - 65px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 25%, rgba(224, 0, 0, 0.09), transparent 25rem),
    linear-gradient(180deg, #060707 0%, #080a0b 58%, #030303 100%);
}

.privacy-hero {
  position: relative;
  height: 218px;
  display: flex;
  align-items: center;
  padding: 22px 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--red);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0 44%, rgba(0, 0, 0, 0.6) 66%, rgba(0, 0, 0, 0.18)),
    url("assets/pricing-hero-bg.jpg") 88% center / auto 280px no-repeat,
    #050505;
}

.privacy-hero > div {
  position: relative;
  z-index: 1;
  transform: translateY(24px);
}

.privacy-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 52px;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.privacy-hero h1 span {
  color: var(--red);
}

.privacy-hero p {
  max-width: 650px;
  margin: 13px 0 0;
  color: #d9d9d9;
  font-size: 14px;
}

.privacy-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: #d8d8d8;
  font-size: 12px;
}

.privacy-breadcrumbs a {
  color: var(--red);
}

.privacy-content {
  height: 657px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px 28px 16px;
}

.privacy-panel {
  min-width: 0;
  overflow: hidden;
  padding: 18px 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 54%),
    rgba(9, 11, 12, 0.95);
  box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.02);
}

.privacy-panel > h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
}

.privacy-panel > h2 strong {
  color: var(--red);
}

.privacy-heading-icon {
  color: var(--red);
  font-size: 29px;
  line-height: 1;
}

.privacy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.privacy-panel section {
  margin-bottom: 12px;
}

.privacy-panel h3 {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 12px;
  line-height: 1.25;
}

.privacy-panel p,
.privacy-panel li {
  color: #d5d5d5;
  font-size: 10.8px;
  line-height: 1.37;
}

.privacy-panel p {
  margin: 0 0 6px;
}

.privacy-panel ul {
  margin: 0;
  padding-left: 16px;
}

.privacy-panel li {
  margin-bottom: 3px;
}

.privacy-panel a {
  color: #fff;
  font-weight: 700;
}

.cookie-type {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  margin: 0 0 9px;
}

.cookie-type > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.cookie-type b {
  display: block;
  margin-bottom: 2px;
  color: var(--red);
  font-size: 11px;
}

.cookie-type p {
  margin: 0;
}

.cookie-type.is-disabled {
  opacity: 0.72;
}

.privacy-settings-button {
  min-height: 34px;
  margin-top: 5px;
  padding: 0 15px;
  border: 1px solid var(--red);
  border-radius: 3px;
  color: #fff;
  background: rgba(224, 0, 0, 0.12);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.privacy-version {
  color: #fff !important;
  font-weight: 700;
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  pointer-events: none;
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(3px);
  pointer-events: auto;
}

.cookie-consent__banner {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: min(1120px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 20px 22px;
  transform: translateX(-50%);
  border: 1px solid rgba(224, 0, 0, 0.72);
  border-radius: 6px;
  background: rgba(8, 9, 10, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
  pointer-events: auto;
}

.cookie-consent__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.cookie-consent__copy h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
}

.cookie-consent__copy p {
  max-width: 650px;
  margin: 0;
  color: #cfcfcf;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-consent__copy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: 190px;
  gap: 8px;
}

.cookie-consent button,
.cookie-settings-modal button,
.consent-placeholder button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  color: #fff;
  background: #111315;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-consent button[data-consent-accept],
.cookie-settings-modal button[data-consent-save] {
  border-color: var(--red);
  background: var(--red);
}

.cookie-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 5100;
  display: none;
  place-items: center;
  padding: 22px;
}

.cookie-settings-modal.is-visible {
  display: grid;
}

.cookie-settings-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(5px);
}

.cookie-settings-modal__panel {
  position: relative;
  z-index: 1;
  width: min(610px, calc(100vw - 30px));
  max-height: calc(100dvh - 30px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 26px;
  border: 1px solid rgba(224, 0, 0, 0.75);
  border-radius: 6px;
  background: #090b0c;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.86);
}

.cookie-settings-modal__panel h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.cookie-settings-modal__panel > p {
  margin: 0 0 18px;
  color: #cfcfcf;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-setting {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-setting > div {
  min-width: 0;
}

.cookie-setting h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.cookie-setting p {
  margin: 0;
  color: #bdbdbd;
  font-size: 12px;
  line-height: 1.4;
}

.cookie-setting__status {
  color: #8f8f8f;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.cookie-switch {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 26px;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
}

.cookie-switch__track {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 26px;
  background: #1a1c1e;
  cursor: pointer;
}

.cookie-switch__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ddd;
  transition: transform 0.18s ease, background 0.18s ease;
}

.cookie-switch input:checked + .cookie-switch__track {
  border-color: var(--red);
  background: rgba(224, 0, 0, 0.28);
}

.cookie-switch input:checked + .cookie-switch__track::after {
  transform: translateX(22px);
  background: var(--red);
}

.cookie-settings-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 20px;
}

.consent-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #e5e5e5;
  background:
    radial-gradient(circle at 50% 42%, rgba(224, 0, 0, 0.16), transparent 12rem),
    #0b0d0e;
  text-align: center;
}

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

.consent-placeholder p {
  max-width: 370px;
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
}

.booking-consent-message {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
}

.booking-consent-message div {
  max-width: 480px;
}

.booking-consent-message h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.booking-consent-message p {
  margin: 0 0 18px;
  color: #cfcfcf;
  line-height: 1.5;
}
