/* Plano Vivo Studios - hero variations */

/* Asymmetric homepage hero: large text left, image bleeding right */
.hero {
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw + 0.5rem, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.hero__lead {
  font-size: 1.18rem;
  line-height: 1.55;
  max-width: 52ch;
  color: var(--primary-soft);
  margin: 0 0 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__meta {
  display: flex;
  gap: 32px;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  flex-wrap: wrap;
}
.hero__meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 2px;
}

.hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__badge::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (min-width: 1024px) {
  .hero { padding: 96px 0 120px; }
  .hero__grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .hero__media {
    aspect-ratio: 3 / 4;
    margin-right: -40px;
  }
}

/* Inner page hero: compact, with breadcrumbs */
.page-hero {
  padding: 48px 0 64px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero__inner {
  max-width: 820px;
}
.page-hero__title {
  font-size: clamp(2rem, 3.6vw + 0.6rem, 3rem);
  margin-bottom: 16px;
}
.page-hero__lead {
  font-size: 1.12rem;
  color: var(--primary-soft);
  margin: 0;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumbs li::after { content: "/"; margin-left: 6px; color: var(--border-strong); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs li[aria-current="page"] { color: var(--primary); font-weight: 500; }

/* Service page hero: image left, text right */
.service-hero {
  padding: 64px 0;
  background: var(--bg-alt);
}
.service-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.service-hero__media {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
}
.service-hero__media img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 1024px) {
  .service-hero { padding: 96px 0; }
  .service-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
