:root {
  --bg: #fbf7f1;
  --surface: #ffffff;
  --surface-warm: #f5eadf;
  --primary: #d8746d;
  --primary-dark: #3a3032;
  --accent: #d8746d;
  --accent-soft: #f8dedb;
  --logo-coral: #e77f72;
  --logo-blue: #e7a29b;
  --caramel: #c99352;
  --text: #302d2c;
  --muted: #716866;
  --line: #eee0dc;
  --shadow: 0 18px 48px rgba(129, 78, 82, .11);
  --radius: 18px;
  --max: 1160px;
  --display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 12%, rgba(231, 127, 114, .07), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(231, 127, 114, .045), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(251, 244, 239, .62));
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(251, 247, 241, .92);
  border-bottom: 1px solid rgba(234, 223, 213, .86);
  backdrop-filter: blur(16px);
  transition: padding .24s ease, box-shadow .24s ease, background .24s ease;
}

.site-header.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(251, 247, 241, .97);
  box-shadow: 0 14px 38px rgba(129, 78, 82, .1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 999px;
  transition: width .24s ease, height .24s ease, transform .24s ease;
}

.site-header.scrolled .brand-logo {
  width: 50px;
  height: 50px;
  transform: rotate(-2deg);
}

.brand strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.3;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 600;
  border-radius: 999px;
  transition: color .22s ease, background .22s ease, box-shadow .22s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-dark);
  background: rgba(231, 127, 114, .12);
  box-shadow: inset 0 -2px 0 rgba(231, 127, 114, .28);
}

.main-nav .nav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--logo-coral);
  box-shadow: 0 10px 24px rgba(231, 127, 114, .22);
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transition: color .22s ease, background .22s ease, box-shadow .28s ease, transform .28s cubic-bezier(.2, .9, .2, 1);
}

.main-nav .nav-cta:hover {
  color: #fff;
  background: #d86f66;
  transform: translateY(-2px) scale(1.07);
  box-shadow:
    0 16px 34px rgba(231, 127, 114, .28),
    inset 0 -2px 0 rgba(255, 255, 255, .28);
}

.main-nav .nav-cta::after {
  content: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary-dark);
  border-radius: 2px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, .98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(46px, 8vw, 92px) clamp(18px, 4vw, 28px) 64px;
}

.hero-refined {
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  padding-top: clamp(58px, 9vw, 108px);
  padding-bottom: clamp(70px, 9vw, 116px);
}

.hero-refined .hero-content {
  max-width: 700px;
}

.hero-refined .hero-media {
  min-height: clamp(520px, 58vw, 720px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 144, 126, .28);
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 132px;
  height: 132px;
  left: -30px;
  top: 88px;
  animation: slow-drift 8s ease-in-out infinite;
}

.hero::after {
  width: 92px;
  height: 92px;
  right: -12px;
  bottom: 24px;
  animation: slow-drift 9s ease-in-out infinite reverse;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--primary-dark);
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.45vw, 4.15rem);
  font-weight: 610;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  left: -26px;
  top: -28px;
  border: 1px solid rgba(201, 144, 126, .25);
  border-radius: 28px;
  transform: rotate(12deg);
  pointer-events: none;
}

.hero p,
.page-hero p,
.section-heading p,
.text-panel p,
.profile-copy p,
.timeline p,
.contact-card p {
  color: var(--muted);
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--primary) !important;
  margin: 22px 0 10px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent) !important;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust span {
  padding: 9px 12px;
  color: var(--primary-dark);
  font-size: .86rem;
  font-weight: 800;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.arrow-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  transition: transform .22s ease, background .22s ease;
}

.arrow-button:hover span {
  transform: translateX(4px);
  background: rgba(255, 255, 255, .28);
}

