:root {
  --bg: #fbf7f3;
  --surface: #ffffff;
  --surface-soft: #f7efe9;
  --surface-alt: #f3ebe4;
  --surface-dark: #241915;
  --text: #241b17;
  --muted: #70615b;
  --accent: #b76a42;
  --accent-dark: #8f4b2c;
  --accent-soft: #efd1c0;
  --accent-glow: rgba(183, 106, 66, 0.18);
  --border: #e8d8ca;
  --success: #3f7d59;
  --shadow: 0 22px 70px rgba(73, 44, 29, 0.12);
  --shadow-soft: 0 10px 30px rgba(73, 44, 29, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(238, 214, 198, 0.55), transparent 28%),
    radial-gradient(circle at top right, rgba(245, 225, 214, 0.45), transparent 24%),
    linear-gradient(180deg, #fffaf8 0%, #f9f3ee 100%);
  line-height: 1.65;
}

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

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

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(36, 25, 21, 0.04);
}

.nav-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(4) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.site-nav a {
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface-alt);
  outline: none;
}

.hero,
.page-hero {
  padding: 5.5rem 0 3.25rem;
}

.hero-grid,
.split,
.contact-grid,
.footer-grid,
.cards-2,
.cards-3,
.stats,
.locations,
.process-grid {
  display: grid;
  gap: 1.35rem;
}

.hero-grid,
.split,
.contact-grid {
  grid-template-columns: 1.4fr 0.95fr;
  align-items: start;
}

.page-hero .split {
  align-items: center;
}

.stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

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

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

.locations {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(243, 235, 228, 0.82) 0%, rgba(247, 239, 233, 0.55) 100%);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 800;
}

.badge-row,
.actions,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge,
.pill-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  background: var(--surface-soft);
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.9rem, 5.2vw, 5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.14rem;
  max-width: 64ch;
  color: #41342f;
}

.muted,
.tiny {
  color: var(--muted);
}

.tiny {
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 30px var(--accent-glow);
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.button.full {
  width: 100%;
}

.card,
.stat,
.quote,
.cta-panel,
.faq-item,
.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.8rem;
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--accent-dark);
}

.checklist,
.content-list,
.footer-links {
  padding-left: 1.1rem;
}

.checklist li,
.content-list li,
.footer-links li {
  margin-bottom: 0.65rem;
}

.section-header {
  margin-bottom: 1.7rem;
  max-width: 72ch;
}

.quote {
  border-left: 6px solid var(--accent-soft);
}

.faq-list,
.faq-accordion {
  display: grid;
  gap: 1rem;
}

.faq-accordion .faq-item {
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-accordion summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.55rem 4.5rem 1.55rem 1.6rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "+";
  position: absolute;
  right: 1.45rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-dark);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.faq-accordion .faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.6rem 1.5rem;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.contact-box p,
.footer-grid p {
  margin: 0 0 0.7rem;
}

.site-footer {
  padding: 2.5rem 0;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--border);
}

.site-footer .brand-logo {
  display: block;
  margin-bottom: 0.8rem;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
  align-items: start;
}

.footer-copyright {
  margin-top: 0.95rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-contact-link,
.contact-inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.footer-contact-link:hover,
.contact-inline-link:hover {
  text-decoration: underline;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 1.2rem 0;
}

.table-like {
  display: grid;
  gap: 0.9rem;
}

.table-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.table-row:last-child {
  border-bottom: 0;
}

.highlight {
  color: var(--accent-dark);
  font-weight: 800;
}

.hero-layout {
  align-items: center;
}

.hero-visual {
  padding: 0;
  overflow: hidden;
}

.media-panel {
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(184, 98, 61, 0.92), rgba(111, 60, 37, 0.9));
  color: #fff;
}

.media-panel .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.media-panel h3,
.media-panel p {
  max-width: 28ch;
}

.center-copy {
  text-align: center;
  margin-inline: auto;
}

