/* ===================================
   Protection Nav — solid charcoal over hero and after
   =================================== */

/* Dark background for the whole protection page — prevents cream body bleeding through */
body[data-page="protection"] {
  --protection-charcoal: #121212;
  --protection-charcoal-rgb: 18, 18, 18;
  --protection-card-surface: #1b1b1b;
  background: var(--protection-charcoal);
}

body[data-page="protection"] .discipline-page--protection {
  background: var(--protection-charcoal);
}

body[data-page="protection"] .site-nav {
  background: var(--protection-charcoal);
  border-bottom-color: transparent;
  color: var(--white);
  transition: background 0.45s ease, backdrop-filter 0.45s ease,
    -webkit-backdrop-filter 0.45s ease, border-color 0.35s ease;
}

body[data-page="protection"] .site-nav__logo img {
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

body[data-page="protection"].is-past-hero .site-nav {
  background: var(--protection-charcoal);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: rgba(200, 169, 107, 0.18);
}

body[data-page="protection"].is-site-menu-open .site-nav {
  background: var(--protection-charcoal);
  border-bottom-color: rgba(200, 169, 107, 0.22);
}

body[data-page="protection"] .site-menu__bg-right-inner {
  background-color: var(--protection-charcoal);
}

/* ===================================
   Protection Hero — Dark cinematic
   =================================== */

/* Centred layout — matches pet-training hero language */
.discipline-page--protection .discipline-hero {
  align-items: center;
  background: var(--protection-charcoal);
  text-align: center;
  padding: clamp(7rem, 13vw, 11rem) clamp(1rem, 5vw, 5rem);
}

.discipline-page--protection .discipline-hero__lede {
  margin-inline: auto;
}

/* Gradient overlay — heavy vignette, no filter on the media */
.discipline-page--protection .discipline-hero::before {
  background:
    linear-gradient(to top, rgba(var(--protection-charcoal-rgb), 1) 0%, rgba(var(--protection-charcoal-rgb), 1) 8%, rgba(var(--protection-charcoal-rgb), 0.72) 35%, rgba(var(--protection-charcoal-rgb), 0.28) 60%, rgba(var(--protection-charcoal-rgb), 0.08) 80%, transparent 100%),
    linear-gradient(to bottom, rgba(var(--protection-charcoal-rgb), 0.72) 0%, rgba(var(--protection-charcoal-rgb), 0.2) 20%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(var(--protection-charcoal-rgb), 0.55) 100%);
}


/* Video layer — sits above the image, same filter grade */
.discipline-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.18) brightness(0.62);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  will-change: opacity;
}

.discipline-hero__video--eager {
  opacity: 1;
  position: static;
  z-index: auto;
}

/* Gold eyebrow for authority */
.discipline-page--protection .discipline-hero__eyebrow {
  color: var(--gold);
  letter-spacing: 0.26em;
  font-size: 0.72rem;
}

/* Large display title — matches pet scale */
.discipline-page--protection .discipline-hero h1 {
  font-size: clamp(4rem, 13vw, 15rem);
  letter-spacing: -0.01em;
}

/* Centred gold rule beneath eyebrow */
.discipline-page--protection .discipline-hero__eyebrow::after {
  content: "";
  display: block;
  width: clamp(2rem, 4vw, 3.5rem);
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  margin: 0.75rem auto -0.2rem;
}

.discipline-hero__status {
  position: absolute;
  top: clamp(5rem, 9vw, 6.5rem);
  right: clamp(1.5rem, 3vw, 3rem);
  z-index: 5;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 169, 107, 0.4);
  padding: 0.3rem 0.85rem;
}

.discipline-hero__scroll-indicator {
  position: absolute;
  bottom: clamp(2rem, 4vw, 3.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.discipline-hero__scroll-line {
  display: block;
  width: 1px;
  height: clamp(2.5rem, 5vw, 4rem);
  background: var(--gold);
  transform-origin: top center;
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.35; }
  50% { transform: scaleY(0.4); opacity: 0.12; }
}

@media (max-width: 700px) {
  .discipline-hero__status,
  .discipline-hero__scroll-indicator {
    display: none;
  }
}

/* ===================================
   Benefits Section
   =================================== */

.prot-benefits {
  position: relative;
  background: var(--protection-charcoal);
  color: var(--white);
  overflow: hidden;
  padding: clamp(7rem, 13vw, 11rem) clamp(2rem, 6vw, 6rem);
  margin-top: -2px;
}

.prot-benefits.has-grain::before {
  display: none;
}

.prot-benefits__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.prot-benefits__eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(1.2rem, 2.5vw, 2rem);
}

