/* ========================================
   Regal Ridge Schnauzers
   ======================================== */

:root {
  --charcoal: #121212;
  --charcoal-soft: #1a1a1a;
  --gold: #c5a059;
  --gold-light: #d4b574;
  --gold-dark: #a8863f;
  --gold-on-light: #6b5220;
  --gold-btn: #6f5424;
  --cream: #f5f2ed;
  --cream-deep: #ebe6dc;
  --ink: #2a2a2a;
  --muted: #5c5752;
  --white: #ffffff;
  --header-h: 78px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 300;
  padding: 0.75rem 1.1rem;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav-link:focus-visible,
.cart-link:focus-visible,
.footer-nav a:focus-visible,
.footer-legal a:focus-visible,
.social a:focus-visible,
.slider-btn:focus-visible,
.slider-dots button:focus-visible,
.path-option-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 1.75rem;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold-btn);
  color: var(--white);
}

.btn-gold:hover {
  background: #5a431c;
}

.btn-outline-dark {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-outline-light {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold-on-light);
  margin-bottom: 1rem;
}

.section-eyebrow.gold {
  color: var(--gold);
}

/* Bright gold eyebrows on dark surfaces */
.pricing .section-eyebrow,
.features .section-eyebrow,
.testimonials .section-eyebrow,
.contact-strip .section-eyebrow,
.hero .section-eyebrow,
.page-hero .section-eyebrow {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.section-title.dark {
  color: var(--charcoal);
}

.section-title.light {
  color: var(--white);
}

.section-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 2rem;
}

.section-body.light {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: var(--charcoal);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  gap: 1.25rem;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
  min-width: 0;
}

.nav-left {
  justify-content: flex-end;
  justify-self: stretch;
}

.nav-right {
  justify-content: flex-start;
  justify-self: stretch;
}

.logo-link {
  display: flex;
  justify-content: center;
  justify-self: center;
}

.nav-link {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
}

.logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: #f5f2ed;
  box-shadow: 0 0 0 1.5px var(--gold);
  transition: transform 0.4s var(--ease);
}

.logo-link:hover .logo {
  transform: scale(1.06);
}

.cart-link {
  margin-left: 0.5rem;
  color: var(--gold);
  display: flex;
  opacity: 0.9;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cart-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.mobile-only {
  display: none;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  margin: 5px auto;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 90;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--header-h);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(80, 45, 20, 0.25), rgba(20, 15, 10, 0.35)),
    image-set(
      url("assets/images/hero-bg.webp") type("image/webp"),
      url("assets/images/hero-bg.jpg") type("image/jpeg")
    );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 961px) and (prefers-reduced-motion: no-preference) {
  .hero-bg {
    transform: scale(1.05);
    animation: heroken 18s ease-in-out infinite alternate;
    filter: saturate(0.85) brightness(0.9);
  }
}

@keyframes heroken {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.12) translateY(-1.5%); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.72) 0%, rgba(18, 18, 18, 0.35) 45%, rgba(18, 18, 18, 0.15) 70%, rgba(18, 18, 18, 0.45) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.35) 0%, transparent 30%, rgba(18, 18, 18, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: end;
  gap: 1rem;
}

.hero-brand {
  align-self: center;
  padding-bottom: 2rem;
}