.feature-grid,
.package-columns {
  display: grid;
  gap: 1.35rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-card {
  position: relative;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.story-block,
.filter-bar,
.center-cta,
.center-cta-block {
  margin-top: 1.5rem;
}

.filter-bar,
.center-cta,
.state-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-chip,
.state-cloud span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
}

.filter-chip.active {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.puppy-card,
.testimonial-card {
  height: 100%;
}

.testimonial-grid-expanded {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.review-card {
  display: grid;
  gap: 1rem;
}

.review-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.review-top h3 {
  margin-bottom: 0.2rem;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.review-source img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.review-stars {
  margin: 0;
  color: #f4b400;
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.center-cta,
.center-cta-block {
  justify-content: center;
  text-align: center;
}

.center-cta-block {
  padding: 2rem;
}

.home-hero {
  padding-top: 6rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.5rem;
  align-items: center;
}

.home-hero-refined {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.75rem;
}

.home-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.home-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  color: var(--accent-dark);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-side-stack {
  display: grid;
  gap: 1rem;
}

.hero-note-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  background: linear-gradient(180deg, #fff 0%, #fdf6f1 100%);
  box-shadow: var(--shadow-soft);
}

.hero-photo-tall img {
  aspect-ratio: 4 / 5.2;
}

.hero-photo-small img {
  aspect-ratio: 4 / 3.8;
}

.hero-collage {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: end;
}

.hero-welcome-card {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  box-shadow: var(--shadow-soft);
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
}

.hero-photo-main {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.hero-photo-secondary {
  grid-column: 1;
  grid-row: 2;
  margin-top: -2.6rem;
}

.hero-photo-secondary img {
  aspect-ratio: 4 / 4.15;
}

.hero-2026 {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
}

.hero-badge-row {
  margin-bottom: 1rem;
}

.hero-keywords,
.proof-strip,
.mini-proof-grid,
.standout-grid,
.city-grid,
.deliverables-grid,
.timeline,
.comparison-grid {
  display: grid;
  gap: 1rem;
}

.hero-keywords {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.hero-keywords span,
.proof-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-soft);
}

.hero-keywords span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.proof-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.proof-item span,
.mini-proof span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-spotlight {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(247,239,233,0.95) 100%);
}

.hero-photo-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.hero-photo-card figcaption {
  padding: 0.95rem 1rem 1.05rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.mini-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.mini-proof {
  padding: 1rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.mini-proof strong {
  display: block;
  margin-bottom: 0.35rem;
}

.spotlight-callout {
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.5rem;
  align-items: start;
}

.proof-grid {
  align-self: stretch;
}

.elevated-card {
  background: linear-gradient(180deg, #fff 0%, #fdf9f6 100%);
}

.puppy-showcase,
.standout-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.keyword-note {
  margin-top: 1.5rem;
}

.puppy-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

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

.puppy-media {
  margin: 0;
  background: linear-gradient(180deg, rgba(247, 231, 220, 0.9) 0%, rgba(239, 209, 192, 0.75) 100%);
}

.puppy-media img {
  width: 100%;
  aspect-ratio: 4 / 3.9;
  object-fit: cover;
}

.puppy-card-body {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  flex: 1;
}

.puppy-card-body h3 {
  margin-bottom: 0;
}

.puppy-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(63, 125, 89, 0.12);
  color: var(--success);
  font-size: 0.88rem;
  font-weight: 800;
}

.puppy-meta {
  display: grid;
  gap: 0.75rem;
}

.puppy-meta div {
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

.puppy-meta strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--accent-dark);
  font-size: 0.9rem;
}

.puppy-meta span {
  color: var(--muted);
}

.puppy-card-body .button {
  margin-top: auto;
}

.contact-page-grid {
  align-items: start;
}

.contact-form-card {
  padding: 1.75rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.field.full-span {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

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

.city-layout {
  align-items: start;
}

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

.city-card {
  min-height: 100%;
}

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

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-weight: 800;
}

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

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #2d1e18 0%, #8f4b2c 100%);
  box-shadow: 0 28px 80px rgba(73, 44, 29, 0.18);
  color: #fff;
}

.cta-banner .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.cta-banner .button.secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: none;
}

@media (max-width: 980px) {
  .nav-bar,
  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid,
  .cards-2,
  .cards-3,
  .stats,
  .locations,
  .process-grid,
  .feature-grid,
  .package-columns,
  .hero-keywords,
  .proof-strip,
  .mini-proof-grid,
  .standout-grid,
  .city-grid,
  .deliverables-grid,
  .timeline,
  .comparison-grid,
  .story-layout,
  .cta-banner,
  .table-row {
    grid-template-columns: 1fr;
  }

  .nav-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
  }

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

  .brand small {
    font-size: 0.82rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0.85rem;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: var(--surface-soft);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--surface-alt);
  }

  .hero,
  .page-hero {
    padding-top: 3.25rem;
  }

  .hero-shell,
  .hero-collage,
  .hero-media-grid,
  .puppy-gallery,
  .form-grid,
  .testimonial-grid-expanded {
    grid-template-columns: 1fr;
  }

  .hero-welcome-card,
  .hero-photo-main,
  .hero-photo-secondary {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-photo-secondary {
    margin-top: 0;
  }

  .hero-side-stack {
    grid-template-columns: 1fr;
  }
}