:root {
  --bg: #f3ece3;
  --bg-warm: #e9dfd2;
  --paper: #fffaf4;
  --ink: #16120e;
  --ink-soft: #3a322b;
  --muted: #746b62;
  --line: rgba(22, 18, 14, 0.1);
  --line-strong: rgba(22, 18, 14, 0.16);
  --accent: #c24b2a;
  --accent-deep: #9d3a20;
  --gold: #c6a15b;
  --gold-soft: #e8d5a3;
  --forest: #2c4a3c;
  --forest-2: #3e6350;
  --night: #12100e;
  --night-2: #1c1915;
  --cream: #f7f1e8;
  --white: #fffdf9;
  --ok: #2f6b4f;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px rgba(22, 18, 14, 0.12);
  --shadow-soft: 0 10px 30px rgba(22, 18, 14, 0.08);
  --header: 84px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Instrument Serif", Georgia, serif;
  --max: 1200px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1100px 720px at 8% -8%, rgba(232, 213, 163, 0.34), transparent 52%),
    radial-gradient(900px 640px at 108% 12%, rgba(194, 75, 42, 0.08), transparent 48%),
    var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
#site-header,
#main,
#site-footer {
  position: relative;
  z-index: 1;
}

::selection { background: #e8d5a3; color: #16120e; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

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

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

button, input, select, textarea { font: inherit; }

.skip {
  position: absolute;
  left: 12px;
  top: -80px;
  background: var(--accent);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 100;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.wrap-wide {
  width: min(calc(100% - 40px), 1320px);
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.kicker::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  animation: kicker-pulse 3.2s ease-in-out infinite;
}

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}
h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
}

h1 { font-size: clamp(42px, 7vw, 88px); }
h2 { font-size: clamp(32px, 5vw, 58px); }
h3 { font-size: clamp(22px, 3vw, 32px); }

.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  max-width: 58ch;
}