@media (min-width: 961px) and (prefers-reduced-motion: no-preference) {
  .hero-brand {
    animation: fadeUp 1s var(--ease) both;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.hero-crest {
  width: clamp(110px, 14vw, 160px);
  height: clamp(110px, 14vw, 160px);
  border-radius: 50%;
  object-fit: cover;
  background: #f5f2ed;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.85), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-title {
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.hero-title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.hero-title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  margin-top: 0.45rem;
}

.hero-tagline {
  font-size: clamp(0.62rem, 1.1vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
}

.hero-dog-wrap {
  position: relative;
  justify-self: end;
  align-self: end;
  width: min(100%, 560px);
}

.hero-dog {
  width: 100%;
  height: auto;
  max-height: calc(100vh - var(--header-h) - 2rem);
  object-fit: cover;
  object-position: center 15%;
  aspect-ratio: 4 / 5;
  border-radius: 0;
}

@media (min-width: 961px) {
  .hero-dog {
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.4));
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, black 10%, black 88%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 12%, black 86%, transparent 100%);
    mask-image:
      linear-gradient(to right, transparent 0%, black 10%, black 88%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 12%, black 86%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }
}

.hero-script {
  position: absolute;
  right: 0.25rem;
  top: 8%;
  font-family: var(--font-script);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: var(--gold);
  line-height: 1.35;
  text-align: right;
  max-width: 11rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 961px) and (prefers-reduced-motion: no-preference) {
  .hero-script {
    animation: fadeIn 1.2s var(--ease) 0.45s both;
  }
}

.script-paw {
  display: block;
  margin-top: 0.5rem;
  color: var(--gold);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Features ---------- */
.features {
  background: var(--cream);
  border-bottom: 1px solid rgba(197, 160, 89, 0.18);
}

.features-track {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 2.25rem 1rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  position: relative;
}

.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(197, 160, 89, 0.35);
}

.feature-icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature p {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
  color: var(--charcoal);
}

/* ---------- Story ---------- */
.story {
  position: relative;
  background: var(--cream);
  padding: 5.5rem 1.5rem;
  overflow: hidden;
}

.story-mountains {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400' fill='%23c5a059'%3E%3Cpath d='M0 400 V220 L180 80 L320 200 L480 40 L640 180 L780 90 L960 210 L1100 100 L1200 180 V400 Z' opacity='0.06'/%3E%3Cpath d='M0 400 V280 L140 160 L280 250 L420 140 L580 240 L740 150 L900 260 L1050 170 L1200 240 V400 Z' opacity='0.04'/%3E%3C/svg%3E")
    center bottom / cover no-repeat;
  pointer-events: none;
}

.story-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.story-media:hover img {
  transform: scale(1.04);
}

.story-copy {
  padding-right: 1rem;
}

/* ---------- Schnauzers ---------- */
.schnauzers {
  background: var(--charcoal);
  padding: 5.5rem 1.5rem;
}

.schnauzers-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 3rem;
  align-items: center;
}

.schnauzer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.schnauzer-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--charcoal-soft);
}

.schnauzer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.schnauzer-card:hover img {
  transform: scale(1.06);
}

.card-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 0.5rem;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--charcoal);
  background: var(--gold);
}

/* ---------- Gallery ---------- */
.gallery {
  background: var(--cream);
  padding: 4.5rem 1.5rem 3.5rem;
}

.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.gallery-caption {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  text-align: center;
}

.caption-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.caption-paw {
  color: var(--gold);
  display: inline-flex;
}

/* ---------- Program teaser (home) ---------- */
.program {
  background: var(--charcoal);
  padding: 5.5rem 1.5rem;
  text-align: center;
}

.program-inner {
  max-width: 640px;
  margin: 0 auto;
}

.program .section-body {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  min-height: clamp(320px, 48vh, 480px);
  padding: calc(var(--header-h) + 3.5rem) 1.5rem 4rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(80, 45, 20, 0.2), rgba(20, 15, 10, 0.3)),
    image-set(
      url("assets/images/hero-bg.webp") type("image/webp"),
      url("assets/images/hero-bg.jpg") type("image/jpeg")
    );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.85) brightness(0.88);
}

.page-hero-bg.page-hero-bg--story {
  background-image:
    linear-gradient(180deg, rgba(80, 45, 20, 0.2), rgba(20, 15, 10, 0.3)),
    image-set(
      url("assets/images/story-puppy.webp") type("image/webp"),
      url("assets/images/story-puppy.jpg") type("image/jpeg")
    );
  background-position: center 40%;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.85) brightness(0.88);
}

.page-hero-bg.page-hero-bg--reviews {
  background-image:
    linear-gradient(180deg, rgba(80, 45, 20, 0.2), rgba(20, 15, 10, 0.3)),
    image-set(
      url("assets/images/testimonials-bg.webp") type("image/webp"),
      url("assets/images/testimonials-bg.jpg") type("image/jpeg")
    );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.85) brightness(0.88);
}

.page-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.78) 0%, rgba(18, 18, 18, 0.45) 55%, rgba(18, 18, 18, 0.55) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.4) 0%, transparent 40%, rgba(18, 18, 18, 0.65) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  animation: fadeUp 0.9s var(--ease) both;
}

