/* ============================================================
   CR Cachorros — Landing
   Dark mode · purple #7c5488 · gold #c6a16d · black #000000
   Display: DM Serif Display · Body: Mulish
   ============================================================ */

:root {
  /* canvas — dark */
  --cream:        #080610;
  --ivory:        #0F0C1A;
  --oat:          #1A1628;
  --oat-deep:     #231F30;
  --sand:         #2E2840;

  /* brand — purple */
  --terracotta:      #7c5488;
  --terracotta-deep: #6B4777;
  --terracotta-soft: rgba(124, 84, 136, 0.25);

  /* brand — gold */
  --moss:      #c6a16d;
  --moss-deep: #a8864e;
  --moss-soft: rgba(198, 161, 109, 0.20);

  /* accent purple (fills sky slots) */
  --sky:       #9B7AAE;
  --sky-deep:  #7c5488;
  --sky-soft:  rgba(155, 122, 174, 0.15);

  /* text — light on dark */
  --ink:       #EDE8F4;
  --ink-soft:  #9B8FAA;
  --ink-faint: #6A6078;
  --line:      rgba(198, 161, 109, 0.12);
  --line-soft: rgba(198, 161, 109, 0.07);

  /* always-dark surfaces (footer, trust, etc.) */
  --surface-dark: #050408;

  --serif: 'DM Serif Display', 'Georgia', serif;
  --sans:  'Mulish', system-ui, -apple-system, sans-serif;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-xl: 42px;
  --pill: 999px;

  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 18px 50px -22px rgba(0, 0, 0, 0.58);
  --shadow-lg: 0 40px 90px -40px rgba(0, 0, 0, 0.72);

  --ease: cubic-bezier(.16, 1, .3, 1);
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.01em;
  margin: 0;
}

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

.serif-i { font-family: var(--serif); font-style: italic; }
.accent  { color: var(--terracotta); }
.moss-c  { color: var(--moss-deep); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  opacity: .6;
}
.eyebrow.center::before { display: none; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15.5px;
  border: none;
  cursor: pointer;
  border-radius: var(--pill);
  padding: 15px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s var(--ease);
  letter-spacing: .005em;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: var(--moss);
  color: #1a0e0a;
  box-shadow: 0 14px 30px -14px rgba(198, 161, 109, .55);
}
.btn-primary:hover { background: var(--moss-deep); color: #fff; transform: translateY(-3px); box-shadow: 0 22px 40px -16px rgba(198, 161, 109, .60); }
.btn-dark { background: var(--terracotta); color: #fff; }
.btn-dark:hover { background: var(--terracotta-deep); transform: translateY(-3px); }
.btn-ghost {
  background: rgba(255,255,255,.07);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-terra { background: var(--terracotta); color: #fff; box-shadow: 0 14px 30px -14px rgba(124,84,136,.55); }
.btn-terra:hover { background: var(--terracotta-deep); transform: translateY(-3px); }
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(8, 6, 16, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft), 0 14px 30px -28px rgba(0,0,0,.6);
  padding: 12px 0;
}
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 44px; width: auto; display: block; }
.brand .mark {
  width: 42px; height: 42px; border-radius: 14px;
  background: var(--terracotta);
  display: grid; place-items: center;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 8px 18px -8px rgba(124,84,136,.55);
}
.brand .mark svg { width: 24px; height: 24px; }
.brand b { font-weight: 400; }
.brand .cr { color: var(--terracotta); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-weight: 700; font-size: 15px; color: var(--ink-soft);
  position: relative; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--terracotta); border-radius: 2px; transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--ink);
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center; justify-content: center;
  transition: background .2s;
}
.nav-toggle:hover { background: var(--oat); }
.nav-toggle svg { width: 22px; height: 22px; display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-menu { display: none; }
.nav-toggle.open .icon-close { display: block; }

.nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 55;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.nav-overlay.visible { opacity: 1; }

@media (max-width: 920px) {
  .nav-toggle { display: flex; position: relative; z-index: 65; }
  .nav-cta .btn span.lbl { display: none; }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 82vw);
    background: var(--ivory);
    z-index: 62;
    padding: 88px 28px 40px;
    gap: 6px;
    box-shadow: -20px 0 60px rgba(0,0,0,.45);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 18px; font-weight: 700; color: var(--ink);
    padding: 14px 16px; border-radius: 12px;
    transition: background .2s, color .2s;
  }
  .nav-links a:hover { background: var(--oat); color: var(--ink); }
  .nav-links a::after { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 3; }
