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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; }

/* ============================================================
   TOKENS — dark-first automotive palette
============================================================ */
:root {
  --bg:              #1F1E1A;
  --bg-surface:      #282520;
  --bg-light:        #F2EDE4;

  --ink:             #EDEBE6;
  --ink-muted:       #7A7570;
  --ink-dark:        #1A1814;
  --ink-dark-muted:  #8A8078;

  --copper:          #B8733A;
  --copper-light:    rgba(184,115,58,0.12);

  --rule:            #302D28;
  --rule-light:      #DDD7CF;

  --font-serif:      'Oswald', sans-serif;
  --font-sans:       'Open Sans', system-ui, -apple-system, sans-serif;

  --container:       1280px;
  --nav-h:           72px;
  --ease:            cubic-bezier(0.22, 1, 0.36, 1);
  --t:               0.28s ease;
}

/* ============================================================
   UTILITIES
============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow--dark { color: var(--ink-dark-muted); }

/* Reveal — starts hidden; GSAP or fallback IO makes visible */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-copper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--copper);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--copper);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.btn-copper:hover { background: transparent; color: var(--copper); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  background: transparent;
  color: rgba(237,235,230,0.8);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid rgba(237,235,230,0.28);
  border-radius: 0;
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
}
.btn-ghost-light:hover {
  border-color: rgba(237,235,230,0.7);
  color: var(--ink);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  color: var(--ink-dark);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink-dark);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.btn-ghost-dark:hover {
  background: var(--ink-dark);
  color: var(--bg-light);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: var(--copper);
  border: 1.5px solid var(--copper);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.btn-whatsapp:hover { background: transparent; color: var(--copper); }

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t), backdrop-filter var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(31,30,26,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 56px;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(237,235,230,0.6);
  letter-spacing: 0.04em;
  transition: color var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-cta {
  padding: 9px 22px !important;
  background: var(--copper) !important;
  color: white !important;
  border: 1px solid var(--copper) !important;
  border-radius: 0 !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  transition: background var(--t), color var(--t) !important;
}
.nav-cta:hover {
  background: transparent !important;
  color: var(--copper) !important;
}

.nav-logo-mobile {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-logo-mobile img {
  height: 36px;
  width: auto;
  opacity: 0.9;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 56px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: transform var(--t), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.lang-toggle {
  position: absolute;
  right: 56px;
  background: none;
  border: 1px solid rgba(237,235,230,0.16);
  color: rgba(237,235,230,0.45);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 13px;
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
  border-radius: 0;
  line-height: 1;
}
.lang-toggle:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.mobile-menu {
  display: none;
  background: var(--bg-surface);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-top: 1px solid var(--rule);
}
.mobile-menu.open { max-height: 480px; }
.mobile-menu ul { padding: 8px 56px 24px; }
.mobile-menu li + li { border-top: 1px solid var(--rule); }
.mobile-link {
  display: block;
  padding: 16px 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-muted);
  transition: color var(--t);
}
.mobile-link:hover { color: var(--ink); }

/* ============================================================
   HERO — full-viewport cinematic
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__video.v-ready { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(12,12,11,0.15) 0%, rgba(12,12,11,0.55) 100%),
    linear-gradient(to bottom,
      rgba(12,12,11,0.45) 0%,
      rgba(12,12,11,0.05) 25%,
      rgba(12,12,11,0.05) 60%,
      rgba(12,12,11,0.72) 85%,
      rgba(12,12,11,0.88) 100%
    );
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237,235,230,0.42);
  margin-bottom: 36px;
}

.hero__logo-link { display: block; margin-bottom: 44px; }
.hero__logo-img {
  height: 160px;
  width: auto;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 500;
  color: white;
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.hero__line { display: block; }
.hero__line--italic { color: var(--copper); }

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll-hint span {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237,235,230,0.3);
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(184,115,58,0.7), transparent);
  animation: scroll-line 2.2s cubic-bezier(0.4,0,0.2,1) infinite;
  transform-origin: top;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  20%  { opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  61%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Bottom bar */
.hero__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 24px;
  border-top: 1px solid rgba(237,235,230,0.08);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(237,235,230,0.38);
}
.hero__bar a { transition: color var(--t); }
.hero__bar a:hover { color: rgba(237,235,230,0.75); }
.hero__bar-sep { color: rgba(237,235,230,0.2); }
.hero__bar-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  animation: dot-pulse 2.8s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,115,58,0.45); }
  50%       { box-shadow: 0 0 0 5px rgba(184,115,58,0); }
}

