/* Dandidoodles and Poodles — clean white homepage (Jessie-inspired layout, original brand) */

:root {
  --ink: #2c2a28;
  --muted: #6b6560;
  --nav: #8a847c;
  --paper: #ffffff;
  --cream: #faf8f5;
  --line: #ebe6df;
  --accent: #9a6b3f;
  --accent-dark: #7a5230;
  --shadow: 0 12px 40px rgba(44, 42, 40, 0.08);
  --font-display: "Amatic SC", "Segoe Print", "Comic Sans MS", cursive;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 4.25rem;
  --page-hero-compact-h: auto; /* aspect-ratio drives height; keeps dog heads */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "logo toggle"
    "nav nav";
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.35rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.header-inner > .logo {
  grid-area: logo;
  justify-self: start;
}

.header-inner > .nav-toggle {
  grid-area: toggle;
  justify-self: end;
}

.contact-bar {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: min(1120px, calc(100% - 2rem));
  max-width: calc(100% - 2rem);
  margin: 0.65rem auto 0.15rem;
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  box-sizing: border-box;
}

.contact-bar-label {
  display: block;
  width: 100%;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}

.contact-bar-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.5rem;
  width: 100%;
  text-align: center;
}

.contact-bar-details .header-phone,
.contact-bar-details .header-email,
.contact-bar-details .header-sep,
.contact-bar-details a {
  text-align: center;
}

.header-inner > .site-nav {
  grid-area: nav;
  width: 100%;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0.2rem 1.25rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 821px) {
  .header-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "nav";
  }

  .header-inner > .nav-toggle {
    display: none;
  }

  .header-inner > .site-nav {
    justify-content: flex-start;
    width: 100%;
    flex-wrap: nowrap;
    gap: 0.15rem 1.1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header-inner > .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.74rem;
    letter-spacing: 0.11em;
  }

  .contact-bar {
    margin-top: 0.85rem;
    margin-bottom: 0;
  }
}

.header-phone {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.header-phone:hover {
  text-decoration: underline;
}

.header-sep {
  color: var(--nav);
  opacity: 0.7;
}

.header-email {
  color: var(--muted);
  font-weight: 500;
  user-select: text;
}


.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 4vw, 2.65rem);
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.05;
  text-decoration: none;
  white-space: nowrap;
  max-width: none;
  /* Amatic SC needs extra optical weight to read as bold */
  -webkit-text-stroke: 0.45px currentColor;
  paint-order: stroke fill;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0.35px 0 0 currentColor,
    -0.35px 0 0 currentColor;
}
.logo strong {
  font-weight: 700;
}

.logo:hover {
  color: var(--accent-dark);
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem 1.75rem;
}

.site-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nav);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--accent);
  text-decoration: none;
}
.site-nav a.is-current:hover,
.site-nav a[aria-current="page"]:hover {
  color: var(--accent-dark);
  text-decoration: none;
}

.site-nav a.is-current,
.site-nav a[aria-current="page"] {
  color: var(--accent-dark);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

/* ——— Hero ———
   Easy fallback: swap the --hero-* vars below to the FALLBACK values.
   FALLBACK desktop: min(72vh, 640px)   mobile: min(58vh, 480px)
   FALLBACK page-hero: 220px / 180px
*/
:root {
  --hero-min-h: 0; /* height from aspect-ratio of pre-cropped banner */
  --hero-min-h-mobile: 0;
  --page-hero-min-h: 0;
  --page-hero-min-h-mobile: 0;
  --banner-aspect: 1800 / 750; /* shared short porch banner */ /* dogs centered in short strip */ /* short porch, heads kept */ /* short porch banner */ /* porch scene natural; flexible via media queries */ /* 16:9 trial; ROLLBACK: header-banner-full.jpg or medium */ /* both dogs; ROLLBACK full: header-banner-full.jpg */ /* shorter trial; say "roll back the banner" to restore full */ /* shorter trial; ROLLBACK full: restore header-banner-full.jpg + 1800/662 */ /* header-banner.jpg short trial; ROLLBACK: 1800/662 + header-banner-full.jpg */
}

.hero {
  position: relative;
  min-height: 0;
  aspect-ratio: var(--banner-aspect);
  width: 100%;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background: #3a2f26;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 22, 18, 0.55) 0%,
    rgba(28, 22, 18, 0.18) 45%,
    rgba(28, 22, 18, 0.08) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 2rem));
  padding: 3.5rem 0 3rem;
  text-align: center;
  color: #fff;
}

.hero-breeds {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.5vw, 3.1rem);
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.65rem;
}
.hero-breeds-line {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.65rem;
}