.hero h1 {
  font-size: clamp(46px, 6.4vw, 88px);
  margin: 22px 0 0;
}
.hero h1 .l2 { color: var(--terracotta); }
.hero p.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 30em;
  margin: 26px 0 0;
  line-height: 1.62;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-meta { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta .m { display: flex; flex-direction: column; }
.hero-meta .m b { font-family: var(--serif); font-size: 32px; color: var(--ink); line-height: 1; }
.hero-meta .m span { font-size: 13px; font-weight: 700; color: var(--ink-soft); margin-top: 6px; letter-spacing: .02em; }
.hero-meta .div { width: 1px; background: var(--line); align-self: stretch; }

/* hero image cluster */
.hero-art { position: relative; z-index: 2; }
.hero-photo {
  position: relative;
  border-radius: 46% 54% 48% 52% / 58% 46% 54% 42%;
  overflow: hidden;
  aspect-ratio: 1 / 1.04;
  box-shadow: var(--shadow-lg);
  border: 10px solid rgba(124, 84, 136, 0.28);
  animation: blobMorph 14s var(--ease) infinite;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@keyframes blobMorph {
  0%,100% { border-radius: 46% 54% 48% 52% / 58% 46% 54% 42%; }
  33%     { border-radius: 56% 44% 58% 42% / 44% 58% 42% 56%; }
  66%     { border-radius: 42% 58% 44% 56% / 56% 42% 60% 40%; }
}
.float-card {
  position: absolute;
  background: rgba(20, 16, 30, .92);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 13px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 12px;
  animation: floaty 5s ease-in-out infinite;
}
.float-card .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; }
.float-card .ic svg { width: 20px; height: 20px; }
.float-card b { display: block; font-family: var(--serif); font-size: 16px; line-height: 1; }
.float-card span { font-size: 12px; color: var(--ink-soft); font-weight: 700; }
.fc-1 { top: 12%; left: -34px; animation-delay: .4s; }
.fc-2 { bottom: 14%; right: -28px; animation-delay: 1.4s; }
.fc-3 { bottom: -10px; left: 16%; animation-delay: .9s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* organic blobs / paws bg */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; pointer-events: none; }
.blob-1 { width: 520px; height: 520px; background: var(--terracotta-soft); opacity: .5; top: -120px; right: -120px; }
.blob-2 { width: 460px; height: 460px; background: var(--moss-soft); opacity: .5; bottom: -160px; left: -160px; }
.paw {
  position: absolute; color: var(--terracotta); opacity: .08; z-index: 1; pointer-events: none;
}
.paw svg { width: 100%; height: 100%; }

/* ============================================================
   MARQUEE / trust strip
   ============================================================ */
.trust { background: var(--surface-dark); color: var(--ink); padding: 26px 0; overflow: hidden; }
.marquee { display: flex; gap: 60px; width: max-content; animation: slide 32s linear infinite; }
.marquee .it { display: flex; align-items: center; gap: 14px; font-family: var(--serif); font-size: 24px; white-space: nowrap; opacity: .92; }
.marquee .it svg { width: 20px; height: 20px; color: var(--terracotta-soft); }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }

/* ============================================================
   SECTION basics
   ============================================================ */
section { position: relative; }
.sec { padding: 100px 0; }
.sec-head { max-width: 680px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: clamp(34px, 4.4vw, 56px); margin: 16px 0 0; }
.sec-head p { color: var(--ink-soft); font-size: 18px; margin: 18px 0 0; line-height: 1.6; }

/* ============================================================
   CAROUSEL
   ============================================================ */
.cat { background: var(--ivory); }
.cat-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.filter {
  font-family: var(--sans); font-weight: 800; font-size: 14px;
  padding: 10px 20px; border-radius: var(--pill);
  background: var(--cream); color: var(--ink-soft);
  border: 1.5px solid var(--line); cursor: pointer;
  transition: all .25s var(--ease);
}
.filter:hover { color: var(--ink); border-color: var(--sand); }
.filter.active { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }

.car-wrap { position: relative; margin-top: 40px; }
.track {
  display: flex; gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 14px 4px 30px;
  scrollbar-width: none;
  cursor: grab;
}
.track::-webkit-scrollbar { display: none; }
.track.dragging { cursor: grabbing; scroll-snap-type: none; }

