/* ============================================
   LUXURY CAR RENTAL — DESIGN SYSTEM
   ============================================ */

:root {
  --bg: #050505;
  --bg-2: #0B0B0B;
  --bg-card: #111111;
  --accent: #D9A441;
  --accent-dark: #C9892B;
  --accent-light: #F0B34F;
  --white: #FFFFFF;
  --text-2: #BDBDBD;
  --text-3: #777777;
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(217,164,65,0.25);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --section-gap: 120px;
  --radius: 3px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.45s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: only light; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ---- Container ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--transition), background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5,5,5,0.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 18px 48px;
  border-bottom-color: var(--border);
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav-center a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  position: relative;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-center a:hover { color: var(--white); }
.nav-center a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.lang-switcher a {
  padding: 5px 9px;
  border-radius: 2px;
  color: rgba(255,255,255,0.4);
  transition: all var(--transition);
}

.lang-switcher a:hover { color: rgba(255,255,255,0.8); }
.lang-switcher a.active { color: var(--accent); }
.lang-sep { color: var(--border); font-weight: 300; user-select: none; }

.nav-book {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 26px;
  border: 1px solid rgba(217,164,65,0.6);
  border-radius: var(--radius);
  color: var(--accent);
  transition: all var(--transition);
}

.nav-book:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #030303;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--accent); }

.mobile-nav .lang-switcher {
  font-size: 13px;
  gap: 8px;
  margin-top: 16px;
}

.mobile-nav .lang-switcher a { color: rgba(255,255,255,0.4); font-size: 13px; }
.mobile-nav .lang-switcher a.active { color: var(--accent); }

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 44px;
  background: var(--accent);
  color: #030303;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(217,164,65,0.28);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 44px;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.18);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vh;
  height: 100vw;
  transform: translate(-50%, -50%) rotate(270deg);
  object-fit: cover;
  object-position: center;
  max-width: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.15) 0%,
    rgba(5,5,5,0.05) 35%,
    rgba(5,5,5,0.25) 70%,
    rgba(5,5,5,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 0 64px 80px;
  max-width: 640px;
}

.hero-logo-mark {
  margin-bottom: 48px;
}

.hero-logo-mark img {
  height: 84px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.6));
}

.hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}

.hero-rule {
  display: block;
  width: 38px;
  height: 1px;
  background: var(--accent);
  opacity: 0.75;
  flex-shrink: 0;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0;
  white-space: nowrap;
}

.hero-title {
  font-size: clamp(38px, 6vw, 86px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--white);
}

.hero-title strong {
  font-weight: 800;
  display: block;
  letter-spacing: -0.035em;
  color: var(--white);
}

.hero-subtitle {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.03em;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: floatDown 2.8s ease-in-out infinite;
}

.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
}

@keyframes floatDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ============================================
   SECTION LAYOUT
   ============================================ */

section { padding: var(--section-gap) 0; }

.section-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(30px, 3.8vw, 54px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.section-title strong { font-weight: 800; }

.section-subtitle {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 540px;
}

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

.section-header-center .section-subtitle {
  margin: 0 auto;
}

.accent-line {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 20px;
}

.accent-line-center {
  margin: 0 auto 20px;
}

/* ============================================
   ABOUT
   ============================================ */

.about { background: var(--bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-body p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-body p:last-of-type { margin-bottom: 0; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 52px;
  border: 1px solid var(--border);
}

.stat {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat:nth-child(2) { border-right: none; }
.stat:nth-child(3) { border-bottom: none; }
.stat:nth-child(4) { border-right: none; border-bottom: none; }

.stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}

.about-deco {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  border: 1px solid var(--border-accent);
  pointer-events: none;
  z-index: -1;
}

/* ============================================
   SERVICES
   ============================================ */

.services { background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 43px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-accent) 20%, var(--border-accent) 80%, transparent);
  pointer-events: none;
}

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

.step-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  color: var(--accent);
  background: var(--bg-2);
  transition: border-color var(--transition), background var(--transition);
}

.step-item:hover .step-icon {
  border-color: var(--accent);
  background: rgba(217,164,65,0.07);
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-n {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--white);
}

.step-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.72;
}

/* ============================================
   FLEET PREVIEW
   ============================================ */

.fleet { background: var(--bg-2); }

.fleet-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 32px;
}

.fleet-header .section-subtitle { margin-bottom: 0; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vehicle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.6);
}

.vc-img { overflow: hidden; }

.vehicle-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.75s var(--ease);
}

.vehicle-card:hover img { transform: scale(1.05); }

.vehicle-card-overlay { display: none; }

.vehicle-card-info {
  position: static;
  padding: 20px 22px 24px;
  transform: none;
  transition: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vehicle-card:hover .vehicle-card-info { transform: none; }

.vc-brand { display: none; }

.vc-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.vc-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.vc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 9px 22px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--white);
  opacity: 1;
  transform: none;
  letter-spacing: 0.03em;
  transition: border-color var(--transition), color var(--transition);
}