/* ============================================================
   STATEMENT — editorial full-bleed
============================================================ */
.statement {
  position: relative;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statement__photo {
  position: absolute;
  inset: 0;
}
.statement__photo img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  transform: translateY(0);
  will-change: transform;
}
.statement__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,12,11,0.5);
}

.statement__text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
}
.statement__quote {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3.4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(237,235,230,0.93);
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.statement__rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--copper);
  margin: 32px auto 0;
  transform-origin: left;
}

/* ============================================================
   WHY TRANSFER WITH US
============================================================ */
.why {
  padding: 104px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.why-header { margin-bottom: 64px; }

.why-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}
.why-title em { font-style: normal; color: var(--copper); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
  margin-bottom: 56px;
}

.why-item {
  padding: 44px 56px 44px 0;
  border-bottom: 1px solid var(--rule);
}
.why-item:nth-child(odd) { padding-right: 56px; }
.why-item:nth-child(even) { padding-left: 56px; border-left: 1px solid var(--rule); }

.why-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: rgba(237,235,230,0.07);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.why-item h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.why-item p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--ink-muted);
}

/* ============================================================
   SERVICES — numbered editorial list (light section)
============================================================ */
.services {
  background: var(--bg-light);
  padding: 104px 0;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 56px;
}
.services-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 500;
  color: var(--ink-dark);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}
.services-title em { font-style: normal; color: var(--copper); }

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

.svc-item {
  display: grid;
  grid-template-columns: 88px 1px 1fr auto;
  align-items: center;
  gap: 0 44px;
  padding: 44px 0;
  border-top: 1px solid var(--rule-light);
  transition: opacity 0.3s;
  cursor: default;
}
.svc-item:last-child { border-bottom: 1px solid var(--rule-light); }

.svc-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--rule-light);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  transition: color 0.35s var(--ease);
}
.svc-item:hover .svc-num { color: var(--copper); }

.svc-rule {
  width: 1px;
  height: 50px;
  background: var(--rule-light);
  flex-shrink: 0;
  transition: background 0.35s var(--ease);
}
.svc-item:hover .svc-rule { background: var(--copper); }

.svc-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.svc-body p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--ink-dark-muted);
  max-width: 480px;
}

.svc-cta {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dark-muted);
  white-space: nowrap;
  transition: color 0.3s;
  flex-shrink: 0;
}
.svc-item:hover .svc-cta { color: var(--copper); }

/* ============================================================
   FLEET — full-bleed split card
============================================================ */
.fleet {
  padding: 104px 0 0;
  border-top: 1px solid var(--rule);
}

.fleet-header {
  padding-bottom: 56px;
}
.fleet-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 12px;
}
.fleet-title em { font-style: normal; color: var(--copper); }
.fleet-sub {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}

.fleet-card {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  height: 62vh;
  min-height: 480px;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}

.fleet-card__photo {
  position: relative;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}

/* ── Slides ── */
.fleet-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fleet-slide.active { opacity: 1; position: relative; height: 100%; }
.fleet-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.4s var(--ease);
}
.fleet-card:hover .fleet-slide.active img { transform: scale(1); }

/* ── Arrows ── */
.fleet-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(12,12,11,0.55);
  border: 1px solid rgba(184,115,58,0.4);
  color: var(--ink);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.fleet-arrow:hover { background: var(--copper); border-color: var(--copper); }
.fleet-arrow--prev { left: 20px; }
.fleet-arrow--next { right: 20px; }

/* ── Dots ── */
.fleet-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.fleet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(237,235,230,0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 10px;
  background-clip: content-box;
  box-sizing: content-box;
}
.fleet-dot.active {
  background: var(--copper);
  transform: scale(1.3);
}

