/* ============================================================
   pages/home.css — Hero, trust strip, process section
   ============================================================ */

/* ---------- Hero ---------- */
.hero {
  position:   relative;
  min-height: 88vh;
  display:    flex;
  align-items: center;
  overflow:   hidden;
  padding:    100px 0 80px;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse at 70% 40%, rgba(201, 168, 118, 0.08) 0%, transparent 60%); }
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242, 234, 217, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 234, 217, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 2;
  display:  grid;
  grid-template-columns: 1.1fr 1fr;
  gap:      60px;
  align-items: center;
}

.hero-eyebrow {
  color:          var(--accent);
  font-size:      12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom:  24px;
  font-weight:    500;
  display:        flex;
  align-items:    center;
  gap:            14px;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--accent); }

.hero-title {
  font-family:    var(--font-serif);
  font-size:      clamp(40px, 6vw, 68px);
  line-height:    1.05;
  font-weight:    500;
  margin-bottom:  28px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--accent); font-weight: 400; }

.hero-sub {
  color:         var(--text-secondary);
  font-size:     18px;
  line-height:   1.7;
  margin-bottom: 40px;
  max-width:     480px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Hero visual frame --- */
.hero-visual { position: relative; aspect-ratio: 4/5; min-height: 480px; }

.hero-visual-frame {
  position:   absolute; inset: 0;
  border:     1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  overflow:   hidden;
  background: linear-gradient(135deg, #1A1814 0%, #0E0D0B 100%);
}

.hero-car {
  position:        absolute; inset: 0;
  display:         flex;
  align-items:     center;
  justify-content: center;
  width:           100%;
  height:          100%;
}

.hero-car img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
}

.hero-stats {
  position:              absolute;
  bottom: -1px; left: -1px; right: -1px;
  display:               grid;
  grid-template-columns: 1fr 1fr 1fr;
  background:            var(--surface);
  border:                1px solid var(--border-strong);
  border-top:            1px solid var(--accent);
}

.hero-stat {
  padding:      18px 16px;
  text-align:   center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }

.hero-stat-value {
  font-family:   var(--font-serif);
  font-size:     28px;
  color:         var(--accent);
  font-weight:   500;
  line-height:   1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size:      10px;
  color:          var(--text-tertiary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- Process ---------- */
.process { background: var(--surface); }

.process-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   50px;
  counter-reset:         step;
}

.process-step {
  position:    relative;
  padding-top: 30px;
}
.process-step::before {
  counter-increment: step;
  content:           counter(step, decimal-leading-zero);
  font-family:       var(--font-serif);
  font-size:         64px;
  color:             var(--accent);
  opacity:           0.25;
  position:          absolute;
  top: -28px; left: -8px;
  line-height:       1;
  font-weight:       500;
}

.process-step-title {
  font-family:   var(--font-serif);
  font-size:     24px;
  font-weight:   500;
  margin-bottom: 12px;
  position:      relative;
}
.process-step-text { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* ---------- About ---------- */
.about-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.about-body  { color: var(--text-secondary); font-size: 18px; line-height: 1.8; margin-top: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero         { min-height: auto; padding: 60px 0; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual  { min-height: 360px; max-width: 440px; margin: 0 auto; width: 100%; }
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
}