.prot-benefits__main-heading {
  margin: 0 0 clamp(1.4rem, 2.5vw, 2.2rem);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.prot-benefits__heading-clip {
  display: block;
  overflow: hidden;
}

.prot-benefits__heading-line {
  display: block;
}

.prot-benefits__tagline {
  margin: 0 auto clamp(2.5rem, 4.5vw, 4rem);
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  line-height: 1.68;
  color: rgba(245, 244, 240, 0.5);
  max-width: 48ch;
}

/* Stats row — mirrors pet-residential__stats */
.prot-benefits__stats {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  justify-content: center;
  border-top: 1px solid rgba(245, 244, 240, 0.12);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  max-width: min(54rem, 88vw);
  margin-left: auto;
  margin-right: auto;
}

.prot-benefits__stat span {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.prot-benefits__stat p {
  margin: 0.4rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.4);
}

.prot-benefits__bridge-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(245, 244, 240, 0.28);
  padding: 0.8rem 1.6rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.prot-benefits__bridge-cta span {
  display: inline-block;
  transition: transform 0.22s ease;
}

.prot-benefits__bridge-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.prot-benefits__bridge-cta:hover span {
  transform: translateX(5px);
}

/* GSD illustration — centered ghost behind content */
.prot-benefits__illus {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: clamp(280px, 42vw, 580px);
  height: auto;
  max-width: none;
  filter: invert(1);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Protection page illustration system ── */
.prot-illus {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.09;
}

.prot-illus--tl { top: -3%; left: -2%; width: clamp(12rem, 20vw, 22rem); }
.prot-illus--tr { top: -3%; right: -2%; width: clamp(12rem, 20vw, 22rem); transform: scaleX(-1); }
.prot-illus--bl { bottom: -3%; left: -2%; width: clamp(12rem, 20vw, 22rem); transform: scaleY(-1); }
.prot-illus--br { bottom: -3%; right: -2%; width: clamp(12rem, 20vw, 22rem); transform: scale(-1); }

.prot-illus--action {
  right: -2%;
  bottom: 0;
  width: clamp(18rem, 26vw, 34rem);
  opacity: 0.07;
}

.prot-illus--gaze {
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(16rem, 22vw, 28rem);
  opacity: 0.06;
}

@media (max-width: 600px) {
  .prot-illus--action,
  .prot-illus--gaze { display: none; }
}

@media (max-width: 700px) {
  .prot-benefits__main-heading {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }
}

@media (max-width: 600px) {
  .prot-benefits__stats {
    flex-direction: column;
    gap: 1.4rem;
    align-items: center;
  }

  /* Ghost GSD silhouette is sized for desktop (280px floor) and sits behind the
     stats/CTA on short mobile viewports — drop it rather than let it crowd content. */
  .prot-benefits__illus {
    display: none;
  }
}

/* ===================================
   Dogs Section
   =================================== */

.dogs-section {
  position: relative;
  background: var(--protection-charcoal);
  color: var(--white);
}

.dogs-section__header {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem) 0;
}

.dogs-section__marquee-outer {
  overflow: hidden;
  width: 100vw;
  margin: 1.5rem calc(50% - 50vw) 0;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(200, 169, 107, 0.18);
  border-bottom: 1px solid rgba(200, 169, 107, 0.18);
}

.dogs-section__marquee {
  display: flex;
  gap: clamp(1.25rem, 2.4vw, 2.5rem);
  width: max-content;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  animation: dogs-marquee 22s linear infinite;
  will-change: transform;
}

.dogs-section__sep { opacity: 0.25; }

@keyframes dogs-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}

/* ===================================
   Dogs Catalogue
   =================================== */

.dogs-catalogue {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: calc(100svh - clamp(9rem, 14vw, 13rem));
  gap: clamp(0.5rem, 1vw, 1rem);
  padding: 0 clamp(1rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

/* Previously Placed toggle — sits outside .dogs-catalogue grid */
.dogs-sold-section {
  padding: 0 clamp(1rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2.5rem);
  background: var(--protection-charcoal);
}

.dogs-sold-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.4rem, 2.5vw, 2rem) clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid rgba(200, 169, 107, 0.15);
  border-radius: 0.35rem;
  background: rgba(200, 169, 107, 0.04);
  color: rgba(245, 244, 240, 0.8);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.dogs-sold-toggle::before {
  content: "PLACED";
  position: absolute;
  right: clamp(4rem, 10vw, 8rem);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(200, 169, 107, 0.06);
  pointer-events: none;
  white-space: nowrap;
}

.dogs-sold-toggle:hover {
  background: rgba(200, 169, 107, 0.07);
  border-color: rgba(200, 169, 107, 0.3);
  color: rgba(245, 244, 240, 1);
}

.dogs-sold-toggle__count {
  color: var(--gold);
  opacity: 0.55;
  font-size: 0.68rem;
}

.dogs-sold-toggle__hint {
  margin-left: auto;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  opacity: 0.5;
  transition: opacity 0.25s ease;
}

.dogs-sold-toggle:hover .dogs-sold-toggle__hint {
  opacity: 0.85;
}

.dogs-sold-toggle__arrow {
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.65;
  transition: opacity 0.25s ease;
}

.dogs-sold-toggle:hover .dogs-sold-toggle__arrow {
  opacity: 1;
}

.dogs-sold-wrap {
  overflow: hidden;
  height: 0;
  will-change: height;
}

.dogs-sold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: calc(100svh - clamp(9rem, 14vw, 13rem));
  gap: clamp(0.5rem, 1vw, 1rem);
  padding-top: clamp(0.5rem, 1vw, 0.75rem);
  padding-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

@media (max-width: 1100px) {
  .dogs-sold-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
  }

  .dogs-sold-grid .dog-card__media {
    flex: none;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 768px) {
  .dogs-sold-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .dogs-sold-grid .dog-card__media {
    aspect-ratio: 4 / 3;
  }
}

/* Card */
.dog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--protection-card-surface);
  overflow: hidden;
  border-radius: 2px;
  transition: opacity 0.4s ease;
}