.hero-breeds .dot {
  opacity: 0.7;
  font-weight: 400;
}
.hero-breeds-amp {
  opacity: 0.85;
  font-weight: 700;
  margin-right: 0.15em;
}

.hero-tagline {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}


/* Home page: tighter section spacing */
.page-home .section {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}
.page-home .section.about {
  padding-top: clamp(1rem, 2vw, 1.5rem);
}
.page-home .section.cta {
  padding-bottom: clamp(2rem, 4.5vw, 3rem);
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section.about,
.section.bloodline {
  background: var(--paper);
  text-align: center;
}


.section.breeds {
  background: var(--cream);
  text-align: center;
}

.section.cta {
  background: var(--paper);
  text-align: center;
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 1.15rem;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 3.75rem);
}

h2 {
  font-size: clamp(2.3rem, 5vw, 3.25rem);
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.55rem;
  color: var(--ink);
}

.lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 1.125rem;
  color: var(--muted);
  font-weight: 300;
}

.section.bloodline p,
.section.about .lead {
  color: var(--muted);
}

.section.bloodline p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 300;
}

.card-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 300;
}

/* litter dame cards — three across, compact photos */
.card-grid--litters {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 52rem;
  margin-inline: auto;
}

.card--litter {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 11.5rem;
  object-fit: cover;
  object-position: center top;
  background: var(--cream);
}

/* Hazel is a tall full-body portrait — show whole dog, not just head */
.card-photo--hazel {
  object-fit: contain;
  object-position: center center;
  background: var(--cream);
}


.card-grid--litters .card-body {
  padding: 0.85rem 0.9rem 1rem;
}

.card-grid--litters .card-body h3 {
  font-size: 1.05rem;
}

.card-grid--litters .card-body p {
  font-size: 0.88rem;
}

.card-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.card-body h3 {
  margin: 0 0 0.15rem;
}

.card-meta {
  margin: 0 0 0.65rem !important;
  color: var(--accent-dark) !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
}

.card--stud {
  justify-content: center;
  min-height: 12rem;
  background: var(--cream);
}

.card--stud .card-body {
  padding: 1.75rem 1.5rem;
}

@media (max-width: 720px) {
  .card-grid--litters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .card-grid--litters .card-photo {
    max-height: 7.5rem;
  }

  .card-grid--litters .card-body {
    padding: 0.55rem 0.5rem 0.7rem;
  }

  .card-grid--litters .card-body h3 {
    font-size: 0.92rem;
  }

  .card-grid--litters .card-meta {
    font-size: 0.72rem !important;
    margin-bottom: 0.35rem !important;
  }

  .card-grid--litters .card-body p {
    font-size: 0.72rem;
    line-height: 1.35;
  }
}



.contact-actions--cta {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.65rem 0.75rem;
}
.contact-actions--cta .contact-btn {
  flex: 0 1 auto;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .contact-actions--cta {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .contact-actions {
    gap: 0.35rem 0.45rem;
    margin-top: 1rem;
  }
  .contact-actions--cta {
    gap: 0.3rem 0.4rem;
  }
  .contact-btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    letter-spacing: 0.01em;
    line-height: 1.25;
    box-shadow: 0 2px 8px rgba(154, 107, 63, 0.18);
  }
  .contact-btn:hover {
    transform: none;
  }
  button.contact-btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
  }
}

.contact-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.contact-btn {
  display: inline-block;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(154, 107, 63, 0.28);
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.contact-btn:hover {
  background: var(--accent-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.contact-btn--ghost {
  color: var(--accent-dark);
  background: transparent;
  border: 1.5px solid var(--accent);
  box-shadow: none;
}

.contact-btn--ghost:hover {
  background: var(--cream);
  color: var(--accent-dark);
}

.cta-note {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--nav);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 1.1rem 0 1rem;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 3.5vw, 1.45rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}

.footer-contact,
.footer-links {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.footer-contact a {
  color: var(--accent-dark);
  font-weight: 600;
}

.footer-sep {
  color: var(--nav);
  opacity: 0.7;
}

.footer-copy {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--nav);
}

.footer-host {
  margin: 0.15rem 0 0;
  font-size: 0.7rem;
  color: var(--nav);
  letter-spacing: 0.02em;
}

/* ——— Responsive ——— */
@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
    letter-spacing: 0.12em;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    aspect-ratio: var(--banner-aspect);
  }

  .hero-breeds {
    gap: 0.2rem 0.45rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 2.5rem 0 2rem;
  }

  /* Mobile: Goldendoodle · Bernedoodle, then stud service on 2nd line */
  .hero-breeds {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.15rem;
  }
  .hero-breeds-join {
    display: none;
  }
  .hero-breeds-amp {
    margin-right: 0.2em;
  }
  .hero-breeds-line {
    gap: 0.35rem 0.5rem;
  }
}


