/* =========================================================
   M&W Miniature Dachshunds
   Warm refined palette: chocolate, caramel, cream, taupe, rose-gold
   Type: Fraunces (display serif) + Inter (body)
   ========================================================= */

:root {
  /* Brand palette */
  --c-cream: #FAF4EA;
  --c-cream-deep: #F2E8D5;
  --c-paper: #FBF7EF;
  --c-taupe: #E2D6C3;
  --c-taupe-deep: #C9B89E;
  --c-caramel: #B5814D;
  --c-caramel-deep: #8E5A2B;
  --c-chocolate: #4A2A1A;
  --c-chocolate-deep: #2B1810;
  --c-rose: #B97A6A;        /* subtle rose accent */
  --c-rose-soft: #D8A99B;
  --c-gold: #C49A5C;        /* warm gold for tiny accents */

  /* Semantic */
  --c-bg: var(--c-cream);
  --c-surface: var(--c-paper);
  --c-surface-2: #F6EEDD;
  --c-border: #E5D7BE;
  --c-border-strong: #D6C09D;
  --c-text: #2B1810;
  --c-text-muted: #6B4F3A;
  --c-text-faint: #9A856D;

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Scale */
  --text-xs: clamp(0.75rem, 0.72rem + 0.1vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.78rem + 0.18vw, 0.9rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --text-xl: clamp(1.375rem, 1.2rem + 0.7vw, 1.625rem);
  --text-2xl: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  --text-3xl: clamp(2.25rem, 1.6rem + 2.5vw, 3.25rem);
  --text-hero: clamp(2.5rem, 1.6rem + 4vw, 4.25rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radii / shadows */
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(74, 42, 26, 0.06);
  --shadow-sm: 0 4px 14px rgba(74, 42, 26, 0.08);
  --shadow-md: 0 12px 36px rgba(74, 42, 26, 0.12);
  --shadow-lg: 0 24px 60px rgba(74, 42, 26, 0.18);

  /* Layout */
  --container: 1180px;
  --container-narrow: 920px;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: var(--c-caramel-deep); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--c-chocolate); }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--c-chocolate-deep);
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 var(--space-4);
}

p { margin: 0 0 var(--space-4); }

::selection { background: var(--c-caramel); color: var(--c-cream); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-chocolate); color: var(--c-cream);
  padding: var(--space-3) var(--space-4); z-index: 100; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--c-caramel-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 3.5vw, 2.5rem);
}

/* =========================================================
   Brand mark / monogram
   ========================================================= */
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--c-chocolate-deep);
}
.brand:hover { color: var(--c-caramel-deep); }

.brand-mark {
  width: 46px;
  height: 46px;
  flex: none;
  color: var(--c-chocolate);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand:hover .brand-mark { transform: rotate(-4deg); }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-monogram {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--c-chocolate-deep);
}
.brand-monogram .amp {
  font-style: italic;
  font-weight: 400;
  color: var(--c-caramel);
  margin: 0 0.04em;
}
.brand-monogram-lg {
  font-size: clamp(2rem, 1.4rem + 1.4vw, 2.75rem);
}
.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-top: 4px;
}