.dog-card--sold { opacity: 0.78; }

/* Image area — fills remaining height */
.dog-card__media {
  position: relative;
  flex: 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

/* Carousel image layer */
.dog-card__carousel-images {
  position: absolute;
  inset: 0;
}

.dog-card__carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.04);
  opacity: 0;
  transition: opacity 0.55s ease, transform 1.4s var(--ease-main);
}

.dog-card__carousel-img.is-active { opacity: 1; }


/* Empty/placeholder image area */
.dog-card__media--empty {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(200, 169, 107, 0.04) 0px,
      rgba(200, 169, 107, 0.04) 1px,
      transparent 1px,
      transparent 18px
    );
}

.dog-card__media--empty::after {
  content: 'Coming Soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200, 169, 107, 0.3);
}

/* Status badge */
.dog-card__badge {
  position: absolute;
  top: clamp(0.85rem, 1.5vw, 1.25rem);
  left: clamp(0.85rem, 1.5vw, 1.25rem);
  padding: 0.3rem 0.75rem;
  background: rgba(10, 10, 10, 0.65);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  backdrop-filter: blur(10px) saturate(1.4);
  border: 1px solid rgba(245, 244, 240, 0.1);
  border-radius: 0.2rem;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
}

.dog-card__badge--available { color: var(--gold); border-color: rgba(200, 169, 107, 0.35); }
.dog-card__badge--reserved  { color: rgba(245, 244, 240, 0.7); }
.dog-card__badge--sold      { color: rgba(245, 244, 240, 0.4); }

.dog-card__age-badge {
  left: auto;
  right: clamp(0.85rem, 1.5vw, 1.25rem);
  color: rgba(245, 244, 240, 0.75);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
}

/* Carousel prev/next arrows — bottom-right of image */
.dog-card__carousel-controls {
  position: absolute;
  bottom: clamp(0.75rem, 1.2vw, 1rem);
  right: clamp(0.75rem, 1.2vw, 1rem);
  display: flex;
  gap: 0.35rem;
  z-index: 3;
}

.dog-card__carousel-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(245, 244, 240, 0.28);
  background: rgba(6, 6, 6, 0.6);
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.dog-card__carousel-btn:hover {
  border-color: rgba(200, 169, 107, 0.65);
  background: rgba(200, 169, 107, 0.15);
}

/* Carousel dots — bottom-centre of image */
.dog-card__carousel-dots {
  position: absolute;
  bottom: clamp(0.75rem, 1.2vw, 1rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 3;
}

.dog-card__dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(245, 244, 240, 0.3);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.dog-card__dot.is-active {
  background: var(--gold);
  transform: scale(1.35);
}

/* Content panel — fixed height below image */
.dog-card__body {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(0.9rem, 1.4vw, 1.3rem) clamp(1rem, 1.6vw, 1.4rem) clamp(1.1rem, 1.8vw, 1.6rem);
  border-top: 1px solid rgba(200, 169, 107, 0.14);
}

.dog-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: clamp(0.45rem, 0.75vw, 0.7rem);
}

.dog-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2vw, 2.6rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
}

.dog-card__breed {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.38;
  white-space: nowrap;
  flex-shrink: 0;
}

.dog-card__traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 0.65rem;
  list-style: none;
  margin: 0 0 clamp(0.5rem, 0.85vw, 0.8rem);
  padding: 0 0 clamp(0.5rem, 0.85vw, 0.8rem);
  border-bottom: 1px solid rgba(245, 244, 240, 0.08);
  font-family: var(--font-ui);
  font-size: 0.57rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.42;
}

.dog-card__desc {
  margin: 0 0 clamp(0.6rem, 1vw, 0.85rem);
  font-size: clamp(0.78rem, 0.85vw, 0.88rem);
  line-height: 1.55;
  opacity: 0.6;
}

/* Actions row: profile + CTA side by side */
.dog-card__actions {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.dog-card__profile {
  flex: 0 0 auto;
  padding: 0.7rem 0.9rem;
  background: transparent;
  border: 1px solid rgba(245, 244, 240, 0.2);
  color: rgba(245, 244, 240, 0.6);
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.22s ease, color 0.22s ease;
  min-height: 44px;
}

.dog-card__profile:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* CTA — gold filled button for available, ghost for reserved */
.dog-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0.7rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--gold);
  color: #0a0a0a;
  min-height: 44px;
  transition: background 0.22s ease;
}

.dog-card__cta:hover { background: var(--white); }

.dog-card__cta--reserved {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245, 244, 240, 0.32);
  font-weight: 400;
}

.dog-card__cta--reserved:hover {
  background: rgba(245, 244, 240, 0.07);
}

.dog-card__cta--sold {
  background: transparent;
  color: rgba(245, 244, 240, 0.22);
  cursor: default;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  text-transform: uppercase;
}