.fleet-card__rule { background: var(--copper); opacity: 0.4; }

.fleet-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
}

.fleet-model {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}

.fleet-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--ink-muted);
  margin-bottom: 32px;
  max-width: 400px;
}

.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 40px;
}
.fleet-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-muted);
}
.fleet-features li svg { stroke: var(--copper); flex-shrink: 0; }

/* ============================================================
   ABOUT — dark, stats grid
============================================================ */
.about {
  padding: 104px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

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

.about-text h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 24px;
}
.about-text h2 em { font-style: normal; color: var(--copper); }
.about-text p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.about-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 32px 0;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.about-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-muted);
  transition: color var(--t);
}
.about-contact svg { flex-shrink: 0; }
.about-contact:hover { color: var(--ink); }
.about-contact span { overflow-wrap: break-word; word-break: break-all; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.stat-card {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat-card:nth-child(even)    { border-right: none; }
.stat-card:nth-child(3),
.stat-card:nth-child(4)       { border-bottom: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-lbl {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ============================================================
   FAQ — accordion (light section)
============================================================ */
.faq {
  background: var(--bg-light);
  padding: 104px 0;
}

.faq-head { margin-bottom: 56px; }
.faq-head h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  color: var(--ink-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-top: 4px;
}

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

.faq-item { border-top: 1px solid var(--rule-light); }
.faq-item:last-child { border-bottom: 1px solid var(--rule-light); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
}
.faq-q span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-dark);
  letter-spacing: -0.01em;
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--ink-dark-muted);
  transition: transform var(--t);
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.25s ease;
}
.faq-a.open { max-height: 300px; padding-bottom: 28px; }
.faq-a p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--ink-dark-muted);
}

/* ============================================================
   BOOKING FORM (dark section)
============================================================ */
.booking {
  padding: 104px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 88px;
  align-items: start;
}

.booking-info h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 14px;
}
.booking-info h2 em { font-style: normal; color: var(--copper); }
.booking-info > p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--ink-muted);
  margin-bottom: 36px;
}

.booking-contacts { display: flex; flex-direction: column; gap: 8px; }

.bk-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: var(--bg-surface);
  cursor: pointer;
  transition: border-color var(--t);
}
.bk-contact:hover { border-color: var(--copper); }
.bk-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
  color: var(--copper);
}
.bk-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.bk-value {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--ink);
  margin-top: 3px;
  overflow-wrap: break-word;
  word-break: break-all;
}

.booking-form-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 44px;
}
.booking-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184,115,58,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(237,235,230,0.18); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7570' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--bg);
  padding-right: 38px;
  cursor: pointer;
  color: rgba(237,235,230,0.6);
}
.form-group select option { background: var(--bg-surface); color: var(--ink); }
.form-group select:focus { background-color: var(--bg); }
.form-group textarea { resize: vertical; min-height: 90px; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #141310;
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(237,235,230,0.06);
}
.footer-logo {
  height: 42px;
  width: auto;
  opacity: 0.7;
  margin-bottom: 16px;
}
.footer-brand p {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(237,235,230,0.28);
}
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(237,235,230,0.35);
  transition: color var(--t);
}
.footer-nav a:hover { color: rgba(237,235,230,0.7); }
.footer-social { display: flex; flex-direction: column; gap: 13px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(237,235,230,0.35);
  transition: color var(--t);
}
.footer-social a:hover { color: rgba(237,235,230,0.75); }
.footer-bottom { padding: 22px 0; }
.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(237,235,230,0.18);
  letter-spacing: 0.05em;
  text-align: center;
}