.header {
  position: relative;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(18px);
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
}
.header-inner {
  width: min(calc(100% - 32px), 1320px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.license-country-card {
  margin-top: 22px;
  padding: 18px 18px 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.license-country-card h3 { margin: 0 0 12px; }
.review-geo-toggle {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.text-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--accent);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
  border-radius: 14px;
  object-fit: cover;
  background: #f3ead8;
  box-shadow: 0 0 0 1px var(--line);
  transform-origin: center;
  animation: logo-breathe 4.8s ease-in-out infinite;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-text strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.logo-text span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.nav a:hover,
.nav a.active {
  background: var(--white);
  color: var(--ink);
}

.header-cta { display: flex; align-items: center; gap: 10px; }

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  border-radius: 14px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  transition: transform .2s, background .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 24px rgba(194, 75, 42, 0.28);
  animation: btn-breathe 3.8s ease-in-out infinite;
}
.btn-primary:hover { background: var(--accent-deep); }
.btn-dark {
  background: var(--night);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-light {
  background: var(--white);
  color: var(--ink);
}
.btn-gold {
  background: var(--gold);
  color: var(--night);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: var(--night);
  color: var(--cream);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 30%;
  transform: scale(1.06);
  animation: ken 32s ease-in-out infinite alternate;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,16,14,.15) 0%, rgba(18,16,14,.28) 40%, rgba(18,16,14,.82) 100%),
    linear-gradient(90deg, rgba(18,16,14,.55), transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
  width: min(calc(100% - 40px), 1320px);
  margin-inline: auto;
}
.hero-copy h1 { max-width: 14ch; }
.hero-copy .lede { color: #d9d0c4; margin: 22px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(247,241,232,.18);
}
.hero-meta b {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}
.hero-meta span { color: #b8aea2; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }

.trust {
  background: var(--night-2);
  color: #cfc6ba;
  padding: 22px 0;
}
.trust-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trust-row b { color: var(--gold); font-weight: 600; }

.section { padding: 92px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}
.section-head p { margin: 12px 0 0; color: var(--muted); max-width: 46ch; }

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8cbb8;
}
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,253,249,.22) 48%, transparent 64%);
  transform: translateX(-130%);
}
.card-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transition: transform .6s ease;
}
.card:hover .card-media img { transform: scale(1.07); }
.card:hover .card-media::after { animation: sheen 1.05s ease; }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--forest);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
}
.badge-age {
  left: auto;
  right: 14px;
  background: var(--white);
  color: var(--ink);
}
.badge-reserved { background: #5c5348; }
.card-reserved .card-media img { filter: saturate(.85); }
.video-pill {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  background: rgba(18, 16, 14, .82);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 7px 10px;
  border-radius: 999px;
}
.pup-bar a.is-reserved span { opacity: .7; }
.card-price {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  margin: 6px 0 8px;
  color: var(--accent);
}
.price-pill {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}
.card-body { padding: 18px 18px 20px; }
.card-body h3 { margin-bottom: 6px; }
.card-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: transform .3s ease, letter-spacing .3s ease;
}
.card:hover .card-cta { transform: translateX(4px); }
.home-more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.home-grid-live {
  transition: opacity .22s ease, transform .22s ease;
}
.home-grid-live.is-swapping {
  opacity: 0;
  transform: translateY(8px);
}
.pup-bar {
  position: relative;
  border-top: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pup-bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--bg));
}
.pup-bar-inner {
  width: min(calc(100% - 24px), 1320px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 56px 12px 0;
}
.pup-bar a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.pup-bar a span { color: var(--accent); font-weight: 700; }
.pup-bar a.active,
.pup-bar a:hover {
  background: var(--night);
  color: var(--cream);
  border-color: var(--night);
}
.pup-bar a.active span,
.pup-bar a:hover span { color: var(--gold); }
.pup-bar-all { background: var(--forest) !important; color: white !important; border-color: var(--forest) !important; }
.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 28px;
}
.pager span { color: var(--muted); font-weight: 600; font-size: 14px; }
.result-count { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.meta { color: var(--muted); font-size: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.meta span::after { content: "·"; margin-left: 8px; color: #c2b8ac; }
.meta span:last-child::after { content: none; }

.feature-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.feature-photo {
  border-radius: 32px;
  overflow: hidden;
  min-height: 520px;
  position: relative;
}
.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  position: absolute;
  inset: 0;
  animation: ken-soft 26s ease-in-out infinite alternate;
}
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.stat b { display: block; font-family: var(--display); font-size: 30px; }
.stat span { color: var(--muted); font-size: 13px; }

.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #f3e4d4;
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.why-card p { color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step {
  background: var(--night);
  color: var(--cream);
  border-radius: 24px;
  padding: 28px 24px;
  min-height: 240px;
}
.step:nth-child(2) { background: var(--forest); }
.step:nth-child(3) { background: var(--accent); color: white; }
.step:nth-child(4) { background: #3a2a22; }
.step em {
  font-family: var(--display);
  font-style: italic;
  font-size: 42px;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.step p { color: #d9d0c4; margin: 10px 0 0; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.quote:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.quote p {
  font-family: var(--display);
  font-style: italic;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.quote p { margin: 0 0 18px; }
.quote b { display: block; }
.quote span { color: var(--muted); font-size: 14px; }

.review-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 28px;
}
.review-stats .stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px;
}
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.review-card-top .stars { margin: 0; }
.review-kind {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
}
.review-card h3 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
}
.review-card p {
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.review-by { margin-top: 8px; }
.review-by b { display: block; }
.review-by span { color: var(--muted); font-size: 14px; }

.cta-band {
  margin: 0 20px 80px;
  border-radius: 36px;
  overflow: hidden;
  background: var(--night);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 360px;
}
.cta-band > div:first-child { padding: 56px; }
.cta-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  animation: ken-soft 24s ease-in-out infinite alternate;
}
.cta-band .lede { color: #cfc6ba; }

.page-hero { padding: 36px 0 10px; }
.crumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--accent); }

.puppy-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 40px;
}
.gallery-main {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #d8cbb8;
}
.gallery-main img,
.gallery-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}
.gallery-main video { background: #12100e; object-fit: contain; object-position: center; }
.thumb-play {
  position: absolute;
  inset: auto 8px 8px auto;
  background: rgba(18, 16, 14, .8);
  color: #fff;
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 999px;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.thumbs button {
  position: relative;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  aspect-ratio: 1;
}
.thumbs button.active,
.thumbs button:hover { border-color: var(--accent); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }

.buy-card {
  position: sticky;
  top: calc(var(--header) + 18px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f3ec;
  color: var(--ok);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 999px;
}
.status i {
  width: 8px;
  height: 8px;
  background: var(--ok);
  border-radius: 50%;
  display: block;
  animation: live-dot 2.1s ease-out infinite;
}
.status.is-reserved {
  background: #efe6da;
  color: #5c5348;
}
.status.is-reserved i { background: #5c5348; }
.urgency {
  background: #12100e;
  color: #f3ece3;
  border-radius: 24px;
  padding: 22px 26px;
  margin: 0 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.urgency strong { color: #e8d5a3; }
.include-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.include-strip article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px;
}
.include-strip h3 { font-size: 18px; margin-bottom: 6px; }
.include-strip p { color: var(--muted); font-size: 14px; margin: 0; }
.buy-card h1 { font-size: clamp(40px, 6vw, 64px); margin: 12px 0 6px; }
.id-line { color: var(--muted); margin-bottom: 18px; }
.price {
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
}
.price-note { color: var(--muted); margin: 6px 0 22px; }
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 8px 0 22px;
}
.spec {
  background: var(--bg);
  border-radius: 14px;
  padding: 12px 14px;
}
.spec span { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.spec b { font-weight: 600; }
.buy-actions { display: grid; gap: 10px; }

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  margin-bottom: 18px;
}
.panel h2 { margin-bottom: 14px; }
.puppy-life {
  display: grid;
  gap: 22px;
  margin-top: 22px;
  padding-top: 8px;
}
.puppy-life-chips { margin: 0 0 4px; }
.puppy-life h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--forest);
}
.puppy-life p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.seo-band {
  background: var(--night);
  color: #f3ece3;
  padding: 56px 0 64px;
}
.seo-band .kicker { color: var(--gold-soft); }
.seo-band h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 0 16px;
}
.seo-band p {
  max-width: 72ch;
  line-height: 1.7;
  color: rgba(243, 236, 227, 0.82);
  margin: 0 0 22px;
}
.seo-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 !important;
}
.seo-term {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(243, 236, 227, 0.16);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(243, 236, 227, 0.72);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.chip {
  background: #f3e4d4;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}
.include-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.include-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.include-list li:last-child { border-bottom: 0; }
.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 14px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 28px;
}
.filter {
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 500;
}
.filter.active,
.filter:hover {
  background: var(--night);
  color: var(--cream);
  border-color: var(--night);
}

.page-intro { padding: 48px 0 8px; }
.page-intro h1 { max-width: 16ch; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 18%;
}
.blog-card-body { padding: 20px 20px 22px; display: grid; gap: 8px; }
.blog-card-body h3 { font-size: 28px; }
.blog-card-body p { color: var(--muted); margin: 0; }
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.article {
  display: grid;
  grid-template-columns: minmax(0, 720px) 280px;
  gap: 48px;
  align-items: start;
}
.article-body {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px 36px 40px;
}
.article-body p { color: var(--ink-soft); }
.article-body h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 32px 0 12px;
}
.article-body h3 {
  font-size: 26px;
  margin: 26px 0 10px;
}
.article-body ul, .article-body ol {
  color: var(--ink-soft);
  padding-left: 1.2em;
}
.article-body li { margin: 8px 0; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article-hero {
  border-radius: 28px;
  overflow: hidden;
  margin: 0 0 28px;
}
.article-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 18%;
}
.article-aside {
  position: sticky;
  top: calc(var(--header) + 18px);
  display: grid;
  gap: 16px;
}
.article-aside .panel { margin: 0; }
.article-aside h3 { font-size: 24px; margin-bottom: 10px; }
.related-list { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.related-list a { color: var(--ink-soft); font-weight: 600; }
.related-list a:hover { color: var(--accent); }

.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.address-block {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 16px 18px;
  background: var(--white);
  gap: 12px;
}
.field { display: grid; gap: 6px; }
.field > span, .field > .field-label { font-size: 14px; font-weight: 600; }
.field-hint { font-size: 13px; font-weight: 400; color: var(--muted); }
label { font-size: 14px; font-weight: 600; display: grid; gap: 6px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--white);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(194, 75, 42, .12);
}
.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.choice-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
}
.choice-row input { width: auto; margin: 0; accent-color: var(--accent); }
.fulfill-field { border: 0; padding: 0; margin: 0; }
.fulfill-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.fulfill-card {
  display: grid;
  gap: 6px;
  padding: 16px 16px 18px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  cursor: pointer;
}
.fulfill-card strong { font-size: 16px; }
.fulfill-card span { font-weight: 400; color: var(--muted); line-height: 1.45; }
.fulfill-card input { width: auto; margin: 0 0 4px; accent-color: var(--accent); }
.fulfill-card:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(194, 75, 42, .12);
}
.order-kit { margin-top: 18px; }
.order-kit .include-list li { padding: 8px 0; }
@media (max-width: 700px) {
  .fulfill-options { grid-template-columns: 1fr; }
}
.order-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.order-summary {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  position: sticky;
  top: calc(var(--header) + 18px);
}
.order-summary img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 18%; display: block; }
.order-summary-body { padding: 22px; }
.order-summary-body h2 { margin: 0 0 8px; }
.order-summary-body .card-price { margin: 0 0 10px; }
.form-success {
  display: none;
  background: #e8f3ec;
  color: var(--ok);
  border-radius: 16px;
  padding: 16px;
  font-weight: 600;
}
.form-success.show { display: block; }

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
}
.faq p { color: var(--muted); margin: 10px 0 0; }