.page-hero-brand {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-lede {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 32rem;
}

/* ---------- About page ---------- */
.about-page,
.breed-page,
.puppies-page,
.program-page,
.contact-page {
  background: var(--cream);
  padding: 5.5rem 1.5rem;
}

.about-intro,
.breed-intro,
.puppies-intro,
.program-intro {
  max-width: 40rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.about-intro .section-body,
.breed-intro .section-body,
.puppies-intro .section-body,
.program-intro .section-body {
  margin-left: auto;
  margin-right: auto;
}

.about-split {
  max-width: var(--max);
  margin: 0 auto 4.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-list {
  list-style: none;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.about-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.about-values {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-value {
  padding: 1.75rem 1.25rem;
  border-top: 1px solid rgba(197, 160, 89, 0.45);
}

.about-value h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.about-value p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

.about-intro-more {
  margin-top: 1.25rem;
}

.about-commitment {
  max-width: 44rem;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.about-commitment .section-body {
  margin-left: auto;
  margin-right: auto;
}

.about-commitment .section-body + .section-body {
  margin-top: 1.15rem;
}

.about-copy .section-body + .section-body {
  margin-top: 1.1rem;
}

.about-signature {
  max-width: 36rem;
  margin: 4.5rem auto 0;
  text-align: center;
  padding-top: 2.75rem;
  border-top: 1px solid rgba(197, 160, 89, 0.35);
}

.about-thanks {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2rem;
}

.about-founder-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.about-founder-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.about-founder-place {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
}

/* ---------- Schnauzers page ---------- */
.breed-cards {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.breed-card {
  background: var(--white);
  display: grid;
  grid-template-rows: auto 1fr;
}

.breed-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.breed-card-body {
  padding: 1.75rem 1.5rem 2rem;
}

.breed-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  color: var(--charcoal);
}

.breed-card-body p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.15rem;
}

.breed-card-body ul {
  list-style: none;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.45rem;
}

.breed-card-body li {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  padding-left: 1rem;
  position: relative;
}

.breed-card-body li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.breed-traits {
  background: var(--charcoal);
  padding: 4rem 1.5rem;
}

.breed-traits-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.breed-trait h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
}

.breed-trait p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ---------- Puppies page ---------- */
.puppy-status {
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.puppy-status-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.35);
}

.puppy-status-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.puppy-status-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
}

.puppy-status-card p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto 1.75rem;
}

.puppies-gallery {
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

.puppy-slots {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.puppy-slot {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.28);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.puppy-slot:hover {
  border-color: rgba(197, 160, 89, 0.65);
  transform: translateY(-3px);
}

.puppy-slot-media {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(197, 160, 89, 0.12), rgba(235, 230, 220, 0.9)),
    var(--cream-deep);
  display: block;
}

.puppy-slot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s var(--ease);
}

.puppy-slot:hover .puppy-slot-media img {
  transform: scale(1.04);
}

.puppy-slot-placeholder {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(197, 160, 89, 0.55);
}

.puppy-slot-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.puppy-slot-status {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-on-light);
}

.puppy-slot--open .puppy-slot-status,
.puppy-slot--reserved .puppy-slot-status {
  color: var(--muted);
}

.puppy-slot-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.puppy-slot-meta {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.puppy-slot-link {
  margin-top: 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.puppy-slot-link:hover {
  color: var(--gold-on-light);
}

/* ---------- Puppy detail ---------- */
.page-hero--compact {
  min-height: clamp(240px, 36vh, 360px);
}

.puppy-detail {
  background: var(--cream);
  padding: 4.5rem 1.5rem 5rem;
}

.puppy-detail-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.puppy-detail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.puppy-detail-media {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--cream-deep);
}

.puppy-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.puppy-detail-status {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: var(--gold-on-light);
}

.puppy-detail-status--reserved {
  color: var(--muted);
}

.puppy-detail-breed {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-on-light);
  margin: -0.5rem 0 1.5rem;
}

.puppy-detail-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(197, 160, 89, 0.3);
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.puppy-detail-facts dt {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-on-light);
  margin-bottom: 0.25rem;
}

.puppy-detail-facts dd {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--charcoal);
}

.puppy-detail-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.65rem;
}

.puppy-detail-copy .section-body {
  margin-bottom: 1.35rem;
}

.puppy-back-link {
  display: inline-block;
  margin: 0.5rem 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.puppy-back-link:hover {
  color: var(--gold);
}

.puppy-apply {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(197, 160, 89, 0.28);
  align-items: start;
}

.puppy-reserved-note {
  max-width: 40rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.28);
}

