/* ============================================
   NOIR AUTOMOBILES — CSS
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important;
}
/* CURSOR */
.cursor {
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}

/* PAGE TRANSITION */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}
body {
  background: linear-gradient(180deg, #050510 0%, #000000 40%);
  background-attachment: fixed;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
}

/* NAV */
.na-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: all 0.3s ease;
}

.na-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 6px;
  color: #ffffff;
  font-weight: 900;
}

.na-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.na-links a {
  color: #888888;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.na-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.na-links a:hover {
  color: #ffffff;
}

.na-back {
  font-size: 11px;
  letter-spacing: 2px;
  color: #888888;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  border: 1px solid #222222;
  padding: 8px 16px;
}

.na-back:hover {
  color: #ffffff;
  border-color: #555555;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.na-back:hover {
  color: #ffffff;
}

/* HERO */
.na-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.na-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.na-hero-bg.loaded {
  transform: scale(1);
}

.na-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.1) 100%
  );
}

.na-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 40px 60px;
  max-width: 480px;
}

.na-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: 8px;
  color: #ffffff;
  margin-bottom: 16px;
}

.na-hero-label {
  display: block;
  font-size: 11px;
  letter-spacing: 5px;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.na-hero-content p {
  font-size: 12px;
  letter-spacing: 4px;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.na-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.na-btn:hover {
  background: #ffffff;
  color: #000000;
}

.na-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.na-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 4px;
  color: #444444;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.na-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #444444, transparent);
  animation: scrollLine 2s ease infinite;
}

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

/* LABEL */
.na-label {
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  color: #555555;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* SECTION LABEL */
.na-section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 0 10%;
  margin-top: 120px;
  margin-bottom: 0;
}

.na-section-divider span {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.na-section-divider-line {
  flex: 1;
  height: 1px;
  background-color: #1a1a1a;
}

/* ABOUT */
.na-about {
  padding: 120px 10%;
  border-top: 1px solid #1a1a1a;
}

.na-about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.na-about-text {
  max-width: 600px;
}

.na-about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
}

.na-about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 48px;
}

.na-stats {
  display: flex;
  gap: 60px;
}

.na-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.na-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1;
}

.na-stat-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: #555555;
  text-transform: uppercase;
}

.na-about-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  color: #0a0a0a;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

/* MODELS */
.na-models {
  padding: 80px 10%;
  border-top: 1px solid #1a1a1a;
}

.na-section-header {
  margin-bottom: 60px;
}

.na-section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: 4px;
  color: #ffffff;
}

.na-models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.na-model-card {
  position: relative;
  overflow: hidden;
}

.na-model-img {
  height: 420px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

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

.na-model-info {
  padding: 28px 0;
  background: transparent;
}

.na-model-line {
  width: 0%;
  height: 1px;
  background: #ffffff;
  margin-bottom: 16px;
  transition: width 0.4s ease;
}

.na-model-card:hover .na-model-line {
  width: 100%;
}

.na-model-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.na-model-card:hover .na-model-info h3 {
  transform: translateY(-4px);
}

.na-model-info p {
  font-size: 11px;
  letter-spacing: 3px;
  color: #555555;
  text-transform: uppercase;
  margin-top: 6px;
}

.na-model-price {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #333333;
  margin-top: 12px;
  transition: color 0.4s ease;
}

.na-model-card:hover .na-model-price {
  color: #ffffff;
}

/* EXPERIENCE */
.na-experience {
  padding: 120px 10%;
  border-top: 1px solid #1a1a1a;
}

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

.na-feature {
  border-top: 1px solid #1a1a1a;
  padding-top: 32px;
  transition: border-color 0.3s ease;
}

.na-feature:hover {
  border-color: #333333;
}

.na-feature-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #111111;
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.na-feature:hover .na-feature-num {
  color: #222222;
}

.na-feature h3 {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.na-feature p {
  font-size: 14px;
  line-height: 1.7;
  color: #555555;
}

/* CONTACT */
.na-contact {
  padding: 160px 10%;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.na-contact-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 120px);
  letter-spacing: 6px;
  color: #ffffff;
  margin-bottom: 16px;
}

.na-contact-content p {
  font-size: 12px;
  letter-spacing: 4px;
  color: #555555;
  text-transform: uppercase;
  margin-bottom: 48px;
}

/* FOOTER */
.na-footer {
  padding: 40px 10%;
  border-top: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.na-footer p {
  font-size: 11px;
  letter-spacing: 2px;
  color: #333333;
  text-transform: uppercase;
}

.na-footer a {
  color: #555555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.na-footer a:hover {
  color: #ffffff;
}

/* SCROLL ANIMATIONS */
.na-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.na-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .na-nav { padding: 20px 24px; }
  .na-links { display: none; }
  .na-hero-content { padding: 0 24px 60px 24px; }
  .na-about { padding: 80px 24px; }
  .na-about-content { flex-direction: column; }
  .na-about-num { display: none; }
  .na-stats { gap: 30px; }
  .na-models { padding: 80px 24px; }
  .na-models-grid { grid-template-columns: 1fr; }
  .na-features { grid-template-columns: 1fr; gap: 40px; }
  .na-experience { padding: 80px 24px; }
  .na-contact { padding: 100px 24px; }
  .na-footer { flex-direction: column; gap: 12px; text-align: center; }
}