.pup {
  scroll-snap-align: start;
  flex: 0 0 320px;
  background: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display: flex; flex-direction: column;
}
.pup:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.pup-img { position: relative; aspect-ratio: 4 / 4.6; overflow: hidden; background: var(--oat); }
.pup-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.pup:hover .pup-img img { transform: scale(1.06); }
.pup-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(20, 16, 30, .88); backdrop-filter: blur(6px);
  color: var(--moss);
  font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 13px; border-radius: var(--pill);
  display: flex; align-items: center; gap: 7px;
}
.pup-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--moss); box-shadow: 0 0 0 3px rgba(198,161,109,.25); }
.pup-zoom {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(20, 16, 30, .88); backdrop-filter: blur(6px);
  display: grid; place-items: center; cursor: pointer;
  color: var(--ink); border: none;
  opacity: 0; transform: scale(.85); transition: all .3s var(--ease);
}
.pup:hover .pup-zoom { opacity: 1; transform: scale(1); }
.pup-zoom svg { width: 18px; height: 18px; }
.pup-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pup-breed { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--terracotta); }
.pup-name { font-family: var(--serif); font-size: 23px; color: var(--ink); line-height: 1.05; }
.pup-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.pup-tag {
  font-size: 12px; font-weight: 700; color: var(--ink-soft);
  background: var(--oat); padding: 5px 11px; border-radius: var(--pill);
}
.pup-actions { display: flex; gap: 9px; margin-top: 18px; }
.pup-actions .btn { flex: 1; justify-content: center; padding: 12px 10px; font-size: 13.5px; }