.vc-link::after { content: none; }
.vehicle-card:hover .vc-link {
  opacity: 1;
  transform: none;
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================
   WHY US
   ============================================ */

.why-us { background: var(--bg); }

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}

.why-us-text .section-subtitle { margin-bottom: 40px; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-box {
  background: var(--bg);
  padding: 36px 32px;
  transition: background var(--transition);
}

.feature-box:hover { background: var(--bg-card); }

.feature-box-icon {
  width: 38px;
  height: 38px;
  background: rgba(217,164,65,0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-box-icon svg { width: 20px; height: 20px; }

.feature-box-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.feature-box-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

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

.contact { background: var(--bg-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-details {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:first-child { border-top: 1px solid var(--border); }

.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.contact-value {
  font-size: 15px;
  color: var(--text-2);
}

/* Form */
.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

.field-input,
.field-select,
.field-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 14px;
  padding: 14px 18px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.field-select option { background: #111; color: var(--white); }

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: rgba(217,164,65,0.5);
  background: rgba(217,164,65,0.03);
}

.field-input.invalid,
.field-select.invalid,
.field-textarea.invalid { border-color: rgba(220,60,60,0.6); }

.field-input::placeholder,
.field-textarea::placeholder { color: var(--text-3); }

.field-textarea { resize: vertical; min-height: 110px; }

.field-error {
  font-size: 11px;
  color: #E05555;
  display: none;
}

.field-error.show { display: block; }

.form-btn {
  align-self: flex-start;
  padding: 16px 44px;
  background: var(--accent);
  color: #030303;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: all var(--transition);
}

.form-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217,164,65,0.28);
}

.form-success-msg {
  display: none;
  padding: 22px 28px;
  background: rgba(217,164,65,0.06);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
}

.form-success-msg.show { display: block; }

.form-server-error {
  display: none;
  margin-bottom: 18px;
  padding: 14px 20px;
  background: rgba(220, 50, 50, 0.06);
  border: 1px solid rgba(220, 50, 50, 0.35);
  border-radius: var(--radius);
  color: #c0392b;
  font-size: 13px;
  line-height: 1.5;
}

.form-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

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

.footer {
  background: #020202;
  border-top: 1px solid var(--border);
}

.footer-main {
  padding: 88px 0 60px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 80px;
}

.footer-brand-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand-text {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 300px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 13.5px;
  color: var(--text-3);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--text-2); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy { font-size: 12.5px; color: var(--text-3); }

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 12.5px;
  color: var(--text-3);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text-2); }

.footer-credit {
  border-top: 1px solid var(--border);
  padding: 14px 0;
  text-align: center;
  font-size: 11.5px;
  color: var(--text-3);
}

.footer-credit a {
  color: var(--text-3);
  text-decoration: underline;
  transition: color var(--transition);
}

.footer-credit a:hover { color: var(--text-2); }

/* ============================================
   VEHICLE PAGE — HERO
   ============================================ */

.v-hero {
  position: relative;
  height: 88vh;
  min-height: 620px;
  overflow: hidden;
}

.v-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.v-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.25) 0%,
    rgba(5,5,5,0.05) 35%,
    rgba(5,5,5,0.65) 75%,
    rgba(5,5,5,1) 100%
  );
}

.v-hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 48px;
  z-index: 2;
}

/* Language toggle — vehicle pages */
.lang-en { display: none; }
html[data-lang="en"] .lang-en { display: block; }
html[data-lang="en"] .lang-fr { display: none; }

.v-back {
  position: absolute;
  top: 130px;
  left: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  z-index: 10;
}

.v-back:hover { color: var(--accent); }
.v-back::before { content: '←'; font-size: 14px; }

.v-hero-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.v-hero-name {
  font-size: clamp(36px, 5.5vw, 78px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.03;
  margin-bottom: 0;
}

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

.v-gallery { background: var(--bg-2); padding: 80px 0; }

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo-grid-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: zoom-in;
  background: #000;
}

.photo-grid-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.4s ease;
}

.photo-grid-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.06);
}

/* last item with no pair spans full width */
.photo-grid-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.photo-grid-item:last-child:nth-child(odd) img {
  aspect-ratio: 16/9;
}

/* ============================================
   VEHICLE OVERVIEW & SPECS
   ============================================ */

.v-overview { background: var(--bg); }

.v-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: start;
}

.v-description p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 20px;
}

.v-description p:last-child { margin-bottom: 0; }

.specs-list {
  display: flex;
  flex-direction: column;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.spec-row:first-child { border-top: 1px solid var(--border); }

.spec-key {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.spec-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: right;
}

.spec-val em {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-2);
  margin-left: 3px;
}

.spec-row--price {
  margin-top: 8px;
  padding: 14px 16px;
  background: rgba(217, 164, 65, 0.07);
  border: 1px solid var(--border-accent);
  border-radius: 6px;
}