/* Tablet — 2-column grid */
@media (max-width: 1100px) {
  .dogs-catalogue {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
  }

  .dog-card__media {
    flex: none;
    aspect-ratio: 4 / 5;
  }
}

/* Small laptops 2-col — shorter aspect ratio + tighter content (1024-1100px) */
@media (min-width: 769px) and (max-width: 1100px) {
  .dog-card__media {
    aspect-ratio: 5 / 4;
  }

  .dogs-sold-grid .dog-card__media {
    aspect-ratio: 5 / 4;
  }

  .dog-card__name {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  }

  .dog-card__body {
    padding: clamp(0.65rem, 1.2vw, 0.9rem) clamp(0.8rem, 1.4vw, 1rem) clamp(0.8rem, 1.5vw, 1rem);
  }

  .dog-card__desc {
    font-size: clamp(0.74rem, 1.6vw, 0.82rem);
    margin-bottom: clamp(0.35rem, 0.7vw, 0.5rem);
  }

  .dog-card__traits {
    font-size: 0.52rem;
    gap: 0.2rem 0.45rem;
    margin-bottom: clamp(0.3rem, 0.6vw, 0.5rem);
    padding-bottom: clamp(0.3rem, 0.6vw, 0.5rem);
  }

  .dog-card__actions {
    gap: 0.35rem;
  }

  .dog-card__profile {
    padding: 0.5rem 0.65rem;
    font-size: 0.52rem;
  }

  .dog-card__cta {
    padding: 0.5rem 0.8rem;
    font-size: 0.52rem;
  }
}

/* Small laptops 3-col — constrain row height and tighten card content */
@media (min-width: 1101px) and (max-width: 1366px) {
  .dogs-catalogue,
  .dogs-sold-grid {
    grid-auto-rows: clamp(28rem, 60svh, 38rem);
  }

  .dog-card__name {
    font-size: clamp(1.4rem, 1.8vw, 2rem);
  }

  .dog-card__body {
    padding: clamp(0.7rem, 1.2vw, 1rem) clamp(0.85rem, 1.4vw, 1.2rem) clamp(0.85rem, 1.5vw, 1.2rem);
  }

  .dog-card__desc {
    font-size: clamp(0.75rem, 0.82vw, 0.84rem);
    margin-bottom: clamp(0.4rem, 0.7vw, 0.6rem);
  }

  .dog-card__traits {
    font-size: 0.52rem;
    gap: 0.2rem 0.5rem;
    margin-bottom: clamp(0.35rem, 0.6vw, 0.55rem);
    padding-bottom: clamp(0.35rem, 0.6vw, 0.55rem);
  }

  .dog-card__actions {
    gap: 0.35rem;
  }

  .dog-card__profile {
    padding: 0.55rem 0.7rem;
    font-size: 0.52rem;
  }

  .dog-card__cta {
    padding: 0.55rem 0.9rem;
    font-size: 0.54rem;
  }
}

/* Mobile — single column */
@media (max-width: 768px) {
  .dogs-catalogue {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.75rem;
    padding: 0 1rem 1.5rem;
  }

  .dog-card__media {
    aspect-ratio: 4 / 3;
  }

  .dog-card__name {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
}


/* ===================================
   Sport Services Section
   =================================== */

.sport-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
  background: var(--protection-charcoal);
  color: var(--white);
}

.sport-section__intro {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.sport-section__intro h2 {
  max-width: 52rem;
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.sport-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(200, 169, 107, 0.18);
}

.sport-item {
  position: relative;
  display: grid;
  grid-template-columns: clamp(2.5rem, 4vw, 4rem) 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1.4rem, 2.8vw, 2.4rem) 0;
  border-bottom: 1px solid rgba(200, 169, 107, 0.18);
  cursor: default;
  transition: opacity 0.28s ease;
}

.sport-list:has(.sport-item:hover) .sport-item:not(:hover) {
  opacity: 0.35;
}

.sport-item__num {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  opacity: 0.4;
  align-self: start;
  padding-top: 0.2em;
}

.sport-item__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.sport-item__desc {
  display: none;
}

.sport-item__arrow {
  font-size: clamp(1.2rem, 2vw, 2rem);
  opacity: 0.45;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sport-item:hover .sport-item__arrow {
  transform: translateX(6px);
  opacity: 0.9;
}

.sport-item__mobile-img {
  display: none;
  margin: 0;
  overflow: hidden;
}

.sport-item__mobile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.08) brightness(0.74);
}

.sport-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: clamp(14rem, 22vw, 26rem);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  /* transform is owned entirely by GSAP — no CSS value here */
  will-change: transform, opacity;
}

.sport-preview__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.08) brightness(0.78);
}

@media (max-width: 768px) {
  .sport-item {
    grid-template-columns: 1fr;
    padding: 0;
    border-bottom: none;
  }

  .sport-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sport-item__mobile-img {
    display: block;
    aspect-ratio: 16 / 9;
    margin: 0;
  }

  .sport-item__num {
    display: none;
  }

  .sport-item__name {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    padding: 1rem 1rem 0;
  }

  .sport-item__desc {
    display: block;
    margin: 0;
    padding: 0.4rem 1rem 1rem;
    font-size: clamp(0.82rem, 3.2vw, 0.95rem);
    line-height: 1.5;
    opacity: 0.55;
  }

  .sport-item__arrow {
    display: none;
  }

  .sport-preview {
    display: none;
  }
}