/* ——— Application form ——— */
.page-hero {
  position: relative;
  min-height: 0;
  aspect-ratio: var(--banner-aspect);
  width: 100%;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background: #3a2f26;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 22, 18, 0.62) 0%,
    rgba(28, 22, 18, 0.28) 55%,
    rgba(28, 22, 18, 0.15) 100%
  );
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 2rem));
  padding: 2.75rem 0 2rem;
  text-align: center;
  color: #fff;
}

.page-hero-content h1 {
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

.application-section {
  background: var(--cream);
  padding-top: clamp(0.85rem, 2vw, 1.35rem);
}

.form-wrap {
  width: min(760px, calc(100% - 2.5rem));
}

.form-intro {
  text-align: center;
  margin-bottom: 2rem;
  max-width: none;
}

.app-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-card {
  margin: 0;
  padding: 1.5rem 1.35rem 1.35rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-inline-size: 0;
}

.form-card legend {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: 0.03em;
  padding: 0 0.35rem;
  color: var(--ink);
}

.field {
  margin-top: 1rem;
}

.form-card > .field:first-of-type,
.form-card > .field-row:first-of-type {
  margin-top: 0.35rem;
}

.field-row > .field {
  margin-top: 0;
}

.field label,
.field-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.field-hint {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.req {
  color: var(--accent-dark);
}

.optional {
  font-weight: 400;
  color: var(--nav);
  font-size: 0.85em;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.25;
  min-height: 2.75rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field select {
  appearance: none;
  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 fill='%235a4d40' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(154, 107, 63, 0.18);
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.5;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  align-items: end;
}

.field-row--3 {
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
}

.choice-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.choice-list--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.4;
}

.choice input {
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.agreement-box {
  max-height: none;
  overflow: visible;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.agreement-box p {
  margin: 0 0 0.75rem;
}

.agreement-box p:last-child {
  margin-bottom: 0;
}

.agreement-box strong {
  color: var(--ink);
  font-weight: 600;
}

.form-actions {
  text-align: center;
  padding: 0.5rem 0 1rem;
}

.form-error {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  background: #fdf2f0;
  border: 1px solid #e8c4bc;
  border-radius: 8px;
  color: #8a3b2a;
  font-size: 0.95rem;
}

.form-footnote {
  margin: 1rem auto 0;
  max-width: 28rem;
  font-size: 0.85rem;
  color: var(--nav);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.thanks-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--cream);
}

.thanks-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 2.5rem 1.75rem;
  text-align: center;
}

button.contact-btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

button.contact-btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

@media (max-width: 640px) {
  .field-row,
  .field-row--3 {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 0;
    aspect-ratio: var(--banner-aspect);
  }
}




/* ——— Stud profile (wide) ——— */
.stud-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
  margin: 1.5rem 0 0;
  max-width: 56rem;
  margin-inline: auto;
}
.stud-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: stretch;
  width: 100%;
}
.stud-shot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f1ec;
  box-shadow: 0 8px 24px rgba(40, 30, 20, 0.08);
  aspect-ratio: 1500 / 843;
  width: 100%;
}
.stud-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.stud-bio h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  margin: 0 0 0.35rem;
}
.stud-bio .card-meta {
  margin: 0 0 1rem;
}
.stud-bio p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
  font-size: 1.05rem;
}

