/* ============================================
   ASHVAULT AUTOMOBILES — MULTI-PAGE
   Pure Black + White · Quiet Luxury
   ============================================ */

:root {
  --black: #000000;
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --line: #1f1f1f;
  --line-soft: #181818;
  --white: #ffffff;
  --grey: #888888;
  --grey-dim: #555555;
  --grey-faint: #2a2a2a;
  --red-accent: #d62828;
  --sans: 'Inter', -apple-system, sans-serif;
  --display: 'Oswald', 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Typography utilities ===== */
.overline {
  display: block;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
  font-weight: 500;
  margin-bottom: 20px;
}

.section-h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.header.scrolled { background: rgba(0,0,0,0.95); }

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo-text {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.35em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.logo-v {
  color: #c9a96e;
}
.logo:hover .logo-text { opacity: 0.85; }

.logo-text-footer {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 24px;
}

.main-nav {
  display: flex;
  gap: 40px;
}
.main-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
  padding: 8px 0;
  position: relative;
  transition: opacity 0.3s;
}
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}
.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
  left: 0;
}

.header-cta {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.3s;
}
.header-cta:hover {
  background: var(--white);
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
}
.menu-toggle span {
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: 0.3s;
}

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { padding: 14px 20px; }
  .logo-text { font-size: 18px; letter-spacing: 0.3em; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  z-index: 99;
  flex-direction: column;
  padding: 20px 24px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}
.mobile-nav a:last-child { border: none; padding-top: 24px; }

/* ===== Hero (Home) ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--black);
}

.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  display: block;
}
.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%) scale(1.15);
  pointer-events: none;
  border: 0;
  z-index: 2;
  opacity: 0;
  animation: videoFadeIn 0.8s 2s forwards;
}
@keyframes videoFadeIn {
  to { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: 
    radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(3.5rem, 11vw, 9rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  opacity: 0;
  animation: heroFade 1.4s 0.4s forwards;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--white);
  margin: 32px auto;
  opacity: 0;
  animation: heroFade 1s 0.9s forwards;
}

.hero-sub {
  font-size: 11px;
  letter-spacing: 0.5em;
  font-weight: 400;
  opacity: 0;
  animation: heroFade 1s 1.1s forwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.video-sound {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 10px 18px;
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 500;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.video-sound:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

@media (max-width: 700px) {
  .video-sound { bottom: 24px; right: 24px; padding: 8px 14px; }
  .video-sound span { display: none; }
}

/* ===== Page Banner (sub-pages) ===== */
.page-banner {
  position: relative;
  height: 60vh;
  min-height: 380px;
  margin-top: 0;
  overflow: hidden;
  background: var(--black);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.45) contrast(1.1);
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 32px 0;
}
.page-banner-overline {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
  margin-bottom: 20px;
  font-weight: 500;
}
.page-banner h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.breadcrumb {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.5;
}
.breadcrumb a { transition: opacity 0.3s; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb .sep { margin: 0 12px; opacity: 0.4; }

/* ===== Section base ===== */
section { background: var(--bg); }

/* ===== Home: About Preview ===== */
.about-preview {
  padding: 140px 0;
}
.about-preview .container {
  max-width: 820px;
}
.about-preview-inner {
  text-align: center;
}
.about-preview h2 {
  margin-bottom: 36px;
}
.about-preview p {
  color: var(--white);
  opacity: 0.7;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-preview .read-more {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 36px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}
.about-preview .read-more:hover {
  background: var(--white);
  color: var(--black);
}

/* ===== Showcase Slideshow (Revuelto Gallery) ===== */
.showcase-section {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 560px;
  max-height: 920px;
  overflow: hidden;
  background: var(--black);
}

.showcase-slides {
  position: absolute;
  inset: 0;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.showcase-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--black);
}

/* Subtle vignette + bottom shade for caption legibility */
.showcase-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 25%, transparent 60%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Caption (bottom-left) */
.showcase-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 90px;
  z-index: 3;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  pointer-events: none;
}
.showcase-label {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
  font-weight: 500;
  margin-bottom: 14px;
}
.showcase-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.showcase-counter {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--white);
  opacity: 0.6;
  font-weight: 500;
}

/* Controls (bottom strip) */
.showcase-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  z-index: 3;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.showcase-arrow {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.showcase-arrow:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.showcase-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.showcase-dot {
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 8px 0;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s;
}
.showcase-dot::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  transition: background 0.4s, width 0.4s;
}
.showcase-dot.active::before {
  background: var(--white);
  width: 40px;
}

