body.home-visual {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--sea-dark);
  color: #fff;
  overflow: hidden;
}

body.home-visual .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  max-width: none;
  margin: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(180deg, rgba(7, 42, 64, 0.85) 0%, transparent 100%);
  pointer-events: none;
}

body.home-visual .site-header > * { pointer-events: auto; }

body.home-visual .site-brand {
  color: #fff;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

body.home-visual .site-tagline {
  color: rgba(255, 255, 255, 0.85);
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
}

body.home-visual main {
  flex: 1;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.hero-media,
.hero-carousel,
.hero-slide,
.hero-fallback {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide img,
.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-fallback {
  background:
    linear-gradient(160deg, rgba(11, 61, 92, 0.55), rgba(7, 42, 64, 0.75)),
    #0b3d5c;
}

.hero-nav {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.6rem;
  pointer-events: none;
}

.hero-nav__btn {
  pointer-events: auto;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 42, 64, 0.45);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
  padding: 4.5rem 1.5rem 2rem;
  background: linear-gradient(0deg, rgba(7, 42, 64, 0.88) 0%, transparent 100%);
  max-width: 40rem;
}

.hero-copy h2 {
  color: #fff;
  margin: 0 0 0.6rem;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
}

.hero-copy .hero-body {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
  margin-top: 1rem;
}

.hero-dog-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  height: 42%;
  pointer-events: none;
}

.hero-dog-overlay__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

@media (prefers-reduced-motion: reduce) {
  .hero-dog-overlay { display: none; }
}