.stud-cta-q {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--ink);
}
.stud-cta-actions {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.stud-cta-actions a {
  color: var(--accent-dark);
  font-weight: 600;
}

.stud-cta {
  margin: 2.25rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  text-align: center;
  max-width: 40rem;
}
@media (max-width: 820px) {
  .stud-profile {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .stud-gallery {
    grid-template-columns: 1fr;
  }
  .stud-shot {
    aspect-ratio: 1500 / 843;
  }
}
@media (max-width: 520px) {
  .stud-gallery {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .stud-shot {
    aspect-ratio: 1500 / 843;
  }
}


/* Dedicated Dames page — 2×2 table */
.dames-litter-hint {
  margin: -0.35rem 0 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--accent-dark);
}
.card-grid--dames {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  max-width: 52rem;
  margin-inline: auto;
}
.card-grid--dames .card-photo {
  max-height: 16rem;
  object-fit: cover;
  object-position: center top;
}
.card-grid--dames .card-photo--hazel {
  max-height: 22rem;
  object-fit: contain;
  object-position: center center;
  background: var(--cream);
}
.card-grid--dames .card-photo--gypsy {
  object-position: center top;
}
@media (max-width: 720px) {
  .card-grid--dames .card-photo--hazel {
    max-height: 16rem;
  }
}
.card-grid--dames .card-body h2 a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.card-grid--dames .card-body h2 a:hover {
  color: var(--accent-dark);
}
.card-grid--dames .card-body h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0 0 0.15rem;
}
@media (max-width: 720px) {
  .card-grid--dames {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .card-grid--dames .card-photo {
    max-height: 12rem;
  }
  .card-grid--dames .card-body h2 {
    font-size: 1.45rem;
  }
}





/* Banner: same framing as mobile on all sizes (no desktop over-crop) */
.hero-image,
.page-hero-image,
.page-hero--compact .page-hero-image {
  object-fit: cover;
  object-position: center center;
}
.hero,
.page-hero,
.page-hero.page-hero--compact {
  aspect-ratio: var(--banner-aspect);
  min-height: 0;
  /* Match .expecting-banner width exactly */
  width: min(1120px, calc(100% - 2rem));
  max-width: 1120px;
  margin-inline: auto;
  max-height: none;
  box-sizing: border-box;
}
@media (max-width: 820px) {
  .hero,
  .page-hero,
  .page-hero.page-hero--compact {
    width: 100%;
    max-width: 100%;
    max-height: min(28vh, 260px);
  }
}

/* ——— We're Expecting banner ——— */
.expecting-banner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0.75rem auto 0.35rem;
  box-sizing: border-box;
}
.expecting-banner-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.85rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: var(--accent-dark);
  background: var(--cream);
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 2px solid var(--accent);
  animation: expecting-pulse 2.4s ease-in-out infinite;
}
.expecting-banner-link:hover {
  background: #f3ebe3;
  border-color: var(--accent-dark);
  text-decoration: none;
  color: var(--ink);
}
.expecting-banner-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 5.5vw, 2.85rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--accent-dark);
  text-transform: none;
}
.expecting-banner-sub {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes expecting-pulse {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow); }
  50% { transform: scale(1.012); box-shadow: 0 10px 28px rgba(122, 82, 48, 0.16); }
}
@media (prefers-reduced-motion: reduce) {
  .expecting-banner-link { animation: none; }
}
.expecting-page-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  text-align: center;
}
.expecting-card {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  padding: 1.5rem 1.35rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
}
.expecting-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.65rem;
}
.expecting-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 820px) {
  /* Full-bleed mobile announcement strip */
  .expecting-banner {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .expecting-banner-link {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding: 0.55rem 0.85rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.65rem;
    animation: none;
    box-shadow: none;
  }
  .expecting-banner-text {
    font-size: 1.4rem;
    line-height: 1.1;
    white-space: nowrap;
  }
  .expecting-banner-sub {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
}


/* Compact expecting banner (inner pages) */
.expecting-banner--compact {
  margin: 0.45rem auto 0.25rem;
}
.expecting-banner--compact .expecting-banner-link {
  padding: 0.45rem 1rem;
  flex-direction: row;
  gap: 0.5rem;
  animation: none;
}
.expecting-banner--compact .expecting-banner-text {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
}
.expecting-banner--compact .expecting-banner-sub {
  display: none;
}

/* Compact page hero — shorter, first puppy only */
.page-hero.page-hero--compact {
  min-height: 0;
  aspect-ratio: var(--banner-aspect);
}
.page-hero--compact .page-hero-image {
  object-position: center center;
}
.page-hero--compact .page-hero-content {
  padding: 0.85rem 0 0.75rem;
}
.page-hero--compact .page-hero-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
@media (max-width: 820px) {
  .hero,
  .page-hero,
  .page-hero.page-hero--compact {
    aspect-ratio: var(--banner-aspect);
    min-height: 0;
  }
}


/* Home banner text sits in the same compact strip as other pages */
.page-hero--home .page-hero-content {
  padding: 0.65rem 0 0.7rem;
}
.page-hero--home .hero-breeds {
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  margin: 0;
}
.page-hero--home .hero-tagline {
  margin: 0.15rem 0 0;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
}

/* ——— Breadcrumb ——— */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb-sep {
  color: var(--nav);
  opacity: 0.7;
}
.breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}


/* contact-bar to breadcrumb: tighter gap */
.contact-bar {
  margin-bottom: 0;
}
main > .section:first-child {
  padding-top: clamp(0.85rem, 2vw, 1.35rem);
}
main > .section:first-child .breadcrumb {
  margin-top: 0;
  margin-bottom: 0.65rem;
}



.reviews-intro {
  font-size: 0.82rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow-x: auto;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 820px) {
  .reviews-intro {
    white-space: normal;
    font-size: 0.78rem;
  }
}

/* ——— Reviews ——— */
.reviews-section {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.review-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.4rem 1.35rem;
  box-shadow: var(--shadow);
}
.review-card:nth-child(odd) {
  background: var(--cream);
}
.review-card:nth-child(even) {
  background: #efe8df;
  border-color: #e0d6ca;
}
.review-card:nth-child(even) .review-quote {
  color: var(--ink);
}

.review-meta {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.review-meta strong {
  color: var(--ink);
  font-weight: 600;
}

.review-quote {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
}

.reviews-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}


.reviews-more {
  margin: 0 0 1.75rem;
  text-align: center;
}

.reviews-more .contact-btn {
  display: inline-block;
}


.footer-trust {
  margin: 0.35rem 0 0;
  max-width: 42rem;
  margin-inline: auto;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted);
  font-weight: 400;
}