.puppy-reserved-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.puppy-detail-missing {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.puppy-detail-missing .section-body {
  margin-left: auto;
  margin-right: auto;
}

.what-included {
  background: var(--cream-deep);
  padding: 5rem 1.5rem;
}

.what-included-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.what-included-inner .section-body {
  margin-left: auto;
  margin-right: auto;
}

.included-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  text-align: left;
  margin-top: 2.5rem;
}

.included-grid li {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink);
  padding: 1rem 0 1rem 1.25rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  position: relative;
}

.included-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

/* ---------- Program page ---------- */
.program-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.program-block {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-top: 2px solid var(--gold);
}

.program-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
}

.program-block p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

.program-cta-band {
  background: var(--charcoal);
  padding: 5rem 1.5rem;
  text-align: center;
}

.program-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.program-cta-inner .section-body {
  margin-left: auto;
  margin-right: auto;
}

.program-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.program-raise {
  background: var(--cream-deep);
  padding: 5.5rem 1.5rem;
}

.program-raise-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.program-raise-media {
  margin: 0;
  overflow: hidden;
}

.program-raise-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.program-raise-copy .about-list {
  margin-top: 1.75rem;
}

.program-health {
  background: var(--cream);
  padding: 5.5rem 1.5rem;
}

.program-health-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.program-health-inner .section-body {
  margin-left: auto;
  margin-right: auto;
}

.program-health-grid {
  margin-top: 2.5rem;
  text-align: left;
}

.program-journey {
  background: var(--cream-deep);
  padding: 5.5rem 1.5rem;
}

.program-journey-inner {
  max-width: 860px;
  margin: 0 auto;
}

.program-journey-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.program-journey-intro .section-body {
  margin-left: auto;
  margin-right: auto;
}

.program-steps {
  list-style: none;
  display: grid;
  gap: 0;
}

.program-step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.28);
  align-items: start;
}

.program-step:first-child {
  border-top: 1px solid rgba(197, 160, 89, 0.28);
}

.program-step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  line-height: 1.2;
}

.program-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
}

.program-step p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

.program-promise {
  background: var(--cream);
  padding: 5.5rem 1.5rem;
}

.program-promise-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.program-promise-inner .section-body {
  margin-left: auto;
  margin-right: auto;
}

.program-promise-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.program-promise-item {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(197, 160, 89, 0.45);
}

.program-promise-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.program-promise-item p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- Contact page ---------- */
.contact-page-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-facts {
  list-style: none;
  display: grid;
  gap: 1.35rem;
  margin-top: 2rem;
}

.contact-facts span {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-facts a,
.contact-facts p {
  font-size: 0.95rem;
  color: var(--ink);
}

.contact-facts a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border: 1px solid rgba(197, 160, 89, 0.28);
}

/* ---------- Adoption process ---------- */
.process {
  background: var(--cream);
  padding: 5.5rem 1.5rem;
}

.process--adoption {
  background: var(--cream-deep);
}

.process-header {
  max-width: 40rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.process-header .section-body {
  margin-left: auto;
  margin-right: auto;
}

.process-header .section-body strong {
  color: var(--charcoal);
  font-weight: 500;
}

.process-steps {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  counter-reset: step;
  list-style: none;
}

.process-step {
  position: relative;
  text-align: center;
  padding-top: 0.5rem;
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.15rem;
}

.process-step h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

.process-fee-note {
  margin: 2.75rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(197, 160, 89, 0.35);
}

.process-fee-note strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* ---------- Waitlist explainer ---------- */
.waitlist-explainer {
  background: var(--cream);
  padding: 4.5rem 1.5rem;
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
}

.waitlist-explainer-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.waitlist-explainer-inner .section-body {
  margin-left: auto;
  margin-right: auto;
}

.waitlist-explainer-points {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 1rem;
}

.waitlist-explainer-points li {
  padding: 1.1rem 1.25rem;
  background: rgba(197, 160, 89, 0.08);
  border-left: 3px solid var(--gold);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

.waitlist-explainer-points strong {
  color: var(--charcoal);
  font-weight: 600;
}

.waitlist-explainer-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

/* ---------- FAQ ---------- */
.faq-page {
  background: var(--cream);
  padding: 4rem 1.5rem 5rem;
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.28);
}

.faq-jump a {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.faq-jump a:hover {
  color: var(--gold-on-light);
}

.faq-group {
  margin-bottom: 3.25rem;
  scroll-margin-top: 6rem;
}

.faq-group .section-title {
  margin-bottom: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(197, 160, 89, 0.28);
  transition: border-color 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(197, 160, 89, 0.55);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold-on-light);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p,
.faq-answer li {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 0 0 0.85rem 1.15rem;
  padding: 0;
}

.faq-answer a {
  color: var(--gold-dark);
}

.faq-answer strong {
  color: var(--charcoal);
  font-weight: 600;
}

.faq-cta {
  text-align: center;
  margin-top: 1rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(197, 160, 89, 0.28);
}

.faq-cta .section-body {
  margin-left: auto;
  margin-right: auto;
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--charcoal);
  padding: 5rem 1.5rem;
  text-align: center;
}

.pricing-header {
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.pricing-header .section-body {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.68);
}

.pricing-grid {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pricing-item {
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.45);
}

.pricing-breed {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.55rem;
}

.pricing-note {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Fee summary ---------- */
.fee-summary {
  background: var(--cream);
  padding: 5rem 1.5rem;
}

.fee-summary-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.fee-summary-inner .section-body,
.fee-summary-note {
  margin-left: auto;
  margin-right: auto;
}

.fee-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 2.5rem 0 1.75rem;
  text-align: left;
}

.fee-example h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.4);
}