/* ===================================
   Gallery Section — RADGA Horizontal
   =================================== */

.gallery-section {
  position: relative;
  background: var(--protection-charcoal);
  overflow: hidden;
}

/* Section header */
.gallery-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 5rem) clamp(1.2rem, 2.5vw, 2rem);
}

.gallery-section__drag-hint {
  font-family: var(--font-ui);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.3);
}

/* Drag viewport — custom cursor replaces native */
.gallery-section__viewport {
  overflow: hidden;
  cursor: none;
  touch-action: pan-y;
}

.gallery-section__viewport.is-dragging {
  cursor: none;
}

.gallery-section__slides {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
  will-change: transform;
  user-select: none;
}

/* Footer with progress bar */
.gallery-section__footer {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 5vw, 5rem) clamp(2rem, 4vw, 3.5rem);
}

.gallery-section__progress {
  display: block;
  height: 1px;
  background: rgba(245, 244, 240, 0.1);
  position: relative;
  overflow: hidden;
}

.gallery-section__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}

/* ── Individual slide ── */
.gallery-slide {
  position: relative;
  flex: 0 0 clamp(300px, 68vw, 880px);
  height: clamp(380px, 52vh, 640px);
  overflow: hidden;
  border-radius: 3px;
  background: var(--protection-charcoal);
}

/* Full-bleed background image — JS animates scale + filter */
.gallery-slide__bg {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.gallery-slide__bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform, filter;
}

/* Rich bottom-to-top + side vignette */
.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(3,3,3,0.96) 0%, rgba(3,3,3,0.55) 30%, rgba(3,3,3,0.1) 58%, transparent 100%),
    linear-gradient(to right, rgba(3,3,3,0.22) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

/* ── Content overlay ── */
.gallery-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.4rem, 2.8vw, 2.5rem);
  z-index: 3;
  color: var(--white);
}

/* Step number — large watermark top-right */
.gallery-slide__num {
  position: absolute;
  top: clamp(1rem, 2vw, 1.8rem);
  right: clamp(1rem, 2vw, 1.8rem);
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(245, 244, 240, 0.055);
  pointer-events: none;
  z-index: 1;
}

/* Phase label */
.gallery-slide__phase {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(0.6rem, 1.2vw, 1rem);
}

/* Title — each line wrapped in an overflow:hidden clip */
.gallery-slide__title {
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.2rem);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.gallery-slide__title-clip {
  display: block;
  overflow: hidden;
}

.gallery-slide__title-line {
  display: block;
}

/* Body copy */
.gallery-slide__desc {
  margin: 0 0 clamp(0.9rem, 1.8vw, 1.6rem);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  line-height: 1.65;
  max-width: 38ch;
  color: rgba(245, 244, 240, 0.68);
}

/* Counter */
.gallery-slide__count {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.35);
}

@media (max-width: 700px) {
  .gallery-section__slides {
    gap: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .gallery-slide {
    flex: 0 0 82vw;
    height: clamp(340px, 58vw, 520px);
  }

  .gallery-slide__title {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .gallery-slide__num {
    font-size: clamp(3rem, 10vw, 5.5rem);
  }
}

/* ===================================
   Video Section
   =================================== */

.protection-video-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 4.5rem);
  background: var(--protection-charcoal);
  color: var(--white);
}

.protection-video-section__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.protection-video-section__header h2 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.protection-video-section__reel {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1rem;
  align-items: start;
}

.pv-embed {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pv-embed__poster {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.pv-embed--featured .pv-embed__poster { aspect-ratio: 16 / 9; }
.pv-embed:not(.pv-embed--featured) .pv-embed__poster { aspect-ratio: 4 / 3; }

.pv-embed__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.1) brightness(0.52);
  transition: filter 0.4s ease;
}

.pv-embed:hover .pv-embed__poster img {
  filter: saturate(0.88) contrast(1.08) brightness(0.62);
}

.pv-embed__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.pv-embed__play-icon {
  width: clamp(3rem, 4.5vw, 4.5rem);
  height: clamp(3rem, 4.5vw, 4.5rem);
  border: 1px solid rgba(245, 244, 240, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.pv-embed__play-icon::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 0.55em solid transparent;
  border-bottom: 0.55em solid transparent;
  border-left: 0.9em solid rgba(245, 244, 240, 0.85);
  margin-left: 0.18em;
  transition: border-left-color 0.28s ease;
}

.pv-embed__play:hover .pv-embed__play-icon {
  background: rgba(200, 169, 107, 0.18);
  border-color: var(--gold);
  transform: scale(1.08);
}

.pv-embed__play:hover .pv-embed__play-icon::after {
  border-left-color: var(--gold);
}

.pv-embed__label {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
}

.pv-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

@media (max-width: 700px) {
  .protection-video-section__reel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pv-embed:not(.pv-embed--featured) .pv-embed__poster {
    aspect-ratio: 16 / 9;
  }
}

/* ===================================
   Process Section — Ethnocare Counter
   =================================== */

.process-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
  background: var(--protection-charcoal);
  color: var(--white);
}

