/* ================================================================
   HERO
   ================================================================ */
#hero {
  min-height: 100dvh;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../../images/LIMH-LogoTree.svg);
  background-size: 75%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-drift {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(74,124,63,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(74,124,63,0.05) 0%, transparent 50%);
  animation: bgDrift 20s ease-in-out infinite;
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero left - text */
.hero-since {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--olive);
  display: block;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
  transition-delay: 100ms;
}
.hero-since.visible { opacity: 1; transform: translateY(0); }

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  transition-delay: 300ms;
}
.hero-headline.visible { opacity: 1; transform: translateY(0); }

.hero-subhead {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(15px, 1.7vw, 20px);
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
  transition-delay: 800ms;
}
.hero-subhead.visible { opacity: 1; transform: translateY(0); }

.hero-body {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  transition-delay: 900ms;
}
.hero-body.visible { opacity: 1; transform: translateY(0); }
.hero-body p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--body-light);
  margin-bottom: 16px;
  max-width: 560px;
}
.hero-body mark { background: none; color: white; font-weight: 600; }

/* Service tiles */
.hero-service-tiles { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 20px; max-width: 520px; }
.hero-tile { display: flex; flex-direction: column; gap: 4px; padding: 14px 18px; border: 1px solid rgba(255,255,255,0.15); border-left: 3px solid var(--olive); background: rgba(255,255,255,0.04); text-decoration: none; transition: background 200ms ease; }
.hero-tile:hover { background: rgba(74,124,63,0.12); }
.hero-tile-title { font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: white; }
.hero-tile-desc { font-weight: 300; font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.hero-tile-link { font-weight: 500; font-size: 12px; color: var(--olive); margin-top: 2px; }

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 600ms ease;
  transition-delay: 1400ms;
  width: fit-content;
}
.hero-scroll-indicator.visible { opacity: 1; }
.hero-scroll-label { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* Hero right - image */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}
.hero-right img {
  width: 115%;
  max-width: none;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
  margin-right: -48px;
  opacity: 0;
  animation: imgReveal 800ms var(--ease-out) 900ms forwards;
}

.hero-anchors { position: absolute; bottom: 24px; left: 0; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.hero-anchor {
  display: block;
  background: rgba(16,18,24,0.80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-left: 2px solid var(--olive);
  color: white;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 7px 14px;
  text-decoration: none;
  transition: background 200ms ease;
  opacity: 0;
  animation: imgReveal 600ms var(--ease-out) 1200ms forwards;
}
.hero-anchor:nth-child(2) { animation-delay: 1320ms; }
.hero-anchor:nth-child(3) { animation-delay: 1440ms; }
.hero-anchor:hover { background: var(--olive); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 20px 80px; gap: 40px; }
  .hero-right img { width: 100%; max-width: 100%; margin-right: 0; max-height: 60vw; object-fit: cover; }
  .hero-right { justify-content: flex-start; }
  .hero-anchors { bottom: 12px; }
}