.fee-example ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.fee-example li {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
}

.fee-summary-note {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 36rem;
}

/* ---------- Waitlist ---------- */
.waitlist {
  background: var(--cream-deep);
  padding: 5.5rem 1.5rem;
}

.waitlist-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.waitlist-copy .section-body {
  margin-bottom: 1.5rem;
}

.waitlist-note {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.waitlist-form {
  display: grid;
  gap: 1.15rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(42, 42, 42, 0.18);
  padding: 0.85rem 1rem;
  transition: border-color 0.3s ease;
  width: 100%;
  appearance: none;
  border-radius: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-on-light);
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--gold-on-light);
  outline-offset: 2px;
  border-color: var(--gold-on-light);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b6560' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}

.form-check input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-success {
  display: none;
  padding: 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.form-success.is-visible {
  display: block;
}

.form-success p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
}

.waitlist-form.is-submitted .form-fields {
  display: none;
}

/* ---------- Puppy application ---------- */
.application {
  background: var(--cream-deep);
  padding: 5.5rem 1.5rem;
}

.application-header {
  max-width: 40rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.application-header .section-body {
  margin-left: auto;
  margin-right: auto;
}

.application-form {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem 2rem 2.75rem;
  border: 1px solid rgba(197, 160, 89, 0.28);
}

.form-section {
  border: none;
  margin: 0 0 2.25rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.22);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}

.form-section legend {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding: 0;
}

.form-section .form-row,
.form-section .form-field,
.form-section .form-check {
  margin-bottom: 1.15rem;
}

.form-section .form-row:last-child,
.form-section .form-field:last-child,
.form-section .form-check:last-child {
  margin-bottom: 0;
}

.path-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.path-option {
  cursor: pointer;
}

.path-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.path-option-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(42, 42, 42, 0.16);
  background: var(--cream);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  min-height: 100%;
}

.path-option input:focus-visible + .path-option-card {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.path-option input:checked + .path-option-card {
  border-color: var(--gold);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--gold);
}

.path-option-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.path-option-fee {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.path-option-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 0.35rem;
}

.form-section--agree .form-check {
  margin-bottom: 1rem;
}

.application-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.process-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ---------- Home blog preview ---------- */
.home-blog {
  background: var(--cream);
  padding: 5.5rem 1.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.18);
}

.home-blog-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.home-blog-header {
  max-width: 36rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.home-blog-header .section-body {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.home-blog-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.home-blog-item {
  display: block;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(197, 160, 89, 0.35);
  transition: opacity 0.3s ease;
  height: 100%;
}

.home-blog-item:hover {
  opacity: 0.85;
}

.home-blog-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.home-blog-item p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.home-blog-cta {
  text-align: center;
  margin-top: 2.75rem;
}

/* ---------- Blog ---------- */
.blog {
  background: var(--cream);
  padding: 5rem 1.5rem 5.5rem;
}

.blog-list {
  max-width: 920px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.75rem;
  align-items: center;
  padding: 0;
  border-bottom: none;
  transition: opacity 0.3s ease;
}

.blog-item:first-child {
  padding-top: 0;
}

.blog-item:hover {
  opacity: 0.9;
}

.blog-item-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream-deep);
}