@media (max-width: 700px) {
  .showcase-section { height: 70vh; min-height: 480px; }
  .showcase-caption { bottom: 100px; padding: 0 20px; }
  .showcase-controls { padding: 0 20px; bottom: 24px; gap: 14px; }
  .showcase-arrow { width: 38px; height: 38px; }
  .showcase-dot, .showcase-dot::before { width: 18px; }
  .showcase-dot.active::before { width: 30px; }
}

/* ===== STATISTICS Section (matches reference images) ===== */
.statistics {
  position: relative;
  padding: 140px 0;
  background: var(--black);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statistics-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.statistics-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.32) contrast(1.15);
}
.statistics-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}
.statistics-inner {
  position: relative;
  z-index: 3;
  text-align: center;
}
.statistics-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 70px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}
.stat-num .num-decor {
  position: absolute;
  top: -12px;
  right: -18px;
  width: 30px;
  height: 1px;
  background: var(--red-accent);
}
.stat-num .num-decor::after {
  content: '';
  position: absolute;
  top: -1px;
  right: 0;
  width: 3px;
  height: 3px;
  background: var(--red-accent);
}
.stat-label {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 6px;
}
.stat-sublabel {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--white);
  opacity: 0.5;
  font-weight: 300;
}

@media (max-width: 700px) {
  .stats-row { grid-template-columns: 1fr; gap: 50px; }
  .stat-item:not(:last-child)::after { display: none; }
  .statistics { padding: 80px 0; }
}

/* ===== Home: Two-column links (Cars / Workshop) ===== */
.dual-cards {
  padding: 100px 0;
}
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.dual-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: block;
  cursor: pointer;
  background: var(--bg-2);
}
.dual-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dual-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.45);
}
.dual-card:hover .dual-card-bg {
  transform: scale(1.06);
}
.dual-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
}
.dual-card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.dual-card-overline {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--white);
  opacity: 0.6;
  font-weight: 500;
  margin-bottom: 12px;
}
.dual-card-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.dual-card-desc {
  color: var(--white);
  opacity: 0.75;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 90%;
}
.dual-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  transition: gap 0.3s;
}
.dual-card:hover .dual-card-link {
  gap: 18px;
}
.dual-card-link svg { transition: transform 0.3s; }
.dual-card:hover .dual-card-link svg { transform: translateX(4px); }

@media (max-width: 800px) {
  .dual-grid { grid-template-columns: 1fr; }
  .dual-card-content { padding: 36px 28px; }
  .dual-cards { padding: 60px 0; }
}

/* ===== Inventory Page ===== */
.inventory-section {
  padding: 100px 0 140px;
}
.inventory-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.inventory-intro p {
  color: var(--white);
  opacity: 0.7;
  font-size: 16px;
  line-height: 1.8;
}

.filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 50px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.filter-btn {
  background: transparent;
  border: none;
  color: var(--white);
  opacity: 0.5;
  padding: 8px 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: inherit;
  transition: opacity 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.filter-btn:hover { opacity: 1; }
.filter-btn.active {
  opacity: 1;
  border-bottom-color: var(--white);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .inventory-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .inventory-grid { grid-template-columns: 1fr; gap: 24px; }
  .inventory-section { padding: 60px 0 80px; }
}

.car-card {
  background: transparent;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.car-card:hover { transform: translateY(-6px); }

.car-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
  margin-bottom: 18px;
}
.car-img-wrap img,
.car-img-wrap svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.car-card:hover .car-img-wrap img,
.car-card:hover .car-img-wrap svg {
  transform: scale(1.06);
}

.car-status {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 5px 12px;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.car-status.sold {
  background: var(--white);
  color: var(--black);
}

.car-info { padding: 0 4px; }
.car-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.2;
}
.car-detail {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.5;
  margin-bottom: 14px;
  font-weight: 400;
}
.car-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.car-price {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--white);
  font-weight: 500;
}
.car-arrow {
  font-size: 14px;
  color: var(--white);
  opacity: 0.5;
  transition: all 0.3s;
}
.car-card:hover .car-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ===== Car Detail Page ===== */
.car-detail-section {
  padding: 100px 0;
}
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
  transition: opacity 0.3s, gap 0.3s;
}
.detail-back:hover { opacity: 1; gap: 16px; }

.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
}

.detail-gallery-main {
  width: 100%;
  aspect-ratio: 16 / 11;
  background: var(--bg-2);
  overflow: hidden;
  margin-bottom: 16px;
}
.detail-gallery-main img,
.detail-gallery-main svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.detail-thumb {
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s;
}
.detail-thumb:hover, .detail-thumb.active {
  border-color: var(--white);
}
.detail-thumb img,
.detail-thumb svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info-side {
  padding-left: 20px;
}
.detail-brand {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
  margin-bottom: 14px;
  font-weight: 500;
}
.detail-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.detail-year-meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.5;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.detail-price-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.5;
  margin-bottom: 6px;
}
.detail-price {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: 0.04em;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 36px;
}

.detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.detail-spec {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.detail-spec:nth-child(even) { border-right: none; }
.detail-spec:nth-last-child(-n+2) { border-bottom: none; }
.spec-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.5;
  margin-bottom: 6px;
  font-weight: 500;
}
.spec-value {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--white);
  font-weight: 500;
}

.detail-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-cta a {
  text-align: center;
  padding: 16px 24px;
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
}
.detail-cta .primary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}
.detail-cta .primary:hover {
  background: transparent;
  color: var(--white);
}
.detail-cta .secondary {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.detail-cta .secondary:hover { border-color: var(--white); }

.detail-description-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  margin-top: 50px;
}
.detail-description-section .container {
  max-width: 900px;
}
.detail-section-title {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  opacity: 0.7;
  margin-bottom: 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.detail-description {
  color: var(--white);
  opacity: 0.8;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 50px;
}
.detail-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
.detail-features-grid li {
  list-style: none;
  font-size: 14px;
  color: var(--white);
  opacity: 0.75;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.detail-features-grid li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-info-side { padding-left: 0; }
  .detail-thumbs { grid-template-columns: repeat(4, 1fr); }
  .detail-features-grid { grid-template-columns: 1fr; }
}

/* ===== About Page ===== */
.about-section {
  padding: 120px 0;
}
.about-section .container {
  max-width: 860px;
}
.about-section .lead {
  text-align: center;
  margin-bottom: 70px;
}
.about-section .lead p {
  color: var(--white);
  opacity: 0.7;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.milestone-section {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.milestone-section .container {
  max-width: 900px;
}
.milestone-list {
  margin-top: 50px;
}
.milestone-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s;
}
.milestone-row:hover { padding-left: 12px; }
.milestone-year {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.milestone-text {
  color: var(--white);
  opacity: 0.75;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .milestone-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .milestone-year { font-size: 22px; }
}

/* ===== Workshop Page ===== */
.workshop-section {
  padding: 100px 0 140px;
}
.workshop-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.workshop-intro p {
  color: var(--white);
  opacity: 0.7;
  font-size: 16px;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.service-card {
  background: var(--bg);
  padding: 48px 36px;
  transition: background 0.3s;
}
.service-card:hover { background: var(--bg-3); }
.service-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  opacity: 0.3;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.service-title {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.service-list {
  list-style: none;
}
.service-list li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--white);
  opacity: 0.7;
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.5;
}

.workshop-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--line);
}
.feature-item {
  text-align: center;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-title {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 13px;
  color: var(--white);
  opacity: 0.65;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .workshop-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .workshop-features { grid-template-columns: 1fr; }
}

/* ===== Contact Banner & Info ===== */
.contact-banner {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.contact-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.contact-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}
.contact-banner-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-banner h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.contact-info {
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.contact-block h4 {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
  font-weight: 500;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.contact-block p {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.85;
}
.contact-block strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.5;
  margin-bottom: 4px;
}
.contact-block a:hover { opacity: 0.7; }

.contact-cta {
  text-align: center;
  margin-top: 60px;
}
.big-btn {
  display: inline-block;
  padding: 22px 56px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.big-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.big-btn span {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}
.big-btn:hover::before { transform: translateX(0); }
.big-btn:hover span { color: var(--black); }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; }
  .contact-info { padding: 60px 0; }
  .big-btn { padding: 18px 36px; font-size: 11px; }
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  padding: 70px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img {
  display: none;
}
.footer-brand p {
  color: var(--white);
  opacity: 0.65;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  opacity: 0.7;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--white);
  opacity: 0.7;
  padding: 8px 0;
  transition: opacity 0.3s;
}
.footer-col a:hover { opacity: 1; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.7;
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--white);
  opacity: 1;
}
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--white);
  opacity: 0.5;
  font-weight: 500;
}
.footer-call {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--white);
  opacity: 0.5;
}
.footer-call a { color: var(--white); }
.footer-call a:hover { opacity: 1; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 95;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }

@media (max-width: 600px) {
  .wa-float { bottom: 20px; right: 20px; width: 48px; height: 48px; }
  .wa-float svg { width: 22px; height: 22px; }
}

/* ===== Animated counter ===== */
.counter[data-target] {
  display: inline-block;
}