/* =========================================================
   Header / navigation
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 244, 234, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: var(--shadow-xs);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-4);
}
.nav-primary ul {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}
.nav-primary a {
  font-size: var(--text-sm);
  color: var(--c-text);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 6px 2px;
  position: relative;
}
.nav-primary a::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: 0;
  height: 1px;
  background: var(--c-caramel-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-primary a:hover::after { transform: scaleX(1); }
.nav-primary .nav-cta {
  background: var(--c-chocolate);
  color: var(--c-cream);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav-primary .nav-cta::after { display: none; }
.nav-primary .nav-cta:hover {
  background: var(--c-chocolate-deep);
  color: var(--c-cream);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--c-chocolate);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--c-border);
  background: var(--c-cream);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  padding: var(--space-4) clamp(1.25rem, 3.5vw, 2.5rem);
}
.mobile-nav a {
  display: block;
  padding: var(--space-3) 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--c-chocolate-deep);
  border-bottom: 1px solid var(--c-border);
}
.mobile-nav li:last-child a { border-bottom: none; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--c-chocolate);
  color: var(--c-cream);
}
.btn-primary:hover {
  background: var(--c-chocolate-deep);
  color: var(--c-cream);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--c-chocolate-deep);
  border-color: var(--c-border-strong);
}
.btn-ghost:hover {
  background: var(--c-surface-2);
  border-color: var(--c-caramel);
  color: var(--c-chocolate);
}
.btn-block { width: 100%; }

/* =========================================================
   Eyebrow
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-caramel-deep);
  font-weight: 600;
  margin: 0 0 var(--space-4);
}
.eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--c-caramel);
}
.eyebrow-center {
  justify-content: center;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(196, 154, 92, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 0% 90%, rgba(185, 122, 106, 0.10), transparent 70%),
    var(--c-cream);
  overflow: hidden;
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.29 0 0 0 0 0.16 0 0 0 0 0.10 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy { max-width: 36rem; }
.hero-title {
  font-size: var(--text-hero);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.022em;
  line-height: 1.04;
  margin-bottom: var(--space-6);
}
.hero-title em {
  font-style: italic;
  font-weight: 350;
  color: var(--c-caramel-deep);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.hero-lede {
  font-size: var(--text-lg);
  color: var(--c-text-muted);
  margin-bottom: var(--space-8);
  max-width: 32rem;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--c-border);
}
.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.hero-meta li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-caramel);
  display: inline-block;
}

.hero-figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  max-width: 520px;
  width: 100%;
  justify-self: end;
  align-self: center;
}
.hero-logo-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-cream);
  border: 1px solid rgba(92, 50, 29, 0.12);
  padding: clamp(0.75rem, 2vw, 1.25rem);
}
.hero-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* =========================================================
   Intro strip
   ========================================================= */
.intro-strip {
  background: var(--c-chocolate-deep);
  color: var(--c-cream);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.intro-strip-inner {
  text-align: center;
}
.intro-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  font-weight: 300;
  color: var(--c-cream);
  margin: 0 0 var(--space-2);
  letter-spacing: -0.01em;
}
.intro-attrib {
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-rose-soft);
  margin: 0;
}

/* =========================================================
   Sections
   ========================================================= */
.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}
.page-hero {
  padding-top: calc(clamp(4rem, 9vw, 7.5rem) + 40px);
}
.section-tint {
  background: var(--c-cream-deep);
}
.section-warm {
  background:
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(196, 154, 92, 0.22), transparent 70%),
    var(--c-cream);
}
.section-head {
  max-width: 42rem;
  margin: 0 auto var(--space-16);
  text-align: center;
}
.section-title {
  font-size: var(--text-3xl);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.018em;
  line-height: 1.08;
  margin-bottom: var(--space-5);
}
.section-lede {
  font-size: var(--text-lg);
  color: var(--c-text-muted);
  line-height: 1.6;
  margin: 0;
}
.home-teaser .parent-grid {
  display: none;
}
.home-puppy-showcase {
  margin-bottom: var(--space-10);
}

/* =========================================================
   Available puppies
   ========================================================= */
.puppy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}
.puppy-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.puppy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-border-strong);
}
.puppy-photo {
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, var(--c-cream-deep), var(--c-taupe) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.puppy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.puppy-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(74, 42, 26, 0.06), transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(196, 154, 92, 0.10), transparent 60%);
}
.puppy-photo-empty {
  color: var(--c-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.puppy-illus {
  width: 64%;
  max-width: 200px;
  color: var(--c-chocolate);
  opacity: 0.78;
  position: relative;
}
.puppy-illus-1 { color: var(--c-chocolate); }
.puppy-illus-2 { color: var(--c-caramel-deep); }
.puppy-illus-3 { color: var(--c-rose); }
.puppy-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.puppy-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
}
.puppy-status::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
}
.status-available { background: rgba(67, 122, 34, 0.12); color: #4a7822; }
.status-available::before { background: #6ba63a; }
.status-reserved { background: rgba(185, 122, 106, 0.16); color: #8c4a3a; }
.status-reserved::before { background: var(--c-rose); }
.status-waitlist { background: rgba(196, 154, 92, 0.20); color: var(--c-caramel-deep); }
.status-waitlist::before { background: var(--c-caramel); }

.puppy-card h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-3);
}
.placeholder-tag {
  font-style: italic;
  color: var(--c-text-faint);
  font-weight: 300;
}
.puppy-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  padding: var(--space-3) 0;
  margin: 0 0 var(--space-4);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.puppy-meta-two {
  grid-template-columns: repeat(2, 1fr);
}
.puppy-meta div { text-align: center; }
.puppy-meta dt {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-faint);
  margin-bottom: 2px;
}
.puppy-meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--c-chocolate-deep);
}
.puppy-note {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  margin: 0;
  margin-top: auto;
}

