/* ─── FONTS & RESET ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;1,300&display=swap');

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

:root {
  --gold: #ffd700;
  --gold-dim: #c9a800;
  --dark: #0e0e0e;
  --dark-2: #161616;
  --dark-3: #1e1e1e;
  --dark-4: #2a2a2a;
  --text: #f0ece4;
  --muted: #8a8a8a;
  --border: rgba(255,255,255,0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ─── NOISE TEXTURE OVERLAY ─────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1000;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 48px; }
.logo-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: 2px;
}
.logo-fallback span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--dark);
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  transition: background var(--transition), transform var(--transition);
}
.nav-links .nav-cta:hover { background: var(--gold-dim); color: var(--dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(14,14,14,0.97);
  border-top: 1px solid var(--border);
  padding: 1rem 2.5rem;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.6rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-dim); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn:active { transform: translateY(0) !important; }

/* ─── SECTION COMMONS ────────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
}

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--nav-h) 2.5rem 0;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
  gap: 2rem;
}
.hero-bg-text {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(160px, 22vw, 320px);
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -8px;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  max-width: 480px;
  animation: fadeUp 0.9s ease forwards;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.accent { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 360px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-car {
  position: relative;
  flex: 1 1 auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  align-self: flex-end;
  pointer-events: none;
  padding-bottom: 0;
}
.car-img {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/9;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  transform: scaleX(-1);
  animation: floatCar 4s ease-in-out infinite;
}
.car-reflection {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/9;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  transform: scaleX(-1) scaleY(-1);
  opacity: 0.12;
  filter: blur(8px);
  margin-top: -30%;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  pointer-events: none;
}
#hero-wrap { position: relative; }
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--muted), transparent);
  animation: expandLine 2s ease-in-out infinite;
}

/* ─── STATS STRIP ────────────────────────────────────────── */
.stats-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 2rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 3rem;
  gap: 0.25rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── ABOUT ──────────────────────────────────────────────── */
#about {
  padding: 7rem 0;
  background: var(--dark-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(240,236,228,0.7);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
}
.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e0e0e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.4rem;
  border-radius: 4px;
  transition: var(--transition);
  animation: fadeUp 0.6s ease both;
}
.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }
.about-card:nth-child(4) { animation-delay: 0.4s; }
.about-card:hover { background: #2e2e2e; transform: translateX(4px); }
.about-card-icon { font-size: 1.8rem; flex-shrink: 0; }
.about-card-text { display: flex; flex-direction: column; gap: 0.2rem; }
.about-card-text strong { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.about-card-text span { font-size: 0.82rem; color: var(--muted); }

/* ─── SERVICES ───────────────────────────────────────────── */
#services {
  padding: 7rem 0;
  background: var(--dark);
}
#services h2 { margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--dark-2);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover::after { width: 100%; }
.service-card:hover { background: var(--dark-3); }
.service-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}
.service-card p { font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* ─── LOCATION ───────────────────────────────────────────── */
#location {
  padding: 7rem 0;
  background: var(--dark-2);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: stretch;
}
.location-text p {
  color: rgba(240,236,228,0.7);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.location-info { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
}
.loc-icon { font-size: 1.2rem; flex-shrink: 0; }
.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
}
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 360px; }

/* ─── CTA STRIP ──────────────────────────────────────────── */
.cta-strip {
  background: var(--gold);
  padding: 4rem 2rem;
}
.cta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 0;
}
.cta-strip .btn-primary {
  background: var(--dark);
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-strip .btn-primary:hover { background: #1a1a1a; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-logo img { height: 40px; }
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: var(--muted); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatCar {
  0%, 100% { transform: scaleX(-1) translateY(0); }
  50%       { transform: scaleX(-1) translateY(-12px); }
}
@keyframes expandLine {
  0%, 100% { width: 32px; opacity: 0.5; }
  50%       { width: 64px; opacity: 1; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .location-grid { grid-template-columns: 1fr; gap: 2rem; }
  #hero { flex-direction: column; align-items: flex-start; padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 0; gap: 0; }
  .hero-car { align-self: center; width: 100%; }
  .stat { padding: 0.75rem 1.5rem; }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero { padding: calc(var(--nav-h) + 1.5rem) 1.5rem 0; }
  .hero-bg-text { display: none; }
  .section-inner { padding: 0 1.25rem; }
  #about, #services, #location { padding: 5rem 0; }
  .stats-strip { padding: 1.5rem; gap: 0; }
  .stat { padding: 0.75rem 1.25rem; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}
