/* Tramoya Broadcast - hero variations */

/* Home hero: editorial horizontal layout with image band below */
.hero {
  padding: 72px 0 48px;
  position: relative;
}
.hero__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
.hero__title {
  font-size: clamp(2.6rem, 6vw + 0.8rem, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
  margin: 0;
  font-weight: 400;
}
.hero__title em { font-style: italic; color: var(--accent-deep); font-weight: 400; }
.hero__intro {
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--primary-soft);
  max-width: 42ch;
  margin: 0;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__band {
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--primary);
  margin-bottom: 48px;
}
.hero__band img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__band-label {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--bg);
  color: var(--primary);
  padding: 8px 16px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.hero__meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__meta-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw + 0.6rem, 2.4rem);
  color: var(--primary);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero__meta-grid p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

@media (min-width: 900px) {
  .hero { padding: 112px 0 48px; }
  .hero__top {
    grid-template-columns: 1.6fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .hero__meta-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; }
}

/* Inner page hero */
.page-hero {
  padding: 56px 0 72px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero__inner { max-width: 860px; }
.page-hero__title {
  font-size: clamp(2.2rem, 3.6vw + 0.6rem, 3.2rem);
  margin-bottom: 18px;
  line-height: 1.06;
}
.page-hero__lead {
  font-size: 1.15rem;
  color: var(--primary-soft);
  margin: 0;
}

.breadcrumbs {
  font-size: 0.84rem;
  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-deep); }
.breadcrumbs li[aria-current="page"] { color: var(--primary); font-weight: 500; }

/* Service hero: vertical stacked with large image */
.service-hero {
  padding: 56px 0 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.service-hero__text { max-width: 820px; margin-bottom: 48px; }
.service-hero__media {
  aspect-ratio: 16 / 8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
}
.service-hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* Dark service hero (LED) */
.service-hero--dark {
  background: var(--primary);
  color: var(--bg);
  border-bottom: 0;
}
.service-hero--dark h1 { color: var(--bg); }
.service-hero--dark .lead, .service-hero--dark .page-hero__lead { color: rgba(242,239,232,0.78); }
.service-hero--dark .eyebrow { color: var(--accent); }
.service-hero--dark .breadcrumbs a, .service-hero--dark .breadcrumbs li { color: rgba(242,239,232,0.6); }
.service-hero--dark .breadcrumbs li[aria-current="page"] { color: var(--bg); }

@media (min-width: 900px) {
  .service-hero { padding: 96px 0 72px; }
}