.availability-callout {
  margin-top: var(--space-12);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  align-items: center;
}
.availability-callout h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}
.availability-callout p { color: var(--c-text-muted); margin: 0; }

/* =========================================================
   Upcoming litters
   ========================================================= */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}
.upcoming-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
.upcoming-mark {
  width: 40px;
  height: 40px;
  color: var(--c-caramel-deep);
  margin-bottom: var(--space-5);
}
.upcoming-card h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-3);
}
.upcoming-card p {
  color: var(--c-text-muted);
  font-size: var(--text-base);
  margin: 0;
}

.waitlist-cta {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--c-chocolate-deep);
  color: var(--c-cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.waitlist-cta .eyebrow {
  color: var(--c-rose-soft);
  justify-content: center;
}
.waitlist-cta .eyebrow-rule { background: var(--c-rose-soft); }
.waitlist-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.125rem);
  font-weight: 350;
  color: var(--c-cream);
  margin-bottom: var(--space-3);
}
.waitlist-cta p {
  color: var(--c-taupe);
  margin-bottom: var(--space-6);
}
.waitlist-cta .btn-primary {
  background: var(--c-cream);
  color: var(--c-chocolate-deep);
}
.waitlist-cta .btn-primary:hover {
  background: var(--c-paper);
  color: var(--c-chocolate-deep);
}

/* =========================================================
   Parents
   ========================================================= */
.parent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.parent-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: var(--space-6);
}
.parent-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-cream-deep);
  box-shadow: var(--shadow-md);
}
.parent-card:first-child .parent-photo {
  aspect-ratio: 4 / 3;
}
.parent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.parent-card:hover .parent-photo img { transform: scale(1.04); }
.parent-card:first-child .parent-photo img {
  object-position: 50% 70%;
}
.parent-card-alt .parent-photo img {
  object-position: 50% 40%;
}
.parent-photo-tag {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  background: rgba(43, 24, 16, 0.78);
  color: var(--c-cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.parent-role {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-caramel-deep);
  font-weight: 600;
  margin: 0 0 var(--space-2);
}
.parent-name {
  font-size: clamp(2rem, 1.6rem + 1.4vw, 2.75rem);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-style: italic;
  margin-bottom: var(--space-4);
  color: var(--c-chocolate-deep);
}
.parent-body p {
  color: var(--c-text-muted);
  line-height: 1.7;
}
.parent-traits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.parent-traits li {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  background: var(--c-cream-deep);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  color: var(--c-text);
}
.parent-gallery {
  margin-top: clamp(4rem, 8vw, 7rem);
}
.parent-gallery-heading {
  max-width: 680px;
  margin-bottom: var(--space-8);
}
.parent-gallery-heading h2 {
  font-size: clamp(2.25rem, 1.75rem + 2vw, 4rem);
  font-weight: 340;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-style: italic;
  line-height: 1;
  color: var(--c-chocolate-deep);
  margin: 0 0 var(--space-4);
}
.parent-gallery-heading p:last-child {
  color: var(--c-text-muted);
  line-height: 1.75;
  margin: 0;
}
.parent-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: var(--space-4);
}
.parent-gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-cream-deep);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.parent-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.parent-gallery-item:hover img {
  transform: scale(1.04);
}
.parent-gallery-item-tall {
  grid-row: span 2;
}
.parent-gallery-item-wide {
  grid-column: span 2;
}

/* =========================================================
   Our approach
   ========================================================= */
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.approach-copy .section-title { text-align: left; }
.approach-copy p {
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.approach-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.approach-list li {
  padding: var(--space-6);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  position: relative;
}
.approach-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--c-caramel-deep);
  margin-bottom: var(--space-3);
}
.approach-list h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
}
.approach-list p {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--c-border);
  padding: var(--space-2) 0;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--c-border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--c-chocolate-deep);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-caramel-deep); }
