/* ================================================================
   HERO — Full-bleed background, dark overlay, v2 layout
   ================================================================ */

/* ── Keyframes ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.anim  { animation: fadeUp 0.6s ease both; }
.anim1 { animation: fadeUp 0.6s 0.10s ease both; }
.anim2 { animation: fadeUp 0.6s 0.20s ease both; }
.anim3 { animation: fadeUp 0.6s 0.30s ease both; }
.anim4 { animation: fadeUp 0.6s 0.42s ease both; }

/* ── Section shell ── */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px; /* nav height */
}

/* ── Background image ── */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 20%;
  display: block;
}

/* ── Dark overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(15,15,20,0.78) 36%, rgba(15,15,20,0.32) 100%);
}

/* ── Inner layout ── */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.hero-content {
  max-width: 640px;
}

/* ── Eyebrow ── */
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 24px;
  display: block;
}

/* ── Headline ── */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.015em;
}
.hero-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.72);
}

/* ── Body copy ── */
.hero-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255,255,255,0.70);
  margin-bottom: 40px;
  max-width: 480px;
}

/* ── CTAs ── */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border-radius: 0;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.hero-btn--primary {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
}
.hero-btn--primary:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
}
.hero-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.hero-btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ── Service tiles ── */
.hero-service-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
}

.hero-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 27px 24px;
  background: rgba(255,255,255,0.95);
  border-radius: 0;
  text-decoration: none;
  text-align: center;
  align-items: center;
  min-height: 267px;
  justify-content: space-between;
  transition: background 200ms ease, transform 200ms ease;
}
.hero-tile:hover {
  background: #fff;
  transform: translateY(-2px);
}

.hero-tile-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
}

.hero-tile-desc {
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 1.5;
}

.hero-tile-pill {
  display: inline-block;
  background: var(--olive);
  color: var(--white);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 0;
  margin-top: 4px;
  transition: background 200ms ease;
}
.hero-tile:hover .hero-tile-pill { background: var(--olive-dark); }

/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  z-index: 1;
}
.hero-scroll-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: #fff;
}

/* ── Stats strip ── */
.hero-stats {
  background: rgba(15,15,20,0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.hero-stat {
  padding: 32px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { padding: 48px 20px 60px; }
  .hero-service-tiles { max-width: 100%; }
  .hero-stats-inner { padding: 0 20px; }
  .hero-stat { padding: 24px 20px; }
}
@media (max-width: 600px) {
  .hero-service-tiles { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-stat:last-child { border-bottom: none; }
  .hero-scroll-hint { display: none; }
}

/* ── Mobile: hide bg image/overlay, show aaron-hero.png inline ── */
@media (max-width: 600px) {
  .hero-bg { display: none; }
  .hero-overlay { display: none; }
  #hero {
    background: var(--charcoal);
  }
  .hero-content {
    display: flex;
    flex-direction: column;
  }
  .hero-mobile-portrait {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 24px 0 28px;
    border-radius: 4px;
    object-fit: cover;
    object-position: center 20%;
    max-height: 320px;
    order: 3;
  }
  .hero-eyebrow { order: 0; }
  .hero-headline { order: 1; }
  .hero-body { order: 2; margin-bottom: 0; }
  .hero-ctas { order: 4; }
  .hero-service-tiles { order: 5; }
  .hero-tile { min-height: auto; padding: 20px 18px; }
}
@media (min-width: 601px) {
  .hero-mobile-portrait { display: none; }
}
