/* ===== MASTER CAR DETAILING - PREMIUM CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --surface: #1e1e2a;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text-primary: #f0f0f5;
  --text-secondary: rgba(240, 240, 245, 0.65);
  --text-muted: rgba(240, 240, 245, 0.4);
  --accent: #2d7aed;
  --accent-light: #5a9df5;
  --accent-dark: #1a5bbf;
  --accent-glow: rgba(45, 122, 237, 0.25);
  --accent-subtle: rgba(45, 122, 237, 0.08);
  --gold: #c9a84c;
  --gradient-accent: linear-gradient(135deg, #2d7aed, #5a9df5);
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 8px 30px rgba(45, 122, 237, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --font-primary: 'Outfit', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-secondary);
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.legal-modal-open {
  overflow: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== LEGAL CONSENT ===== */
.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: min(420px, calc(100vw - 32px));
  padding: 20px 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(19, 23, 35, 0.96), rgba(9, 11, 18, 0.98));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(45, 122, 237, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: var(--transition);
}

.consent-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.consent-close,
.legal-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(240, 240, 245, 0.8);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-fast);
}

.consent-close:hover,
.legal-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.consent-badge,
.legal-modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(45, 122, 237, 0.12);
  border: 1px solid rgba(90, 157, 245, 0.2);
  color: #dbe8ff;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.consent-badge::before,
.legal-modal-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 14px rgba(90, 157, 245, 0.62);
}

.consent-title {
  margin: 14px 0 8px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.consent-text,
.legal-modal-subtitle,
.legal-copy-section p {
  color: rgba(240, 240, 245, 0.72);
  font-size: 0.96rem;
  line-height: 1.75;
}

.consent-actions,
.legal-modal-actions,
.legal-footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.consent-actions {
  margin-top: 16px;
}

.consent-link-btn,
.legal-footer-link,
.legal-tab {
  border: 0;
  background: transparent;
  color: rgba(219, 232, 255, 0.9);
  cursor: pointer;
  font: inherit;
  transition: var(--transition-fast);
}

.consent-link-btn {
  padding: 0;
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-color: rgba(90, 157, 245, 0.55);
  text-underline-offset: 4px;
}

.consent-link-btn:hover,
.legal-footer-link:hover {
  color: #fff;
}

.consent-accept-btn {
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--gradient-accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-accent);
  transition: var(--transition);
}

.consent-accept-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(45, 122, 237, 0.24);
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.legal-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 12, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.legal-modal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 920px);
  overflow-y: auto;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(45, 122, 237, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(15, 19, 30, 0.98), rgba(8, 10, 16, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  z-index: 1;
}

.legal-modal-title {
  margin: 16px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.98;
  font-weight: 500;
  color: #fff;
}

.legal-tabs {
  display: inline-flex;
  gap: 10px;
  margin: 24px 0 18px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.legal-tab {
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(240, 240, 245, 0.66);
}

.legal-tab.active {
  background: rgba(90, 157, 245, 0.16);
  color: #fff;
}

.legal-panel {
  display: none;
}

.legal-panel.active {
  display: block;
}

.legal-copy-section + .legal-copy-section {
  margin-top: 18px;
}

.legal-copy-section h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-copy-section a {
  color: #dbe8ff;
  text-decoration: underline;
  text-decoration-color: rgba(90, 157, 245, 0.55);
  text-underline-offset: 4px;
}

.legal-modal-actions {
  margin-top: 24px;
}

.legal-footer-links {
  justify-content: center;
  margin-top: 12px;
}

.legal-footer-link {
  padding: 0;
  font-size: 0.88rem;
  text-decoration: underline;
  text-decoration-color: rgba(90, 157, 245, 0.45);
  text-underline-offset: 4px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-logo-image {
  display: block;
  width: auto;
  height: 68px;
  max-width: min(240px, 32vw);
}

.nav-logo-wordmark {
  display: inline-block;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.28),
    0 0 24px rgba(255, 255, 255, 0.18),
    0 0 38px rgba(45, 122, 237, 0.32),
    0 0 56px rgba(45, 122, 237, 0.18);
  animation: logoGlow 2s ease-in-out infinite alternate;
}

.navbar .nav-logo-wordmark,
.footer-brand .nav-logo-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 0.92;
}

.navbar .nav-logo-wordmark::after,
.footer-brand .nav-logo-wordmark::after {
  content: "Detailing";
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0.32rem;
  color: var(--accent-light);
  text-shadow:
    0 0 12px rgba(90, 157, 245, 0.42),
    0 0 24px rgba(45, 122, 237, 0.28);
}

.nav-logo:hover .nav-logo-wordmark {
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.42),
    0 0 30px rgba(255, 255, 255, 0.28),
    0 0 48px rgba(45, 122, 237, 0.48),
    0 0 72px rgba(45, 122, 237, 0.3);
}

