
/*  Created by Patryk Piwowarczyk */
/* =========================================================
   TOKENS / ROOT
   ========================================================= */

:root {
  --bg: #07090f;
  --bg2: #0b1020;

  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);

  --text: #e9edf7;
  --muted: rgba(233, 237, 247, 0.72);
  --stroke: rgba(255, 255, 255, 0.14);

  --bmw-blue: #1c69d4;
  --bmw-blue2: #4aa3ff;
  --bmw-red: #e21d2a;

  --radius: 18px;
  --radius2: 28px;

  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow2: 0 14px 40px rgba(0, 0, 0, 0.35);

  --max: 1160px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease2: cubic-bezier(0.16, 1, 0.3, 1);

  --navH: 76px;
  --headerH: calc(env(safe-area-inset-top) + 44px + var(--navH));

  --h1: clamp(2.2rem, 3.4vw, 4.1rem);
  --h2: clamp(1.6rem, 2.2vw, 2.4rem);
  --p: clamp(1rem, 1.2vw, 1.1rem);

  /* Parallax scales */
  --p-scale-bg: 1.18;
  --p-scale-shop: 1.22;
  --p-scale-car: 1;
  --p-scale-streaks: 1.18;
}

body.is-wide {
  --p-scale-bg: 1.18;
  --p-scale-shop: 1.22;
  --p-scale-car: 1;
  --p-scale-streaks: 1.18;
}

body.is-portrait {
  --p-scale-bg: 1.3;
  --p-scale-shop: 1.36;
  --p-scale-car: 1;
  --p-scale-streaks: 1.3;
}

/* =========================================================
   BASE / GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  padding-top: var(--headerH);
  padding-bottom: env(safe-area-inset-bottom);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue",
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(28, 105, 212, 0.25), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(226, 29, 42, 0.14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  background-attachment: fixed;
}

@supports (height: 100svh) {
  html,
  body {
    min-height: 100svh;
  }
}

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
  font-size: var(--p);
  line-height: 1.65;
}

.note {
  margin-top: 20px;
  color: rgba(233, 237, 247, 0.6);
}

/* =========================================================
   AMBIENT
   ========================================================= */

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.ambient__vignette {
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(700px 400px at 50% 20%, transparent 55%, rgba(0, 0, 0, 0.55) 100%),
    radial-gradient(900px 600px at 30% 0%, rgba(0, 0, 0, 0.35), transparent 55%);
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(500px 240px at 50% 0%, rgba(0, 0, 0, 1), transparent 70%);
}

.ambient__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  opacity: 0.6;
  filter: blur(50px);
  border-radius: 50%;
}

.ambient__glow--blue {
  top: 120px;
  left: -120px;
  background: rgba(28, 105, 212, 0.35);
}

.ambient__glow--red {
  top: 180px;
  right: -170px;
  background: rgba(226, 29, 42, 0.22);
}

/* =========================================================
   HEADER
   ========================================================= */

.siteHeader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top);
}

