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

.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background: url("../../img/vehicle/staria/Staria_PIP_Banner_D.avif")
              right center / cover no-repeat;
  overflow: hidden;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.45) 25%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0) 60%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  left: 80px;
  bottom: 120px;
  max-width: 520px;
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.hero-tagline {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
}

.hero-price {
  margin-top: 32px;
}

.hero-price span {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.hero-price strong {
  font-size: 28px;
  font-weight: 600;
}

/* CTA */
.btn-primary {
  position: absolute;
  right: 80px;
  bottom: 80px;
  z-index: 2;

  padding: 14px 28px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #fff;
  color: #000;
}


/* ======================================================
   STORY
====================================================== */

.story-section {
  background: #fff;
  padding: 120px 0 80px;
}

.story-section .container {
  text-align: center;
  max-width: 900px;
}

.story-title {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

.story-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}


/* ======================================================
   FEATURE VISUAL
====================================================== */

.feature-visual {
  width: 100%;
}

.feature-visual-inner {
  width: 100%;
}

.feature-visual img {
  width: 100%;
  height: auto;
  display: block;
}


/* ======================================================
   DESIGN SECTION
====================================================== */

.design-section {
  background: #fff;
  padding: 80px 0 0;
}

.design-header {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.design-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.design-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.design-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-width: 520px;
}

.design-visual img {
  width: 100%;
  height: auto;
  display: block;
}


/* ======================================================
   INTERIOR COLOR
====================================================== */

.interior-section {
  background: #fff;
  padding: 120px 0;
}

.interior-title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 64px;
}

.interior-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.interior-item img {
  width: 100%;
  display: block;
}

.interior-label {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
}
/* ================= JOURNEY SECTION ================= */

.journey-section {
  background: #fff;
  padding: 120px 0 0;
}

/* Header */
.journey-header {
  max-width: 960px;
  margin: 0 auto 64px;
  padding: 0 24px;
  text-align: center;
}

.journey-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
  color: #000;
}

.journey-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

/* Visual */
.journey-visual {
  width: 100%;
}

.journey-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.spec-main-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
}
/* Spec Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border: 1px solid #ddd;
}

.spec-table thead th {
  background: #0072c6;
  color: #fff;
  text-align: center;
}

.spec-table td:first-child {
  width: 45%;
  font-weight: 500;
}

.spec-table tr.group td {
  background: #e5e5e5;
  font-weight: 600;
}

.spec-table tr.group.blue td {
  background: #0072c6;
  color: #fff;
}
/* ======================================================
   INTERNAL NAVIGATION (CSS IMAGE)
====================================================== */

.internal-nav-section {
  width: 100%;
}

/* GRID */
.internal-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* CARD */
.internal-nav-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* IMAGE SOURCE */
.nav-home {
  background-image: url("/assets/img/showroom-bsd.webp");
}

.nav-vehicle {
  background-image: url("../../img/vehicle/all.avif");
}

/* OVERLAY */
.internal-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background 0.3s ease;
}

/* TEXT */
.internal-nav-content {
  position: absolute;
  left: 48px;
  bottom: 48px;
  z-index: 2;
}

.internal-nav-label {
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.internal-nav-title {
  font-size: 32px;
  font-weight: 600;
}

/* HOVER */
.internal-nav-card:hover .internal-nav-overlay {
  background: rgba(0,0,0,0.6);
}




/* ======================================================
   TABLET
====================================================== */

@media (max-width: 768px) {

  /* HERO */
  .hero {
    background-position: 75% center;
  }

  .hero-content {
    left: 40px;
    bottom: 120px;
    max-width: 420px;
  }

  .hero-title {
    font-size: 36px;
  }

  /* DESIGN */
  .design-header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .design-title {
    font-size: 36px;
  }

  .design-text p {
    max-width: none;
  }

  /* INTERIOR */
  .interior-section {
    padding: 80px 0 10px;
  }

  .interior-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .journey-section{
    padding-top: 80px;
  }
  .journey-title {
    font-size: 36px;
  }
  .spec-table {
    font-size: 13px;
  }
  .internal-nav-card {
    height: 260px;
  }

  .internal-nav-title {
    font-size: 26px;
  }
}


/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 480px) {

  /* HERO */
  .hero {
    height: 100svh;
    background-image: url("../../img/vehicle/staria/Staria_PIP_Banner_M.avif");
    background-position: center 88%;
    background-size: cover;
  }

  .hero-content {
    top: 96px;
    left: 24px;
    right: 24px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-tagline {
    font-size: 14px;
  }

  .hero-price strong {
    font-size: 22px;
  }

  /* INTERIOR */
  .interior-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .interior-label {
    font-size: 15px;
  }
  .journey-header {
    margin-bottom: 40px;
  }

  .journey-title {
    font-size: 30px;
  }

  .journey-desc {
    font-size: 15px;
  }
  .internal-nav-grid {
    grid-template-columns: 1fr;
  }

  .internal-nav-card {
    height: 220px;
  }

  .internal-nav-content {
    left: 24px;
    bottom: 24px;
  }
}