@keyframes logoGlow {
  from {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.18),
      0 0 16px rgba(255, 255, 255, 0.1),
      0 0 24px rgba(45, 122, 237, 0.18),
      0 0 36px rgba(45, 122, 237, 0.08);
  }
  to {
    text-shadow:
      0 0 16px rgba(255, 255, 255, 0.36),
      0 0 28px rgba(255, 255, 255, 0.22),
      0 0 46px rgba(45, 122, 237, 0.42),
      0 0 68px rgba(45, 122, 237, 0.24);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-home-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-item {
  position: relative;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition-fast);
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.nav-link-active {
  color: var(--text-primary);
  text-shadow: 0 0 18px rgba(45, 122, 237, 0.22);
}

.nav-links a.nav-link-active::after {
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  padding: 10px 16px;
  transition: var(--transition);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  inset: auto 14px 7px 14px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition-fast);
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--text-primary);
  border-color: rgba(90, 157, 245, 0.42);
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 28px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(45, 122, 237, 0.08);
}

.nav-dropdown-toggle:hover::after,
.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown-caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--accent-light);
  transition: var(--transition-fast);
}

.nav-dropdown.open .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 30;
  width: min(420px, 78vw);
  max-height: min(68vh, 620px);
  background:
    linear-gradient(180deg, rgba(26, 31, 45, 0.98) 0%, rgba(15, 18, 28, 0.97) 100%);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(45, 122, 237, 0.08);
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  pointer-events: none;
  overflow-x: hidden;
  overflow-y: auto;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  scrollbar-width: thin;
  scrollbar-color: rgba(90, 157, 245, 0.5) rgba(255, 255, 255, 0.04);
}

.nav-submenu::-webkit-scrollbar {
  width: 10px;
}

.nav-submenu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.nav-submenu::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(90, 157, 245, 0.7), rgba(45, 122, 237, 0.45));
  border-radius: 999px;
  border: 2px solid rgba(15, 18, 28, 0.95);
}

.nav-submenu::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90, 157, 245, 0.5), transparent);
}

.nav-submenu::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 28px;
  width: 14px;
  height: 14px;
  background: rgba(24, 28, 40, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}

.nav-dropdown.open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-submenu a {
  display: block;
  position: relative;
  padding: 13px 24px 13px 28px;
  color: rgba(240, 240, 245, 0.84);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  line-height: 1.4;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-submenu a::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(90, 157, 245, 0.45);
  transform: translateY(-50%) scale(0.7);
  opacity: 0;
  transition: var(--transition-fast);
}

.nav-submenu a:hover {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(45, 122, 237, 0.16), rgba(45, 122, 237, 0.04) 60%, transparent);
  padding-left: 34px;
}

.nav-submenu a:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.nav-cta {
  padding: 10px 28px !important;
  border: 1px solid var(--accent) !important;
  border-radius: var(--radius-xl);
  color: var(--accent-light) !important;
  font-size: 0.75rem !important;
  letter-spacing: 2px !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: var(--shadow-accent);
}

.nav-cta::after { display: none !important; }

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  position: relative;
  z-index: 1002;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
  color: var(--text-secondary);
}

.lang-btn:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
}

