/* ==============================================
   ROMO AUTO HUB — GLOBAL DESIGN SYSTEM
   Single source of truth for all pages
   ============================================== */

/* ------- CSS Reset ------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ------- Design Tokens — Romo Auto Hub Brand System ------- */
:root {
  /* Brand Colors (specified) */
  --primary:        #0056b3;   /* Main CTA blue */
  --primary-dark:   #004494;   /* Hover state */
  --primary-light:  #e8f0fb;   /* Tint / accent bg */

  /* Neutrals */
  --charcoal:       #333333;   /* Dark text / footer bg */
  --text:           #333333;
  --text-secondary: #666666;
  --white:          #ffffff;
  --light-gray:     #f4f4f4;   /* Section backgrounds */
  --mid-gray:       #eeeeee;
  --border:         #dddddd;

  /* Semantic */
  --accent:         #0056b3;   /* alias for primary throughout */
  --accent-hover:   #004494;
  --accent-light:   #e8f0fb;
  --green:          #1a7f4b;
  --green-bg:       #eaf7ee;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 14px rgba(0,0,0,0.09);
  --shadow-lg:  0 12px 30px rgba(0,0,0,0.13);

  /* Shape */
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   14px;
  --radius-full: 9999px;

  /* Layout */
  --nav-height:   72px;
  --section-pad:  80px;
  --container:    1200px;
  --gap:          24px;

  --transition: all 0.2s ease;
}

/* ------- Typography ------- */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--text-secondary); }

/* ------- Layout Utilities ------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 5%;
}
section {
  padding: var(--section-pad) 5%;
}
.bg-light { background: var(--light-gray); }

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 { color: var(--charcoal); margin-bottom: 12px; }
.section-header p  { font-size: 1.05rem; }

/* Responsive Grid System */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

/* ------- Navigation ------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}
.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.nav-logo span { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s ease;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.lang-switcher {
  display: flex;
  gap: 4px;
  padding-right: 20px;
  border-right: 1px solid var(--border);
}
.lang-btn {
  background: none;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--accent-light);
  color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: left center;
}
.hamburger.open span:nth-child(1) { transform: rotate(40deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: rotate(-40deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
}
.nav-overlay.visible { display: block; }

/* Page offset for fixed nav */
main, .page-content { padding-top: var(--nav-height); }

/* ------- Premium Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-sm { padding: 10px 24px; font-size: 0.75rem; }

/* ------- Cards ------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}
.card h3 { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 10px; }
.card p  { font-size: 0.93rem; margin: 0; }

/* ------- Cinematic Image Hero Section ------- */
.image-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  min-height: 500px;
  max-height: 800px;
  display: flex;
  align-items: center;
  margin-top: var(--nav-height);
  overflow: hidden;
  padding: 0 5%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('Enterance.jpg') center/cover no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
  z-index: -1;
}

.hero-content-left {
  position: relative;
  z-index: 1;
  max-width: 650px;
  text-align: left;
}

.hero-pretitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.hero-headline {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.hero-cta-container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ------- Stats Bar ------- */
.stats-bar-section {
  background-color: var(--white);
  padding: 30px 5%;
  border-bottom: 1px solid var(--border);
}

.stats-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--charcoal);
}

.stat-item svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.stat-text h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-text p {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin: 0;
  font-weight: 500;
}

/* ------- Featured Inventory Slider ------- */
.featured-inventory {
  padding: 80px 5%;
  background: var(--light-gray);
}

.featured-slider {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.car-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.car-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66.66%; /* 3:2 aspect ratio */
  background: #eaeaea;
}

.car-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.car-subtitle {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0;
}

.car-actions {
  margin-top: auto;
  padding-top: 16px;
}

/* Fallback: single image hero (for pages that still use old .hero) */
.hero {
  position: relative;
  min-height: 580px;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: var(--nav-height);
  overflow: hidden;
}
.hero-bg-old {
  position: absolute;
  inset: 0;
  background: url('Enterance.jpg') center/cover no-repeat;
  z-index: -2;
}
.hero-overlay-old {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,30,80,0.52) 0%, rgba(0,0,0,0.45) 100%);
  z-index: -1;
}
.hero-content { max-width: 860px; padding: 0 24px; }
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 36px; }