/* ——— Mobile overflow safety (reviews + sitewide) ——— */
html, body {
  max-width: 100%;
  overflow-x: clip;
}

.header-inner,
.wrap,
.wrap.narrow,
.review-card,
.review-list,
.reviews-section,
.site-footer,
.footer-inner {
  min-width: 0;
  max-width: 100%;
}

.header-email,
.footer-email,
.footer-host,
.review-meta,
.review-quote,
.lead,
.form-intro {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.reviews-more .contact-btn {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}

@media (max-width: 820px) {
  .header-inner > .site-nav {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .wrap,
  .wrap.narrow {
    width: min(1080px, calc(100% - 1.5rem));
  }

  .review-card {
    padding: 1rem 1rem 1.1rem;
  }

  .review-quote {
    font-size: 1rem;
  }

  /* Hide under-banner contact bar on phones — contact stays in footer */
  .contact-bar {
    display: none;
  }

  .logo {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(1.35rem, 5.4vw, 2rem);
  }

  .footer-brand {
    white-space: nowrap;
    font-size: clamp(1.15rem, 5vw, 1.5rem);
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .review-list {
    margin: 1.5rem 0 1.75rem;
    gap: 1rem;
  }

  .reviews-more .contact-btn {
    width: 100%;
  }
}


/* Call/Text Denise header phone */
.header-phone {
  white-space: normal;
}
@media (max-width: 480px) {
  .header-phone {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}


.story-prose p {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

.story-prose p:last-child {
  margin-bottom: 0;
}

.card-grid--story {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .card-grid--story {
    grid-template-columns: 1fr;
  }
}


.form-intro--oneline {
  white-space: normal;
}

@media (min-width: 900px) {
  .form-intro--oneline {
    white-space: nowrap;
  }
}


.form-footnote--oneline {
  white-space: normal;
}

@media (min-width: 900px) {
  .form-footnote--oneline {
    white-space: nowrap;
  }
}

/* banner crop deploy 2026-09-18-1455 */

/* head-safe banner aspect 2026-09-18-1500 */

/* ROLLBACK banner: copy assets/header-banner-full.jpg -> header-banner.jpg and set --banner-aspect: 1800 / 662 */


/* ——— Blog ——— */
.blog-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 0;
  text-align: left;
  max-width: 40rem;
  margin: 1.5rem 0 0;
}
.blog-card-photo {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  object-fit: cover;
  object-position: center top;
  background: var(--cream);
  display: block;
}
.blog-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.blog-card-body h2 {
  margin: 0;
  font-size: 1.45rem;
}
.blog-card-date {
  margin: 0 !important;
  color: var(--accent-dark) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
}
.blog-card-excerpt {
  margin: 0.35rem 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.98rem !important;
  font-weight: 300 !important;
  line-height: 1.55;
}
.blog-continue {
  margin-top: 0.75rem;
  align-self: flex-start;
  font-weight: 600;
  font-size: 0.95rem;
}
@media (max-width: 640px) {
  .blog-card {
    grid-template-columns: 1fr;
  }
  .blog-card-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
    max-height: 14rem;
  }
}

.blog-post-featured {
  display: none; /* replaced by .blog-post-layout */
  margin: 1.25rem 0 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--cream);
}
.blog-post-featured img {
  display: block;
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  object-position: center top;
}
.blog-post-meta {
  margin: 0 0 1rem;
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 600;
}
.blog-post-signoff {
  margin-top: 0.5rem;
  font-weight: 600;
}
.blog-gallery {
  margin: 2.25rem 0 0;
}
.blog-gallery h2 {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
}
.blog-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.blog-gallery-grid a,
.blog-gallery-grid figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}
.blog-gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 700px) {
  .blog-gallery-grid {
    grid-template-columns: 1fr;
  }
  .blog-gallery-grid img {
    aspect-ratio: 4 / 3;
    max-height: 16rem;
  }
}

