/* Hero — picture-led, tagline + Read More overlay only */

.savvy-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background-color: var(--surface-inverse);
  color: var(--text-on-dark);
  overflow: hidden;
}
@media (min-width: 1200px) {
  .savvy-hero { min-height: 640px; }
}

/* Photo-free service hero: no image to carry the title, so the dark band
   stands on its own. Title goes white, height tightens, content sits to the
   top-left so it reads as an intentional dark header, not an empty void. */
.savvy-hero--noimg {
  min-height: 0;
  align-items: flex-start;
}
@media (min-width: 1200px) {
  .savvy-hero--noimg { min-height: 0; }
}
.savvy-hero--noimg .savvy-hero__inner {
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
  align-items: center;
}
/* Hero headline is white on both image and no-image heroes (the hero band is
   always dark: an image with dark overlay, or the inverse surface). Overrides
   the global dark h1 colour from base.css. */
.savvy-hero__headline {
  color: var(--text-on-dark);
}
/* Secondary (phone) button on the dark hero: white outline + white text, so it
   reads on the photo. The default .btn--secondary is dark charcoal (for light
   sections). */
.savvy-hero .btn--secondary {
  color: var(--text-on-dark);
  border-color: var(--text-on-dark);
}
.savvy-hero .btn--secondary:hover {
  background-color: var(--text-on-dark);
  color: var(--brand-primary);
}

.savvy-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.savvy-hero__bg img,
.savvy-hero__bg picture,
.savvy-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.savvy-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.15) 40%, rgba(17, 17, 17, 0) 100%);
}

.savvy-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-8) var(--container-padding);
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.savvy-hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw + 0.5rem, 2rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  font-weight: var(--fw-semibold);
  color: var(--text-on-dark);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.savvy-hero__tagline-line {
  display: block;
}

.savvy-hero__readmore {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-uppercase);
  color: var(--text-on-dark);
  text-decoration: none;
  padding: var(--space-3) var(--space-5);
  border: 1px solid var(--text-on-dark);
  background: transparent;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.savvy-hero__readmore:hover {
  background-color: var(--text-on-dark);
  color: var(--brand-primary);
}

@media (max-width: 640px) {
  .savvy-hero { min-height: 420px; align-items: flex-end; }
  .savvy-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
  .savvy-hero__readmore { align-self: flex-start; }
}

/* Breadcrumb bar — sits above the photo hero on service spokes (and
   reusable elsewhere). Slim dark band, low-key — primary job is to give
   "you are here" context without competing with the photo below. */
.savvy-breadcrumb {
  background: var(--surface-inverse);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.savvy-breadcrumb__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-3) var(--container-padding);
}
.savvy-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}
.savvy-breadcrumb__item {
  font-size: var(--fs-xs);
  color: var(--text-on-dark);
  opacity: 0.7;
  line-height: 1.4;
}
.savvy-breadcrumb__item a {
  color: var(--text-on-dark);
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.savvy-breadcrumb__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.savvy-breadcrumb__item--current {
  opacity: 1;
  font-weight: var(--fw-semibold);
}
.savvy-breadcrumb__sep {
  font-size: var(--fs-xs);
  color: var(--text-on-dark);
  opacity: 0.3;
  line-height: 1.4;
}