.button.primary {
  color: #fff;
  background: var(--logo-coral);
  box-shadow: 0 14px 32px rgba(231, 127, 114, .24), inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.button.secondary {
  color: var(--primary-dark);
  background: var(--surface);
  border: 1px solid var(--line);
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary:hover {
  background: #d86f66;
  box-shadow: 0 18px 42px rgba(231, 127, 114, .3);
}

.hero-media,
.image-panel,
.planning-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(234, 223, 213, .95);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media {
  min-height: 540px;
}

.hero-media img,
.image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  transition: transform 2.2s cubic-bezier(.16, .84, .24, 1), filter 2.2s ease;
}

.hero-media:hover img {
  transform: scale(1.07);
  filter: saturate(1.04) contrast(1.01);
}

.planning-card img {
  width: 100%;
  object-fit: cover;
}

.object-family {
  object-position: 62% center;
}

.object-karla {
  object-position: center center;
}

.object-karla-wide {
  object-position: 42% center;
}

.object-landscape {
  object-position: center center;
}

.object-house {
  object-position: center center;
}

.hero-media span,
.image-panel span,
.planning-card > span {
  display: none;
}

.planning-card > span {
  top: 258px;
  bottom: auto;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px clamp(18px, 4vw, 28px);
}

.countdown-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 5vw, 54px);
  max-width: var(--max);
  margin: 0 auto 28px;
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid rgba(234, 223, 213, .98);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(245, 234, 223, .88)),
    repeating-linear-gradient(45deg, rgba(201, 144, 126, .08) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
}

.countdown-section h2 {
  margin-bottom: 10px;
}

.countdown-section p {
  margin-bottom: 0;
  color: var(--muted);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.countdown div {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 16px 10px;
  color: var(--primary-dark);
  border: 1px solid rgba(234, 223, 213, .98);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 28px rgba(129, 78, 82, .07);
  transition: transform .24s ease, box-shadow .24s ease;
}

.countdown div:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 40px rgba(129, 78, 82, .12);
}

.countdown strong {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
}

.countdown span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.intro-band,
.values-section {
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 28px), calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(clamp(18px, 4vw, 28px), calc((100vw - var(--max)) / 2 + 28px));
  background: var(--surface);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

h2 {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 1.12rem;
  line-height: 1.25;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 226px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(129, 78, 82, .07);
  transition: transform .32s cubic-bezier(.2, .9, .2, 1), box-shadow .32s ease, border-color .32s ease, background .32s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(231, 127, 114, .16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(248, 222, 219, .58));
  opacity: 0;
  transition: opacity .32s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(231, 127, 114, .28);
  opacity: 0;
  transform: scale(.72);
  transition: opacity .32s ease, transform .32s ease;
}

.feature-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(231, 127, 114, .38);
  background: #fffdfc;
  box-shadow: 0 18px 42px rgba(129, 78, 82, .12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.feature-card:hover .card-icon {
  color: #fff;
  background: var(--logo-coral);
  transform: translateY(-1px) scale(1.035);
  box-shadow: 0 10px 22px rgba(231, 127, 114, .2);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:nth-child(2),
.process-card:nth-child(2) {
  transition-delay: .04s;
}

.feature-card:nth-child(3),
.process-card:nth-child(3) {
  transition-delay: .08s;
}

.feature-card:nth-child(4) {
  transition-delay: .12s;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--primary);
  background: var(--accent-soft);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(231, 127, 114, .08);
  transition: transform .32s ease, color .32s ease, background .32s ease, box-shadow .32s ease;
}

.card-icon svg,
.process-card span svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.split-section,
.parent-profile,
.contact-layout,
.planning-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 56px);
}

.warm-process {
  position: relative;
}

.warm-process::before {
  content: "Karlas Doodlepuppies";
  position: absolute;
  top: 18px;
  right: 28px;
  color: rgba(231, 127, 114, .07);
  font-size: clamp(2.6rem, 8vw, 7rem);
  font-weight: 900;
  line-height: .9;
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(231, 127, 114, .18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 250, 246, .94)),
    var(--surface);
  box-shadow: 0 12px 34px rgba(129, 78, 82, .07);
  transition: transform .34s cubic-bezier(.2, .9, .2, 1), box-shadow .34s ease, border-color .34s ease, background .34s ease;
}

.process-card::before,
.process-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: opacity .34s ease, transform .34s ease;
}

.process-card::before {
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(231, 127, 114, .12), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 222, 219, .46));
}

.process-card::after {
  width: 150px;
  height: 150px;
  right: -70px;
  bottom: -70px;
  border: 28px solid rgba(231, 127, 114, .16);
  border-radius: 999px;
}