.spec-row--price + .spec-row {
  padding: 10px 16px;
  background: rgba(217, 164, 65, 0.03);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 6px 6px;
}

.spec-val--price {
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.spec-val--price em {
  color: var(--accent);
  opacity: 0.65;
  font-size: 13px;
  font-weight: 400;
  margin-left: 2px;
}

/* ============================================
   VEHICLE FEATURES
   ============================================ */

.v-features { background: var(--bg-2); }

.v-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 56px;
}

.v-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}

.v-feat:hover {
  border-color: var(--border-accent);
  background: #141414;
}

.v-feat-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.v-feat-name { font-size: 13.5px; font-weight: 500; }

/* ============================================
   INQUIRY FORM
   ============================================ */

.v-inquiry { background: var(--bg); }

.v-inquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

/* ============================================
   RELATED VEHICLES
   ============================================ */

.v-related { background: var(--bg-2); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lb-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  border-radius: 1px;
}

.lb-close {
  position: fixed;
  top: 24px; right: 28px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 10;
}

.lb-close:hover { background: rgba(255,255,255,0.16); }

.lb-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 10;
}

.lb-btn:hover { background: rgba(255,255,255,0.14); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-count {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  z-index: 10;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-left.in { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-right.in { opacity: 1; transform: translateX(0); }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

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

@media (max-width: 1100px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}

@media (max-width: 900px) {
  :root { --section-gap: 80px; }

  .container { padding: 0 28px; }
  .nav, .nav.scrolled { padding: 20px 28px; }
  .nav-center, .nav-book { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { order: -1; }
  .about-deco { display: none; }

  .why-us-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-main > *:first-child { grid-column: 1 / -1; }

  .v-overview-grid { grid-template-columns: 1fr; gap: 56px; }
  .v-inquiry-inner { grid-template-columns: 1fr; gap: 56px; }
  .v-features-grid { grid-template-columns: 1fr 1fr; }

  .fleet-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .v-back { left: 28px; top: 120px; }
  .v-hero-bottom { padding: 44px 28px; }
}

@media (max-width: 640px) {
  :root { --section-gap: 64px; }

  .container { padding: 0 20px; }
  .nav, .nav.scrolled { padding: 18px 20px; }

  /* ── HERO MOBILE REDESIGN ── */
  .hero {
    height: auto;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  /* Film: position:relative → wchodzi do flow.
     width=56.25vw i height=100vw → po rotate(270deg) wizualnie: 100vw × 56.25vw (16:9 full-width).
     Negative margins kompensują nadmiar flow-height elementu przed rotacją. */
  .hero-video {
    position: relative;
    top: auto;
    left: auto;
    align-self: center;
    width: 56.25vw;
    height: 100vw;
    margin: -21.875vw 0;
    transform: rotate(270deg);
    object-fit: contain;
    object-position: center;
    max-width: none;
  }

  /* Overlay pokrywa cały obszar hero */
  .hero-overlay {
    height: auto;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(5,5,5,0.15) 0%,
      rgba(5,5,5,0.05) 30%,
      rgba(5,5,5,0.35) 65%,
      rgba(5,5,5,0.92) 100%
    );
  }

  /* Napisy: blok poniżej filmu */
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 28px 20px 44px;
    text-align: center;
    max-width: 100%;
    background: var(--bg);
  }

  .hero-title { font-size: clamp(26px, 8vw, 36px); margin-bottom: 14px; }
  .hero-subtitle { font-size: 13px; margin-bottom: 28px; }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn-primary, .btn-secondary {
    padding: 13px 22px;
    width: auto;
    justify-content: center;
  }

  @keyframes mobileArrow {
    0%, 100% { opacity: 0.7; transform: rotate(45deg) translateY(0); }
    50%       { opacity: 1; transform: rotate(45deg) translateY(6px); }
  }

  .hero-scroll-hint {
    display: flex;
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    animation: none;
    width: 100%;
    background: var(--bg);
    padding: 10px 0 32px;
    font-size: 0;
    gap: 0;
    flex-direction: column;
    align-items: center;
  }

  .hero-scroll-hint::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: transparent;
    border-right: 2.5px solid rgba(255,255,255,0.9);
    border-bottom: 2.5px solid rgba(255,255,255,0.9);
    transform: rotate(45deg);
    animation: mobileArrow 2s ease-in-out infinite;
  }

  .about-stats { grid-template-columns: 1fr 1fr; }

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

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

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

  .v-features-grid { grid-template-columns: 1fr; }

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

  .form-row-2 { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  .v-back { left: 20px; }
  .v-hero-bottom { padding: 36px 20px; }

  .lb-btn { width: 40px; height: 40px; font-size: 16px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid-item:last-child:nth-child(odd) { grid-column: auto; }
  .photo-grid-item:last-child:nth-child(odd) img { aspect-ratio: 4/3; }
}

@media (max-width: 420px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