.siteHeader::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(9, 14, 27, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.siteHeader > .topbar,
.siteHeader > .nav {
  position: relative;
  z-index: 1;
}

.topbar {
  background: transparent;
  border-bottom: none;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  font-size: 0.92rem;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(233, 237, 247, 0.8);
}

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

.topbar__sep {
  opacity: 0.6;
}

.topbar__pill {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.topbar__pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--navH);
  background: transparent;
  border-bottom: none;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.brand__text {
  white-space: nowrap;
}

.brand__name {
  font-weight: 750;
  letter-spacing: 0.4px;
}

.brand__sub {
  font-size: 0.82rem;
  color: rgba(233, 237, 247, 0.68);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav__links a {
  position: relative;
  padding: 10px 4px;
  font-weight: 600;
  color: rgba(233, 237, 247, 0.84);
  transition: color 0.25s var(--ease);
}

.nav__links a:hover {
  color: #fff;
}

.nav__links a::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 6px;
  left: 4px;
  height: 2px;
  opacity: 0;
  transform: scaleX(0.6);
  background: linear-gradient(90deg, transparent, var(--bmw-blue), transparent);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav__links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__hours {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 18px;
  line-height: 1.15;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav__hours:hover {
  opacity: 1;
}

.nav__hoursLabel {
  display: block;
  font-size: 11px;
  opacity: 0.6;
}

.nav__hoursValue {
  display: block;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}

/* =========================================================
   BURGER
   ========================================================= */

.nav__toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
}

.nav__toggle::before,
.nav__toggle::after {
  content: "";
  position: absolute;
  right: 12px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.nav__toggle::before {
  top: 15px;
}

.nav__toggle::after {
  bottom: 15px;
}

.nav__toggle .nav__toggle__mid {
  position: absolute;
  top: 50%;
  right: 12px;
  left: 12px;
  display: block;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(233, 237, 247, 0.95);
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
  will-change: transform;
}

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

.btn--primary {
  border-color: rgba(28, 105, 212, 0.5);
  background: linear-gradient(180deg, rgba(28, 105, 212, 0.46), rgba(28, 105, 212, 0.22));
}

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

.btn--wide {
  width: 100%;
}

.btn__shine {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  opacity: 0.35;
  border-radius: inherit;
  background: radial-gradient(
    240px 60px at var(--mx, 20%) var(--my, 20%),
    rgba(255, 255, 255, 0.28),
    transparent 65%
  );
}

/* =========================================================
   DRAWER
   ========================================================= */

.drawer {
  position: fixed;
  top: var(--navH);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer__backdrop {
  display: none;
}

.drawer__panel {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 190px;
  max-width: calc(100% - 32px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius2);
  background: rgba(9, 12, 20, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
  transition: transform 0.25s var(--ease);
}

.drawer.is-open .drawer__panel {
  transform: translateY(0);
}

.drawer__link {
  display: block;
  padding: 16px 20px;
  border-radius: 14px;
  color: rgba(233, 237, 247, 0.88);
  font-weight: 700;
  text-align: center;
}

.drawer__link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.drawer__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 30;
  gap: 14px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  margin-top: calc(-1 * var(--headerH));
  padding-top: calc(32px + var(--headerH));
  padding-bottom: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg), var(--bg2));
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(7, 9, 15, 0.92) 55%,
    rgba(7, 9, 17, 1) 100%
  );
}

.hero__layers {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
}

.hero__content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
  padding-top: 10px;
}

.hero__copy {
  max-width: 640px;
  margin-top: -60px;
}