/* Blog post: small Zach left of story */
.blog-post-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
  margin: 1.1rem 0 0;
}
.blog-post-photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--cream);
  width: 160px;
}
.blog-post-photo img {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center top;
}
.blog-post-layout .story-prose {
  min-width: 0;
}
.blog-post-layout .story-prose p:first-child {
  margin-top: 0;
}
@media (max-width: 640px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .blog-post-photo {
    width: 120px;
  }
  .blog-post-photo img {
    width: 120px;
    height: 120px;
  }
}

/* Blog family photo — small at bottom */
.blog-family-photo {
  margin: 1.75rem 0 0;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--cream);
}
.blog-family-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 640px) {
  .blog-family-photo {
    max-width: 220px;
  }
}

/* Home intro under banner (photo strip matches other pages) */
.home-intro-strip {
  text-align: center;
  padding: 0.85rem 0 0.15rem;
}
.home-intro-breeds {
  color: var(--accent-dark);
  justify-content: center;
}
.home-intro-tagline {
  color: var(--muted);
  margin: 0.25rem 0 0;
}

.home-intro-location {
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted, #666);
}



/* Inner-page accent bars (A = color only, B = + small dog thumb) */
.inner-accent-bar {
  width: min(1120px, calc(100% - 2rem));
  margin: 0.55rem auto 0;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, #c4a484 50%, var(--accent-dark) 100%);
  box-sizing: border-box;
}
.inner-accent-bar--thumb {
  height: auto;
  min-height: 120px;
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.inner-accent-bar--thumb::after {
  content: "";
  flex: 1;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, #c4a484 55%, transparent 100%);
}
.inner-accent-thumb {
  width: 108px;
  height: 108px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center center;
  display: block;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .inner-accent-bar {
    width: 100%;
    margin: 0.4rem 0 0;
    border-radius: 0;
  }
  .inner-accent-bar--thumb {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}

/* Facebook nav icon */
.nav-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-fb-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: -0.12em;
}
.nav-yt {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-yt-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: -0.12em;
}

.litter-photo-label {
  margin: 1.1rem 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
/* Penny litter photo grid on Current Litters */
.litter-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 0.25rem;
}
.litter-photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
}
.litter-photo img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 720px) {
  .litter-photo-grid {
    gap: 0.55rem;
  }
  .litter-photo img {
    height: 9.5rem;
  }
}

/* Litter card title: Penny | name | Wynn */
.litter-title-row {
  display: flex;
  align-items: center;
  gap: 0.85rem 1rem;
  margin: 0 0 1rem;
}
.litter-title-text {
  flex: 1 1 auto;
  min-width: 0;
}
.litter-title-text h2 {
  margin: 0;
}
.litter-title-text h2 a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.litter-title-text h2 a:hover {
  color: var(--accent-dark);
}
.litter-title-text .card-meta {
  margin: 0.15rem 0 0;
}
.litter-dame-photo--hazel {
  object-fit: contain;
  object-position: center center;
  background: var(--cream);
}
.litter-dame-photo,
.litter-sire-photo {
  width: 5.5rem;
  height: 5.5rem;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex: 0 0 auto;
  margin: 0;
  display: block;
}
.litter-sire-photo {
  object-position: center 20%;
}
@media (max-width: 720px) {
  .litter-dame-photo,
  .litter-sire-photo {
    width: 4.25rem;
    height: 4.25rem;
  }
}

.litter-photo--center img {
  object-position: center 35%;
}
.litter-photo--goose img {
  object-position: center 12%;
}
.litter-photo--oakley img {
  object-position: center top;
}

.litter-photo--honey img {
  object-position: center top;
}


.litter-photo--otis img {
  object-position: center 28%;
}



.litter-photo--1 img,
.litter-photo--2 img {
  object-position: center 32%;
}

