@import url("/styles-base.css?v=20260724-lighthouse-fcp-fix-v1");

/* Keep the document visible immediately. Hiding the entire body until a CSS
   animation completes can cause Lighthouse/PageSpeed to report NO_FCP. */
body {
  opacity: 1;
  animation: none;
  visibility: visible;
}

/* Homepage hero: match the printing page with a true edge-to-edge cover image. */
.clean-hero {
  min-height: 100svh;
  padding: 0;
  background: #f4f2ee;
}

.clean-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12));
}

.clean-overlay::after {
  display: none;
}

.clean-hero-shell {
  width: 100%;
  max-width: none;
  min-height: 100svh;
  margin: 0;
}

.clean-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.clean-hero-art::before {
  display: none;
}

.clean-hero-art img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  animation: none;
}

.clean-hero-actions {
  z-index: 4;
  left: clamp(1.25rem, 7vw, 7rem);
  bottom: clamp(1.5rem, 6vh, 4.5rem);
}

@media (max-width: 760px) {
  .clean-hero,
  .clean-hero-shell {
    min-height: 88svh;
  }

  .clean-hero-art img {
    object-position: 62% center;
  }
}

@media (max-width: 560px) {
  .clean-hero,
  .clean-hero-shell {
    min-height: 82svh;
  }

  .clean-hero-actions {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    margin: 0;
    padding: 0.65rem;
    border: 1px solid rgba(20, 22, 26, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(20, 22, 26, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .clean-hero-art img {
    object-position: 66% center;
  }
}
