.subhero {
  position: relative;
  height: calc(55vh - var(--nav-height) - var(--bar-height));
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 0 5vw 6vh;
  overflow: hidden;
}

.subhero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.95) 35%, rgba(10,10,10,0.5) 100%),
    linear-gradient(to top,   rgba(10,10,10,0.8)  0%,  transparent 50%),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1600&q=80') center/cover no-repeat;
}

.subhero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 38%;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  transform: skewX(-6deg);
  opacity: 0.5;
}

.subhero-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s ease both;
}

.breadcrumb a {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb-sep { color: var(--accent); font-size: 1rem; }

.breadcrumb-current { color: var(--white); }

.subhero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

.subhero-tag::before {
  content: '';
  width: 3px;
  height: 1.4em;
  background: var(--accent);
  flex-shrink: 0;
}

.subhero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  animation: fadeUp 0.7s 0.2s ease both;
}

.subhero-content h1 em {
  font-style: italic;
  color: var(--accent);
}
