:root {
  color-scheme: light;
  --ink: #1d1a18;
  --ink-soft: #5f5852;
  --cream: #f7f3eb;
  --cream-deep: #eee5d7;
  --paper: #fffdf8;
  --gold: #c58a35;
  --gold-light: #f0c77f;
  --gold-dark: #754812;
  --sage: #355c47;
  --sage-soft: #e3eee7;
  --plum: #684b70;
  --plum-soft: #eee5f0;
  --brown-soft: #f1e8dc;
  --line: #d9cebd;
  --line-dark: #3b3531;
  --focus: #1672b8;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow-sm: 0 12px 32px rgba(34, 27, 21, 0.08);
  --shadow-lg: 0 28px 70px rgba(17, 13, 10, 0.2);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: "Public Sans", ui-sans-serif, system-ui, sans-serif; font-size: 16px; line-height: 1.65; text-rendering: optimizeLegibility; }
body.nav-open { overflow: hidden; }
h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; font-weight: 600; letter-spacing: -0.025em; line-height: 1.08; text-wrap: balance; }
p { max-width: 66ch; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold-dark); text-underline-offset: 0.2em; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; border-radius: 4px; }
.wrap { width: min(100% - 40px, 1180px); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: 1rem; z-index: 200; transform: translateY(-180%); background: #fff; color: #111; padding: 0.8rem 1rem; border-radius: 8px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
.kicker, .eyebrow { display: block; font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 0.72rem; line-height: 1.4; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dark); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; overflow: hidden; isolation: isolate; background: rgba(247, 243, 235, 0.96); border-bottom: 1px solid rgba(117, 72, 18, 0.18); backdrop-filter: blur(14px); }
.site-header::before { content: ""; position: absolute; z-index: 0; inset: -90% -28%; background: radial-gradient(ellipse 20% 65% at 15% 50%, rgba(240, 199, 127, 0.34), transparent 72%), radial-gradient(ellipse 18% 70% at 52% 40%, rgba(255, 248, 224, 0.76), transparent 70%), radial-gradient(ellipse 22% 68% at 86% 55%, rgba(218, 165, 91, 0.22), transparent 72%); opacity: 0.78; transform: translate3d(-7%, 0, 0); pointer-events: none; will-change: transform, opacity; animation: header-golden-drift 16s ease-in-out infinite; }
.site-header .wrap { position: relative; z-index: 1; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

@keyframes header-golden-drift {
  0%, 100% { transform: translate3d(-7%, 0, 0); opacity: 0.68; }
  50% { transform: translate3d(7%, 0, 0); opacity: 0.9; }
}
.brand { display: inline-flex; align-items: center; gap: 0.8rem; color: var(--ink); text-decoration: none; flex: none; }
.brand img { width: 54px; height: 54px; border-radius: 15px; border: 1px solid rgba(117, 72, 18, 0.35); box-shadow: 0 6px 18px rgba(29, 26, 24, 0.12); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Fraunces", Georgia, serif; font-size: 1.22rem; letter-spacing: 0.02em; }
.brand-copy small { margin-top: 0.3rem; font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 0.59rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-soft); }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.8rem); }
.nav > a { min-height: 44px; display: inline-flex; align-items: center; color: #403a35; text-decoration: none; font-size: 0.88rem; font-weight: 600; }
.nav > a:not(.btn):hover, .nav > a:not(.btn)[aria-current="page"] { color: var(--gold-dark); }
.nav > a:not(.btn)[aria-current="page"] { box-shadow: inset 0 -2px var(--gold); }
.nav-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 0; border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; }
.nav-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; border-radius: 2px; background: currentColor; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 0.75rem 1.35rem; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 700; line-height: 1.2; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-light); color: #261a0b; box-shadow: 0 12px 26px rgba(197, 138, 53, 0.22); }
.btn-primary:hover { background: #f7d89f; box-shadow: 0 16px 32px rgba(197, 138, 53, 0.28); }
.btn-outline { border-color: #756a60; color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); background: rgba(255, 255, 255, 0.55); }
.btn-ghost { border-color: #e9c98f; color: #fff8ec; background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); }
.nav > .btn-nav { min-height: 44px; padding: 0.62rem 1.08rem; background: var(--ink); color: #fff; }
.btn-nav:hover { background: #34302d; }
.btn-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--gold-dark); font-weight: 700; text-decoration-thickness: 1px; }
.text-link.light { color: #f4cf90; }

/* Home hero */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #f9f4eb; padding: clamp(4rem, 8vw, 7.2rem) 0 clamp(4.5rem, 8vw, 7rem); }
.hero::before { content: ""; position: absolute; width: 440px; height: 440px; left: -210px; top: -190px; border: 1px solid rgba(240, 199, 127, 0.18); border-radius: 50%; box-shadow: 0 0 0 48px rgba(240, 199, 127, 0.025), 0 0 0 100px rgba(240, 199, 127, 0.018); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr); align-items: center; gap: clamp(3rem, 8vw, 7.5rem); }
.hero-copy { position: relative; z-index: 2; }
.hero .eyebrow { display: flex; align-items: center; gap: 0.75rem; color: #efcc91; margin-bottom: 1.35rem; }
.hero .eyebrow span { width: 2.1rem; height: 1px; background: currentColor; }
.hero h1 { max-width: 10.5ch; color: #fffaf2; font-size: clamp(3rem, 6vw, 5.5rem); }
.hero .lede { max-width: 51ch; margin-top: 1.4rem; color: #d8d0c5; font-size: clamp(1.04rem, 1.5vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 0.75rem 1.35rem; padding: 0; margin: 2.2rem 0 0; list-style: none; color: #bdb4a8; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; }
.hero-assurances li::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 0.6rem; border-radius: 50%; background: var(--gold-light); vertical-align: 0.1em; }
.hero-visual { position: relative; min-height: 500px; }
.hero-photo { position: absolute; inset: 0 0 0 2rem; overflow: hidden; border-radius: 46% 46% 24px 24px; box-shadow: var(--shadow-lg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo figcaption { position: absolute; right: 1.2rem; bottom: 1.2rem; display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.65rem 0.9rem; border-radius: 999px; background: rgba(255, 253, 248, 0.94); color: var(--ink); font-size: 0.78rem; font-weight: 700; box-shadow: var(--shadow-sm); }
.availability-dot { width: 8px; height: 8px; border-radius: 50%; background: #2f7448; box-shadow: 0 0 0 4px rgba(47, 116, 72, 0.13); }
.hero-inset { position: absolute; left: -1.2rem; bottom: -2.1rem; width: 39%; aspect-ratio: 1; overflow: hidden; border: 8px solid var(--ink); border-radius: 50%; box-shadow: var(--shadow-lg); }
.hero-inset img { width: 100%; height: 100%; object-fit: cover; }
.hero-seal { position: absolute; top: -1.5rem; right: -1.1rem; width: 94px; height: 94px; display: grid; place-content: center; text-align: center; border-radius: 50%; border: 1px solid #ddae61; background: #f0c77f; color: #2b1e0c; transform: rotate(8deg); box-shadow: var(--shadow-sm); }
.hero-seal strong { font-family: "Fraunces", Georgia, serif; font-size: 1.05rem; line-height: 1; }
.hero-seal span { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

/* Home content */
.trust-bar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-width: 0; display: flex; align-items: center; gap: 0.85rem; padding: 1.45rem 1.2rem; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid > div > span { color: var(--gold-dark); font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; }
.trust-grid p { color: var(--ink-soft); font-size: 0.8rem; line-height: 1.4; }
.trust-grid strong { display: block; color: var(--ink); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-head { max-width: 700px; margin-bottom: 2.5rem; }
.section-head .kicker { margin-bottom: 0.75rem; }
.section-head h2 { font-size: clamp(2.3rem, 4vw, 3.8rem); }
.section-head-wide { max-width: none; display: grid; grid-template-columns: 1.15fr 0.75fr; align-items: end; gap: 3rem; margin-bottom: 3.2rem; }
.section-head-wide p { color: var(--ink-soft); }
.puppies-section { background: var(--cream); }
.puppy-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
.puppy-card { position: relative; display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink); text-decoration: none; box-shadow: 0 1px 0 rgba(255,255,255,0.8); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.puppy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.puppy-card .thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-deep); }
.puppy-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.puppy-card:hover .thumb img { transform: scale(1.035); }
.puppy-card .thumb .badge { position: absolute; left: 1rem; top: 1rem; }
.puppy-card .body { display: flex; min-height: 220px; flex-direction: column; padding: 1.25rem 1.3rem 1.35rem; }
.card-title { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.card-title h3 { font-size: 1.65rem; }
.card-title > span { font-family: "IBM Plex Mono", monospace; font-size: 0.85rem; font-weight: 600; }
.puppy-card .meta { margin-top: 0.5rem; color: var(--ink-soft); font-size: 0.8rem; }
.puppy-card .personality { margin-top: 0.7rem; color: #3e3833; font-family: "Fraunces", Georgia, serif; font-size: 1rem; font-style: italic; }
.card-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1.15rem; border-top: 1px solid var(--line); color: var(--gold-dark); font-size: 0.82rem; font-weight: 700; }
.badge { display: inline-flex; align-items: center; gap: 0.42rem; width: fit-content; padding: 0.38rem 0.65rem; border-radius: 999px; background: #fff; font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; box-shadow: 0 5px 18px rgba(29, 26, 24, 0.12); }
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.available { background: var(--sage-soft); color: #244b36; }
.badge.reserved { background: var(--brown-soft); color: #62411f; }
.badge.pending { background: var(--plum-soft); color: #5b3c62; }
.badge.sold { background: #e9e6e3; color: #4b4642; }
.listing-note { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 2rem; padding: 1.3rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255, 253, 248, 0.6); }
.listing-note p { color: var(--ink-soft); font-size: 0.88rem; }
.listing-note strong { color: var(--ink); }
.values-section { padding-top: 0; }
.values-panel { position: relative; overflow: hidden; padding: clamp(2.2rem, 5vw, 4.5rem); border-radius: var(--radius-lg); background: var(--ink); color: #f7f1e7; }
.values-panel::after { content: ""; position: absolute; width: 300px; height: 300px; right: -120px; top: -140px; border: 1px solid rgba(240, 199, 127, 0.2); border-radius: 50%; }
.values-intro { max-width: 580px; }
.values-intro .kicker { color: #e5bd79; }
.values-intro h2 { margin-top: 0.7rem; font-size: clamp(2.3rem, 4vw, 3.7rem); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.6rem; margin: 3rem 0; }
.values-grid > div { padding-top: 1rem; border-top: 1px solid var(--line-dark); }
.values-grid > div > span { color: #e5bd79; font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; }
.values-grid h3 { margin-top: 1.2rem; font-size: 1.25rem; }
.values-grid p { margin-top: 0.65rem; color: #c9c0b5; font-size: 0.9rem; }
.final-cta { text-align: center; background: var(--paper); border-top: 1px solid var(--line); }
.final-cta .wrap { display: grid; justify-items: center; }
.final-cta h2 { max-width: 14ch; margin: 0.75rem 0 1.7rem; font-size: clamp(2.5rem, 5vw, 4.2rem); }

/* Interior page hero */
.page-hero { position: relative; overflow: hidden; padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: var(--ink); color: #fff8ed; }
.page-hero::after { content: ""; position: absolute; width: 420px; height: 420px; right: -170px; top: -210px; border: 1px solid rgba(240, 199, 127, 0.18); border-radius: 50%; box-shadow: 0 0 0 62px rgba(240,199,127,0.025); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .kicker { color: #e8c17e; margin-bottom: 1rem; }
.page-hero h1 { max-width: 13ch; font-size: clamp(3.1rem, 7vw, 5.7rem); }
.page-hero p { max-width: 57ch; margin-top: 1.25rem; color: #d3cbc1; font-size: 1.08rem; }

/* Puppy profile */
.puppy-page { padding-top: 2.4rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 2rem; color: var(--ink-soft); font-size: 0.82rem; }
.breadcrumb a { color: var(--gold-dark); }
.puppy-detail { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr); gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.gallery { min-width: 0; }
.gallery-main { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border-radius: var(--radius); background: var(--cream-deep); box-shadow: var(--shadow-sm); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main video { width: 100%; height: 100%; object-fit: contain; background: #11100f; }
.gallery-main.video-active .gallery-count { top: 1rem; bottom: auto; }
.gallery-count { position: absolute; right: 1rem; bottom: 1rem; min-width: 60px; padding: 0.45rem 0.65rem; border-radius: 999px; background: rgba(29, 26, 24, 0.85); color: white; text-align: center; font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; }
.gallery-controls { display: flex; gap: 0.35rem; margin-top: 0.9rem; padding: 0.25rem 0.15rem 0.75rem; overflow-x: auto; scrollbar-width: thin; }
.gallery-controls button { position: relative; flex: 0 0 54px; width: 54px; height: 54px; padding: 0; border: 0; border-radius: 17px; background: transparent; color: var(--ink-soft); cursor: pointer; }
.gallery-paw { width: 52px; height: 52px; overflow: visible; filter: drop-shadow(0 5px 7px rgba(45, 33, 24, 0.08)); }
.gallery-paw .paw-toe, .gallery-paw .paw-pad { fill: var(--paper); stroke: var(--line); stroke-width: 1.2; transition: fill 0.18s ease, stroke 0.18s ease, transform 0.18s ease; }
.gallery-controls button:hover .paw-toe, .gallery-controls button:hover .paw-pad { fill: #f8e2ba; stroke: var(--gold); }
.gallery-controls button:hover .paw-toe { transform: translateY(-1px); }
.gallery-controls button[aria-pressed="true"] { color: #fff; }
.gallery-controls button[aria-pressed="true"] .paw-toe, .gallery-controls button[aria-pressed="true"] .paw-pad { fill: var(--ink); stroke: var(--ink); }
.gallery-paw-number { position: absolute; left: 50%; top: 31px; transform: translate(-50%, -50%); font-family: "IBM Plex Mono", monospace; font-size: 0.57rem; font-weight: 600; line-height: 1; pointer-events: none; }
.gallery-controls .gallery-video-button { flex-basis: 88px; width: 88px; display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; margin-right: 0.25rem; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--ink); font-size: 0.7rem; font-weight: 700; }
.gallery-controls .gallery-video-button:hover { border-color: var(--gold); background: #f8e2ba; }
.gallery-controls .gallery-video-button[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.video-play { width: 24px; height: 24px; display: grid; place-items: center; padding-left: 2px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 0.58rem; }
.gallery-video-button[aria-pressed="true"] .video-play { background: var(--gold-light); color: var(--ink); }
.puppy-info { position: sticky; top: 112px; }
.puppy-title-row { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.puppy-title-row .badge { box-shadow: none; }
.puppy-info h1 { font-size: clamp(3rem, 5vw, 4.7rem); }
.personality-lede { margin-top: 0.35rem; color: var(--gold-dark); font-family: "Fraunces", Georgia, serif; font-size: 1.25rem; font-style: italic; }
.profile-copy { margin-top: 1.2rem; color: var(--ink-soft); }
.puppy-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 2rem 0 0; border-top: 1px solid var(--line); }
.puppy-facts > div { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
.puppy-facts > div:nth-child(odd) { padding-right: 1rem; }
.puppy-facts dt { color: var(--ink-soft); font-family: "IBM Plex Mono", monospace; font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; }
.puppy-facts dd { margin-top: 0.2rem; font-size: 0.88rem; font-weight: 600; }
.price-panel { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin: 1.5rem 0 1rem; }
.price-panel span { color: var(--ink-soft); font-size: 0.78rem; }
.price-panel strong { font-family: "Fraunces", Georgia, serif; font-size: 2rem; font-weight: 600; }
.fine-print { margin-top: 0.9rem; color: var(--ink-soft); font-size: 0.76rem; }
.status-note { margin-top: 1.2rem; padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); }
.status-note p { margin-bottom: 0.45rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 0.9fr 0.7fr; gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.about-copy h2, .parent-panel h2 { margin-top: 0.7rem; font-size: clamp(2.4rem, 4vw, 3.8rem); }
.about-copy p { margin-top: 1.15rem; color: var(--ink-soft); }
.quote-card { padding: clamp(2rem, 4vw, 3.5rem); border-radius: var(--radius-lg); background: #dfc69f; color: #2b2118; transform: rotate(1deg); }
.quote-card p { font-family: "Fraunces", Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.25; }
.quote-card span { display: block; margin-top: 1.5rem; font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; letter-spacing: 0.09em; text-transform: uppercase; }
.parent-panel { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-top: 5rem; padding: clamp(2rem, 4vw, 3.5rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }
.parent-panel p { max-width: 58ch; margin-top: 1rem; color: var(--ink-soft); }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 2rem; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.principles-grid > div { padding: 1.6rem; background: var(--cream); }
.principles-grid > div > span { color: var(--gold-dark); font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; }
.principles-grid h3 { margin-top: 1.1rem; font-size: 1.2rem; }
.principles-grid p { margin-top: 0.45rem; color: var(--ink-soft); font-size: 0.86rem; }

/* Process */
.process-grid { display: grid; grid-template-columns: 1fr 0.75fr; gap: 1.4rem; margin-bottom: 5rem; }
.feature-card, .pricing-card { padding: clamp(2rem, 4vw, 3.3rem); border-radius: var(--radius-lg); }
.feature-card { background: var(--paper); border: 1px solid var(--line); }
.feature-card h2 { margin-top: 0.65rem; font-size: clamp(2.2rem, 4vw, 3.2rem); }
.included-list { display: grid; gap: 0; padding: 0; margin: 2rem 0 0; list-style: none; }
.included-list li { padding: 0.75rem 0 0.75rem 1.8rem; border-bottom: 1px solid var(--line); position: relative; }
.included-list li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 800; }
.puppy-pack { display: grid; grid-template-columns: 82px 1fr; align-items: center; gap: 1.15rem; margin-top: 1.5rem; padding: 1.2rem; border: 1px solid #d5b77f; border-radius: var(--radius); background: linear-gradient(135deg, #f5e6ca, #fcf6e9); }
.puppy-pack-label { width: 82px; aspect-ratio: 1; display: grid; place-content: center; border: 1px solid #9c6a27; border-radius: 50%; color: #5d3910; text-align: center; transform: rotate(-4deg); box-shadow: inset 0 0 0 5px rgba(197, 138, 53, 0.1); }
.puppy-pack-label span, .puppy-pack-label strong { display: block; font-family: "IBM Plex Mono", monospace; line-height: 1; text-transform: uppercase; }
.puppy-pack-label span { font-size: 0.52rem; letter-spacing: 0.13em; }
.puppy-pack-label strong { margin-top: 0.25rem; font-size: 0.78rem; letter-spacing: 0.08em; }
.puppy-pack .kicker { color: var(--gold-dark); font-size: 0.6rem; }
.puppy-pack h3 { margin-top: 0.25rem; font-size: 1.35rem; }
.puppy-pack p { margin-top: 0.35rem; color: var(--ink-soft); font-size: 0.82rem; line-height: 1.55; }
.pricing-card { background: var(--ink); color: white; }
.pricing-card .kicker { color: #e8c17e; }
.large-price { margin-top: 1.2rem; font-family: "Fraunces", Georgia, serif; font-size: clamp(3.5rem, 7vw, 5.2rem); line-height: 1; }
.pricing-card > p:nth-of-type(2) { margin-top: 0.4rem; color: #cfc5ba; }
.pricing-card dl { margin-top: 2rem; border-top: 1px solid var(--line-dark); }
.pricing-card dl > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line-dark); }
.pricing-card dt { color: #bbb1a6; font-size: 0.82rem; }
.pricing-card dd { font-weight: 700; }
.pricing-card .fine-print { color: #bdb3a8; }
.steps { padding: 0; margin: 2rem 0 5rem; list-style: none; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 90px 1fr; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--gold-dark); font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; }
.steps h3 { font-size: 1.55rem; }
.steps p { margin-top: 0.45rem; color: var(--ink-soft); }
.disclosure-panel { display: grid; grid-template-columns: 0.8fr 1fr; gap: 3rem; padding: clamp(2rem, 4vw, 3.5rem); border-radius: var(--radius-lg); background: #dfc69f; color: #2b2118; }
.disclosure-panel h2 { margin-top: 0.6rem; font-size: clamp(2rem, 3.5vw, 3rem); }
.disclosure-panel > p { align-self: end; }

/* FAQ */
.faq-section .wrap { max-width: 900px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; color: var(--ink); cursor: pointer; font-family: "Fraunces", Georgia, serif; font-size: 1.25rem; font-weight: 600; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: "Public Sans", sans-serif; font-weight: 400; transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 4.5rem 1.5rem 0; color: var(--ink-soft); }
.faq-contact { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 2rem; }
.faq-contact p { font-family: "Fraunces", Georgia, serif; font-size: 1.4rem; }

/* Contact and waitlist */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.75fr; gap: 1.5rem; }
.contact-card { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(2.2rem, 5vw, 4.5rem); border-radius: var(--radius-lg); background: var(--ink); color: white; }
.contact-card .kicker { color: #e8c17e; }
.contact-card h2 { max-width: 12ch; margin-top: 0.8rem; font-size: clamp(2.5rem, 5vw, 4rem); }
.contact-card p { margin: 1.2rem 0 2rem; color: #d1c8be; }
.contact-card .social-contact-note { margin: 1rem 0 0; font-size: 0.86rem; }
.contact-card .social-contact-note a { color: #f4cf90; }
.contact-details { display: grid; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); overflow: hidden; }
.contact-details > div { padding: 1.65rem 1.8rem; border-bottom: 1px solid var(--line); }
.contact-details > div:last-child { border-bottom: 0; }
.contact-details > div > span { color: var(--gold-dark); font-family: "IBM Plex Mono", monospace; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-details h2 { margin-top: 0.6rem; font-size: 1.55rem; }
.contact-details p, .contact-details li { color: var(--ink-soft); font-size: 0.86rem; }
.contact-details p { margin-top: 0.35rem; }
.contact-details ul { padding-left: 1.15rem; margin: 0.75rem 0 0; }
.waitlist-panel { display: flex; align-items: center; justify-content: space-between; gap: 3rem; padding: clamp(2.2rem, 5vw, 4.5rem); border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); }
.waitlist-panel h2 { margin-top: 0.7rem; font-size: clamp(2.4rem, 4vw, 3.6rem); }
.waitlist-panel p { margin-top: 1rem; color: var(--ink-soft); }

/* Footer */
.site-footer { position: relative; margin-top: 8.2rem; padding: 5rem 0 2rem; background: var(--ink); color: #c9c0b6; border-top: 1px solid rgba(240, 199, 127, 0.28); }
.footer-scene { position: absolute; z-index: 2; inset: 0 0 auto; height: 0; pointer-events: none; }
.footer-grass { position: absolute; z-index: 1; left: 0; right: 0; top: -31px; height: 34px; opacity: 0.82; background: url("/images/footer-grass.svg") repeat-x center bottom / 170px 34px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.footer-logo-puppy { position: absolute; z-index: 2; left: 50%; top: 0; width: 270px; max-width: none; transform: translate(-50%, -76%); filter: drop-shadow(0 13px 14px rgba(29, 26, 24, 0.2)); }
.footer-scene::after { content: ""; position: absolute; z-index: 1; left: 50%; top: -5px; width: 190px; height: 20px; border-radius: 50%; background: rgba(11, 18, 10, 0.36); filter: blur(7px); transform: translateX(-50%); }

.footer-main { display: grid; grid-template-columns: 1.7fr 0.7fr 0.9fr; gap: 3rem; }
.footer-wordmark { display: flex; align-items: center; gap: 0.85rem; color: white; }
.footer-wordmark img { width: 58px; height: 58px; border-radius: 16px; border: 1px solid #80663f; }
.footer-wordmark span { display: grid; line-height: 1; }
.footer-wordmark strong { font-family: "Fraunces", Georgia, serif; font-size: 1.35rem; }
.footer-wordmark small { margin-top: 0.35rem; font-family: "IBM Plex Mono", monospace; font-size: 0.58rem; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-brand p { max-width: 38ch; margin-top: 1rem; font-size: 0.86rem; }
.foot-links { display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
.foot-links h2 { margin-bottom: 0.45rem; color: white; font-family: "IBM Plex Mono", monospace; font-size: 0.67rem; letter-spacing: 0.12em; text-transform: uppercase; }
.foot-links a { min-height: 32px; color: #d1c8be; text-decoration: none; font-size: 0.84rem; }
.foot-links a:hover { color: #f0c77f; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line-dark); font-size: 0.72rem; }

@media (max-width: 980px) {
  .nav { gap: 0.8rem; }
  .nav > a { font-size: 0.8rem; }
  .hero-grid { grid-template-columns: 1fr 0.9fr; gap: 3rem; }
  .hero-visual { min-height: 430px; }
  .puppy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(3) { padding-left: 0; }
  .puppy-detail { grid-template-columns: 1fr; }
  .puppy-info { position: static; }
}

@media (max-width: 820px) {
  .site-header::before { inset-inline: -60%; opacity: 0.68; }
  .site-header .wrap { min-height: 74px; }
  .brand img { width: 48px; height: 48px; border-radius: 13px; }
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: 74px 0 auto; max-height: calc(100vh - 74px); display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 1rem 20px 1.5rem; overflow-y: auto; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(29,26,24,0.14); }
  .nav.open { display: flex; }
  .nav > a { min-height: 52px; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
  .nav > a:not(.btn)[aria-current="page"] { box-shadow: none; color: var(--gold-dark); }
  .nav .btn-nav { margin-top: 1rem; border-bottom: 0; color: white; }
  .hero { padding-top: 4rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 12ch; }
  .hero-visual { width: min(100%, 580px); min-height: 500px; margin: 1rem auto 0; }
  .hero-photo { left: 1.5rem; }
  .section-head-wide, .about-grid, .process-grid, .disclosure-panel, .contact-grid { grid-template-columns: 1fr; }
  .section-head-wide { align-items: start; gap: 1.2rem; }
  .values-grid { grid-template-columns: 1fr; gap: 1.7rem; }
  .parent-panel, .waitlist-panel { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1.3fr 0.7fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .wrap { width: min(100% - 32px, 1180px); }
  .brand-copy strong { font-size: 1.05rem; }
  .brand-copy small { font-size: 0.53rem; }
  .hero { padding: 3.5rem 0 4.5rem; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 390px; margin-top: 0.5rem; }
  .hero-photo { inset: 0 0 0 1rem; border-radius: 42% 42% 20px 20px; }
  .hero-inset { left: -0.4rem; bottom: -1.2rem; border-width: 6px; }
  .hero-seal { width: 78px; height: 78px; right: -0.3rem; top: -0.9rem; }
  .hero-seal strong { font-size: 0.9rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { padding: 1rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(3) { padding-left: 0; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding: 4.3rem 0; }
  .page-hero { padding: 4.2rem 0 4.5rem; }
  .page-hero h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .puppy-grid, .principles-grid { grid-template-columns: 1fr; }
  .puppy-card .body { min-height: 205px; }
  .listing-note { align-items: flex-start; flex-direction: column; }
  .values-panel { width: calc(100% - 20px); padding: 2rem 1.25rem; }
  .puppy-page { padding-top: 1.4rem; }
  .puppy-detail { gap: 2.3rem; }
  .gallery-main { border-radius: 14px; }
  .puppy-facts { grid-template-columns: 1fr; }
  .puppy-facts > div:nth-child(odd) { padding-right: 0; }
  .puppy-pack { grid-template-columns: 68px 1fr; padding: 1rem; }
  .puppy-pack-label { width: 68px; }
  .quote-card { transform: none; }
  .parent-panel { margin-top: 3.5rem; }
  .steps li { grid-template-columns: 52px 1fr; gap: 0.7rem; }
  .faq-item summary { font-size: 1.08rem; }
  .faq-item p { padding-right: 0.5rem; }
  .faq-contact, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .contact-card .btn { width: 100%; overflow-wrap: anywhere; }
  .site-footer { margin-top: 6.6rem; padding-top: 4.3rem; }
  .footer-logo-puppy { width: 220px; transform: translate(-50%, -74%); }
  .footer-grass { top: -22px; height: 25px; opacity: 0.72; }
  .footer-scene::after { width: 150px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; }
}

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

@media (forced-colors: active) {
  .availability-dot, .badge::before { border: 1px solid CanvasText; }
  .btn, .gallery-controls button { border: 1px solid ButtonText; }
  .gallery-paw .paw-toe, .gallery-paw .paw-pad { fill: Canvas; stroke: CanvasText; }
  .gallery-controls button[aria-pressed="true"] .paw-toe, .gallery-controls button[aria-pressed="true"] .paw-pad { fill: Highlight; stroke: Highlight; }
}