.litter-parent {
  margin: 0;
  flex: 0 0 auto;
  text-align: center;
}
.litter-parent figcaption {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.litter-parent .litter-dame-photo,
.litter-parent .litter-sire-photo {
  margin: 0 auto;
}

.litter-parent a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.litter-parent a:hover figcaption {
  text-decoration: underline;
}

/* Waiting list under litter samples */


.puppy-price-split {
  margin: 0.25rem 0 0.65rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--ink, #222);
}
.puppy-price-line {
  margin: 1.25rem 0 0.2rem;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--ink, #222);
}
.waiting-list-table {
  width: 100%;
  max-width: none;
  margin: 1rem 0 0.25rem;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}
.waiting-list-table caption {
  caption-side: top;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.55rem 0.85rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  color: var(--ink);
}
.waiting-list-table td {
  border: 1px solid var(--line);
  padding: 0.55rem 0.85rem;
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  width: 50%;
}

@media (max-width: 640px) {
  .waiting-list-table {
    font-size: 0.72rem;
  }
  .waiting-list-table caption {
    font-size: 0.85rem;
    padding: 0.45rem 0.5rem;
  }
  .waiting-list-table td {
    padding: 0.4rem 0.35rem;
    white-space: nowrap;
    letter-spacing: -0.01em;
  }
}

.waiting-reserved {
  color: var(--accent-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.waiting-lock-icon {
  display: inline-block;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

.footer-youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--nav);
  text-decoration: none;
  font-size: inherit;
}
.footer-yt-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.footer-facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
}
.footer-fb-icon {
  display: block;
  flex: 0 0 auto;
}
.footer-facebook-link:hover {
  text-decoration: underline;
}
.footer-youtube-link:hover {
  color: var(--muted);
  text-decoration: underline;
}
.footer-admin-link {
  color: var(--nav);
  text-decoration: none;
  font-size: inherit;
}
.footer-admin-link:hover {
  color: var(--muted);
  text-decoration: none;
}

.waiting-list-note {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
  max-width: none;
}

.waiting-reserve-link {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
}
.waiting-reserve-link:hover {
  color: var(--ink);
}

.litter-due {
  margin: 0.35rem 0 0;
  font-size: 1.15rem;
  color: var(--accent-dark);
  letter-spacing: 0.02em;
}

.process-card {
  margin-bottom: 1.5rem;
  text-align: left;
}
.process-card h2 {
  margin: 0 0 0.85rem;
  text-align: left;
}
.process-steps {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.65rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  list-style-position: outside;
  max-width: 40rem;
}
.process-steps li strong {
  color: var(--accent-dark);
}

input.readonly-field[readonly] {
  background: var(--cream);
  color: var(--accent-dark);
  font-weight: 600;
  cursor: default;
}
input.readonly-field.is-filled {
  border-color: var(--accent);
}

.pay-section-title {
  margin: 1.5rem 0 0.6rem;
  font-size: 1.25rem;
  color: var(--accent-dark);
}
.pay-methods-table {
  width: 100%;
  max-width: 28rem;
  margin: 1rem auto 1.25rem;
  border-collapse: separate;
  border-spacing: 0.75rem;
  table-layout: fixed;
}
.pay-methods-table td {
  vertical-align: top;
  text-align: center;
  padding: 0.85rem 0.75rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.pay-badge-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.55rem;
  margin-bottom: 0.45rem;
}
.pay-methods-table img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.pay-method-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--accent-dark);
  line-height: 1.2;
}
.pay-method-link img {
  display: block;
}
.pay-methods-table td {
  display: table-cell;
}
.pay-methods-table td > img,
.pay-methods-table td > .pay-method-link {
  margin-inline: auto;
}
.pay-methods-table td > img + .pay-method-caption {
  display: block;
  margin-top: 0.4rem;
}
.pay-method-caption {
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}
.pay-paypal-cta {
  text-align: center;
  margin: 0.75rem 0 0.5rem;
}
.pay-fee-note {
  margin: 0.35rem 0 1.1rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink, #222);
}
.pay-preferred {
  display: inline-block;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  background: var(--cream);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
}

.litter-dame-photo--gypsy {
  /* same size as other litter thumbs — show more of her inside the circle */
  object-fit: contain;
  object-position: center 20%;
  background: var(--cream);
}
.litter-parent--tba {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.litter-stud-tba {
  width: 100%;
  aspect-ratio: 1;
  max-width: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  border: 1px dashed var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.litter-photo figcaption {
  margin-top: 0.45rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.footer-hits {
  margin: 0.55rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted, #6b6560);
}
.footer-hits #hit-count {
  font-variant-numeric: tabular-nums;
}

.blog-family-photo figcaption {
  margin-top: 0.45rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted, #6b6560);
}

.blog-post-photo figcaption {
  margin-top: 0.45rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted, #6b6560);
}

video.page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.expecting-banner-sub {
  white-space: normal;
  line-height: 1.35;
  max-width: 42rem;
}

/* Home hero video — taller so dogs stay in frame */
.page-home .page-hero.page-hero--compact {
  aspect-ratio: 16 / 9;
  max-height: none;
  min-height: clamp(240px, 38vw, 420px);
}
@media (max-width: 820px) {
  .page-home .page-hero,
  .page-home .page-hero.page-hero--compact {
    aspect-ratio: 16 / 9;
    max-height: none;
    min-height: clamp(220px, 42vw, 340px);
  }
}


.embark-badge {
  margin: 3.5rem 0 0;
  text-align: center;
}
.embark-badge--page {
  margin: 1.5rem 0 0.75rem;
}
.embark-badge-logo {
  width: min(140px, 65%);
  height: auto;
  display: inline-block;
  margin-inline: auto;
  background: #fff;
  border-radius: 6px;
}

.home-reviews-link {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
}
.home-reviews-link a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.home-reviews-link a:hover {
  color: var(--accent);
}

.litter-count {
  margin: 0.35rem 0 0;
  font-size: 1.35rem;
  color: var(--accent-dark);
  letter-spacing: 0.01em;
}
.litter-born-hero {
  margin: 1rem 0 1.25rem;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.litter-born-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vh, 520px);
  object-fit: cover;
  object-position: center 45%;
}
.litter-born-hero figcaption {
  padding: 0.65rem 0.9rem;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--cream);
  border-top: 1px solid var(--line);
  text-align: center;
}