.process-card:hover {
  transform: translateY(-7px);
  border-color: rgba(231, 127, 114, .42);
  box-shadow: 0 24px 54px rgba(129, 78, 82, .14);
}

.process-card:hover::before {
  opacity: 1;
}

.process-card:hover::after {
  transform: translate(-10px, -8px) scale(1.08);
  opacity: .9;
}

.process-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 58px;
  padding: 8px 12px;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--accent-soft);
  border-radius: 999px;
  transition: color .3s ease, background .3s ease, box-shadow .3s ease, transform .3s ease;
}

.process-card h3,
.process-card p {
  position: relative;
  z-index: 1;
}

.process-card:hover span {
  color: #fff;
  background: var(--logo-coral);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(231, 127, 114, .2);
}

.image-panel {
  min-height: 430px;
  isolation: isolate;
  transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
}

.image-panel img,
.parent-photo-card img {
  transition: transform 2s cubic-bezier(.16, .84, .24, 1), filter 2s ease;
}

.image-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 127, 114, .32);
  box-shadow: 0 18px 42px rgba(129, 78, 82, .11);
}

.image-panel:hover img,
.parent-photo-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.015);
}

.image-panel.large {
  min-height: 560px;
}

.text-panel,
.profile-copy,
.contact-card {
  padding: clamp(6px, 2vw, 20px);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 800;
  border-bottom: 2px solid var(--accent-soft);
}

.parent-teaser-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  max-width: 430px;
  margin-top: 26px;
  padding: 16px;
  color: var(--primary-dark);
  border: 1px solid rgba(231, 127, 114, .26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(248, 222, 219, .56)),
    var(--surface);
  box-shadow: 0 14px 34px rgba(129, 78, 82, .08);
  transition: transform .32s cubic-bezier(.2, .9, .2, 1), border-color .32s ease, box-shadow .32s ease, background .32s ease;
}

.parent-teaser-link:hover {
  transform: translateY(-5px);
  border-color: rgba(231, 127, 114, .52);
  box-shadow: 0 22px 48px rgba(129, 78, 82, .14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 222, 219, .78)),
    var(--surface);
}

.parent-teaser-icon,
.parent-teaser-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.parent-teaser-icon {
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--logo-coral);
  box-shadow: 0 12px 24px rgba(231, 127, 114, .2);
}

.parent-teaser-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.parent-teaser-link small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 700;
}

.parent-teaser-arrow {
  width: 34px;
  height: 34px;
  color: var(--logo-coral);
  background: rgba(231, 127, 114, .12);
  transition: transform .32s ease, background .32s ease, color .32s ease;
}

.parent-teaser-link:hover .parent-teaser-arrow {
  color: #fff;
  background: var(--logo-coral);
  transform: translateX(3px);
}

.cta-section {
  max-width: min(960px, calc(100% - 36px));
  margin-top: 38px;
  margin-bottom: 72px;
  padding: clamp(34px, 6vw, 64px);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.puppy-gallery,
.home-gallery {
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 28px), calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(clamp(18px, 4vw, 28px), calc((100vw - var(--max)) / 2 + 28px));
  background: linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(245, 234, 223, .78));
}

.gallery-grid,
.home-gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-grid .image-panel,
.home-gallery-grid .image-panel {
  min-height: 0;
}

.gallery-grid .image-panel:first-child {
  grid-row: span 2;
}

.home-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
}

.home-gallery-grid .image-panel {
  min-height: 0;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, .82);
  grid-column: auto;
  grid-row: auto;
}

.home-gallery-grid .image-panel img {
  object-fit: contain;
  padding: 10px;
}

.page-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(46px, 8vw, 88px) clamp(18px, 4vw, 28px) 36px;
  text-align: center;
}

.page-hero p:last-child {
  max-width: 730px;
  margin: 22px auto 0;
  font-size: 1.08rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-image-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.parent-profile.reverse .image-panel,
.parent-feature.reverse .image-panel {
  order: 2;
}

.parent-feature {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
}

.parent-listing {
  display: grid;
  grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 74px);
  align-items: center;
}

.parent-listing.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
}

.parent-listing.reverse .parent-photo-card {
  order: 2;
}

.parent-photo-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 52vw, 680px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
}