.lang-flag {
  width: 22px;
  height: 15px;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  flex-shrink: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.flag-it {
  background-image: url('assets/flags/it.png');
}

.flag-pt {
  background-image: url('assets/flags/pt.png');
}

.flag-en {
  background-image: url('assets/flags/en.png');
}

.flag-fr {
  background-image: url('assets/flags/fr.png');
}

.flag-es {
  background-image: url('assets/flags/es.png');
}

.lang-code {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.lang-chevron {
  transition: var(--transition);
  opacity: 0.5;
}

.lang-dropdown.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: rgba(22, 22, 31, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown.open .lang-option {
  visibility: visible;
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-primary);
  border: none;
  background: none;
  width: 100%;
  color: var(--text-secondary);
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.lang-option.active {
  background: var(--accent-subtle);
  color: var(--accent-light);
}

.lang-option .lang-flag {
  width: 24px;
  height: 16px;
}

.lang-option-name {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.lang-option-code {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.06);
  filter: brightness(0.7) saturate(0.9) contrast(1.05);
}

.hero-video-wrapper video::-webkit-media-controls,
.hero-video-wrapper video::-webkit-media-controls-enclosure,
.hero-video-wrapper video::-webkit-media-controls-panel,
.hero-video-wrapper video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}

.hero-video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45, 122, 237, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(90, 157, 245, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0f 0%, #0d0d14 50%, #0a0a0f 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(6, 7, 12, 0.78) 0%,
      rgba(8, 10, 16, 0.52) 38%,
      rgba(10, 10, 15, 0.66) 72%,
      rgba(10, 10, 15, 0.96) 100%
    ),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
  animation: fadeInDown 1s ease 0.2s both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.hero-badge-text {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease 0.4s both;
  color: var(--text-primary);
}

.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 600px;
  margin: 20px auto 40px;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease 0.8s both;
}

.promo-grid-section {
  padding: 18px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(255, 214, 10, 0.05), transparent 35%),
    linear-gradient(180deg, #060608 0%, #0a0a0f 100%);
}

.promo-grid-shell {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.promo-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.08fr;
  gap: 16px;
  align-items: stretch;
}

.promo-card {
  position: relative;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.promo-copy-card {
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(12, 12, 14, 0.76) 0%, rgba(14, 14, 16, 0.68) 32%, rgba(14, 14, 16, 0.34) 56%, rgba(10, 10, 12, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.14)),
    url('assets/promo-left-card.png');
  background-position: left center, center, 62% center;
  background-size: auto, auto, cover;
}

.promo-copy-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.18) 42%, transparent 74%),
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.08), transparent 16%);
  mix-blend-mode: normal;
}

.promo-copy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 12, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%);
  opacity: 1;
}

.promo-copy-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 34px 30px;
  max-width: 500px;
}

.promo-kicker {
  display: none;
}

.promo-title {
  max-width: 500px;
  font-size: clamp(2rem, 2.85vw, 2.7rem);
  line-height: 0.94;
  letter-spacing: 0.3px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.promo-subtitle {
  display: none;
}

.promo-watermark {
  position: absolute;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.promo-watermark-left {
  left: -138px;
  bottom: 34px;
  font-size: clamp(5rem, 8vw, 7.4rem);
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.1);
  transform: rotate(-56deg);
  transform-origin: left bottom;
}

.promo-video-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 0;
  background: #090909;
}

.promo-video-frame {
  position: relative;
  min-height: 0;
  aspect-ratio: 848 / 480;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 214, 10, 0.28), rgba(255, 214, 10, 0) 32%),
    #050505;
}

.promo-video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(132deg, transparent 0 24%, rgba(255, 230, 92, 0.95) 24.3%, rgba(255, 230, 92, 0.12) 25.2%, transparent 26%),
    linear-gradient(132deg, transparent 0 39%, rgba(255, 230, 92, 0.86) 39.3%, rgba(255, 230, 92, 0.1) 40.3%, transparent 41%),
    linear-gradient(132deg, transparent 0 55%, rgba(255, 230, 92, 0.82) 55.3%, rgba(255, 230, 92, 0.08) 56.2%, transparent 57%);
  mix-blend-mode: screen;
  z-index: 2;
  pointer-events: none;
}

.promo-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.03) contrast(1.02) brightness(0.78);
}

.promo-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 36%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.66) 42%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

.promo-shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  width: calc(100% - 20px);
  margin: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(19, 4, 4, 0.92);
  color: #fff;
  font-weight: 800;
  font-size: 0.74rem;
  text-transform: uppercase;
  transition: var(--transition);
}

.promo-shop-link:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(40, 7, 7, 0.98);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 1.2s both;
}