.layer {
  position: absolute;
  inset: -14%;
  background-position: center;
  background-size: cover;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.layer--bg {
  z-index: 0;
}

.layer--shop {
  z-index: 1;
  background-size: cover;
  transform-origin: center;
  filter: saturate(1.05) contrast(1.02);
}

.layer--streaks {
  z-index: 2;
  --layer-scale: var(--p-scale-streaks);
  opacity: 0.85;
  mix-blend-mode: screen;
}

.layer--car {
  z-index: 3;
  --layer-scale: var(--p-scale-car);
  background-repeat: no-repeat;
  background-position: 70% 72%;
  background-size: clamp(735px, 75vw, 980px) auto;
  filter: drop-shadow(0 22px 45px rgba(0, 0, 0, 0.55));
}

.layer--mist {
  z-index: 4;
  --layer-scale: 1;
  opacity: 0.85;
  background:
    radial-gradient(900px 420px at 55% 70%, rgba(255, 255, 255, 0.11), transparent 60%),
    radial-gradient(700px 380px at 35% 60%, rgba(28, 105, 212, 0.16), transparent 65%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(233, 237, 247, 0.88);
  font-size: 1.02rem;
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.dot--blue {
  background: var(--bmw-blue);
}

.hero__title {
  margin: 26px 0 18px;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -1px;
}

.accent {
  background: linear-gradient(90deg, var(--bmw-blue2), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: 60ch;
  margin-bottom: 24px;
  color: rgba(233, 237, 247, 0.78);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.85;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero__cta .btn {
  padding: 16px 22px;
  border-radius: 18px;
  font-size: 1.08rem;
  font-weight: 800;
}

.hero__cta .btn--primary {
  border: none;
  background: linear-gradient(135deg, var(--bmw-blue), var(--bmw-blue2));
  color: #fff;
  box-shadow:
    0 18px 40px rgba(28, 105, 212, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.4);
  transform: translateZ(0);
}

.hero__cta .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 55px rgba(28, 105, 212, 0.6),
    0 6px 16px rgba(0, 0, 0, 0.5);
}

.hero__cta .btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero__cta .btn--ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 240px;
  max-width: 100%;
  margin-top: 14px;
}

.hero__meta .metaCard {
  width: 100%;
}

.metaCard {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.metaCard:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
}

.metaCard__icon {
  font-size: 1.25rem;
}

.metaCard__label {
  display: block;
  color: rgba(233, 237, 247, 0.65);
  font-size: 0.86rem;
}

.metaCard__value {
  display: block;
  font-size: 1.06rem;
  font-weight: 800;
}

.hero__badge {
  display: none !important;
}

.hero__rating {
  max-width: 240px;
  margin-top: 14px;
}

.scrollHint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(233, 237, 247, 0.65);
  font-weight: 700;
}

.scrollHint__mouse {
  position: relative;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.scrollHint__mouse::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  animation: wheel 1.2s var(--ease) infinite;
}

@keyframes wheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}

.hoursFloat {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: -2px;
  padding: 12px 14px;
  border: 1px solid rgba(74, 163, 255, 0.35);
  border-radius: 16px;
  background: rgba(28, 105, 212, 0.16);
  backdrop-filter: blur(10px);
  color: rgba(233, 237, 247, 0.95);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.hoursFloat__icon {
  font-size: 1rem;
  line-height: 1;
}

.hoursFloat__text {
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.35;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg), var(--bg2));
}

.section--alt {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.section--alt::before,
.section--alt::after {
  content: none !important;
  display: none !important;
}

.section--alt > .container {
  position: relative;
  z-index: 1;
}

.section h2 {
  margin: 0 0 10px;
  font-size: var(--h2);
}

.sectionHead {
  max-width: 760px;
  margin-bottom: 26px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 26px;
}

.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.section__actions--contact {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

.section__actions--contact .btn {
  white-space: nowrap;
}

.bullets {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check {
  color: var(--bmw-blue2);
  font-weight: 900;
}

/* =========================================================
   MEDIA CARD + CHIPS
   ========================================================= */

.mediaCard,
.mapCard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.mediaCard img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.mediaCard__overlay {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.chip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.chip__dot--blue {
  background: var(--bmw-blue);
}

.chip__dot--red {
  background: var(--bmw-red);
}

.mediaCard--map {
  overflow: hidden;
}

.mediaCard__frame,
.mapCard__frame {
  position: relative;
  width: 100%;
  height: 420px;
}

.mediaCard__frame iframe,
.mapCard__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.mediaCard--map::after,
.mapCard__overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.30));
}

.mapCard__frame {
  overflow: hidden;
  border-radius: var(--radius2);
  background: rgba(0, 0, 0, 0.25);
}

.mapCard__frame iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.mapCard__actions {
  padding: 14px;
}

.mapCard__overlayTitle {
  font-size: 1.1rem;
  font-weight: 900;
}

.mapCard__overlayText {
  margin-top: 10px;
  color: rgba(233, 237, 247, 0.72);
  line-height: 1.55;
}

.mapCard__overlayText code {
  padding: 2px 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */

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

.card {
  grid-column: span 6;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow2);
  transform-style: preserve-3d;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: rgba(233, 237, 247, 0.72);
  line-height: 1.65;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(233, 237, 247, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

/* =========================================================
   GALLERY
   ========================================================= */

.masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.masonry__item {
  margin: 0 !important;
  overflow: hidden;
  cursor: zoom-in;
  break-inside: unset !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow2);
}

.masonry__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s var(--ease);
}

.masonry__item:hover img {
  transform: scale(1.05);
}

/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
  width: min(1000px, calc(100% - 24px));
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contactCards {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contactCard {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow2);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

a.contactCard:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
}

.contactCard__title {
  font-weight: 900;
  letter-spacing: 0.2px;
}

.contactCard__value {
  margin-top: 6px;
  font-size: 1.06rem;
  font-weight: 850;
}

.contactCard__hint {
  margin-top: 6px;
  color: rgba(233, 237, 247, 0.62);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

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

.footer__brand {
  font-weight: 950;
}

.footer__muted {
  margin-top: 6px;
  color: rgba(233, 237, 247, 0.62);
}

.footer__right {
  display: flex;
  gap: 16px;
  color: rgba(233, 237, 247, 0.72);
}

.footer__right a:hover {
  color: #fff;
}

/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease2), transform 0.7s var(--ease2);
}

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