.litter-born-date {
  white-space: nowrap;
}

.faq-list {
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.65rem;
  text-align: left;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: left;
}
.faq-q {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1rem;
  font-weight: 700;
  color: var(--accent-dark);
  display: flex;
  gap: 0.45rem;
  align-items: baseline;
  text-align: left;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  margin-left: auto;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.15rem;
  line-height: 1;
}
.faq-item[open] .faq-q::after { content: "–"; }
.faq-num {
  flex: 0 0 auto;
  color: var(--accent);
}
.faq-a {
  padding: 0 1rem 1rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
  text-align: left;
}
.faq-a p { margin: 0; }

.home-quick-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  justify-content: center;
  align-items: stretch;
  margin: 0.85rem auto 0.75rem;
  padding: 0 0.5rem;
  max-width: 1120px;
}
.home-quick-btn {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--cream);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(122, 82, 48, 0.08);
  transition: background 0.15s ease, transform 0.15s ease;
  white-space: normal;
}
.home-quick-btn:hover,
.home-quick-btn:focus-visible {
  background: #fff;
  transform: translateY(-1px);
}
.home-quick-btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent-dark);
}
.home-quick-btn--accent:hover,
.home-quick-btn--accent:focus-visible {
  background: var(--accent-dark);
  color: #fff;
}
@media (max-width: 640px) {
  .home-quick-links {
    gap: 0.4rem;
    padding: 0 0.35rem;
  }
  .home-quick-btn {
    min-height: 2.5rem;
    padding: 0.5rem 0.4rem;
    font-size: 0.78rem;
  }
}

/* Whole homepage section clickable (Dames / Stud service) */
.home-section-click {
  cursor: pointer;
}
a.home-section-hit {
  display: block;
  color: inherit;
  text-decoration: none;
}
a.home-section-hit:hover,
a.home-section-hit:focus-visible {
  text-decoration: none;
}
a.home-section-hit:hover h2,
a.home-section-hit:focus-visible h2 {
  color: var(--accent-dark);
}
a.home-section-hit:hover .home-section-cta,
a.home-section-hit:focus-visible .home-section-cta {
  text-decoration: underline;
}
.home-section-cta {
  color: var(--accent-dark);
  font-weight: 600;
}


/* Litter 5 password gate */
.litter5-gate {
  max-width: 28rem;
  margin: 1.25rem 0 2rem;
}
.litter5-form {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}
.litter5-form label {
  font-weight: 600;
}
.litter5-form input[type="password"] {
  width: 100%;
  max-width: 20rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid #cfc6b8;
  border-radius: 8px;
  font: inherit;
}
.litter5-error {
  color: #9b1c1c;
  margin: 0.25rem 0 0;
}
.litter5-meta {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}
.litter5-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.25rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(40, 30, 20, 0.08);
}
.litter5-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95rem;
}
.litter5-table th,
.litter5-table td {
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid #ebe4da;
  text-align: left;
  white-space: nowrap;
}
.litter5-table th {
  background: #f7f3ec;
  font-weight: 600;
}
.litter5-table tbody tr:last-child td {
  border-bottom: 0;
}
.litter5-note {
  color: #6b5f52;
  font-size: 0.9rem;
}

.waiting-list-table caption .available-puppies-label {
  font-weight: inherit;
}

/* Homepage prominent Facebook CTA */
.home-fb-promo {
  display: flex;
  justify-content: center;
  margin: 0.35rem auto 0.85rem;
  padding: 0 0.5rem;
}
.home-fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #1877F2;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(24, 119, 242, 0.3);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.home-fb-btn:hover,
.home-fb-btn:focus-visible {
  background: #166fe5;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}
.home-fb-icon {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}
.home-fb-btn-text {
  letter-spacing: 0.01em;
}
@media (max-width: 480px) {
  .home-fb-btn {
    width: auto;
    max-width: none;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.45rem 0.95rem;
  }
}

/* Homepage: larger Facebook in header nav */
.page-home .nav-fb-icon {
  width: 1.35em;
  height: 1.35em;
}
.page-home .nav-fb {
  font-weight: 700;
}