.blog-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-item:hover .blog-item-media img {
  transform: scale(1.04);
}

.blog-item-copy {
  min-width: 0;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.blog-date {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-on-light);
}

.blog-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.blog-item h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.blog-item p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 38rem;
}

.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-on-light);
}

/* ---------- Article page ---------- */
.article-page {
  background: var(--cream);
  padding: 4rem 1.5rem 5rem;
}

.article-inner {
  max-width: 760px;
  margin: 0 auto;
}

.article-loading {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
}

.article-figure {
  margin: 0 0 2.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--cream-deep);
}

.article-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
}

.article-body p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink);
  margin-bottom: 1.35rem;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin: 2rem 0 1rem;
}

.article-body ul {
  margin: 0 0 1.35rem 1.1rem;
  padding: 0;
}

.article-body li {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.article-body a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.article-body a:hover {
  color: var(--gold);
}

.article-body strong {
  font-weight: 600;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 160, 89, 0.3);
}

.article-missing {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.article-missing .section-body {
  margin-left: auto;
  margin-right: auto;
}

#article-hero-bg {
  background-size: cover;
  background-position: center;
}

/* ---------- Reviews page ---------- */
.reviews-page {
  background: var(--cream);
  padding: 5rem 1.5rem 5.5rem;
}

.reviews-intro {
  max-width: 36rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.reviews-intro .section-body {
  margin-left: auto;
  margin-right: auto;
}

.reviews-list {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  list-style: none;
}

.review-item {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.35);
}

.review-item blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 1.15rem;
}

.review-item cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.review-item .review-detail {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: none;
}

.reviews-cta {
  text-align: center;
  margin-top: 4rem;
}

.reviews-submit {
  max-width: 40rem;
  margin: 4.5rem auto 0;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.35);
}

.reviews-submit-intro {
  text-align: center;
  margin-bottom: 2.25rem;
}

.reviews-submit-intro .section-body {
  margin-left: auto;
  margin-right: auto;
}

.review-form {
  background: var(--white);
  padding: 2rem 1.75rem;
}

.form-optional {
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
  font-size: 0.72rem;
}

.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  padding: 1rem 0 2rem;
}

.testimonials-link {
  margin-top: 2rem;
  text-align: center;
}

.testimonials-link a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.25s ease;
}

.testimonials-link a:hover {
  color: var(--gold-light);
}

/* ---------- Testimonials ---------- */
.testimonials {
  position: relative;
  padding: 6rem 1.5rem;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: url("assets/images/testimonials-bg.webp") center / cover no-repeat;
  background-image: image-set(
    url("assets/images/testimonials-bg.webp") type("image/webp"),
    url("assets/images/testimonials-bg.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
}

.testimonials-veil {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 10, 0.78);
}

.testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.testimonials-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 2rem;
}

.slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.slides {
  position: relative;
  min-height: 180px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.slide p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.55;
  max-width: 38rem;
  margin-bottom: 1.5rem;
}

.slide cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(197, 160, 89, 0.55);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: rgba(197, 160, 89, 0.15);
  border-color: var(--gold);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dots button.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--cream-deep);
  padding: 5rem 1.5rem;
  text-align: center;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact .section-body {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background:
    linear-gradient(180deg, rgba(197, 160, 89, 0.06) 0%, transparent 120px),
    var(--charcoal);
  border-top: 1px solid rgba(197, 160, 89, 0.35);
  padding: 4.5rem 1.5rem 0;
}

.footer-main {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.85fr 0.7fr 1.05fr;
  gap: 2.75rem 2.5rem;
  padding-bottom: 3.25rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.footer-logo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #f5f2ed;
  box-shadow: 0 0 0 1.5px var(--gold);
  flex-shrink: 0;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.1;
}

.footer-brand-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  max-width: 22rem;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.15rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-nav a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-detail-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(197, 160, 89, 0.75);
  margin-bottom: 0.25rem;
}

.footer-details a,
.footer-details span:not(.footer-detail-label) {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s ease;
}

.footer-details a:hover {
  color: var(--gold);
}

