/* =========================================================
   Home page
   ========================================================= */
body.home {
  overflow-x: hidden;
}

/* Hero — base */
.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  background: url("../images/karla-home.webp") center top / cover no-repeat;
}

@media (min-width: 768px), (orientation: landscape) {
  .hero-image {
    background-position: center center;
  }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 20px;
  animation: fadeUp 0.8s ease forwards;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: #fff;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: #F8BBD0;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: #f5f5f5;
  opacity: 0.9;
}

/* Hero CTAs */
.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Home quote interlude */
.home-quote {
  padding: 80px 24px;
  max-width: none;
  margin: 0;
  text-align: center;
  background: #f5f0ee;
}

.home-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.4;
  margin: 0 auto 24px;
  max-width: 720px;
  quotes: none;
}

.home-quote-sub {
  font-size: 15px;
  color: var(--color-muted);
  margin: 0 auto 20px;
  max-width: 480px;
}

.home-quote-link {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-brand);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.home-quote-link:hover { opacity: 0.7; }

/* Home footer override */
body.home footer {
  position: static;
  background: var(--color-white);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}

body.home footer p,
body.home footer a {
  color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
  body.home .main-header {
    border-bottom: none !important;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-tagline {
    font-size: 17px;
  }

  .hero-content p {
    font-size: 11px;
  }

  .hero-actions {
    gap: 15px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
  }
}
