/* 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.2rem, 3.2vw, 2.1rem);
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.05;
  text-decoration: none;
  white-space: nowrap;
  max-width: none;
}

.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;
}

.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 / 1323; /* 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 top; /* keep heads when any residual crop */
}

.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 .dot {
  opacity: 0.7;
  font-weight: 400;
}

.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 portrait — bias crop to head/shoulders like Penny & Rooby */
.card-photo--hazel {
  object-position: center 12%;
}


.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;
  }
}

.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 {
  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;
  }

  .hero-breeds .dot {
    display: none;
  }

  .hero-breeds span:not(.dot) {
    display: block;
    width: 100%;
  }
}


/* ——— 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 top;
}

.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: 220px;
  overflow-y: auto;
  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: 1.15fr 0.85fr;
  gap: 2rem 2.5rem;
  align-items: start;
  margin: 1.5rem 0 0;
  max-width: 56rem;
  margin-inline: auto;
}
.stud-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  align-items: stretch;
}
.stud-shot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f1ec;
  box-shadow: 0 8px 24px rgba(40, 30, 20, 0.08);
  aspect-ratio: 9 / 10;
}
.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 1fr;
  }
  .stud-shot {
    aspect-ratio: 9 / 10;
  }
}
@media (max-width: 520px) {
  /* Keep Wynn photos side by side on phones */
  .stud-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }
  .stud-shot {
    aspect-ratio: 9 / 10;
  }
}


/* Dedicated Dames page — 3 across on desktop, stack on phone */
.card-grid--dames {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.card-grid--dames .card-photo {
  max-height: 16rem;
}
.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: 1fr;
  }
  .card-grid--dames .card-photo {
    max-height: 14rem;
  }
}




/* Flexible banner aspect: porch scene — wider on desktop, a bit taller on phones */
.hero,
.page-hero,
.page-hero.page-hero--compact {
  aspect-ratio: var(--banner-aspect);
  min-height: 0;
}
.hero-image,
.page-hero-image,
.page-hero--compact .page-hero-image {
  object-fit: cover;
  object-position: center 40%;
}
@media (max-width: 820px) {
  :root {
    /* Slightly taller on mobile so porch dogs aren't squeezed */
    --banner-aspect-mobile: 1.35 / 1;
  }
  .hero,
  .page-hero,
  .page-hero.page-hero--compact {
    aspect-ratio: var(--banner-aspect-mobile);
  }
  .hero-image,
  .page-hero-image,
  .page-hero--compact .page-hero-image {
    object-position: center 35%;
  }
}
@media (min-width: 821px) and (max-width: 1200px) {
  :root {
    --banner-aspect-tablet: 1.6 / 1;
  }
  .hero,
  .page-hero,
  .page-hero.page-hero--compact {
    aspect-ratio: var(--banner-aspect-tablet);
  }
}

/* ——— 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 top;
}
.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;
  }
}

/* ——— 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.05rem, 4.6vw, 1.55rem);
  }

  .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 */