.license-frame {
  background: #1a1612;
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.license-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.license-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}
.license-meta article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
}
.license-meta b {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}
.license-meta span { color: var(--muted); font-size: 14px; }
.license-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  background: var(--night);
  color: #cfc6ba;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247,241,232,.12);
}
.footer .logo-text strong,
.footer .logo-text span { color: var(--cream); }
.footer a:hover { color: var(--gold); }
.footer h4 {
  font-family: var(--font);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  margin: 0 0 14px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: 13px;
}

.mobile-cta {
  display: none;
  position: sticky;
  bottom: 0;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  z-index: 40;
}
.mobile-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: up .7s ease forwards;
}
@keyframes up { to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .nav { display: none; }
  .header-cta .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }
  .menu-btn { display: grid; place-items: center; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 16px;
    border-bottom: 1px solid var(--line);
    z-index: 40;
  }
  .nav.open a { width: 100%; }
  .include-strip { grid-template-columns: 1fr 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .grid-4, .grid-3, .why, .quotes, .steps, .puppy-layout, .feature-split, .cta-band, .footer-grid, .form-row, .blog-grid, .article, .review-grid {
    grid-template-columns: 1fr;
  }
  .review-stats { grid-template-columns: 1fr 1fr; }
  .article-aside { position: static; }
  .article-body { padding: 24px; }
  .grid-2 { grid-template-columns: 1fr; }
  .buy-card { position: static; }
  .feature-photo { min-height: 360px; }
  .hero { min-height: 86vh; }
  .section { padding: 64px 0; }
  .cta-band { margin: 0 16px 48px; }
  .cta-band > div:first-child { padding: 32px 24px; }
  .mobile-cta { display: block; }
}