/* arrows */
.car-nav { display: flex; gap: 12px; }
.arrow {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--cream);
  display: grid; place-items: center; cursor: pointer; color: var(--ink);
  transition: all .25s var(--ease);
}
.arrow:hover { background: var(--terracotta); color: #fff; border-color: var(--terracotta); transform: scale(1.05); }
.arrow:disabled { opacity: .35; cursor: default; transform: none; background: var(--cream); color: var(--ink); border-color: var(--line); }
.arrow svg { width: 22px; height: 22px; }
.drag-hint { font-size: 13px; color: var(--ink-faint); font-weight: 700; display: flex; align-items: center; gap: 8px; margin-top: 4px; }

/* ============================================================
   INCLUDES
   ============================================================ */
.includes { background: var(--cream); }
.inc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 52px; }
.inc {
  background: var(--ivory); border-radius: var(--r-md); padding: 28px 22px;
  border: 1px solid var(--line-soft); text-align: left;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.inc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.inc .ic { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; }
.inc .ic svg { width: 26px; height: 26px; }
.inc h4 { font-family: var(--sans); font-weight: 800; font-size: 16px; margin-bottom: 7px; letter-spacing: -.01em; }
.inc p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* ============================================================
   BREEDS
   ============================================================ */
.breeds { background: var(--ivory); }
.breed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.breed {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3 / 3.4; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
}
.breed img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.breed:hover img { transform: scale(1.07); }
.breed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,4,8,.88) 0%, rgba(5,4,8,.20) 45%, transparent 70%); }
.breed-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; z-index: 2; color: #fff; }
.breed-cap .k { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta-soft); }
.breed-cap h3 { font-size: 28px; margin: 6px 0 4px; color: #fff; }
.breed-cap p { font-size: 14px; color: rgba(255,255,255,.82); margin: 0; line-height: 1.45; }
.breed-more {
  margin-top: 28px; background: var(--cream); border-radius: var(--r-md);
  padding: 26px 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  border: 1px solid var(--line-soft);
}
.breed-more p { margin: 0; font-size: 15px; color: var(--ink-soft); flex: 1; min-width: 260px; }
.breed-more b { color: var(--ink); font-weight: 800; }
.chips { display: flex; gap: 9px; flex-wrap: wrap; }
.chip { background: var(--oat); color: var(--ink); font-weight: 700; font-size: 13.5px; padding: 8px 15px; border-radius: var(--pill); }

/* ============================================================
   PROCESS (split)
   ============================================================ */
.proc { background: #130e1e; color: var(--ink); overflow: hidden; }
.proc .eyebrow { color: var(--moss); }
.proc .eyebrow::before { background: var(--moss); }
.proc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.proc h2 { color: var(--ink); font-size: clamp(32px, 4vw, 50px); }
.proc-lead { color: var(--ink-soft); font-size: 18px; margin-top: 20px; line-height: 1.6; }
.proc-steps { display: flex; flex-direction: column; gap: 4px; margin-top: 36px; }
.pstep { display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.pstep:last-child { border-bottom: 1px solid var(--line); }
.pstep .n { font-family: var(--serif); font-size: 22px; color: var(--moss); flex-shrink: 0; width: 38px; }
.pstep h4 { font-family: var(--sans); font-weight: 800; font-size: 17px; color: var(--ink); margin-bottom: 5px; }
.pstep p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.proc-photo { position: relative; }
.proc-photo .pimg { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 1/1.12; box-shadow: var(--shadow-lg); border: 8px solid rgba(198,161,109,.15); }
.proc-photo img { width: 100%; height: 100%; object-fit: cover; }
.proc-quote {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--terracotta); color: #fff;
  border-radius: var(--r-md); padding: 22px 26px; max-width: 260px;
  box-shadow: var(--shadow-md);
}
.proc-quote p { font-family: var(--serif); font-size: 18px; line-height: 1.25; margin: 0; }

/* ============================================================
   UNIQUE / values
   ============================================================ */
.unique { background: var(--cream); }
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.val {
  background: var(--ivory); border-radius: var(--r-lg); padding: 36px 32px;
  border: 1px solid var(--line-soft); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.val:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.val .ic { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 22px; }
.val .ic svg { width: 30px; height: 30px; }
.val h3 { font-size: 24px; margin-bottom: 10px; }
.val p { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.58; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.qa { background: var(--cream); border-radius: var(--r-md); border: 1px solid var(--line-soft); overflow: hidden; transition: box-shadow .3s; }
.qa.open { box-shadow: var(--shadow-sm); }
.qa-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--serif); font-size: 19px; color: var(--ink); }
.qa-q .pm { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: var(--oat); display: grid; place-items: center; transition: all .3s var(--ease); }
.qa.open .qa-q .pm { background: var(--terracotta); color: #fff; transform: rotate(135deg); }
.qa-q .pm svg { width: 16px; height: 16px; }
.qa-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.qa-a-in { padding: 0 24px 24px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.faq-aside { background: var(--oat); color: var(--ink); border-radius: var(--r-lg); padding: 40px; position: sticky; top: 100px; border: 1px solid var(--line-soft); }
.faq-aside h3 { color: var(--ink); font-size: 28px; }
.faq-aside p { color: var(--ink-soft); font-size: 15px; margin: 14px 0 26px; line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.tcard { background: var(--ivory); border-radius: var(--r-lg); padding: 32px; border: 1px solid var(--line-soft); display: flex; flex-direction: column; }
.tcard .stars { display: flex; gap: 3px; color: var(--moss); margin-bottom: 16px; }
.tcard .stars svg { width: 18px; height: 18px; }
.tcard blockquote { margin: 0; font-family: var(--serif); font-size: 19px; line-height: 1.4; color: var(--ink); flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.tcard .av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-size: 19px; color: #fff; flex-shrink: 0; }
.tcard .who b { display: block; font-family: var(--sans); font-weight: 800; font-size: 15px; }
.tcard .who span { font-size: 13px; color: var(--ink-soft); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { padding: 60px 0 100px; }
.cta-card {
  position: relative; overflow: hidden;
  background: var(--terracotta);
  border-radius: var(--r-xl); padding: 72px 60px; text-align: center; color: #fff;
}
.cta-card .blob-c { position: absolute; border-radius: 50%; filter: blur(40px); }
.cta-card h2 { color: #fff; font-size: clamp(34px, 4.6vw, 58px); position: relative; z-index: 2; }
.cta-card p { color: rgba(255,255,255,.9); font-size: 19px; max-width: 34em; margin: 20px auto 0; position: relative; z-index: 2; }
.cta-card .acts { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-card .btn-primary { background: var(--moss); color: #1a0e0a; }
.cta-card .btn-primary:hover { background: var(--moss-deep); color: #fff; }
.cta-card .btn-ghost { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); color: #fff; }
.cta-card .btn-ghost:hover { background: rgba(255,255,255,.24); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--surface-dark); color: var(--ink); padding: 70px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand { color: var(--ink); }
.footer .brand .cr { color: var(--moss); }
.foot-grid p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 18px 0 0; max-width: 26em; }
.foot-col h5 { font-family: var(--sans); font-weight: 800; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--moss); margin: 0 0 18px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col ul li { color: var(--ink-soft); font-size: 14.5px; }
.foot-col ul li a:hover { color: var(--ink); }
.foot-col .row { display: flex; align-items: flex-start; gap: 11px; }
.foot-col .row svg { width: 17px; height: 17px; color: var(--moss); flex-shrink: 0; margin-top: 3px; }
.foot-bottom { border-top: 1px solid var(--line-soft); margin-top: 50px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot-bottom p { font-size: 13px; color: var(--ink-faint); margin: 0; }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center; padding: 28px;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal-bg { position: absolute; inset: 0; background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.modal-card {
  position: relative; z-index: 2;
  width: min(960px, 100%); max-height: 90vh;
  background: var(--ivory); border-radius: var(--r-xl);
  display: grid; grid-template-columns: 1.05fr 1fr;
  box-shadow: var(--shadow-lg);
  transform: scale(.94) translateY(14px); transition: transform .45s var(--ease);
  overflow: hidden;
}
.modal.open .modal-card { transform: scale(1) translateY(0); }
.modal-photo { position: relative; background: var(--oat); overflow: hidden; min-height: 0; }
.modal-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(20, 16, 30, .92); color: var(--ink);
  display: grid; place-items: center; transition: all .25s var(--ease);
}
.modal-close:hover { background: var(--terracotta); color: #fff; transform: rotate(90deg); }
.modal-close svg { width: 22px; height: 22px; }
.modal-info { padding: 44px 42px; overflow-y: auto; display: flex; flex-direction: column; min-height: 0; }
.modal-info .pup-breed { font-size: 13px; }
.modal-info h3 { font-size: 38px; margin: 10px 0 0; }
.modal-info .m-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.modal-info .m-desc { color: var(--ink-soft); font-size: 15.5px; line-height: 1.62; margin: 22px 0 0; }
.m-inc { margin-top: 26px; }
.m-inc h5 { font-family: var(--sans); font-weight: 800; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--terracotta); margin: 0 0 14px; }
.m-inc ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.m-inc li { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--ink); }
.m-inc li svg { width: 17px; height: 17px; color: var(--moss); flex-shrink: 0; }
.modal-actions { display: flex; gap: 11px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.modal-actions .btn { flex: 1; justify-content: center; }

/* ============================================================
   reveal animation
   ============================================================ */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }
.rv-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; }
  .hero-photo, .float-card { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .inc-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-art { max-width: 440px; margin: 0 auto; width: 100%; }
  .breed-grid { grid-template-columns: repeat(2, 1fr); }
  .val-grid, .testi-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; gap: 50px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-aside { position: static; }
  .modal-card { grid-template-columns: 1fr; max-height: 92vh; }
  .modal-photo { aspect-ratio: 16/10; max-height: 40vh; }
  .modal-info { max-height: 52vh; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .val-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .sec { padding: 64px 0; }
  .inc-grid { grid-template-columns: 1fr 1fr; }
  .breed-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .val-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-card { padding: 44px 24px; }
  .hero-meta { gap: 18px; }
  .m-inc ul { grid-template-columns: 1fr; }
  .modal-info { padding: 26px 22px; max-height: 55vh; }
  .pup { flex: 0 0 80vw; }
  .filters { gap: 8px; }
  .filter { font-size: 13px; padding: 9px 16px; }
  .proc-quote { left: 0; right: 0; bottom: 0; border-radius: 0 0 var(--r-md) var(--r-md); position: relative; max-width: 100%; }
  .proc-photo .pimg { border-radius: var(--r-lg); }
  .breed-more { flex-direction: column; }

  /* ── Hero mobile: todo en 100svh ── */
  .hero {
    padding: 0;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
  }
  .hero > .wrap.hero-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 84px;
    padding-bottom: 20px;
  }
  .hero-copy { flex-shrink: 0; }
  .hero h1 { font-size: clamp(36px, 11vw, 52px); margin-top: 10px; }
  .hero p.lead { display: none; }
  .hero-actions { margin-top: 20px; gap: 10px; }
  .hero-actions .btn { font-size: 14px; padding: 13px 22px; }
  .hero-meta { margin-top: 18px; gap: 14px; flex-wrap: nowrap; }
  .hero-meta .m b { font-size: 26px; }

  /* imagen: ocupa el espacio sobrante del viewport */
  .hero-art {
    flex: 1;
    min-height: 0;
    max-width: 100% !important;
    margin: 0 !important;
    position: relative;
  }
  .hero-photo {
    width: 100%;
    height: 100%;
    min-height: 160px;
    border-radius: var(--r-xl);
    overflow: hidden;
    animation: none;
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
  }

  /* solo mostrar la card "Raza pura", reubicada abajo-izquierda */
  .fc-2, .fc-3 { display: none; }
  .fc-1 {
    top: auto;
    bottom: 14px;
    left: 12px;
    padding: 10px 14px;
    gap: 10px;
  }
  .fc-1 .ic { width: 30px; height: 30px; }
  .fc-1 .ic svg { width: 16px; height: 16px; }
  .fc-1 b { font-size: 13px; }
  .fc-1 span { font-size: 11px; }
}