.process-section > .section-kicker {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.process-section__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.process-section__counter {
  position: sticky;
  top: clamp(5rem, 10vw, 8rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.4vw, 1.25rem);
  width: max-content;
  max-width: 100%;
  overflow: visible;
  pointer-events: none;
}

.process-counter__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(6rem, 16vw, 18rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: rgba(200, 169, 107, 0.16);
  overflow: visible;
  will-change: transform, opacity, contents;
}

.process-counter__label {
  font-family: var(--font-ui);
  font-size: clamp(0.72rem, 1.1vw, 0.92rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.62);
  opacity: 1;
  white-space: nowrap;
  overflow: visible;
  will-change: transform, opacity;
}

.process-section__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(200, 169, 107, 0.18);
}

.process-step {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid rgba(200, 169, 107, 0.18);
  display: grid;
  gap: 0.5rem;
}

.process-step__num {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  opacity: 0.35;
  margin-bottom: 0.5rem;
}

.process-step__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.process-step__desc {
  max-width: 42rem;
  margin: clamp(0.8rem, 1.5vw, 1.2rem) 0 0;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.6;
  opacity: 0.72;
}

@media (min-width: 701px) {
  .process-section__inner {
    grid-template-columns: clamp(8rem, 18vw, 22rem) 1fr;
  }
}

@media (max-width: 700px) {
  .process-section__counter {
    display: none;
  }

  .process-section__inner {
    grid-template-columns: 1fr;
  }

  .process-step__title {
    font-size: clamp(2.2rem, 11vw, 4rem);
  }
}

/* ===================================
   Protection CTA Section
   =================================== */

.protection-cta {
  position: relative;
  overflow: hidden;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  align-content: center;
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 5vw, 5rem);
  background: var(--protection-charcoal);
  color: var(--white);
}

.prot-illus--cta-illus {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(12rem, 18vw, 22rem);
  opacity: 0.18;
}

.protection-cta__heading {
  max-width: 64rem;
  margin: 0.5rem auto 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7.5vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.protection-cta__sub {
  max-width: 36rem;
  margin: clamp(1rem, 2.5vw, 2rem) auto 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.55;
  opacity: 0.55;
}

.protection-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: clamp(1.8rem, 3.5vw, 3rem);
}

.protection-cta .button-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-color: var(--gold);
  color: var(--gold);
}

.protection-cta .button-link:hover,
.protection-cta .button-link:focus-visible {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  outline: none;
}

.protection-cta .button-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.protection-cta .text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  border-bottom-color: rgba(200, 169, 107, 0.45);
}

@media (max-width: 700px) {
  .protection-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .protection-cta .button-link,
  .protection-cta .text-link {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}

/* ===================================
   Dark Luxury — Protection Overrides
   =================================== */

/* Loosen editorial negative tracking on protection headings */
.discipline-page--protection .service-list h3,
.discipline-page--protection .story-steps h3,
.discipline-page--protection .dog-list h3 {
  letter-spacing: 0.04em;
}

.discipline-page--protection .page-section--quote blockquote {
  letter-spacing: 0.02em;
}

/* Dog card background — surface depth */
.discipline-page--protection .dog-card {
  background: var(--protection-card-surface);
}

/* Dog status available — gold */
.discipline-page--protection .dog-card__status--available {
  color: var(--gold);
  border-color: rgba(200, 169, 107, 0.5);
}

/* Process counter — gold tint instead of white ghost */
.discipline-page--protection .process-counter__num {
  color: rgba(200, 169, 107, 0.18);
}

/* Gallery slide bg — GSAP overrides filter on entrance; this is the settled state */
.discipline-page--protection .gallery-slide__bg img {
  filter: saturate(1.02) contrast(1.08) brightness(0.72);
}

/* Dog card image — richer contrast */
.discipline-page--protection .dog-card__media img {
  filter: saturate(0.88) contrast(1.14) brightness(0.68);
}

/* ===================================
   Dog Profile Modal
   =================================== */

.dog-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  pointer-events: none;
  visibility: hidden;
}

.dog-modal.is-open {
  pointer-events: all;
  visibility: visible;
}

.dog-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.88);
  backdrop-filter: blur(10px) saturate(0.6);
  -webkit-backdrop-filter: blur(10px) saturate(0.6);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.dog-modal.is-open .dog-modal__backdrop {
  opacity: 1;
}

.dog-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1060px;
  max-height: 88svh;
  background: #1a1a1a;
  border: 1px solid rgba(245, 244, 240, 0.1);
  overflow: hidden;
  will-change: transform, opacity;
}

.dog-modal__close {
  position: absolute;
  top: clamp(0.8rem, 1.5vw, 1.2rem);
  right: clamp(0.8rem, 1.5vw, 1.2rem);
  z-index: 10;
  width: 2.4rem;
  height: 2.4rem;
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(245, 244, 240, 0.22);
  color: rgba(245, 244, 240, 0.7);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.dog-modal__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Media panel ── */
.dog-modal__media {
  position: relative;
  overflow: hidden;
  background: var(--protection-charcoal);
  min-height: 420px;
}

.dog-modal__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.1) brightness(0.75);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.dog-modal__img.is-active { opacity: 1; }

