@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700&family=Barlow:wght@400;500&display=swap');

body[data-site-style="garage"] {
  --black: #0a0a0a;
  --dark: #111111;
  --steel: #1a1a1a;
  --red: #ff2a2a;
  --blue: #31b2ff;
  --vio: #6c5cff;
  --orange: #ff2a2a;
  --orange-hot: #31b2ff;
  --chrome: #C8C8C8;
  --white: #F2F2F0;
  --muted: #888;
  --border: rgba(255,255,255,0.07);
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

body[data-site-style="garage"] *,
body[data-site-style="garage"] *::before,
body[data-site-style="garage"] *::after {
  box-sizing: border-box;
}

body[data-site-style="garage"]::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
}

body[data-site-style="garage"] header,
body[data-site-style="garage"] .mnav,
body[data-site-style="garage"] .toTop {
  display: none !important;
}

body[data-site-style="garage"] .cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 24px;
  display: flex;
  justify-content: center;
  padding: 0 18px;
  z-index: 1400;
}

body[data-site-style="garage"] .cookie-consent__content {
  background: rgba(7, 7, 7, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.65);
}

body[data-site-style="garage"] .wrap {
  max-width: none;
  padding: 0;
}

body[data-site-style="garage"] main {
  padding: 0;
  background: var(--black);
}

body[data-site-style="garage"] main::before {
  content: '';
  display: block;
  height: 38px;
}

.garage-theme {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.garage {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 48px;
  min-height: 78px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.garage .nav-logo {
  display:flex;
  align-items:center;
  gap:0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  flex: 0 0 auto;
  align-self: center;
}

.garage .nav-logo img {
  width: auto;
  height: auto;
  max-width: 220px;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(255,42,42,.2)) drop-shadow(0 18px 40px rgba(49,178,255,.18));
  display: block;
}


.garage .nav-links {
  display: flex;
  gap: 10px;
  list-style: none;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.garage .nav-links::-webkit-scrollbar {
  display: none;
}

.garage .nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--chrome);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 40px;
  white-space: nowrap;
}

.garage .nav-links a:hover {
  color: var(--white);
  border-color: rgba(49,178,255,0.28);
  background: rgba(49,178,255,0.10);
  transform: translateY(-1px);
}

.garage .nav-links a::after {
  display:none;
}

.garage .nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

.garage-burger {
  display: none;
}

.garage-menu {
  display: none;
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .garage {
    padding: 10px 24px;
    gap: 14px;
  }

  .garage .nav-logo img {
    max-width: 180px;
    max-height: 48px;
  }

  .garage .nav-links {
    gap: 8px;
  }

  .garage .nav-links a {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 1.6px;
    min-height: 34px;
  }

  .garage .nav-phone {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .garage .btn-nav {
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 1024px) {
  .garage {
    padding: 8px 14px;
    min-height: 60px;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
  }

  .garage .nav-logo {
    order: 1;
    flex: 0 0 auto;
  }

  .garage .nav-cta {
    order: 2;
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .garage .nav-links,
  .garage .nav-cta-desktop {
    display: none;
  }

  .garage-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    padding: 7px 12px;
    border-radius: 14px;
  }

  .garage-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(5,5,6,0.72);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
  }

  .garage-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .garage-menu__panel {
    position: absolute;
    top: 68px;
    left: 12px;
    right: 12px;
    border-radius: 22px;
    background: rgba(10,10,10,0.98);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 28px 80px rgba(0,0,0,.55);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .garage-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .garage-menu__close {
    width: 38px;
    height: 38px;
    padding: 0;
    min-height: 38px;
    border-radius: 50%;
    border-color: rgba(255,42,42,.55);
    background: rgba(255,42,42,.14);
    color: var(--white);
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
  }

  .garage-menu__close:hover {
    border-color: rgba(255,42,42,.8);
    background: rgba(255,42,42,.24);
    color: #fff;
    transform: translateY(-1px);
  }

  .garage-menu__links {
    display: grid;
    gap: 8px;
  }

  .garage-menu__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    color: var(--white);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
  }

  .garage-menu__links a:hover {
    border-color: rgba(49,178,255,.24);
    background: rgba(49,178,255,.10);
  }

  .garage-menu__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }

  .garage .nav-logo img {
    max-width: 150px;
    max-height: 40px;
  }

  .garage .nav-phone {
    font-size: 12px;
    letter-spacing: .8px;
    white-space: nowrap;
    padding: 0;
  }

  .garage .btn-nav {
    padding: 7px 14px;
    font-size: 11px;
    letter-spacing: 1.3px;
  }
}

@media (max-width: 560px) {
  .garage {
    padding: 7px 12px;
    min-height: 56px;
    gap: 6px 8px;
  }

  .garage .nav-logo img {
    max-width: 128px;
    max-height: 34px;
  }

  .garage .nav-phone {
    font-size: 11px;
    letter-spacing: .6px;
  }

  .garage .btn-nav {
    padding: 6px 12px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .garage-burger {
    min-width: 38px;
    padding: 6px 10px;
  }

  .garage-menu__panel {
    left: 8px;
    right: 8px;
    top: 60px;
    padding: 14px;
  }

  .garage-menu__links a {
    padding: 11px 12px;
    font-size: 12px;
  }
}

.garage .nav-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1.6px;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 0;
}

.garage .btn-nav {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid rgba(255,42,42,.42);
  color: var(--orange);
  background: rgba(255,42,42,.08);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.garage .btn-nav:hover {
  background: var(--orange);
  color: var(--black);
}

.garage-theme .hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 500px);
  position: relative;
  padding: 120px 64px 80px;
  gap: 24px;
  align-items: center;
}

.garage-theme .hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.garage-theme .hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.garage-theme .hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--orange);
}

.garage-theme h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 32px;
}

.garage-theme .hero-title {
  max-width: 100%;
}

@media (max-width: 1500px) and (min-width: 1251px) {
  .garage-theme h1 {
    font-size: clamp(64px, 6.4vw, 104px);
  }

  .garage-theme .hero-title {
    max-width: 10ch;
  }
}

@media (max-width: 1200px) and (min-width: 561px) {
  .garage-theme .hero-title {
    max-width: 11ch;
    text-wrap: balance;
  }
}

.garage-theme .hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--chrome);
  max-width: 400px;
  margin-bottom: 48px;
}