.faq-icon {
  flex: none;
  width: 28px;
  height: 28px;
  border: 1px solid var(--c-border-strong);
  border-radius: 50%;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--c-chocolate);
  border-radius: 1px;
}
.faq-icon::before {
  left: 50%; top: 50%;
  width: 10px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  left: 50%; top: 50%;
  width: 1.5px; height: 10px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-icon {
  background: var(--c-chocolate);
  border-color: var(--c-chocolate);
}
.faq-item[open] .faq-icon::before { background: var(--c-cream); }
.faq-item[open] .faq-icon::after {
  background: var(--c-cream);
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-body {
  padding: 0 0 var(--space-5);
  color: var(--c-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 60ch;
}
.faq-body p { margin: 0; }

/* =========================================================
   Contact
   ========================================================= */
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-copy .section-title { text-align: left; }
.contact-copy p {
  color: var(--c-text-muted);
  margin-bottom: var(--space-8);
}
.contact-list {
  display: grid;
  gap: var(--space-4);
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--c-border);
}
.contact-list li:last-child {
  border-bottom: 1px solid var(--c-border);
}
.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-faint);
}
.contact-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-chocolate-deep);
}
.contact-value.placeholder {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--c-text-faint);
}

.contact-form {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  gap: 6px;
  margin-bottom: var(--space-4);
}
.form-row label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-weight: 600;
}
.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  font-size: var(--text-base);
  width: 100%;
  padding: 12px 14px;
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--c-caramel);
  background: var(--c-paper);
  outline: none;
  box-shadow: 0 0 0 3px rgba(181, 129, 77, 0.18);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-note {
  margin: var(--space-4) 0 0;
  font-size: var(--text-sm);
  color: var(--c-caramel-deep);
  min-height: 1.2em;
  text-align: center;
}
.form-note.is-error { color: #a13544; }
.form-note.is-success { color: #4a7822; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--c-chocolate-deep);
  color: var(--c-taupe);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-10);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.footer-brand .brand-monogram { color: var(--c-cream); }
.footer-brand .brand-monogram .amp { color: var(--c-rose-soft); }
.footer-brand .brand-sub {
  color: var(--c-rose-soft);
  margin-top: 6px;
  margin-bottom: var(--space-5);
}
.footer-tag {
  color: var(--c-taupe);
  max-width: 22rem;
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}
.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-rose-soft);
  margin: 0 0 var(--space-4);
  font-weight: 600;
}
.footer-nav ul { display: grid; gap: var(--space-2); }
.footer-nav a {
  color: var(--c-taupe);
  font-size: var(--text-sm);
}
.footer-nav a:hover { color: var(--c-cream); }
.footer-contact p {
  margin: 0 0 var(--space-2);
  font-size: var(--text-sm);
  color: var(--c-taupe);
}
.footer-contact .placeholder {
  color: var(--c-text-faint);
  font-style: italic;
}

.footer-strip {
  border-top: 1px solid rgba(226, 214, 195, 0.15);
  padding-block: var(--space-5);
  background: rgba(0, 0, 0, 0.2);
}
.footer-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--c-text-faint);
}
.footer-fineprint { margin: 0; max-width: 42ch; }
.footer-strip p { margin: 0; }

/* =========================================================
   Animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .hero-figure {
    margin-inline: auto;
    max-width: 460px;
  }
  .parent-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .parent-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }
  .approach-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .approach-list {
    grid-template-columns: 1fr 1fr;
  }
  .availability-callout {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .parent-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .parent-gallery-item,
  .parent-gallery-item-tall,
  .parent-gallery-item-wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }
  .parent-gallery-item-wide {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 720px) {
  .nav-primary { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
  .mobile-nav[hidden] { display: none !important; }

  .approach-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .brand-text { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .nav-primary .nav-cta { padding: 8px 14px; }
}

@media (max-width: 440px) {
  .hero-meta { gap: var(--space-3); }
  .hero-meta li { font-size: 0.65rem; }
  .puppy-meta { grid-template-columns: 1fr 1fr 1fr; }
  .puppy-meta-two { grid-template-columns: 1fr 1fr; }
}
