/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #1c1712;
  background-image:
    linear-gradient(160deg, rgba(28,23,18,0.72) 0%, rgba(28,23,18,0.38) 60%, rgba(212,98,26,0.22) 100%),
    url('../assets/images/hero-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(212,98,26,0.18) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  max-width: 700px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero-eyebrow .line {
  width: 36px; height: 1px;
  background: var(--saffron-lt);
}

.hero-eyebrow span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron-lt);
  font-family: var(--font-body);
  font-weight: 500;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}

.hero p.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.75vw, 2.4rem);
  font-style: italic;
  color: var(--saffron-lt);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s ease forwards;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.88s ease forwards;
}

.hero-scroll {
  position: absolute;
  top: 50%;
  right: 2rem;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll .mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  position: relative;
}

.hero-scroll .mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 3px;
  animation: scroll-dot 1.6s infinite;
}

@keyframes scroll-dot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

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

/* ── Hero stats strip ── */
.hero-stats {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px var(--shadow);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex: 1 1 160px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(28,23,18,0.12);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--saffron);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.25rem;
}

@media (max-width: 600px) {
  .hero-stats { gap: 1.5rem; padding: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