@media (max-width: 560px) {
  .garage-theme .hero {
    padding: 100px 24px 60px;
  }

  .garage-theme .hero-left {
    padding: 0;
    align-items: flex-start;
  }

  .garage-theme h1 {
    font-size: clamp(28px, 7.4vw, 42px);
    line-height: 1.04;
    margin-bottom: 20px;
    text-wrap: balance;
  }

  .garage-theme .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .garage-theme .hero-desc {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .garage-theme .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }

  .garage-theme .hero-actions .btn {
    flex: 1;
    min-width: 140px;
    max-width: calc(50% - 6px);
  }

  .garage-theme .hero-left {
    gap: 10px;
  }
}

@media (max-width: 400px) {
  .garage-theme h1 {
    font-size: clamp(24px, 8.4vw, 34px);
    line-height: 1.02;
    letter-spacing: 1px;
  }
}

.garage-theme .hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.garage-theme .btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--orange);
  color: var(--black);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.garage-theme .btn-primary:hover {
  background: var(--orange-hot);
  transform: translateY(-1px);
}

.garage-theme .btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  background: transparent;
  color: var(--chrome);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.garage-theme .btn-ghost:hover {
  border-color: var(--chrome);
  color: var(--white);
}

.garage-theme .hero-stats {
  margin-top: 64px;
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.garage-theme .stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--white);
  line-height: 1;
}

.garage-theme .stat-num span {
  color: var(--orange);
}

.garage-theme .stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.garage-theme .hero-right {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  justify-self: end;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.garage-theme .hero-visual-bg {
  position: relative;
  width: min(100%, 440px);
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
}

.garage-theme .hero-visual-bg img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.garage-theme .hero-visual-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.18)),
    radial-gradient(ellipse at 50% 0%, rgba(255,42,42,.10), transparent 55%);
}

@media (max-width: 960px) {
  .garage-theme .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 108px 40px 56px;
  }

  .garage-theme .hero-left {
    max-width: 820px;
  }

  .garage-theme h1 {
    font-size: clamp(52px, 7vw, 96px);
    margin-bottom: 24px;
  }

  .garage-theme .hero-desc {
    max-width: 700px;
    margin-bottom: 34px;
  }

  .garage-theme .hero-stats {
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .garage-theme .hero-right {
    max-width: 100%;
    width: 100%;
    justify-self: stretch;
    display: block;
  }

  .garage-theme .hero-visual-bg {
    width: 100%;
  }
}

.garage-theme .scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 40%, var(--red) 60%, transparent 100%);
  opacity: 0;
  animation: scan 4s 1s ease-in-out infinite;
}

.garage-theme .glow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.4;
}

.garage-theme .services-strip {
  background: var(--steel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.garage-theme .service-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
  cursor: pointer;
}

.garage-theme .service-item:last-child {
  border-right: none;
}

.garage-theme .service-item:hover {
  background: rgba(255,42,42,0.05);
}

.garage-theme .service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 16px;
}

.garage-theme .service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.garage-theme .service-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.garage-theme .section {
  padding: 120px 64px;
}

.garage-theme .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.garage-theme .section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.garage-theme h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 80px);
  letter-spacing: 2px;
  line-height: 0.95;
  color: var(--white);
}

.garage-theme .section-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--chrome);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.garage-theme .section-link:hover {
  color: var(--orange);
}

.garage-theme .work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.garage-theme .work-card {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
  background: var(--steel);
  min-height: 240px;
  color: inherit;
  text-decoration: none;
}

.garage-theme .work-card.featured {
  grid-column: span 2;
  min-height: 320px;
}

.garage-theme .work-card:focus-visible {
  outline: 2px solid rgba(255, 42, 42, 0.7);
  outline-offset: 2px;
}

.garage-theme .work-card--compare {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.garage-theme .work-card--compare .work-card__compare-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 300px;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.garage-theme .work-card--compare .work-card__compare {
  height: 100%;
  min-height: 300px;
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.garage-theme .work-card--compare .work-card__compare::after {
  content: '';
}

.garage-theme .work-card--compare .compare-arrow,
.garage-theme .work-card--compare .compare-counter {
  pointer-events: auto;
}

.garage-theme .work-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: var(--steel, #1a1a1a);
}

.garage-theme .work-card:hover .work-card-bg {
  transform: scale(1.04);
}

.garage-theme .work-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.garage-theme .work-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 24px;
  z-index: 2;
  transform: translateY(8px);
  transition: transform 0.3s;
}

.garage-theme .work-card:hover .work-card-content {
  transform: translateY(0);
}

.garage-theme .work-card--compare .work-card-content {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  z-index: 2;
  flex: 0 0 auto;
  transform: translateY(0);
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.96), rgba(10, 10, 12, 0.88));
}

.garage-theme .work-card--compare:hover .work-card-content {
  transform: translateY(0);
}

.garage-theme .work-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.garage-theme .tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(255,42,42,0.22);
  color: var(--orange);
  border: 1px solid rgba(255,42,42,0.28);
}

.garage-theme .work-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 6px;
}

.garage-theme .work-desc {
  font-size: 13px;
  color: var(--chrome);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
}

.garage-theme .work-card:hover .work-desc {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .garage-theme .work-card--compare {
    min-height: 380px;
  }

  .garage-theme .work-card--compare .work-card__compare-stage,
  .garage-theme .work-card--compare .work-card__compare {
    min-height: 260px;
  }
}

.garage-theme .process {
  background: var(--steel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.garage-theme .process-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
}

.garage-theme .process-label {
  padding: 80px 64px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.garage-theme .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.garage-theme .step {
  padding: 80px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

@media (max-width: 860px) {
  .garage-theme .process-inner {
    grid-template-columns: 1fr;
    background: rgba(0,0,0,0.4);
  }

  .garage-theme .process-label {
    border-right: none;
    padding: 40px 28px;
  }

  .garage-theme .process-steps {
    grid-template-columns: 1fr;
  }

  .garage-theme .step {
    border-right: none;
    padding: 42px 28px;
  }
}

.garage-theme .step:last-child {
  border-right: none;
}

.garage-theme .step::before {
  content: attr(data-n);
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.garage-theme .step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 20px;
}

.garage-theme .step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.garage-theme .step-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.garage-theme .cta-strip {
  padding: 100px 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.garage-theme .cta-strip::before {
  content: 'GARAGE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 280px;
  color: rgba(255,255,255,0.015);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  letter-spacing: 20px;
}

.garage-theme .cta-text h2 {
  margin-bottom: 24px;
}

.garage-theme .cta-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--chrome);
  margin-bottom: 40px;
  max-width: 440px;
}

.garage-theme .cta-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.garage-theme .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.garage-theme .info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.garage-theme .info-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,42,42,0.1);
  border: 1px solid rgba(255,42,42,0.2);
  flex-shrink: 0;
}