.hero-scroll-text {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scroll-line 2s ease infinite;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: 0.6s;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover::before { left: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: var(--accent-subtle);
}

/* ===== STATS BAR ===== */
.stats-bar {
  position: relative;
  z-index: 5;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 30px;
}

.about-title em {
  font-style: italic;
  color: var(--accent-light);
}

.about-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--accent-subtle);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 30px 0;
}

.about-highlight p {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 400;
  font-style: italic;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-image:hover img { transform: scale(1.03); }

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 14px 24px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.about-image-badge .badge-year {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-light);
  line-height: 1;
}

.about-image-badge .badge-text {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 120px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title em { font-style: italic; color: var(--accent-light); }

.section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 550px;
  margin: 0 auto;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
  transition: var(--transition);
  overflow: hidden;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent);
  box-shadow: var(--shadow-accent);
}

.service-card:hover .service-icon svg {
  stroke: #fff;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
  font-weight: 300;
}

.service-card .service-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== INFO SECTION ===== */
.info-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 120px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.info-panel {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(45, 122, 237, 0.1), transparent 34%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90, 157, 245, 0.55), transparent);
}

.info-panel-lead {
  min-height: 100%;
}

.info-eyebrow,
.info-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(90, 157, 245, 0.2);
  background: rgba(45, 122, 237, 0.08);
  color: var(--accent-light);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.info-panel-lead h3,
.info-card-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.08;
  margin: 22px 0 14px;
}

.info-panel-lead p,
.info-note {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
}

.info-quick-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 32px;
}

.info-quick-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-quick-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
}

.info-quick-item p {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.info-action-row .btn-outline,
.info-action-row .btn-primary {
  min-width: 200px;
  justify-content: center;
}

.info-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info-card-head h3 {
  margin-bottom: 0;
}

.info-map-card {
  padding-bottom: 26px;
}

.info-map-frame {
  margin-top: 24px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05) saturate(0.85);
}

.info-hours-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.info-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.info-hours-row strong {
  color: var(--text-primary);
  font-size: 0.92rem;
}

.info-note {
  margin-top: 18px;
}

.info-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.info-form input,
.info-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font: inherit;
  transition: var(--transition-fast);
}

.info-form input::placeholder,
.info-form textarea::placeholder {
  color: var(--text-muted);
}

.info-form input:focus,
.info-form textarea:focus {
  outline: none;
  border-color: rgba(90, 157, 245, 0.5);
  box-shadow: 0 0 0 4px rgba(45, 122, 237, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.info-form .btn-primary {
  width: 100%;
  justify-content: center;
}

.info-form .btn-primary:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-honey {
  display: none !important;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  text-align: center;
}

.form-status.success {
  color: #7ddc9f;
}

.form-status.error {
  color: #ff9b9b;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  margin: 0 60px 120px;
  padding: 80px 60px;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(45, 122, 237, 0.12) 0%, transparent 60%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 122, 237, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner h2 em { font-style: italic; color: var(--accent-light); }

.cta-banner p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 36px;
  font-weight: 300;
  position: relative;
}

.cta-banner .btn-primary { position: relative; }

/* ===== CONTACT / FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.footer-brand .nav-logo { margin-bottom: 20px; }

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.footer-col a:hover { color: var(--accent-light); transform: translateX(4px); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.1rem;
  padding: 0;
}

.footer-social a:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
  color: var(--accent-light);
  transform: translateY(-2px) translateX(0);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== GARAGE 55 FLOATING LINK ===== */
.garage55-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(10, 10, 15, 0.42);
  box-shadow:
    0 0 14px rgba(255, 102, 0, 0.5),
    0 0 34px rgba(255, 102, 0, 0.26),
    0 12px 28px rgba(0, 0, 0, 0.34);
  z-index: 1350;
  animation: garage55Float 3.2s ease-in-out infinite;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.garage55-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 0 18px rgba(255, 102, 0, 0.7),
    0 0 46px rgba(255, 102, 0, 0.34),
    0 16px 34px rgba(0, 0, 0, 0.4);
}

.garage55-float img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
}