/* =========================================================
   RATING CARD
   ========================================================= */

.ratingCard {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.ratingCard:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

.ratingCard__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4285f4);
  color: white;
}

.ratingCard__score {
  display: flex;
  flex-direction: column;
}

.ratingCard__value {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.ratingCard__max {
  margin-left: 4px;
  opacity: 0.6;
  font-size: 1rem;
  font-weight: 600;
}

.ratingCard__reviews {
  margin-top: 4px;
  color: rgba(233, 237, 247, 0.65);
  font-size: 0.85rem;
}

.ratingCard__stars {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.star {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.star::before {
  content: "★";
  position: absolute;
  inset: 0;
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.star--full::after,
.star--partial::after {
  content: "★";
  position: absolute;
  inset: 0;
  color: #fbbc05;
  font-size: 18px;
}

.star--partial::after {
  width: calc(var(--star-fill) * 100%);
  overflow: hidden;
  white-space: nowrap;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (min-width: 801px) {
  .hero {
    padding-top: calc(40px + var(--headerH));
    padding-bottom: 40px;
  }
}

@media (max-width: 1000px) {
  .hero__content,
  .grid2 {
    grid-template-columns: 1fr;
  }
  
  .hero__copy {
    max-width: 640px;
    margin-top: -60px;
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: inline-block;
  }

  .nav__actions .btn {
    display: none;
  }

  .layer--shop {
    --layer-scale: 1.3;
  }

  .card {
    grid-column: span 12;
  }

  .section {
    padding: 88px 0;
  }

  .masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {

  .layer {
    transform-origin: right center;
  }

  .kicker {
    padding: 9px 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 620px) {
  .masonry {
    grid-template-columns: 1fr;
  }
  
  .nav__hours {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 1px;
    line-height: 1.15;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }


  .section {
    padding: 72px 0;
  }

  .section__actions--contact {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
    .layer--car {
      display: none;
    }
    
    .layer--streaks {
        display: none;
    }
    
    .layer--bg {
        background-position: 54% 100%;
    }
    
    .hero__title,
    .hero__lead,
    .kicker {
      text-shadow: 0 12px 34px rgba(0, 0, 0, 0.65);
    }
    
    .hero__layers::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 5;
      pointer-events: none;
      background:
        radial-gradient(
          120% 80% at 20% 30%,
          rgba(0, 0, 0, 0.5),
          rgba(0, 0, 0, 0.18) 55%,
          rgba(0, 0, 0, 0.38) 100%
        ),
        linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.18),
          rgba(0, 0, 0, 0) 45%,
          rgba(0, 0, 0, 0.35) 100%
        );
    }
}

/* =========================================================
   PLATFORM FIXES
   ========================================================= */

@supports (-webkit-touch-callout: none) {
  .siteHeader::before {
    background: rgba(9, 14, 27, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .metaCard,
  .contactCard {
    transition: none;
  }

  .scrollHint__mouse::after {
    animation: none;
  }
}

.siteHeader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.nav__hoursValue, .nav__hoursLabel {
  text-align: right;
}


.layer--car {
  background-size: clamp(900px, 75vw, 1100px) auto;
}

.siteHeaderBackdrop {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  padding-top: env(safe-area-inset-top);
  height: calc(env(safe-area-inset-top) + var(--navH));
  pointer-events: none;
  background: rgba(9, 14, 27, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