.parent-photo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 127, 114, .35);
  box-shadow: 0 20px 48px rgba(129, 78, 82, .12);
}

.parent-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parent-info h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.parent-info p {
  color: var(--muted);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-card {
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 30px rgba(129, 78, 82, .055);
  transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 127, 114, .34);
  box-shadow: 0 20px 44px rgba(129, 78, 82, .11);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 13px;
  color: var(--logo-coral);
  border-radius: 10px;
  background: rgba(231, 127, 114, .14);
  transition: transform .34s ease, color .34s ease, background .34s ease, box-shadow .34s ease;
}

.stat-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.stat-card small {
  display: block;
  color: var(--muted);
  font-size: .82rem;
}

.stat-card strong {
  display: block;
  margin-top: 5px;
  color: var(--primary-dark);
  line-height: 1.32;
}

.chip-block {
  margin-top: 28px;
}

.chip-block h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chips span {
  padding: 8px 13px;
  color: var(--primary);
  font-size: .9rem;
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}

.parent-feature.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
}

.trait-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.trait-grid article,
.detail-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 30px rgba(129, 78, 82, .06);
}

.trait-grid article {
  min-height: 112px;
  transition: opacity .54s ease, transform .54s ease, box-shadow .24s ease;
}

.trait-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(129, 78, 82, .1);
}

.trait-grid strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.trait-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .92rem;
}

.parent-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.detail-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--primary);
  background: var(--accent-soft);
  border-radius: 16px;
  transition: transform .34s ease, color .34s ease, background .34s ease, box-shadow .34s ease;
}

.detail-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.detail-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pairing-section {
  max-width: min(920px, calc(100% - 36px));
  margin-bottom: 72px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pairing-section p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.update-board {
  display: grid;
  gap: 22px;
}

.update-card,
.puppy-slot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 34px rgba(129, 78, 82, .07);
}

.update-card {
  padding: clamp(26px, 5vw, 46px);
}

.update-date {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 13px;
  color: var(--primary);
  font-weight: 800;
  background: var(--accent-soft);
  border-radius: 999px;
}

.puppy-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.puppy-slot {
  min-height: 220px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(242, 217, 209, .5), rgba(231, 127, 114, .12)),
    rgba(255, 255, 255, .78);
}

.puppy-slot span {
  display: block;
  color: var(--primary-dark);
  font-weight: 900;
}

.puppy-slot p {
  color: var(--muted);
}

.fact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.fact-list span {
  padding: 9px 12px;
  color: var(--primary-dark);
  font-size: .9rem;
  font-weight: 700;
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.timeline {
  display: grid;
  gap: 16px;
  align-self: start;
}

.timeline article {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 24px 82px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(129, 78, 82, .06);
}

.timeline article.reveal {
  transition-duration: 1.55s;
  transition-timing-function: cubic-bezier(.16, .84, .24, 1);
}

.js-ready .timeline article.reveal:nth-child(2) {
  transition-delay: .34s;
}

.js-ready .timeline article.reveal:nth-child(3) {
  transition-delay: .68s;
}

.js-ready .timeline article.reveal:nth-child(4) {
  transition-delay: 1.02s;
}

.js-ready .timeline article.reveal:nth-child(5) {
  transition-delay: 1.36s;
}

.timeline span {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--primary);
  font-size: .76rem;
  font-weight: 900;
  background: var(--accent-soft);
  border-radius: 13px;
  transition: transform .34s ease, color .34s ease, background .34s ease, box-shadow .34s ease;
}

.timeline-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.timeline h2 {
  font-size: 1.28rem;
}

.timeline p {
  margin: 0;
}

.planning-layout {
  align-items: start;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
}

.planning-card {
  position: sticky;
  top: 112px;
  padding-bottom: 26px;
}

.planning-card img {
  height: 310px;
}

.planning-card h3,
.planning-card p,
.planning-card .button {
  margin-left: 24px;
  margin-right: 24px;
}

.planning-card h3 {
  margin-top: 28px;
}

.planning-card p {
  color: var(--muted);
}