.dog-modal__media-nav {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.dog-modal__media-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(2.2rem, 3.5vw, 2.8rem);
  height: clamp(2.2rem, 3.5vw, 2.8rem);
  border: 1px solid rgba(245, 244, 240, 0.18);
  border-radius: 50%;
  background: rgba(6, 6, 6, 0.45);
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: all;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.dog-modal__media-btn[data-modal-prev] { left: clamp(0.6rem, 1vw, 1rem); }
.dog-modal__media-btn[data-modal-next] { right: clamp(0.6rem, 1vw, 1rem); }

.dog-modal__media-btn:hover {
  border-color: rgba(245, 244, 240, 0.4);
  background: rgba(6, 6, 6, 0.7);
  transform: translateY(-50%) scale(1.08);
}

.dog-modal__media-count {
  position: absolute;
  top: clamp(0.85rem, 1.4vw, 1.2rem);
  left: clamp(0.85rem, 1.4vw, 1.2rem);
  padding: 0.3rem 0.7rem;
  background: rgba(6, 6, 6, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 244, 240, 0.1);
  border-radius: 0.2rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(245, 244, 240, 0.55);
  pointer-events: none;
}

/* ── Video block inside media panel ── */
.dog-modal__video {
  margin-top: 1rem;
}

.dog-modal__video-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--protection-charcoal);
  cursor: pointer;
}

.dog-modal__video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
}

.dog-modal__video-poster button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

.dog-modal__video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

/* ── Body panel ── */
.dog-modal__body {
  overflow-y: auto;
  min-height: 0;
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.8rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.8vw, 1.5rem);
  color: var(--white);
  border-left: 1px solid rgba(245, 244, 240, 0.08);
}

.dog-modal__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.dog-modal__badge {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border: 1px solid currentColor;
}

.dog-modal__badge--available { color: var(--gold); border-color: rgba(200, 169, 107, 0.6); }
.dog-modal__badge--reserved  { color: rgba(245, 244, 240, 0.55); border-color: rgba(245, 244, 240, 0.28); }
.dog-modal__badge--sold      { color: rgba(245, 244, 240, 0.25); border-color: rgba(245, 244, 240, 0.12); }

.dog-modal__breed {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.36;
}

.dog-modal__age {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.3;
}

.dog-modal__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.dog-modal__desc {
  margin: 0;
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  line-height: 1.72;
  color: rgba(245, 244, 240, 0.6);
}

.dog-modal__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: clamp(0.9rem, 1.5vw, 1.2rem);
  border-top: 1px solid rgba(245, 244, 240, 0.1);
}

.dog-modal__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.58);
}

.dog-modal__highlights li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

.dog-modal__actions {
  margin-top: auto;
  padding-top: clamp(0.8rem, 1.4vw, 1.2rem);
  border-top: 1px solid rgba(245, 244, 240, 0.08);
}

.dog-modal__enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-ui);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 48px;
  transition: background 0.22s ease;
}

.dog-modal__enquire:hover { background: var(--white); }

.dog-modal__enquire--ghost {
  background: transparent;
  color: rgba(245, 244, 240, 0.5);
  border: 1px solid rgba(245, 244, 240, 0.2);
  cursor: default;
}

.dog-modal__enquire--ghost:hover { background: transparent; color: rgba(245, 244, 240, 0.5); }

/* Small laptop modal — tighter spacing */
@media (min-width: 761px) and (max-width: 1280px) {
  .dog-modal__panel {
    max-width: min(94vw, 960px);
  }

  .dog-modal__body {
    padding: clamp(1.4rem, 2.5vw, 2rem) clamp(1.2rem, 2.5vw, 2rem);
    gap: clamp(0.75rem, 1.4vw, 1.1rem);
  }

  .dog-modal__name {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
  }

  .dog-modal__media {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .dog-modal__panel {
    grid-template-columns: 1fr;
    max-height: 92svh;
    overflow-y: auto;
  }

  .dog-modal__media {
    min-height: 52vw;
  }

  .dog-modal__body {
    border-left: none;
    border-top: 1px solid rgba(245, 244, 240, 0.08);
  }

  .dog-modal__name {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }
}

/* ===================================
   Work Gallery — Saisei-style
   Contained portrait + blurred ambient bg
   =================================== */

.work-gallery {
  background: var(--protection-charcoal);
  color: var(--white);
}

/* ── Stage: full viewport height ── */

/* ── Header: label left, counter right ── */
/* Label — top left, overlaid on stage */
.work-gallery__label {
  position: absolute;
  top: clamp(1.4rem, 2.8vw, 2.4rem);
  left: clamp(1.6rem, 3.5vw, 3.5rem);
  z-index: 10;
  pointer-events: none;
}

.work-gallery__eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.55);
}

/* Counter — top right, overlaid on stage */
.work-gallery__count {
  position: absolute;
  top: clamp(1.2rem, 2.5vw, 2rem);
  right: clamp(1.6rem, 3.5vw, 3.5rem);
  z-index: 10;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  letter-spacing: -0.02em;
  color: rgba(245, 244, 240, 0.6);
  pointer-events: none;
  line-height: 1;
}

