/* ─ HOMEPAGE SPECIFIC ─────────────────────────────── */

/* HERO */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--HDR);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('') center/cover no-repeat;
  opacity: .14; transform: scale(1.04);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(112deg, rgba(11,10,8,.97) 44%, rgba(11,10,8,.5) 100%);
}
.hero-ring { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-ring::before {
  content: ''; position: absolute; bottom: -38%; left: 42%;
  width: 680px; height: 680px; border-radius: 50%;
  border: 1px solid rgba(212,168,67,.07);
}
.hero-ring::after {
  content: ''; position: absolute; bottom: -52%; left: 32%;
  width: 880px; height: 880px; border-radius: 50%;
  border: 1px solid rgba(212,168,67,.04);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 88px 0 72px; width: 100%;
}
.hero-chip { margin-bottom: 22px; }
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px,8.5vw,124px);
  line-height: .88; letter-spacing: .02em; margin-bottom: 20px;
}
.h1-em {
  background: linear-gradient(90deg,#D4A843,#E8C06A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(14px,1.5vw,17px); color: rgba(245,239,224,.6);
  max-width: 460px; margin-bottom: 34px; font-weight: 300; line-height: 1.8;
}
.hero-acts  { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex; border: 1px solid var(--border);
  background: rgba(18,16,12,.7); backdrop-filter: blur(16px);
  width: fit-content;
}
.hstat { padding: 16px 22px; text-align: center; border-right: 1px solid var(--border); }
.hstat:last-child { border-right: none; }
.hn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; color: var(--gold); line-height: 1;
  letter-spacing: .04em; display: flex; align-items: baseline; gap: 2px;
}
.hn-sup { font-size: 18px; }
.hl { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: 2.5px; margin-top: 3px; }

/* Hero visual */
.hero-visual { display: flex; flex-direction: column; gap: 10px; }
.hero-car-frame {
  position: relative; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 44px 88px rgba(0,0,0,.85);
}
.hero-car-frame img { width: 100%; height: 288px; object-fit: cover; display: block; }
.hero-car-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg,rgba(11,10,8,.96) 0%,rgba(11,10,8,.6) 100%);
  backdrop-filter: blur(8px); padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px solid var(--border);
}
.hcb-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: .04em; }
.hcb-type { font-size: 10.5px; color: var(--muted); }
.hcb-price { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--gold); font-style: italic; text-align: right; }
.hcb-per   { font-size: 10px; color: var(--muted); text-align: right; }
.hero-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.gthumb {
  border-radius: 3px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color .22s;
}
.gthumb.active, .gthumb:hover { border-color: var(--gold); }
.gthumb img { width: 100%; height: 72px; object-fit: cover; display: block; }

/* Why Grid */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(248px,1fr)); gap: 14px; margin-top: 48px; }
.why-card {
  background: var(--ink3); border: 1px solid var(--border); border-radius: 4px;
  padding: 26px 22px; position: relative; overflow: hidden; transition: border-color .25s;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,var(--gold),var(--gold2));
  transform: scaleX(0); transform-origin: left; transition: transform .38s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { border-color: var(--border2); }
.wc-n {
  font-family: 'Bebas Neue', sans-serif; font-size: 56px;
  color: rgba(212,168,67,.07); position: absolute; top: 10px; right: 14px; letter-spacing: .02em;
}
.wc-ic { font-size: 28px; margin-bottom: 12px; position: relative; z-index: 1; }
.wc-t  { font-weight: 700; font-size: 15px; margin-bottom: 6px; position: relative; z-index: 1; }
.wc-d  { font-size: 13px; color: var(--muted); line-height: 1.65; position: relative; z-index: 1; }

@media(max-width:1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 72px 0 56px; }
  .hero-visual { display: none; }
}
@media(max-width:480px) { .hero-acts .btn { flex: 1 1 100%; } }