.contact-layout {
  align-items: start;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--primary-dark);
  font-size: .93rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--text);
  background: #fffdfb;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 144, 126, .16);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(242, 217, 209, .46)),
    var(--surface-warm);
  box-shadow: 0 12px 34px rgba(129, 78, 82, .07);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.contact-method {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(234, 223, 213, .95);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 127, 114, .3);
  box-shadow: 0 12px 28px rgba(129, 78, 82, .08);
}

.method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #c95f58;
  border-radius: 14px;
  background: rgba(231, 127, 114, .13);
  box-shadow: inset 0 0 0 1px rgba(231, 127, 114, .18);
  transition: transform .34s ease, color .34s ease, background .34s ease, box-shadow .34s ease;
}

.method-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-method small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-method strong {
  display: block;
  color: var(--primary-dark);
  line-height: 1.28;
}

.important-note {
  margin: 22px 0 10px;
  padding: 18px;
  color: var(--primary-dark);
  border: 1px solid rgba(231, 127, 114, .3);
  border-radius: 16px;
  background: rgba(255, 255, 255, .68);
}

.important-note p {
  margin: 8px 0 0;
}

.feature-card,
.process-card,
.stat-card,
.trait-grid article,
.detail-card,
.update-card,
.puppy-slot,
.timeline article,
.contact-method,
.parent-teaser-link,
.planning-card,
.countdown div {
  transition:
    transform .34s cubic-bezier(.2, .9, .2, 1),
    border-color .34s ease,
    box-shadow .34s ease,
    background .34s ease;
}

.feature-card:hover,
.process-card:hover,
.stat-card:hover,
.trait-grid article:hover,
.detail-card:hover,
.update-card:hover,
.puppy-slot:hover,
.timeline article:hover,
.contact-method:hover,
.parent-teaser-link:hover,
.planning-card:hover,
.countdown div:hover {
  transform: translateY(-5px);
  border-color: rgba(231, 127, 114, .4);
  background-color: #fffdfc;
  box-shadow: 0 20px 46px rgba(129, 78, 82, .13);
}

.stat-card:hover .stat-icon,
.contact-method:hover .method-icon,
.detail-card:hover .detail-icon,
.timeline article:hover .timeline-icon,
.feature-card:hover .card-icon,
.process-card:hover span {
  color: #fff;
  background: var(--logo-coral);
  box-shadow: 0 10px 22px rgba(231, 127, 114, .2);
}

.timeline article:hover .timeline-icon,
.contact-method:hover .method-icon,
.stat-card:hover .stat-icon,
.detail-card:hover .detail-icon {
  transform: translateY(-1px) scale(1.04);
}

.feature-card:hover,
.process-card:hover,
.stat-card:hover,
.trait-grid article:hover,
.detail-card:hover,
.update-card:hover,
.puppy-slot:hover,
.timeline article:hover,
.contact-method:hover,
.parent-teaser-link:hover,
.planning-card:hover,
.countdown div:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(231, 127, 114, .42);
  box-shadow: 0 22px 48px rgba(129, 78, 82, .13);
}

.feature-card:hover .card-icon,
.process-card:hover span,
.stat-card:hover .stat-icon,
.contact-method:hover .method-icon,
.detail-card:hover .detail-icon,
.timeline article:hover .timeline-icon {
  transform: translateY(-1px) scale(1.04);
}

.legal-section {
  max-width: 860px;
}

.legal-section h2 {
  margin-top: 32px;
  font-size: 1.5rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  align-items: start;
  gap: clamp(24px, 5vw, 54px);
}

.legal-main {
  display: grid;
  gap: 18px;
}

.legal-card,
.legal-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 34px rgba(129, 78, 82, .07);
}

.legal-card {
  padding: clamp(24px, 4vw, 34px);
}

.legal-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card p {
  color: var(--muted);
}

.legal-card strong {
  color: var(--primary-dark);
}

.legal-note {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(248, 222, 219, .5)),
    var(--surface);
}

.legal-aside {
  position: sticky;
  top: 112px;
  padding: clamp(18px, 3vw, 26px);
}

.legal-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.legal-image {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 12px 28px rgba(129, 78, 82, .08);
}

.legal-image.large {
  grid-column: span 2;
  min-height: 260px;
}

.legal-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 2s cubic-bezier(.16, .84, .24, 1), filter 2s ease;
}

.legal-image:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.01);
}

