/* ─── AV Hero — gallery-first layout ─── */
.av-hero {
  background: var(--av-paper);
  padding: 64px 20px;
}
.av-hero-head-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 36px;
}
.av-hero h1 {
  font-family: var(--av-font-display);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--av-navy);
  margin: 0;
}
.av-hero h1 em {
  font-style: normal;
  color: var(--av-rust);
}
.av-hero .av-hero-lede {
  font-family: var(--av-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--av-ink-3);
  max-width: 420px;
  margin-bottom: 18px;
}
.av-hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.av-hero-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 14px;
}
.av-hero-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--av-line);
}
.av-hero-tile.large {
  grid-row: span 2;
}
.av-hero .av-hero-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.av-hero-tile-overlay {
  position: absolute;
  inset: 0;
  background: #1a1a20;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
/* Before/After slider */
.av-ba-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}
.av-ba-after,
.av-ba-before {
  position: absolute;
  inset: 0;
}
.av-ba-before {
  clip-path: inset(0 50% 0 0);
}
.av-ba-after img,
.av-ba-before img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.av-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.av-ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
}
.av-btn.av-ba-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  gap: 0;
}
.av-btn.av-ba-btn svg {
  width: 14px;
  height: 14px;
  color: var(--av-navy);
  flex-shrink: 0;
  fill: currentcolor;
}
.av-ba-tag {
  position: absolute;
  top: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
  font-family: var(--av-font);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  pointer-events: none;
}
.av-ba-tag-before {
  left: 12px;
}
.av-ba-tag-after {
  right: 12px;
}
.av-hero-tile-lbl {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #fff;
  font-family: var(--av-font-display);
  font-weight: 600;
  font-size: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.av-hero-tile-lbl small {
  font-family: var(--av-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.9;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .av-hero-head-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .av-hero-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .av-hero-tile.large {
    grid-row: span 1;
  }
}
@media (max-width: 520px) {
  .av-hero-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .av-hero-tile.large {
    grid-row: span 1;
  }
}