.garage-theme .info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.garage-theme .info-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

body[data-site-style="garage"] .site-footer {
  border-top: 1px solid rgba(255,255,255,.12);
  background-color: #05060a;
  padding: 42px 24px 32px 72px;
  color: rgba(230,233,239,.85);
}
body[data-site-style="garage"] .site-footer .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: none;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body[data-site-style="garage"] .site-footer .footer-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
body[data-site-style="garage"] .site-footer .footer-brand {
  max-width: 460px;
}
body[data-site-style="garage"] .site-footer .footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}
body[data-site-style="garage"] .site-footer .footer-desc {
  margin: 10px 0 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(230,233,239,.75);
}
body[data-site-style="garage"] .site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
body[data-site-style="garage"] .site-footer .footer-col h4 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
body[data-site-style="garage"] .site-footer .footer-contact-list {
  display: grid;
  gap: 10px;
}
body[data-site-style="garage"] .site-footer .footer-contact-list div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 4px;
}
body[data-site-style="garage"] .site-footer .footer-contact-list div span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(230,233,239,.58);
}
body[data-site-style="garage"] .site-footer .footer-contact-list a,
body[data-site-style="garage"] .site-footer .footer-contact-list p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(230,233,239,.85);
  text-decoration: none;
}
body[data-site-style="garage"] .site-footer .footer-contact-list a:hover {
  color: #fff;
}
body[data-site-style="garage"] .site-footer .footer-links--stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body[data-site-style="garage"] .site-footer .footer-links--stack a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(230,233,239,.88);
  text-decoration: none;
}
body[data-site-style="garage"] .site-footer .footer-links--stack a i {
  width: 18px;
  text-align: left;
  color: rgba(151,194,255,.98);
}
body[data-site-style="garage"] .site-footer .footer-links--stack a:hover {
  color: #ffffff;
}
body[data-site-style="garage"] .site-footer .footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body[data-site-style="garage"] .site-footer .footer-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(230,233,239,.88);
  text-decoration: none;
}
body[data-site-style="garage"] .site-footer .footer-social-links a:hover {
  color: #fff;
}
body[data-site-style="garage"] .site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(230,233,239,.65);
}
body[data-site-style="garage"] .site-footer .footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
body[data-site-style="garage"] .site-footer .footer-bottom-links a {
  color: rgba(230,233,239,.62);
  font-size: 12px;
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body[data-site-style="garage"] .site-footer .footer-bottom-links a:hover {
  color: #ffffff;
}
body[data-site-style="garage"] .site-footer .powered-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
body[data-site-style="garage"] .site-footer .powered-logo {
  height: 20px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  body[data-site-style="garage"] .site-footer {
    padding: 32px 16px 28px 32px;
  }

  body[data-site-style="garage"] .site-footer .footer-top {
    flex-direction: column;
  }
  body[data-site-style="garage"] .site-footer .footer-grid,
  body[data-site-style="garage"] .site-footer .footer-bottom {
    padding-left: 4px;
  }
  body[data-site-style="garage"] .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  body[data-site-style="garage"] .site-footer .footer-bottom-links {
    gap: 10px;
  }
}

@keyframes scan {
  0% { top: 10%; opacity: 0; }
  5% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { top: 90%; opacity: 0; }
}

body[data-site-style="garage"] .garage-page-shell {
  margin-top: 84px;
  padding: 80px 64px 120px;
  min-height: calc(100vh - 84px);
  background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.92) 55%, rgba(10,10,10,0.96) 100%);
}

body[data-site-style="garage"] .garage-page-shell.garage-gallery-shell {
  margin-top: 20px;
  padding-top: 20px;
  min-height: calc(100vh - 20px);
}

body[data-site-style="garage"] .garage-page-shell .reveal {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  margin-bottom: 32px;
  padding: 42px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
  width: min(70vw, 1200px);
  margin-left: auto;
  margin-right: auto;
}

body[data-site-style="garage"] .garage-page-shell .sectionHead h2,
body[data-site-style="garage"] .garage-page-shell .sectionHead .kicker,
body[data-site-style="garage"] .garage-page-shell .aboutHeroTitle {
  color: var(--white);
}

body[data-site-style="garage"] .garage-page-shell .grid {
  gap: 32px;
}

