/* ═══════════════════════════════════════════
   Original Asphalt — Home Page Only
   Warm, Rounded, Premium Aesthetic
   ═══════════════════════════════════════════ */

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 100;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Home Hero ── */
.hero--home {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: #0C0A09;
  overflow: hidden;
}
/* No scroll-over effect on homepage */
.hero--home + * {
  border-radius: 0;
  box-shadow: none;
}
/* Video + bg image container */
.hero--home .hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  animation: hero-media-reveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}
@keyframes hero-media-reveal {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
/* Background texture behind video */
.hero--home .hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}
.hero--home .hero-media img,
.hero--home .hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.18;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  animation: hero-img-zoom 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes hero-img-zoom {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
/* Warm radial overlay from center */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(12, 10, 9, 0.7) 0%,
    rgba(12, 10, 9, 0.82) 35%,
    rgba(12, 10, 9, 0.92) 65%,
    #0C0A09 100%
  );
}
.hero-dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(to top, #0C0A09, transparent 40%, rgba(12, 10, 9, 0.2));
}

/* Hero shell — centered */
.hero-shell {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 10rem 1.5rem 6rem;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-shell { padding: 12rem 2.5rem 6rem; }
}

/* Hero content — centered */
.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
}
.hero-word-1 { animation: hero-word-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards; }
.hero-word-2 { color: var(--accent); animation: hero-word-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards; }
.hero-word-3 { animation: hero-word-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards; }
.hero-word-4 { color: var(--accent-dark); animation: hero-word-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.95s forwards; }

.hero-lead {
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1.75;
  max-width: 55ch;
  margin: 0 auto 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

@keyframes hero-fade-up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-word-enter {
  0% { opacity: 0; transform: translateY(20px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Trust pills — centered, larger, more rounded */
.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 84, 84, 0.06);
  border: 1px solid rgba(255, 84, 84, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.hero-trust-pill:hover {
  background: rgba(255, 84, 84, 0.1);
  border-color: rgba(255, 84, 84, 0.3);
}

/* Hero actions — centered, larger */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

/* Stats grid — centered */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 600px;
  margin: 2.5rem auto 0;
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; gap: 0.75rem; }
}
.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.stat-icon {
  color: var(--accent);
  margin-bottom: 0.6rem;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 84, 84, 0.08);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.stat-suffix {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--accent-dark);
}
.stat-label {
  color: var(--text-faint);
  font-size: 1.05rem;
  margin-top: 0.4rem;
  letter-spacing: 0.01em;
}

/* Scroll indicator — clean arrow with gentle bounce */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-faint);
  opacity: 0;
  animation: scroll-indicator-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards, bounce-down 2.5s ease-in-out 2.4s infinite;
}
@keyframes scroll-indicator-in {
  to { opacity: 0.6; }
}
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Trust Marquee ── */
.trust-marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(26, 22, 20, 0.5);
  padding: 1.25rem 0;
  overflow: hidden;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.marquee-item-icon { color: var(--accent); flex-shrink: 0; }
.marquee-label {
  color: var(--text-mid);
  font-size: 1rem;
  font-weight: 600;
}
.marquee-sublabel {
  color: var(--text-faint);
  font-size: 1.1rem;
}

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 7fr 5fr; }
}
.about-text { max-width: 60ch; }
.about-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.about-link {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-link:hover { gap: 0.75rem; }

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-image:hover img {
  transform: scale(1.03);
}
/* Single subtle shadow instead of triple-layer decorative borders */
.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 0;
  pointer-events: none;
}
.about-image::after {
  content: none;
}
.about-image-frame { display: none; }

/* ── How We Work ── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .how-grid { grid-template-columns: 1fr 1fr; }
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
/* Vertical connecting dashed line between steps */
.how-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 48px;
  width: 1px;
  border-left: 2px dashed rgba(255, 84, 84, 0.15);
  z-index: 0;
}
.how-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  position: relative;
  z-index: 1;
}
.how-step-num {
  width: 48px;
  height: 48px;
  background: rgba(255, 84, 84, 0.08);
  border: 2px solid rgba(255, 84, 84, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.how-step:hover .how-step-num {
  background: rgba(255, 84, 84, 0.14);
  border-color: rgba(255, 84, 84, 0.4);
}
.how-step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.how-step-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ── Gallery Preview ── */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .gallery-preview-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-preview-grid a,
.gallery-preview-grid .gallery-preview-item {
  border-radius: 20px;
  overflow: hidden;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.gallery-preview-grid a:hover,
.gallery-preview-grid .gallery-preview-item:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.gallery-preview-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-preview-grid a:hover img,
.gallery-preview-grid .gallery-preview-item:hover img {
  transform: scale(1.05);
}

/* ── Testimonials Slider ── */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonials-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0 0.25rem;
}
@media (min-width: 768px) {
  .testimonials-slide { grid-template-columns: repeat(2, 1fr); }
}
.testimonials-slide .testimonial-card {
  padding: 2rem;
  border-radius: 24px;
}
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.testimonials-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.testimonials-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 84, 84, 0.06);
}
.testimonials-dots { display: flex; gap: 0.6rem; }
.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.testimonials-dot:hover {
  background: rgba(255, 84, 84, 0.3);
  transform: scale(1.15);
}
.testimonials-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

/* ── Final CTA ── */
.final-cta {
  text-align: center;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
  padding: 7rem 1.5rem;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 84, 84, 0.06) 0%, rgba(228, 72, 72, 0.02) 40%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.final-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 84, 84, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .section-title { margin-bottom: 1rem; }
.final-cta .section-intro { margin: 0 auto 2.5rem; text-align: center; }
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
