/* ==========================================================================
   Maniro — Services Page / Hero
   Breadcrumb + big title + placeholder text + large industrial illustration.
   ========================================================================== */

.services-hero {
  position: relative;
  overflow: hidden;
  padding-block: 56px 96px;
  background: var(--color-bg);
}

/* Soft ambient wash behind the header text — single, restrained accent */
.services-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 480px;
  background: radial-gradient(
    60% 100% at 50% 0%,
    var(--color-sky-tint) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.services-hero-inner {
  position: relative;
  z-index: 1;
}

/* ---------- Breadcrumb ---------- */
.services-hero .breadcrumb {
  display: block;
  text-align: center;
  margin: 0 0 28px;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.services-hero .breadcrumb a {
  color: var(--color-text-muted);
  transition: color 0.2s var(--ease);
}

.services-hero .breadcrumb a:hover {
  color: var(--color-sky-dark);
}

[data-theme="dark"] .services-hero .breadcrumb a:hover {
  color: var(--color-sky);
}

.services-hero .breadcrumb-sep {
  margin-inline: 8px;
  color: var(--color-border);
}

.services-hero .breadcrumb-current {
  color: var(--color-text);
  font-weight: 600;
}

/* ---------- Header text ---------- */
.services-hero-header {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.services-hero-title {
  margin: 0 0 20px;
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: normal;
  color: var(--color-text);
}

.services-hero-text {
  max-width: 520px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* ---------- Large visual placeholder ---------- */
.services-hero-visual {
  position: relative;
  margin-top: 64px;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg-subtle);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.services-hero-illustration {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-text);
}

.services-hero-illustration .pylon-line {
  stroke: currentColor;
  stroke-opacity: 0.82;
}

.services-hero-illustration .pylon-node {
  fill: var(--color-sky-dark);
}

[data-theme="dark"] .services-hero-illustration .pylon-node {
  fill: var(--color-sky);
}

.services-hero-illustration .pylon-cable {
  stroke: currentColor;
  stroke-opacity: 0.35;
}

.services-hero-illustration .pylon-grid {
  fill: var(--color-text);
  opacity: 0.05;
}

[data-theme="dark"] .services-hero-illustration .pylon-grid {
  opacity: 0.08;
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .services-hero {
    padding-block: 40px 64px;
  }

  .services-hero-visual {
    margin-top: 44px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .services-hero .breadcrumb {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .services-hero-text {
    font-size: 15.5px;
  }

  .services-hero-visual {
    aspect-ratio: 1 / 1;
  }
}