@keyframes garage55Float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .navbar { padding: 16px 30px; }
  .navbar.scrolled { padding: 12px 30px; }
  .promo-grid-shell { width: min(1080px, calc(100% - 32px)); }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card { min-height: 300px; }
  .promo-copy-content { max-width: 100%; padding: 24px 22px; }
  .promo-watermark-left {
    left: -24px;
    bottom: 22px;
    font-size: 3.1rem;
  }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 40px 30px; }
  .about { grid-template-columns: 1fr; padding: 80px 30px; gap: 50px; }
  .services { padding: 80px 30px; }
  .info-section { padding: 0 30px 80px; }
  .info-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { margin: 0 30px 80px; padding: 60px 30px; }
  .footer { padding: 60px 30px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .garage55-float {
    right: 16px;
    bottom: 18px;
    width: 64px;
    height: 64px;
    border-radius: 8px;
  }
  .garage55-float img {
    border-radius: 6px;
  }
  .consent-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    padding: 18px 16px 16px;
    border-radius: 20px;
  }
  .consent-actions,
  .legal-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .legal-modal {
    padding: 12px;
  }
  .legal-modal-dialog {
    padding: 24px 18px;
    border-radius: 24px;
  }
  .legal-tabs {
    display: flex;
    width: 100%;
  }
  .legal-tab {
    flex: 1;
    text-align: center;
  }
  .nav-links { 
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 18px;
    padding:
      max(92px, calc(env(safe-area-inset-top) + 76px))
      20px
      calc(28px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.active { display: flex; }
  .nav-links a,
  .nav-dropdown-toggle { font-size: 1rem; letter-spacing: 3px; }
  .nav-item {
    width: 100%;
    flex-shrink: 0;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }
  .nav-submenu {
    position: static;
    width: 100%;
    margin-top: 16px;
    background: linear-gradient(180deg, rgba(26, 31, 45, 0.98), rgba(15, 18, 28, 0.98));
    border-radius: var(--radius-md);
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: max-height var(--transition), padding var(--transition);
  }
  .nav-dropdown.open .nav-submenu {
    max-height: 70vh;
    padding: 10px 0;
  }
  .nav-submenu::after {
    display: none;
  }
  .nav-submenu a {
    font-size: 0.82rem;
    padding: 12px 20px;
    text-align: center;
  }
  .nav-cta {
    flex-shrink: 0;
    margin-top: 4px;
  }
  .nav-submenu a:hover {
    padding-left: 20px;
  }
  .nav-submenu a::before {
    display: none;
  }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-actions { flex-direction: column; gap: 14px; }
  .hero-scroll {
    left: 0;
    bottom: 28px;
    width: 100%;
    transform: none;
    gap: 10px;
    text-align: center;
  }
  .hero-scroll-text,
  .hero-scroll-line {
    margin-inline: auto;
  }
  .promo-grid-shell { width: calc(100% - 16px); }
  .promo-card { min-height: 220px; }
  .promo-copy-content { padding: 20px 18px 22px; }
  .promo-title {
    font-size: clamp(1.2rem, 6.6vw, 2rem);
    line-height: 0.95;
    margin-bottom: 10px;
  }
  .promo-title br { display: none; }
  .promo-subtitle {
    font-size: 0.76rem;
    max-width: 100%;
    margin-bottom: 12px;
  }
  .promo-shop-link {
    width: calc(100% - 16px);
    margin: 8px;
    padding: 10px 12px;
    font-size: 0.7rem;
  }
  .promo-watermark-left {
    display: none;
  }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 40px 20px; }
  .info-section { padding: 0 20px 70px; }
  .info-panel { padding: 24px 20px; border-radius: 22px; }
  .info-action-row { flex-direction: column; }
  .info-action-row .btn-outline,
  .info-action-row .btn-primary { min-width: 0; }
  .info-hours-row { flex-direction: column; align-items: flex-start; }
  .info-map-frame,
  .info-map-frame iframe { min-height: 280px; }
  .stat-item:not(:last-child)::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand,
  .footer-col {
    text-align: center;
  }
  .footer-brand .nav-logo {
    justify-content: center;
  }
  .nav-logo-image {
    height: 52px;
    max-width: min(220px, 56vw);
  }
  .nav-logo-wordmark {
    font-size: clamp(0.95rem, 4.2vw, 1.2rem);
    letter-spacing: 0.18rem;
  }
  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