.footer-cta {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(197, 160, 89, 0.45);
  padding-bottom: 0.2rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-cta:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.social {
  display: flex;
  gap: 0.75rem;
  color: var(--gold);
}

.social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.social a:hover {
  transform: translateY(-2px);
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--gold);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.footer-akc {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.35rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
}

.copyright {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
}


.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}

.footer-legal a {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-motto {
  font-family: var(--font-script);
  font-size: 1.05rem;
  color: rgba(197, 160, 89, 0.7);
}
.features,
.story,
.schnauzers,
.gallery,
.testimonials,
.home-blog,
.site-footer,
.faq-group,
.process,
.fee-summary,
.docs-band,
.application,
.puppies-gallery,
.puppy-slots {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.schnauzer-card.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.schnauzer-card.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1100px) {
  .nav-left,
  .nav-right {
    gap: 0.75rem;
  }

  .nav-link {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .schnauzers-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .schnauzers-copy {
    text-align: center;
  }

  .schnauzers-copy .section-body {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .about-split,
  .breed-cards,
  .contact-page-grid,
  .program-raise-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-values,
  .breed-traits-inner {
    grid-template-columns: 1fr 1fr;
  }

  .program-grid,
  .program-promise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .puppies-gallery,
  .puppy-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .puppy-detail-grid,
  .puppy-apply {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .program-raise-media {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .program-raise-copy {
    text-align: center;
  }

  .program-raise-copy .about-list {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  .program-step {
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
  }

  .about-media {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .about-copy {
    text-align: center;
  }

  .about-copy .section-body,
  .about-list {
    margin-left: auto;
    margin-right: auto;
  }

  .about-list {
    text-align: left;
    max-width: 28rem;
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 68px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: block;
    order: 0;
  }

  .logo-link {
    order: 1;
  }

  .nav-right {
    order: 2;
    justify-content: flex-end;
  }

  .nav-left {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--charcoal-soft);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease), opacity 0.4s ease, visibility 0.4s;
    z-index: 99;
  }

  .nav-left.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-left .nav-link {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-left .nav-link.active::after {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 0;
    gap: 0;
  }

  .hero-brand {
    padding-bottom: 0;
    z-index: 3;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-crest {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-dog-wrap {
    justify-self: center;
    align-self: center;
    width: min(92%, 400px);
    margin: 1rem auto 0.75rem;
  }

  .hero-dog {
    aspect-ratio: 5 / 4;
    object-position: center 20%;
    max-height: 40vh;
    display: block;
    margin: 0 auto;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
    mask-image:
      linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }

  .hero-script {
    position: static;
    display: block;
    transform: none;
    text-align: center;
    max-width: 16rem;
    margin: 0.85rem auto 0;
    font-size: clamp(1.15rem, 4vw, 1.4rem);
    line-height: 1.35;
    order: unset;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
  }

  .hero-script .script-paw {
    display: flex;
    justify-content: center;
    margin-top: 0.4rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .features-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 1.75rem 0.5rem;
    scrollbar-width: none;
  }

  .features-track::-webkit-scrollbar {
    display: none;
  }

  .feature {
    flex: 0 0 46%;
    scroll-snap-align: start;
    min-width: 160px;
  }

  .feature:not(:last-child)::after {
    top: 20%;
    bottom: 20%;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-media {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .story-copy {
    padding: 0;
    text-align: center;
  }

  .story-copy .section-body {
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.35rem;
    padding-bottom: 2.5rem;
    text-align: left;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .footer-tagline {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    font-size: 0.8rem;
  }

  .footer-nav {
    align-items: flex-start;
  }

  .footer-nav a:hover {
    transform: translateX(3px);
  }

  .social {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-bottom: 1.75rem;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .home-blog-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .blog-item {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .pricing-grid,
  .fee-examples {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .waitlist-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .path-options {
    grid-template-columns: 1fr;
  }

  .application-form {
    padding: 1.75rem 1.25rem 2rem;
  }

  .reviews-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-hero {
    min-height: 300px;
    padding-bottom: 3rem;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-bg {
    animation: none;
    transform: none;
    will-change: auto;
    background-image:
      linear-gradient(180deg, rgba(80, 45, 20, 0.25), rgba(20, 15, 10, 0.35)),
      image-set(
        url("assets/images/hero-bg-mobile.webp") type("image/webp"),
        url("assets/images/hero-bg-mobile.jpg") type("image/jpeg")
      );
  }

  .hero-title-main {
    letter-spacing: 0.06em;
  }

  .hero-title-sub {
    letter-spacing: 0.2em;
  }

  .hero-tagline {
    letter-spacing: 0.14em;
    font-size: 0.6rem;
  }

  .hero-dog-wrap {
    width: min(90%, 320px);
    margin: 0.75rem auto 0.5rem;
    align-self: center;
  }

  .hero-dog {
    aspect-ratio: 5 / 4;
    max-height: 30vh;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 0;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.3));
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
    mask-image:
      linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }

  .hero-script {
    position: static;
    transform: none;
    max-width: 14rem;
    margin: 0.75rem auto 0;
    font-size: clamp(1.05rem, 4.5vw, 1.25rem);
    line-height: 1.3;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    color: var(--gold);
  }

  .hero-script .script-paw {
    display: flex;
    justify-content: center;
    margin-top: 0.35rem;
  }

  .hero-script .script-paw svg {
    width: 14px;
    height: 14px;
  }

  .hero-crest {
    width: clamp(72px, 18vw, 96px);
    margin-bottom: 0.85rem;
  }

  .page-hero {
    min-height: 220px;
    padding: calc(var(--header-h) + 2rem) 1.15rem 2.25rem;
  }

  .page-hero--compact {
    min-height: 180px;
  }

  .page-hero-title {
    letter-spacing: 0.04em;
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .page-hero-lede {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .story-media,
  .about-media,
  .program-raise-media {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1 / 1;
  }

  .puppy-detail-media {
    max-width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 4 / 5;
  }

  .feature {
    flex: 0 0 70%;
  }

  .features-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    gap: 0.25rem 0;
    padding: 1.75rem 0.75rem;
  }

  .feature {
    flex: none;
    min-width: 0;
    padding: 1rem 0.65rem;
  }

  .feature:nth-child(5) {
    grid-column: 1 / -1;
  }

  .feature:not(:last-child)::after {
    display: none;
  }

  .schnauzer-cards {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    margin: 0 auto;
    width: 100%;
    gap: 0.75rem;
  }

  .puppy-slots {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    gap: 0.75rem;
  }

  .puppy-slot-media {
    aspect-ratio: 4 / 5;
  }

  .puppy-slot-body {
    padding: 0.7rem 0.65rem 0.85rem;
  }

  .puppy-slot-name {
    font-size: 1rem;
  }

  .puppy-slot-meta {
    font-size: 0.7rem;
  }

  .puppy-slot-link {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .schnauzer-card {
    aspect-ratio: 1 / 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .gallery-grid img {
    aspect-ratio: 1 / 1;
  }

  .blog-item-media {
    aspect-ratio: 16 / 10;
    max-height: 180px;
  }

  .blog-item-media img {
    max-height: 180px;
  }

  .article-figure {
    aspect-ratio: 16 / 10;
    max-height: 200px;
    margin-bottom: 1.5rem;
  }

  .article-figure img {
    max-height: 200px;
  }

  .slider {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .slider-btn {
    display: none;
  }

  .slides {
    min-height: 220px;
  }

  .gallery-caption {
    letter-spacing: 0.1em;
    font-size: 0.6rem;
    padding: 0 0.5rem;
  }

  .caption-line {
    width: 28px;
  }

  .site-footer {
    padding: 3.25rem 1.15rem 0;
  }

  .footer-main {
    gap: 1.75rem 1rem;
  }

  .footer-heading {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.85rem;
  }

  .footer-nav a,
  .footer-details a,
  .footer-details span:not(.footer-detail-label) {
    font-size: 0.78rem;
  }

  .footer-logo img {
    width: 48px;
    height: 48px;
  }

  .footer-brand-name {
    font-size: 1.15rem;
  }

  .footer-cta {
    font-size: 0.72rem;
  }

  .about-values,
  .breed-traits-inner,
  .program-grid,
  .program-promise-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.35rem;
  }

  .about-page,
  .breed-page,
  .puppies-page,
  .program-page,
  .contact-page,
  .story,
  .schnauzers,
  .contact,
  .about-page,
  .breed-page,
  .puppies-page,
  .program-page,
  .contact-page,
  .program,
  .home-blog,
  .process,
  .waitlist,
  .pricing,
  .fee-summary,
  .application,
  .blog,
  .article-page,
  .reviews-page {
    padding: 3.75rem 1.15rem;
  }

  .testimonials {
    padding: 4.5rem 1.15rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