.work-gallery__stage {
  position: relative;
  overflow: hidden;
  height: calc(100svh - clamp(4.25rem, 7vw, 5.25rem));
  background: var(--protection-charcoal);
}

/* Background pool — full-bleed, dark, blurred */
.work-gallery__bg-pool {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.work-gallery__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: brightness(0.28) saturate(0.5);
  opacity: 0;
  pointer-events: none;
  will-change: transform;
}

.work-gallery__bg.is-active { opacity: 1; }

/* Slide pool — centered portrait frames */
.work-gallery__slide-pool {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.work-gallery__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3svh, 3rem) 0 clamp(5rem, 9svh, 8rem);
  gap: clamp(0.75rem, 1.5vw, 1.4rem);
  /* GSAP manages opacity and x */
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Portrait frame — contained foreground image */
.work-gallery__portrait {
  width: clamp(200px, 36vw, 500px);
  aspect-ratio: 4 / 5;
  max-height: min(50svh, 560px);
  overflow: hidden;
  margin: 0;
  flex-shrink: 0;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.7),
    0 4px 20px rgba(0, 0, 0, 0.4);
}

.work-gallery__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.1) brightness(0.8);
  display: block;
}

/* Caption below portrait */
.work-gallery__caption {
  width: clamp(240px, 36vw, 500px);
  text-align: left;
}

.work-gallery__caption-title {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
}

.work-gallery__caption-sub {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.36);
}

/* ── Nav: absolute overlay at bottom of stage, PREV/NEXT under portrait ── */
.work-gallery__nav {
  position: absolute;
  bottom: clamp(1.8rem, 3.5vw, 3rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  pointer-events: all;
}

.work-gallery__btn {
  background: transparent;
  border: 1px solid rgba(245, 244, 240, 0.2);
  padding: 0.65rem 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.75);
  cursor: pointer;
  transition: color 0.22s ease, border-color 0.22s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.work-gallery__btn:hover {
  color: var(--white);
  border-color: rgba(245, 244, 240, 0.5);
}

/* Vertical pip bars */
.work-gallery__pips {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 2rem;
  pointer-events: all;
}

.work-gallery__pip {
  display: block;
  width: 1px;
  height: 0.9rem;
  background: rgba(245, 244, 240, 0.18);
  transition: height 0.32s ease, background 0.32s ease;
}

.work-gallery__pip.is-active {
  height: 2rem;
  background: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .work-gallery {
    height: auto;
    min-height: 100svh;
  }

  .work-gallery__portrait {
    width: clamp(220px, 78vw, 360px);
  }

  .work-gallery__caption {
    width: clamp(220px, 78vw, 360px);
  }

  .work-gallery__caption-title {
    font-size: clamp(1.4rem, 6vw, 2.4rem);
  }

  .work-gallery__slide {
    padding-bottom: clamp(4rem, 10vw, 6rem);
  }
}

/* ===================================
   Lifestyle / Family Benefits Section
   =================================== */

.prot-lifestyle {
  position: relative;
  background: var(--protection-charcoal);
  color: var(--white);
  padding: clamp(8rem, 15vw, 14rem) clamp(2rem, 6vw, 6rem);
}

.prot-lifestyle__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.prot-lifestyle__header {
  text-align: center;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.prot-lifestyle__heading {
  margin: clamp(0.8rem, 1.5vw, 1.2rem) 0 clamp(1.2rem, 2vw, 1.8rem);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 6rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.prot-lifestyle__intro {
  max-width: 48ch;
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.72;
  color: rgba(245, 244, 240, 0.62);
}

.prot-lifestyle__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem) clamp(3rem, 6vw, 7rem);
  counter-reset: lifestyle-item;
}

.prot-lifestyle__item {
  position: relative;
  counter-increment: lifestyle-item;
  padding-top: clamp(1.5rem, 2.5vw, 2rem);
  overflow: hidden;
}

/* Animated draw-in rule — thin line + thick gold accent at left */
.prot-lifestyle__rule {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(200, 169, 107, 0.22);
  transform: scaleX(0);
  transform-origin: left center;
}

.prot-lifestyle__rule::before {
  content: '';
  position: absolute;
  top: -0.5px;
  left: 0;
  width: clamp(1.4rem, 2.5vw, 2rem);
  height: 2px;
  background: var(--gold);
  opacity: 0.75;
}

/* Ghost Roman numeral — pushed below the rule */
.prot-lifestyle__item::before {
  content: counter(lifestyle-item, upper-roman);
  position: absolute;
  top: 0.4em;
  right: -0.04em;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(245, 244, 240, 0.045);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.prot-lifestyle__item h3,
.prot-lifestyle__item p {
  position: relative;
  z-index: 1;
}

.prot-lifestyle__item h3 {
  margin: 0 0 clamp(0.65rem, 1.2vw, 1rem);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
}

.prot-lifestyle__item p {
  margin: 0;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.72;
  color: rgba(245, 244, 240, 0.62);
}

@media (max-width: 700px) {
  .prot-lifestyle {
    padding: clamp(5rem, 12vw, 8rem) clamp(1.2rem, 5vw, 2rem);
  }

  .prot-lifestyle__grid {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 8vw, 4rem);
  }
}