/* ============================================================
   RESPONSIVE — 1100px
============================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .nav-inner  { padding: 18px 40px; }
  .hamburger  { right: 40px; }
  .mobile-menu ul { padding: 0 40px; }

  .fleet-card__content { padding: 48px 52px; }
  .why-item:nth-child(odd)  { padding-right: 40px; }
  .why-item:nth-child(even) { padding-left: 40px; }
  .svc-item { gap: 0 32px; }
  .about-inner { gap: 56px; }
  .booking-inner { gap: 56px; }
}

/* ============================================================
   RESPONSIVE — 900px
============================================================ */
@media (max-width: 900px) {
  .container { padding: 0 32px; }
  .nav-inner  { padding: 20px 32px; }
  .hamburger  { right: 32px; display: flex; }
  .nav-links  { display: none; }
  .nav-logo-mobile { display: block; }
  .lang-toggle { right: auto; left: 32px; }
  .mobile-menu { display: block; }
  .mobile-menu ul { padding: 0 32px; }

  .hero__title { font-size: clamp(2.4rem, 7vw, 4.5rem); }
  .hero__logo-img { height: 120px; }

  .statement { height: 65vh; }
  .statement__quote { font-size: clamp(1.5rem, 4vw, 2.6rem); }

  .why { padding: 80px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item:nth-child(even) { border-left: none; padding-left: 0; border-top: none; }
  .why-item:nth-child(odd)  { padding-right: 0; }

  .services { padding: 80px 0; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 28px; }
  .svc-item {
    grid-template-columns: 64px 1px 1fr;
    grid-template-rows: auto auto;
    gap: 0 24px;
  }
  .svc-cta { display: none; }

  .fleet { padding: 80px 0 0; }
  .fleet-card {
    grid-template-columns: 1fr;
    grid-template-rows: 70vw 1px auto;
    height: auto;
    min-height: auto;
  }
  .fleet-card__photo { clip-path: none; height: 100%; }
  .fleet-slide.active { height: 70vw; }
  .fleet-card__rule { width: 100%; height: 1px; }
  .fleet-card__content { padding: 48px 32px; }
  .fleet-arrow { width: 48px; height: 48px; }
  .fleet-arrow--prev { left: 14px; }
  .fleet-arrow--next { right: 14px; }

  .about { padding: 80px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }

  .faq { padding: 80px 0; }

  .booking { padding: 80px 0; }
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — 600px
============================================================ */
@media (max-width: 600px) {
  .container  { padding: 0 20px; }
  .nav-inner  { padding: 20px 20px; }
  .hamburger  { right: 20px; padding: 10px; }
  .hamburger span { width: 26px; height: 2px; }
  .lang-toggle { left: 20px; }
  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .mobile-menu ul { padding: 0 20px; }

  .hero__title  { font-size: clamp(2rem, 9vw, 3.8rem); }
  .hero__logo-img { height: 90px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn-copper,
  .hero__actions .btn-ghost-light { width: 100%; justify-content: center; }
  .hero__eyebrow { display: none; }

  .statement { height: 55vh; min-height: 320px; }

  .why   { padding: 64px 0; }
  .why-item { padding: 32px 0 !important; }

  .services { padding: 64px 0; }
  .svc-num  { font-size: 2.2rem; }
  .svc-body h3 { font-size: 1.1rem; }
  .svc-item { gap: 0 18px; }

  .fleet { padding: 64px 0 0; }
  .fleet-card__content { padding: 40px 20px; }
  .fleet-features { gap: 9px; }

  .about   { padding: 64px 0; }
  .stat-card { padding: 32px 24px; }
  .stat-num  { font-size: 2.2rem; }

  .faq   { padding: 64px 0; }
  .faq-q { padding: 22px 0; }
  .faq-q span { font-size: 0.9rem; }

  .booking { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px 20px; }
  /* Prevent iOS auto-zoom on input focus (requires min 16px) */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
}

/* ============================================================
   RESPONSIVE — 400px
============================================================ */
@media (max-width: 400px) {
  .hero__title  { font-size: 2.8rem; }
  .why-title, .services-title, .fleet-title { font-size: 2.2rem; }
  .about-text h2, .booking-info h2, .faq-head h2 { font-size: 2rem; }
  .btn-copper, .btn-ghost-light, .btn-ghost-dark { padding: 13px 22px; font-size: 0.65rem; }
  .booking-form-wrap { padding: 22px 14px; }
  .stat-card { padding: 26px 18px; }
}
