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

:root {
  --gold: #C9A84C;
  --gold-light: #E0C872;
  --gold-dark: #A68A3E;
  --bg-dark: #0A0A0A;
  --bg-section: #111111;
  --bg-card: #1A1A1A;
  --text-primary: #F0F0F0;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;
  --red-accent: #CC1B1B;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold {
  color: var(--gold);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/tac-hero.jpeg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.hero-intro {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-subtitle {
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.scroll-cue {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: 1px solid var(--gold-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.scroll-cue:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ===== STORY SECTIONS ===== */
.story-section {
  padding: 6rem 0;
}

.story-section:nth-child(even) {
  background-color: var(--bg-section);
}

.section-heading {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--gold);
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0.03em;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin-top: -1.5rem;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.sub-heading {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.story-block {
  max-width: 700px;
  margin: 0 auto;
}

.story-block.centered {
  text-align: center;
}

.story-block p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.story-block em {
  color: var(--text-primary);
  font-style: italic;
}

.story-block strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ===== DREAM SECTION ===== */
.dream-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.dream-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dream-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.dream-text em {
  color: var(--text-primary);
}

.whisper {
  font-style: italic;
  color: var(--gold) !important;
  font-size: 1.3rem !important;
  margin-top: 1rem;
}

/* ===== CAR SHOWCASE ===== */
.car-showcase {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 2rem 0;
  margin: 2rem 0;
}

.showcase-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 2rem;
  width: max-content;
}

.showcase-img {
  height: 400px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

/* ===== MISSION GRID ===== */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.mission-card:hover {
  border-color: var(--gold-dark);
}

.mission-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mission-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mission-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== SPECS GRID ===== */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.spec-item {
  padding: 1.5rem 0;
  border-top: 2px solid var(--gold-dark);
}

.spec-item h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.spec-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== FOLLOW SECTION ===== */
.coming-soon {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 2px solid var(--gold-dark);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.follow-note {
  color: var(--text-muted) !important;
  font-size: 0.95rem !important;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid #1A1A1A;
  background: var(--bg-dark);
}

.footer-brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-org {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .dream-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .specs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .showcase-img {
    height: 280px;
  }

  .story-section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 1rem;
  }

  .showcase-img {
    height: 220px;
  }

  .story-block p,
  .dream-text p {
    font-size: 1rem;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}