.panel .steps { gap: 12px; }
.panel .step { min-height: 180px; padding: 22px 18px; }

@media (min-width: 700px) and (max-width: 980px) {
  .grid-4, .grid-2, .quotes, .blog-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}

.whisper {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--ink-soft);
  margin: 10px 0 0;
  max-width: 36ch;
}
.page-intro h1::after,
.hero-copy h1::after {
  content: "";
  display: block;
  width: 68px;
  height: 2px;
  margin-top: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform-origin: left;
  animation: line-draw 1.2s cubic-bezier(.22,1,.36,1) both;
}
.hero-copy h1::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.life-grain,
.life-glow {
  pointer-events: none;
}
.life-glow {
  position: fixed;
  inset: -18%;
  z-index: 0;
  background:
    radial-gradient(ellipse 42% 36% at 16% 20%, rgba(198, 161, 91, 0.18), transparent 58%),
    radial-gradient(ellipse 38% 32% at 84% 72%, rgba(194, 75, 42, 0.1), transparent 60%),
    radial-gradient(ellipse 30% 26% at 68% 10%, rgba(44, 74, 60, 0.08), transparent 55%);
  animation: life-breathe 16s ease-in-out infinite;
}
.life-grain {
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0.07;
  mix-blend-mode: multiply;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 7s steps(6) infinite;
}

.awake {
  opacity: 0;
  transform: translateY(26px);
}
.awake.is-in {
  animation: rise .95s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: var(--d, 0ms);
}

.step {
  transition: transform .35s ease;
}
.step:hover { transform: translateY(-4px); }

.panel {
  transition: transform .35s ease, box-shadow .35s ease;
}
.panel:hover { box-shadow: var(--shadow-soft); }

.faq details {
  transition: transform .3s ease, box-shadow .3s ease;
}
.faq details[open] {
  box-shadow: var(--shadow-soft);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes ken {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-2.2%, 1.4%, 0); }
}
@keyframes ken-soft {
  from { transform: scale(1.02); }
  to { transform: scale(1.08) translate3d(-1.5%, 1%, 0); }
}
@keyframes life-breathe {
  0%, 100% { transform: scale(1) translate3d(0, 0, 0); opacity: .72; }
  50% { transform: scale(1.1) translate3d(-1.6%, 1.2%, 0); opacity: 1; }
}
@keyframes logo-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.055); }
}
@keyframes btn-breathe {
  0%, 100% { box-shadow: 0 10px 24px rgba(194, 75, 42, 0.26); }
  50% { box-shadow: 0 16px 36px rgba(194, 75, 42, 0.42); }
}
@keyframes kicker-pulse {
  0%, 100% { opacity: .55; width: 18px; }
  50% { opacity: 1; width: 28px; }
}
@keyframes live-dot {
  0% { box-shadow: 0 0 0 0 rgba(47, 107, 79, .45); }
  70% { box-shadow: 0 0 0 9px rgba(47, 107, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 107, 79, 0); }
}
@keyframes sheen {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}
@keyframes line-draw {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-1.4%, .8%); }
  40% { transform: translate(1%, -1.2%); }
  60% { transform: translate(-.6%, 1.4%); }
  80% { transform: translate(1.2%, -.4%); }
  100% { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .card, .card-media img, .hero-media img, .feature-photo img, .cta-band img,
  .logo-mark, .btn-primary, .kicker::before, .status i, .life-glow, .life-grain,
  .awake, .page-intro h1::after, .hero-copy h1::after {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
  .life-grain, .life-glow { display: none; }
}
