/*
 * Front-page overrides
 * Re-asserts homepage-specific styles with body.home scope to win over
 * page-specific rules from other templates (about, capital, studio, etc.)
 * that redefine .hero, .section-chip, .hero-content at the same specificity.
 */

body.home .hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 56px 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

body.home .hero::before { display: none; }
body.home .hero::after  { display: none; }

body.home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-top: 0;
}

body.home .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  opacity: 0;
  animation: slideUp 0.7s ease 0.2s forwards;
}

body.home .hero h1 {
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 28px;
  opacity: 0;
  animation: slideUp 0.7s ease 0.35s forwards;
  white-space: normal;
}

body.home .hero h1 .typed-line {
  display: block;
  color: var(--blue);
}

body.home .hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0;
  animation: slideUp 0.7s ease 0.5s forwards;
}

body.home .hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  opacity: 0;
  animation: slideUp 0.7s ease 0.65s forwards;
}

/* Section chips: light blue pill on white-background sections */
body.home .section-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: none;
}

/* Dark-section chip — only the about section has a dark background */
body.home .about .section-chip {
  background: rgba(37, 132, 197, 0.18);
  color: #6bbfeb;
  border: 1px solid rgba(37, 132, 197, 0.25);
}

@media (max-width: 900px) {
  body.home .hero {
    padding: 100px 24px 64px;
  }
}