body[data-site-style="garage"] .garage-page-shell .panel {
  background: rgba(17,17,17,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 90px rgba(0,0,0,0.65);
}

body[data-site-style="garage"] .garage-page-shell .panel .kicker,
body[data-site-style="garage"] .garage-page-shell .panel h2,
body[data-site-style="garage"] .garage-page-shell .panel p,
body[data-site-style="garage"] .garage-page-shell .panel h1,
body[data-site-style="garage"] .garage-page-shell .panel small,
body[data-site-style="garage"] .garage-page-shell .panel span {
  color: var(--chrome);
}

body[data-site-style="garage"] .garage-page-shell .gallery-info,
body[data-site-style="garage"] .garage-page-shell .gallery-empty p,
body[data-site-style="garage"] .garage-page-shell .gallery-empty .btn {
  color: var(--white);
}

body[data-site-style="garage"] .garage-page-shell .tag-filter__chip {
  border-color: rgba(255,255,255,0.1);
}

body[data-site-style="garage"] .garage-page-shell .gallery-grid a,
body[data-site-style="garage"] .garage-page-shell .aboutCards article {
  border-radius: 22px;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell {
  margin-top: 84px;
  padding: 80px 64px 120px;
  min-height: calc(100vh - 84px);
  background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.92) 55%, rgba(10,10,10,0.96) 100%);
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .reveal {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .panel {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(17,17,17,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 90px rgba(0,0,0,0.65);
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .breadcrumbs {
  color: var(--chrome);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detailHead {
  gap: 18px;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare {
  height: min(84vh, 980px);
  min-height: 680px;
  border-radius: 28px;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare .before,
body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare .after {
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  transform: none;
  object-fit: cover;
  object-position: center;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare-single {
  object-fit: cover;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detailGrid {
  gap: 24px;
  margin-top: 18px;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-thumb-grid-wrapper,
body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery-wrapper {
  margin-top: 22px;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-thumb-grid__item,
body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery__item {
  border-radius: 18px;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery-track {
  gap: 18px;
  padding: 18px 18px 24px;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery__item {
  flex-basis: clamp(320px, 30vw, 420px);
  min-height: 320px;
  cursor: zoom-in;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery-wrapper--featured .detail-gallery-track {
  gap: 22px;
  padding: 20px 20px 28px;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery-wrapper--featured .detail-gallery__item {
  flex-basis: clamp(460px, 62vw, 860px);
  min-height: 520px;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery-wrapper--solo .detail-gallery-track {
  justify-content: center;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery-wrapper--solo .detail-gallery__item {
  flex-basis: min(100%, 980px);
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery__item img {
  object-position: center top;
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0,0,0,.45);
  border-color: rgba(255,255,255,0.18);
}

body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-thumb-grid__item {
  cursor: zoom-in;
}

@media (max-width: 720px) {
  body[data-site-style="garage"] .garage-page-shell.detail-page-shell {
    margin-top: 72px;
    padding: 0 0 72px;
    min-height: calc(100vh - 72px);
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .reveal {
    width: 100vw;
    margin: 0 0 14px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 12px;
    border-radius: 0;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .panel {
    width: 100%;
    max-width: none;
    padding: 12px !important;
    border-radius: 0;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .breadcrumbs {
    font-size: 12px;
    margin-bottom: 8px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detailHead {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detailHead > div {
    width: 100%;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detailHead > div:last-child {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detailHead > div:last-child .btn {
    flex: 1 1 0;
    min-width: 120px;
    justify-content: center;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detailHead h2 {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.02;
    margin-top: 4px !important;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .tagRow {
    gap: 8px;
    margin-top: 8px !important;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .tag {
    font-size: 10px;
    padding: 4px 8px;
    letter-spacing: 1.4px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 4;
    border-radius: 22px;
    margin-top: 14px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare .before,
  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare .after,
  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare-single {
    object-position: center center;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare-label {
    top: 10px;
    width: auto;
    min-width: 58px;
    height: 24px;
    padding: 0 8px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare-label--before {
    left: 10px;
    right: auto;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare-label--after {
    right: 10px;
    left: auto;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .handle:before {
    width: 36px;
    height: 36px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .handle:after {
    font-size: 12px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare-arrow {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare-arrow--prev {
    left: 10px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare-arrow--next {
    right: 10px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare-counter {
    bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-thumb-grid-wrapper,
  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery-wrapper {
    margin-top: 14px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-thumb-grid-wrapper {
    gap: 8px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-thumb-grid {
    gap: 10px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-thumb-grid__item,
  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery__item {
    border-radius: 14px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery__item {
    flex-basis: min(88vw, 340px);
    min-height: 240px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery-wrapper--featured .detail-gallery__item,
  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-gallery-wrapper--solo .detail-gallery__item {
    flex-basis: min(92vw, 440px);
    min-height: 300px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-thumb-grid__item {
    width: 56px;
    height: 56px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-thumb-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detailGrid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 14px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .box {
    padding: 14px;
    border-radius: 18px;
  }
}

body[data-site-style="garage"] .garage-page-shell.garage-news-shell,
body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell {
  margin-top: 84px;
  padding: 80px 64px 120px;
  min-height: calc(100vh - 84px);
  background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.92) 55%, rgba(10,10,10,0.96) 100%);
}

body[data-site-style="garage"] .garage-page-shell.garage-news-shell .garage-news-hero,
body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__hero,
body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__content,
body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__gallery,
body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__more {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(17,17,17,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 90px rgba(0,0,0,0.65);
}

body[data-site-style="garage"] .garage-page-shell.garage-news-shell .garage-news-hero {
  padding: 28px;
}

body[data-site-style="garage"] .garage-page-shell.garage-news-shell .garage-news-grid,
body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-grid {
  max-width: 1180px;
  margin: 0 auto;
}

body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail {
  display:flex;
  flex-direction:column;
  gap:20px;
}

body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__hero {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__content,
body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__gallery,
body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__more {
  padding: 28px;
}

body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__hero-media {
  min-height: 420px;
}

body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__hero-copy {
  min-width: 0;
}

body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__hero-copy h1 {
  max-width: 12ch;
}

body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__body,
body[data-site-style="garage"] .garage-page-shell.garage-news-shell .garage-news-card__desc {
  color: var(--chrome);
}

.garage-theme .garage-news-section {
  padding: 96px 64px;
}

.garage-theme .garage-news-section .section-header {
  margin-bottom: 28px;
}

.garage-theme .garage-news-section .garage-news-grid {
  gap: 18px;
}

.garage-theme .garage-news-card {
  background: var(--steel);
  border-color: rgba(255,255,255,.08);
}

.garage-theme .garage-news-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.garage-theme .garage-news-card__desc {
  color: var(--muted);
}

.garage-theme .garage-news-card__cta {
  color: var(--orange);
  border-color: rgba(255,42,42,.34);
  background: rgba(255,42,42,.09);
}

@media (max-width: 720px) {
  .garage-theme .garage-news-section {
    padding: 72px 24px;
  }
}

@media (max-width: 420px) {
  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .panel {
    padding: 10px !important;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detailHead > div:last-child .btn {
    min-width: 0;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .compare {
    aspect-ratio: 9 / 12;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .detail-thumb-grid__item {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 720px) {
  body[data-site-style="garage"] .garage-page-shell.garage-news-shell,
  body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell {
    margin-top: 72px;
    padding: 0 0 72px;
    min-height: calc(100vh - 72px);
  }

  body[data-site-style="garage"] .garage-page-shell.garage-news-shell .garage-news-hero,
  body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__hero,
  body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__content,
  body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__gallery,
  body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__more {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    padding: 24px 16px;
  }

  body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__hero-media {
    min-height: 260px;
  }
  body[data-site-style="garage"] .garage-page-shell.garage-news-detail-shell .garage-news-detail__hero-copy h1 {
    max-width: none;
  }
}

.garage-gallery__compact {
  padding: 28px 48px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.garage-gallery__compact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.garage-gallery__compact-copy h1 {
  margin: 4px 0;
  font-size: clamp(32px, 3vw, 44px);
}

.garage-gallery__compact-lead {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.garage-gallery__compact-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.garage-gallery__compact-bottom {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.garage-gallery__compact-search {
  flex: 1;
  min-width: 260px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 9px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.garage-gallery__compact-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 14px;
}

.garage-gallery__compact-search input:focus {
  outline: none;
}

.garage-gallery__compact-search button {
  border-radius: 999px;
  padding: 8px 18px;
  min-width: 90px;
}

.garage-gallery__compact-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
}

.garage-gallery__compact-meta span {
  display: block;
}

.garage-gallery__compact-meta-value {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.garage-gallery__compact-meta-label {
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 10px;
}

.garage-gallery__hero-note {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.garage-gallery__controls {
  padding: 0 48px 12px;
}

.tag-filter-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tag-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
}

.tag-filter__more {
  display: none;
  border: none;
  background: transparent;
  color: var(--chrome);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 0;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tag-filter__more::before,
.tag-filter__more::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.tag-filter__more:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.4);
}


.tag-filter__ellipsis {
  display: none;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  padding: 6px 18px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  pointer-events: none;
  margin-left: 6px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.tag-filter.is-measuring {
  visibility: hidden;
}

.tag-filter__chip.is-truncated {
  visibility: hidden;
  pointer-events: none;
  width: 0;
  padding: 0;
  margin: 0;
  border: none;
}

.garage-gallery__grid {
  padding: 0 48px 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

@media (max-width: 960px) {
  body[data-site-style="garage"] .garage-page-shell {
    padding: 60px 20px 100px;
  }

  .garage-gallery__compact {
    padding: 20px 24px 8px;
  }

  .garage-gallery__compact-top {
    flex-direction: column;
  }

  .garage-gallery__compact-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .garage-gallery__compact-search {
    width: 100%;
  }

  .garage-gallery__controls {
    padding: 0 20px 12px;
  }

  .garage-gallery__grid {
    padding: 0 20px 90px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .garage-card {
    min-height: unset;
  }

  .garage-card__content {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .garage-gallery__compact {
    padding: 16px;
    gap: 8px;
  }

  .garage-gallery__controls,
  .garage-gallery__grid {
    padding: 0 16px;
  }

  .garage-gallery__compact-search {
    padding: 8px 12px;
  }

  .garage-gallery__compact-bottom {
    gap: 8px;
  }

  .garage-gallery__compact-meta {
    flex-direction: row;
    gap: 6px;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .garage-gallery__compact-meta-label {
    letter-spacing: 0.05em;
    text-transform: none;
  }

  .garage-gallery__compact-meta > div {
    flex: 0 0 auto;
    min-width: 75px;
    display: flex;
    flex-direction: column;
  }

  .garage-gallery__hero-note {
    display: none;
  }

  .tag-filter {
    gap: 6px;
  }

  .tag-filter__chip {
    padding: 6px 10px;
    font-size: 11px;
  }

  .tag-filter {
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 6px;
  }

  .tag-filter[data-collapsible]:not(.is-expanded) {
    white-space: nowrap;
  }

  .tag-filter.is-expanded {
    flex-wrap: wrap;
    overflow: visible;
  }

  .tag-filter__more {
    display: flex;
    text-transform: inherit;
    letter-spacing: inherit;
  }

  .tag-filter__more::before,
  .tag-filter__more::after {
    display: block;
  }

  .tag-filter[data-truncated="true"] .tag-filter__ellipsis {
    opacity: 1;
    visibility: visible;
    display: flex;
  }

  .garage-gallery__compact-cta {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
  }

  .garage-gallery__compact-cta a {
    padding: 6px 12px;
    font-size: 12px;
  }

  .tag-filter-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .tag-filter__more {
    margin-top: 0;
  }

  .tag-filter[data-collapsible] {
    margin-bottom: 4px;
  }

  .tag-filter__more {
    margin-bottom: 12px;
  }
}

.garage-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.garage-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,42,42,0.22);
  box-shadow: 0 24px 60px rgba(0,0,0,.38);
}

.garage-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
}

.garage-card__overlay:focus-visible {
  outline: 2px solid rgba(255,42,42,.7);
  outline-offset: 2px;
}

.garage-card > .garage-card__media,
.garage-card > .garage-card__content {
  position: relative;
  z-index: 1;
}

.garage-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  filter: saturate(0.7);
}

.garage-card__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.garage-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.garage-card__desc {
  color: var(--chrome);
  font-size: 14px;
  line-height: 1.6;
}

.garage-card__meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.garage-card__link {
  margin-top: auto;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 2px;
  color: var(--orange);
  text-decoration: none;
  pointer-events: none;
}

.garage-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px auto 120px;
}

.garage-pagination__btn {
  min-width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--chrome);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 2px;
  cursor: pointer;
}

.garage-pagination__btn.is-active {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

.garage-gallery__empty {
  padding: 80px 64px;
  text-align: center;
  color: var(--chrome);
}

.garage-gallery__empty .btn-primary {
  margin-top: 24px;
}

/* ── GARAGE ABOUT + EXPERIENCE ── */
body[data-site-style="garage"] .garage-page-shell .about-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 72px 64px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(255,42,42,0.35), rgba(10,10,10,0.92));
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.65);
}

body[data-site-style="garage"] .garage-page-shell .about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.15), transparent 40%);
  opacity: 0.35;
  pointer-events: none;
}

body[data-site-style="garage"] .garage-page-shell .about-heroMedia {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  min-height: 320px;
  background: rgba(0,0,0,0.45);
  position: relative;
}

body[data-site-style="garage"] .garage-page-shell .about-heroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-site-style="garage"] .garage-page-shell .about-heroContent h1 {
  font-size: clamp(40px, 4vw, 64px);
  margin-bottom: 18px;
}

body[data-site-style="garage"] .garage-page-shell .aboutHeroText {
  color: var(--chrome);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
}

body[data-site-style="garage"] .garage-page-shell .experience-section {
  padding: 0;
}

body[data-site-style="garage"] .garage-page-shell .experience-section .panel {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

body[data-site-style="garage"] .garage-page-shell .experience-section__inner {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

body[data-site-style="garage"] .garage-page-shell .experience-section__content h2 {
  font-size: clamp(32px, 3vw, 48px);
}

body[data-site-style="garage"] .garage-page-shell .experience-section__content p {
  color: var(--chrome);
  max-width: 420px;
  line-height: 1.7;
}

body[data-site-style="garage"] .garage-page-shell .experience-stream {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

body[data-site-style="garage"] .garage-page-shell .experience-chip {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 10px 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}


body[data-site-style="garage"] .garage-page-shell.garage-about-shell {
  padding: 40px 32px 120px;
}

body[data-site-style="garage"] .garage-page-shell .garage-about-hero.about-hero {
  margin: 32px auto 56px;
  width: 100%;
  max-width: 1200px;
  padding: 24px clamp(24px, 4vw, 48px);
  box-sizing: border-box;
}

body[data-site-style="garage"] .garage-page-shell .garage-experience-section {
  margin-bottom: 56px;
  padding: 0;
}

body[data-site-style="garage"] .garage-page-shell .garage-about-cards {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 48px 0;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  margin-left: auto;
  margin-right: auto;
}

body[data-site-style="garage"] .garage-page-shell .garage-about-cards .sectionHead {
  margin-bottom: 32px;
  text-align: center;
}

body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCards {
  margin-top: 14px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(12px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 28px;
  box-sizing: border-box;
}

body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCards article {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 18px;
  gap: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCardCompanyRow{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:10px 16px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  width: 100%;
  min-width: 0;
}
body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCardCompanyRow--textOnly{
  align-items:center;
  padding:10px 16px;
}
body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCardCompanyRow .aboutCardCompanyText{
  flex:1;
  font-size:12px;
  line-height:1.4;
  color:var(--chrome);
  word-break:break-word;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCardCompanyRow--textOnly .aboutCardCompanyText{
  -webkit-line-clamp:unset;
  overflow:visible;
  color:#fff;
}
body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCardCompanyContent{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:6px;
}
body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCardCompanyRow.is-expanded .aboutCardCompanyText{
  -webkit-line-clamp:unset;
  overflow:visible;
}
body[data-site-style="garage"] .garage-page-shell .garage-about-cards .company-logo-toggle{
  display:inline-flex;
  padding:5px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.3);
  background:transparent;
  color:var(--chrome);
  font-size:11px;
  letter-spacing:1px;
  text-transform:uppercase;
  align-self:flex-start;
  cursor:pointer;
}

body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCards article .aboutCardMedia {
  margin-top: 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  height: clamp(220px, 28vw, 260px);
  min-height: 220px;
}

body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCards article .aboutCardMedia img {
  border-radius: 18px;
}

body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCardName {
  font-size: 18px;
}

body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCardText {
  font-size: 12px;
  line-height: 1.4;
}

body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCardTextActions{
  width:100%;
  display:flex;
  justify-content:flex-start;
}

body[data-site-style="garage"] .garage-page-shell .garage-about-cards .aboutCardFooter {
  font-size: 12px;
  gap: 6px;
}


@media (max-width: 960px) {
  body[data-site-style="garage"] .garage-page-shell .about-hero {
    padding: 56px 28px;
    grid-template-columns: 1fr;
  }

  body[data-site-style="garage"] .garage-page-shell .about-heroMedia {
    min-height: 260px;
  }

  body[data-site-style="garage"] .garage-page-shell .aboutHeroText {
    max-width: 100%;
  }

  body[data-site-style="garage"] .garage-page-shell .experience-section__inner {
    padding: 44px 28px;
    grid-template-columns: 1fr;
  }

  body[data-site-style="garage"] .garage-page-shell .experience-stream {
    flex-direction: column;
    align-items: stretch;
  }

  body[data-site-style="garage"] .garage-page-shell .experience-chip {
    width: 100%;
    justify-content: center;
  }

}

@media (max-width: 640px) {
  body[data-site-style="garage"] .garage-page-shell .about-hero {
    padding: 48px 16px;
    gap: 32px;
  }

  body[data-site-style="garage"] .garage-page-shell .experience-section__inner {
    padding: 32px 16px;
  }

  body[data-site-style="garage"] .garage-page-shell .experience-stream {
    gap: 12px;
  }

}

/* ── GARAGE POLICY PAGES ── */
body[data-site-style="garage"] .garage-page-shell.garage-policy-shell {
  max-width: 1260px;
  margin: 84px auto 0;
  padding: 58px 32px 100px;
  min-height: auto;
}

body[data-site-style="garage"] .garage-page-shell .reveal.policy-page {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 32px;
  width: 100%;
}

body[data-site-style="garage"] .garage-page-shell .policy-page {
  gap: 32px;
}

body[data-site-style="garage"] .garage-page-shell .policy-hero {
  background: linear-gradient(135deg, rgba(255,42,42,0.25), rgba(9,9,9,0.95));
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 45px 130px rgba(0,0,0,0.65);
  padding: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 30px);
  position: relative;
  overflow: hidden;
  max-width: min(760px, 100%);
  margin: 0 auto 32px;
}

body[data-site-style="garage"] .garage-page-shell .policy-hero__content,
body[data-site-style="garage"] .garage-page-shell .policy-hero__side {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  background: rgba(9,9,9,0.65);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
body[data-site-style="garage"] .garage-page-shell .policy-hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body[data-site-style="garage"] .garage-page-shell .policy-hero__side {
  display: grid;
  gap: 16px;
  align-self: stretch;
}

body[data-site-style="garage"] .garage-page-shell .policy-hero__content h1 {
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

body[data-site-style="garage"] .garage-page-shell .policy-hero__content .lead,
body[data-site-style="garage"] .garage-page-shell .policy-hero__side p {
  font-size: 15px;
  line-height: 1.6;
}

body[data-site-style="garage"] .garage-page-shell .policy-hero__side h2 {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
}

body[data-site-style="garage"] .garage-page-shell .policy-section__title {
  font-size: clamp(26px, 2.2vw, 30px);
  line-height: 1.25;
}

body[data-site-style="garage"] .garage-page-shell .policy-card h2 {
  font-size: clamp(22px, 2vw, 26px);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

body[data-site-style="garage"] .garage-page-shell .policy-card h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
}

body[data-site-style="garage"] .garage-page-shell .policy-meta {
  gap: 14px;
}

body[data-site-style="garage"] .garage-page-shell .policy-chip {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.92);
}

body[data-site-style="garage"] .garage-page-shell .policy-sideCard {
  padding: 22px;
  background: rgba(255,255,255,0.02);
}

body[data-site-style="garage"] .garage-page-shell .policy-sideStats {
  gap: 10px;
}

body[data-site-style="garage"] .garage-page-shell .policy-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

body[data-site-style="garage"] .garage-page-shell .policy-hero__glare {
  position: absolute;
  top: -40%;
  left: -30%;
  width: 230%;
  height: 230%;
  background: radial-gradient(circle at 25% 10%, rgba(255,255,255,0.35), transparent 55%);
  opacity: 0.35;
  mix-blend-mode: screen;
  filter: blur(15px);
  pointer-events: none;
  z-index: 1;
}

body[data-site-style="garage"] .garage-page-shell .policy-stat {
  background: rgba(255,255,255,0.02);
  border-radius: 22px;
  padding: 16px;
}

body[data-site-style="garage"] .garage-page-shell .policy-stat b,
body[data-site-style="garage"] .garage-page-shell .policy-stat span {
  color: rgba(255,255,255,0.82);
}

body[data-site-style="garage"] .garage-page-shell .policy-section__title {
  color: rgba(255,255,255,0.92);
}

body[data-site-style="garage"] .garage-page-shell .policy-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

body[data-site-style="garage"] .garage-page-shell .policy-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.55);
  padding: 26px;
  min-height: 230px;
}

body[data-site-style="garage"] .garage-page-shell .policy-card h2 {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  margin-bottom: 12px;
}

body[data-site-style="garage"] .garage-page-shell .policy-card::before {
  display: none;
}

body[data-site-style="garage"] .garage-page-shell .policy-card__icon {
  border-color: rgba(255,255,255,0.25);
  background: rgba(49,178,255,0.12);
  color: #b8e8ff;
}

body[data-site-style="garage"] .garage-page-shell .policy-card h3 {
  margin-top: 12px;
  color: rgba(255,255,255,0.94);
}

body[data-site-style="garage"] .garage-page-shell .policy-card p,
body[data-site-style="garage"] .garage-page-shell .policy-card li {
  color: rgba(238,240,246,0.75);
}

body[data-site-style="garage"] .garage-page-shell .policy-card--soft {
  background: linear-gradient(180deg, rgba(49,178,255,0.08), rgba(7,7,7,0.5));
}

body[data-site-style="garage"] .garage-page-shell .policy-card--accent {
  background: linear-gradient(180deg, rgba(255,42,42,0.1), rgba(8,8,8,0.6));
}

body[data-site-style="garage"] .garage-page-shell .policy-note {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.12);
}

body[data-site-style="garage"] .garage-page-shell .policy-contacts {
  padding: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  background: rgba(17,17,17,0.85);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.12);
}

body[data-site-style="garage"] .garage-page-shell .policy-contacts .lead {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 8px;
}

body[data-site-style="garage"] .garage-page-shell .policy-contactItem {
  background: rgba(255,255,255,0.02);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
}

body[data-site-style="garage"] .garage-page-shell .policy-contactItem strong {
  color: rgba(255,255,255,0.92);
}

body[data-site-style="garage"] .garage-page-shell .policy-contacts h2 {
  margin-top: 4px;
  font-size: clamp(24px, 2.2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

body[data-site-style="garage"] .garage-page-shell .policy-contactItem:hover {
  border-color: rgba(49,178,255,0.35);
  background: rgba(49,178,255,0.12);
}

@media (max-width: 960px) {
  body[data-site-style="garage"] .garage-page-shell .policy-hero {
    grid-template-columns: 1fr;
    padding: 42px;
  }

  body[data-site-style="garage"] .garage-page-shell .policy-hero__content,
  body[data-site-style="garage"] .garage-page-shell .policy-hero__side {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  body[data-site-style="garage"] .garage-page-shell {
    padding: 60px 32px 80px;
  }

  body[data-site-style="garage"] .garage-page-shell .policy-hero {
    padding: 32px;
  }

  body[data-site-style="garage"] .garage-page-shell .policy-card {
    padding: 18px;
  }

  body[data-site-style="garage"] .garage-page-shell .policy-hero__content,
  body[data-site-style="garage"] .garage-page-shell .policy-hero__side {
    padding: 16px;
  }
}

@media (max-width: 840px){
  body[data-site-style="garage"] .garage-page-shell .about-hero {
    padding: 48px 28px;
  }

  body[data-site-style="garage"] .garage-page-shell .experience-section__inner {
    padding: 40px;
  }

  body[data-site-style="garage"] .garage-page-shell .garage-about-hero.about-hero {
    width: calc(100vw - 48px);
    max-width: none;
    margin-left: calc(-50vw + 50% + 24px);
    margin-right: calc(-50vw + 50% + 24px);
  }

  body[data-site-style="garage"] .garage-page-shell .garage-about-cards {
    width: calc(100vw - 48px);
    max-width: none;
    margin-left: calc(-50vw + 50% + 24px);
    margin-right: calc(-50vw + 50% + 24px);
  }
}

body[data-site-style="garage"] .garage-page-shell .reveal.contact-page {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin-bottom: 0;
  width: min(100%, 1440px);
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

body[data-site-style="garage"] .garage-page-shell .contact-page .panel {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r26);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

body[data-site-style="garage"] .garage-page-shell .contact-page .panel:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 320px at 20% -10%, rgba(255,42,42,.10), transparent 60%),
    radial-gradient(900px 320px at 80% 110%, rgba(49,178,255,.10), transparent 60%);
  opacity: .85;
}

body[data-site-style="garage"] .garage-page-shell .contact-page .panel > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  body[data-site-style="garage"] .garage-page-shell {
    padding-left: clamp(48px, 4vw, 96px);
    padding-right: clamp(48px, 4vw, 96px);
  }

  body[data-site-style="garage"] .garage-page-shell .reveal.contact-page {
    width: min(100%, 1440px);
  }

  body[data-site-style="garage"] .garage-page-shell .contact-layout {
    gap: 44px;
    align-items: stretch;
  }

  body[data-site-style="garage"] .garage-page-shell .contact-layout__info {
    flex: 0 0 330px;
  }

  body[data-site-style="garage"] .garage-page-shell .contact-layout__map {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  body[data-site-style="garage"] .garage-page-shell .contact-map {
    max-width: none;
    width: 100%;
  }

  body[data-site-style="garage"] .garage-page-shell .contact-map .panel-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  body[data-site-style="garage"] .garage-page-shell .contact-map__frame {
    margin: 0 16px 24px;
    min-height: clamp(560px, 64vh, 760px);
    width: auto;
  }

  body[data-site-style="garage"] .garage-page-shell .contact-map__frame iframe {
    height: clamp(560px, 64vh, 760px);
  }
}

@media (max-width: 640px) {
  body[data-site-style="garage"] .garage-page-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell {
    padding: 0 0 72px;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .reveal {
    width: 100vw;
    margin: 0 0 14px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 12px;
    border-radius: 0;
  }

  body[data-site-style="garage"] .garage-page-shell.detail-page-shell .panel {
    width: 100%;
    max-width: none;
    border-radius: 0;
  }
}

/* ---------- ABOUT V2 OVERRIDES ---------- */
body[data-site-style="garage"] .garage-page-shell.about-page--garage {
  width: min(100%, 1260px);
  margin: 0 auto;
  padding: 28px 20px 96px;
  display: grid;
  gap: 20px;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-section {
  width: 100%;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .reveal {
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-sectionHead {
  max-width: 760px;
  margin-bottom: 14px;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-sectionSubtitle {
  font-size: 14px;
  line-height: 1.65;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-heroPanel {
  border-radius: 30px;
  border-color: rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,42,42,0.18), transparent 36%),
    linear-gradient(135deg, rgba(255,42,42,0.34), rgba(8,8,8,0.94));
  box-shadow: 0 42px 120px rgba(0,0,0,0.68);
  gap: 16px;
  padding: 22px;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-heroPanel::before {
  background: radial-gradient(circle at 28% 28%, rgba(255,255,255,0.20), rgba(255,255,255,0) 68%);
  opacity: 0.8;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-heroMedia,
body[data-site-style="garage"] .garage-page-shell.about-page--garage .profile-card,
body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-introContent,
body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-introQuote,
body[data-site-style="garage"] .garage-page-shell.about-page--garage .feature-card,
body[data-site-style="garage"] .garage-page-shell.about-page--garage .process-card,
body[data-site-style="garage"] .garage-page-shell.about-page--garage .cta-panel {
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-heroMedia::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.30) 100%),
    linear-gradient(135deg, rgba(255,42,42,0.16), rgba(0,0,0,0) 48%);
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-badge {
  padding: 8px 12px;
  border-color: rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: 0 18px 36px rgba(0,0,0,0.34);
  font-size: 11px;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-introQuote {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,42,42,0.20), transparent 34%),
    linear-gradient(135deg, rgba(255,42,42,0.16), rgba(10,10,10,0.86));
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .profile-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(8,8,8,0.72));
  grid-template-columns: minmax(260px, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  border-radius: 26px;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .profile-card__index {
  background: rgba(10,10,10,0.8);
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .feature-card,
body[data-site-style="garage"] .garage-page-shell.about-page--garage .process-card {
  background:
    radial-gradient(circle at 10% 0%, rgba(255,42,42,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(7,7,7,0.82));
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .feature-grid,
body[data-site-style="garage"] .garage-page-shell.about-page--garage .process-grid {
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .feature-card,
body[data-site-style="garage"] .garage-page-shell.about-page--garage .process-card {
  padding: 18px;
  min-height: 0;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .feature-card__icon,
body[data-site-style="garage"] .garage-page-shell.about-page--garage .process-card__number {
  background: linear-gradient(135deg, rgba(255,42,42,0.28), rgba(49,178,255,0.12));
  box-shadow: 0 18px 34px rgba(0,0,0,0.36);
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-heroMedia {
  min-height: clamp(240px, 30vw, 380px);
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-title {
  max-width: 10ch;
  font-size: clamp(30px, 3.3vw, 52px);
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-heroContent {
  gap: 14px;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-lead {
  font-size: 15px;
  line-height: 1.7;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-introGrid {
  gap: 16px;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-introContent,
body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-introQuote {
  padding: 20px;
  border-radius: 24px;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-introQuote p {
  font-size: clamp(20px, 2.2vw, 30px);
  max-width: 14ch;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .profile-card__media {
  min-height: clamp(300px, 32vw, 420px);
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .profile-card__body {
  padding: 18px 20px;
  gap: 8px;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .timeline {
  gap: 10px;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .cta-panel {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,42,42,0.26), transparent 38%),
    radial-gradient(circle at 84% 8%, rgba(49,178,255,0.16), transparent 30%),
    linear-gradient(135deg, rgba(255,42,42,0.20), rgba(5,5,5,0.88));
  box-shadow: 0 46px 120px rgba(0,0,0,0.72);
  padding: 22px;
  border-radius: 28px;
  align-items: center;
}

body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-ctaSecondary {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

@media (max-width: 960px) {
  body[data-site-style="garage"] .garage-page-shell.about-page--garage {
    width: 100%;
    padding: 24px 20px 84px;
  }

  body[data-site-style="garage"] .garage-page-shell.about-page--garage .profile-card {
    grid-template-columns: 1fr;
  }

  body[data-site-style="garage"] .garage-page-shell.about-page--garage .profile-card__media {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  body[data-site-style="garage"] .garage-page-shell.about-page--garage {
    padding: 20px 16px 72px;
    gap: 16px;
  }

  body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-heroPanel,
  body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-introContent,
  body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-introQuote,
  body[data-site-style="garage"] .garage-page-shell.about-page--garage .profile-card,
  body[data-site-style="garage"] .garage-page-shell.about-page--garage .feature-card,
  body[data-site-style="garage"] .garage-page-shell.about-page--garage .process-card,
  body[data-site-style="garage"] .garage-page-shell.about-page--garage .cta-panel {
    border-radius: 22px;
  }

  body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-heroMedia {
    min-height: 240px;
  }

  body[data-site-style="garage"] .garage-page-shell.about-page--garage .profile-card__media {
    min-height: 250px;
  }

  body[data-site-style="garage"] .garage-page-shell.about-page--garage .about-title {
    max-width: none;
  }
}