/* ------- Page Header (Inner pages) ------- */
.page-header {
  background: var(--light-gray);
  color: var(--charcoal);
  padding: 80px 5% 40px;
  margin-top: var(--nav-height);
  text-align: center;
}
.page-header h1 { color: var(--charcoal); font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 12px; }
.page-header p  { color: var(--text-secondary); font-size: 1.05rem; }

/* ------- Inventory / Car Grid ------- */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
}
.car-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.car-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.car-image-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: var(--mid-gray);
}
.car-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.car-card:hover .car-image-wrapper img { transform: scale(1.04); }
.car-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--green-bg);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}
.car-info { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.car-header { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 4px; }
.car-title { font-size: 1rem; font-weight: 700; color: var(--charcoal); }
.car-prices { text-align: left; flex-shrink: 0; }
.price-full { font-size: 1.15rem; font-weight: 800; color: var(--charcoal); display: block; }
.price-monthly { font-size: 0.78rem; font-weight: 600; color: var(--accent); display: block; }
.price-cash { font-size: 0.72rem; color: var(--text-secondary); display: block; }
.car-subtitle { font-size: 0.8rem; color: var(--text-secondary); margin: 4px 0 12px; }
.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.car-spec::after { content: '·'; margin-left: 14px; }
.car-spec:last-child::after { content: ''; margin: 0; }
.car-actions { display: flex; gap: 8px; margin-top: auto; }
.car-actions .btn { flex: 1; padding: 10px 12px; font-size: 0.82rem; }

/* ------- Contact Form ------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.contact-detail svg { color: var(--accent); flex-shrink: 0; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,86,179,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-status { margin-top: 12px; font-size: 0.9rem; text-align: center; }

/* ------- Legal Pages ------- */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal-content h2 {
  font-size: 1.35rem;
  color: var(--charcoal);
  margin: 36px 0 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 16px; }
.legal-content a { color: var(--accent); text-decoration: underline; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content li { list-style: disc; margin-bottom: 8px; color: var(--text-secondary); }

/* ------- Footer — Dark #333333 background ------- */
.footer {
  background: #333333;  /* brand dark grey */
  color: var(--white);
  padding: 64px 5% 32px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .nav-logo { color: var(--white); font-size: 1.15rem; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 0.88rem; color: #aaaaaa; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aaaaaa;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: #cccccc;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  color: #888888;
}

/* ------- WhatsApp FAB ------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 1005;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.whatsapp-fab img { width: 100%; height: 100%; object-fit: cover; }

/* ------- Cookie Banner ------- */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 9999;
  padding: 20px 5%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { font-size: 0.88rem; color: var(--text-secondary); flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ------- Inventory Filter Bar ------- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ------- Premium Workshop Section ------- */
.workshop-section {
  padding: 100px 5%;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.workshop-text h2 {
  color: var(--charcoal);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.workshop-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.workshop-list {
  margin-bottom: 30px;
}
.workshop-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1.05rem;
}
.workshop-list svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}
.workshop-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.workshop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------- Brands Section ------- */
.brands-section {
  padding: 60px 5%;
  background: var(--light-gray);
  text-align: center;
}
.brands-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 30px;
  text-transform: uppercase;
}
.brands-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 60px;
  opacity: 0.7;
}
.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  text-transform: uppercase;
}

/* ------- Final CTA Banner ------- */
.cta-banner {
  background: var(--charcoal);
  color: var(--white);
  padding: 100px 5%;
  text-align: center;
}
.cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------- Scroll Animation ------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

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

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

/* Tablet — 900px */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --nav-height: 64px;
  }

  /* Mobile Nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 260px;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: calc(var(--nav-height) + 24px) 32px 40px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.12);
    transition: right 0.28s ease;
    z-index: 1050;
    gap: 8px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; padding: 10px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .lang-switcher { border: none; padding: 0; }

  /* Grid collapse */
  .grid-2, .grid-3, .grid-4, .workshop-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Contact layout */
  .contact-layout { gap: 32px; }
  .contact-form { padding: 24px; }

  /* Video Hero */
  .video-hero { height: auto; min-height: 520px; padding: 40px 0; }
  .video-content h1 { font-size: 2rem; margin-bottom: 16px; }
  .video-content p { font-size: 1rem; margin-bottom: 24px; }
  .video-cta-container { flex-direction: column; width: 100%; }
  .video-cta-container .btn { width: 100%; }

  /* Buttons */
  .btn { padding: 13px 24px; font-size: 0.9rem; }
}

/* Small Mobile — 480px */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .car-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