.legal-image figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  color: var(--primary-dark);
  font-size: .78rem;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(10px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, .86);
  background: var(--primary-dark);
}

.site-footer strong {
  display: block;
  color: #fff;
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

.site-footer a:hover {
  color: #fff;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.35s ease, transform 1.35s cubic-bezier(.16, .84, .24, 1);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
}

.js-ready .reveal-left {
  transform: translateX(-56px);
}

.js-ready .reveal-right {
  transform: translateX(56px);
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .card-grid .reveal:nth-child(2),
.js-ready .process-grid .reveal:nth-child(2),
.js-ready .gallery-grid .reveal:nth-child(2),
.js-ready .home-gallery-grid .reveal:nth-child(2),
.js-ready .trait-grid .reveal:nth-child(2),
.js-ready .stat-grid .reveal:nth-child(2),
.js-ready .puppy-placeholder-grid .reveal:nth-child(2) {
  transition-delay: .08s;
}

.js-ready .card-grid .reveal:nth-child(3),
.js-ready .process-grid .reveal:nth-child(3),
.js-ready .gallery-grid .reveal:nth-child(3),
.js-ready .home-gallery-grid .reveal:nth-child(3),
.js-ready .trait-grid .reveal:nth-child(3),
.js-ready .stat-grid .reveal:nth-child(3),
.js-ready .puppy-placeholder-grid .reveal:nth-child(3) {
  transition-delay: .16s;
}

.js-ready .card-grid .reveal:nth-child(4),
.js-ready .gallery-grid .reveal:nth-child(4),
.js-ready .home-gallery-grid .reveal:nth-child(4),
.js-ready .trait-grid .reveal:nth-child(4),
.js-ready .stat-grid .reveal:nth-child(4),
.js-ready .puppy-placeholder-grid .reveal:nth-child(4) {
  transition-delay: .24s;
}

.js-ready .stat-grid .reveal:nth-child(5) {
  transition-delay: .32s;
}

.js-ready .stat-grid .reveal:nth-child(6) {
  transition-delay: .40s;
}

.js-ready .reveal.visible:is(
  .feature-card,
  .process-card,
  .stat-card,
  .detail-card,
  .update-card,
  .puppy-slot,
  .contact-method,
  .parent-teaser-link,
  .planning-card
),
.js-ready .trait-grid .reveal.visible,
.js-ready .timeline article.reveal.visible {
  transition:
    transform .34s cubic-bezier(.2, .9, .2, 1),
    border-color .34s ease,
    box-shadow .34s ease,
    background .34s ease;
}

@keyframes slow-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(10px, -12px, 0) rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 91px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    border-radius: 12px;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero,
  .split-section,
  .parent-profile,
  .parent-feature,
  .parent-feature.reverse,
  .parent-listing,
  .parent-listing.reverse,
  .contact-layout,
  .legal-layout,
  .planning-layout,
  .countdown-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
  }

  .parent-profile.reverse .image-panel {
    order: 0;
  }

  .parent-feature.reverse .image-panel {
    order: 0;
  }

  .parent-listing.reverse .parent-photo-card {
    order: 0;
  }

  .planning-card {
    position: static;
  }

  .legal-aside {
    position: static;
  }

  .card-grid,
  .card-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .gallery-grid,
  .home-gallery-grid,
  .parent-details,
  .stat-grid,
  .puppy-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .image-panel:first-child,
  .home-gallery-grid .image-panel:first-child,
  .home-gallery-grid .image-panel:nth-child(3) {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: .94rem;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    top: 78px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 12vw, 3.4rem);
  }

  .hero-media,
  .image-panel,
  .image-panel.large {
    min-height: 320px;
  }

  .hero::before,
  .hero::after,
  .warm-process::before,
  .hero-content::before {
    display: none;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .card-grid,
  .card-grid.three,
  .about-image-grid,
  .image-grid,
  .form-row,
  .countdown {
    grid-template-columns: 1fr;
  }

  .countdown div {
    min-height: 104px;
  }

  .process-card {
    min-height: auto;
  }

  .process-card span {
    margin-bottom: 34px;
  }

  .feature-card {
    min-height: auto;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .timeline article {
    padding: 22px;
  }

  .timeline span {
    position: static;
    margin-bottom: 14px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
