/* ============================================================
   MALTIPOO ATELIER · ANDORRA
   Editorial-luxury design system
   Style: refined dark/cream editorial · gold accent
   Type:  Playfair Display (display) / Inter (text)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --ink:        #14110F;   /* near-black warm */
  --ink-2:      #1F1A16;   /* raised dark surface */
  --ink-3:      #2A231D;   /* hairlines on dark */
  --charcoal:   #44403C;
  --cream:      #F6F2EC;   /* primary light bg */
  --cream-2:    #EFE8DD;   /* alt light bg */
  --paper:      #FBF9F5;
  --on-dark:    #F4EFE7;
  --on-dark-mut:#B9AE9E;
  --on-light:   #1A1613;
  --on-light-mut:#6F665B;
  --gold:       #B08A3E;   /* primary accent */
  --gold-soft:  #C9A867;
  --gold-deep:  #8A6A28;
  --border-d:   rgba(244,239,231,0.14);
  --border-l:   rgba(20,17,15,0.12);

  /* Type scale (fluid) */
  --fs-eyebrow: 0.72rem;
  --fs-body:    1.0625rem;
  --fs-lead:    clamp(1.15rem, 0.9rem + 1vw, 1.45rem);
  --fs-h4:      clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  --fs-h3:      clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  --fs-h2:      clamp(2rem, 1.4rem + 3vw, 3.6rem);
  --fs-h1:      clamp(2.8rem, 1.6rem + 6vw, 6.5rem);
  --fs-display: clamp(3.4rem, 1.2rem + 9vw, 9rem);

  /* Spacing rhythm (8pt) */
  --space-section: clamp(5rem, 3rem + 8vw, 10rem);
  --container: 1280px;
  --gutter: clamp(1.25rem, 0.5rem + 3vw, 4rem);

  --radius: 2px;
  --radius-lg: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 220ms;
  --t-med: 420ms;
  --t-slow: 700ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--on-light);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold); color: var(--ink); }

/* Focus visibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ---------- Typography ---------- */
.serif { font-family: 'Playfair Display', Georgia, serif; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: inherit;
}

.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.center::after {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--on-light-mut);
  font-weight: 300;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--space-section); position: relative; }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--cream2 { background: var(--cream-2); }
.section-head { max-width: 56ch; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fs-h2); margin-top: 1.2rem; }
.section-head .lead { margin-top: 1.5rem; }
.on-dark .lead, .section--dark .lead { color: var(--on-dark-mut); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.05rem 2.1rem;
  background: var(--bg);
  color: var(--fg);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform var(--t-med) var(--ease);
  z-index: -1;
}
.btn:hover::after { transform: translateY(0); }
.btn:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4); }
.btn--gold { --bg: var(--gold); --fg: var(--ink); }
.btn--gold::after { background: var(--ink); }
.btn--gold:hover { color: var(--cream); }
.btn--ghost {
  --bg: transparent; --fg: currentColor;
  border: 1px solid currentColor;
}
.btn--ghost::after { background: var(--cream); }
.btn--ghost:hover { color: var(--ink); border-color: var(--cream); }
.btn--lg { padding: 1.25rem 2.6rem; }

/* Text link with underline animation */
.link-u {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  position: relative; padding-bottom: 3px;
}
.link-u::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(1); transform-origin: right; transition: transform var(--t-med) var(--ease);
}
.link-u:hover::after { transform: scaleX(0); }
.link-u svg { transition: transform var(--t-fast) var(--ease); }
.link-u:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.topbar {
  background: var(--ink);
  color: var(--on-dark-mut);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--ink-3);
}
.topbar strong { color: var(--gold-soft); font-weight: 600; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20,17,15,0);
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease), padding var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(18,15,13,0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border-d);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: clamp(1rem, 2vw, 1.6rem);
  color: var(--on-dark);
}
/* ---------- Co-brand lockup · Atelier × Yorky's ---------- */
.brand-lockup { display: flex; align-items: center; gap: clamp(0.9rem, 1.6vw, 1.4rem); }
.endorse {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  padding-left: clamp(0.9rem, 1.6vw, 1.4rem);
  line-height: 1;
  transition: opacity var(--t-fast) var(--ease);
}
.endorse::before { /* hairline divider */
  content: ""; position: absolute; left: 0; top: 50%;
  width: 1px; height: 30px; transform: translateY(-50%);
  background: linear-gradient(180deg, transparent, var(--gold-soft) 25%, var(--gold-soft) 75%, transparent);
  opacity: 0.55;
}
.endorse__by {
  font-size: 0.5rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--on-dark-mut);
}
.endorse__name {
  font-family: 'Pinyon Script', cursive;
  font-size: 1.5rem; line-height: 0.9; color: var(--gold-soft);
  margin: 0.12rem 0 0.18rem; padding-right: 0.1em;
}
.endorse__since {
  font-size: 0.44rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--on-dark-mut); opacity: 0.85;
}
.endorse:hover { opacity: 0.82; }
.endorse:hover .endorse__name { color: var(--gold); }

.brand { display: flex; flex-direction: row; align-items: center; gap: 0.7rem; line-height: 1; }
.brand__emblem { width: 46px; height: 46px; flex: none; display: block; }
.brand__txt { display: flex; flex-direction: column; }
.brand--text .brand__txt { align-items: center; }
.brand--text .mark { padding-left: 0; }
.brand--text .sub { padding-left: 0; }
.brand .mark {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--cream); padding-left: 0.15em;
  white-space: nowrap;
}
.brand .sub {
  font-size: 0.52rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-soft); margin-top: 0.4rem; padding-left: 0.3em;
}
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 1.7vw, 2.1rem); margin: 0 clamp(1rem, 2vw, 2rem); }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-dark-mut); position: relative; padding-block: 0.4rem;
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width var(--t-med) var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1.2rem; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* Language switcher */
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid var(--border-d); border-radius: 100px; padding: 3px;
}
.lang-switch button {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em;
  padding: 0.4rem 0.7rem; border-radius: 100px;
  color: var(--on-dark-mut); line-height: 1;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.lang-switch button:hover { color: var(--cream); }
.lang-switch button[aria-pressed="true"] { background: var(--gold); color: var(--ink); }
.lang-switch button[aria-pressed="true"]:hover { color: var(--ink); }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--cream); }
.nav-toggle span { position: relative; width: 22px; height: 1.5px; background: currentColor; transition: var(--t-fast); }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: currentColor; transition: var(--t-fast) var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h, 88px));
  min-height: 100dvh;
  display: flex; align-items: flex-end;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
/* Real hero photograph (place img/hero.jpg). Ken Burns slow zoom. */
.hero__media { position: absolute; inset: -6% 0; z-index: -3; overflow: hidden; will-change: transform; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: 58% 28%;
  transform-origin: 60% 40%;
  animation: kenburns 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.15); }
}

.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg::after { /* photographic vignette + readability scrims */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 75% 12%, rgba(176,138,62,0.16), transparent 55%),
    linear-gradient(90deg, rgba(15,12,10,0.78) 0%, rgba(15,12,10,0.35) 42%, rgba(15,12,10,0) 70%),
    linear-gradient(180deg, rgba(15,12,10,0.35) 0%, rgba(15,12,10,0.5) 50%, rgba(15,12,10,0.92) 100%);
}
/* Elegant "studio" gradient scene as graceful image fallback.
   Replace .hero__bg with an <img> of your hero photograph for production. */
.hero__scene {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(60% 60% at 70% 30%, #3a2f23 0%, #211b15 45%, #14110f 100%);
}
.hero__scene::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(closest-side at 68% 42%, rgba(201,168,103,0.35), transparent 70%),
    radial-gradient(closest-side at 30% 78%, rgba(176,138,62,0.16), transparent 70%);
  filter: blur(4px);
}
.hero__inner {
  width: 100%;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  padding-top: calc(var(--header-h, 88px) + clamp(2rem, 6vw, 4rem));
}
.hero__eyebrow { margin-bottom: 1.8rem; }
.hero h1 {
  font-size: var(--fs-h1);
  font-weight: 500;
  max-width: 14ch;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid var(--border-d);
  max-width: 760px;
}
.hero__meta p { color: var(--on-dark-mut); max-width: 42ch; font-weight: 300; font-size: var(--fs-lead); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(2rem,5vw,3rem); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--on-dark-mut);
  writing-mode: vertical-rl;
}
.hero__scroll i { display: block; width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: scrolldot 2.4s var(--ease-soft) infinite; }
@keyframes scrolldot { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom;} 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Marquee strip */
.marquee {
  background: var(--gold);
  color: var(--ink);
  padding-block: 0.85rem;
  overflow: hidden;
  border-block: 1px solid var(--gold-deep);
}
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee__track span { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track span::after { content: "✦"; font-size: 0.7rem; font-style: normal; opacity: 0.6; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============================================================
   MANIFESTO / INTRO
   ============================================================ */
.manifesto { text-align: center; }
.manifesto .container { max-width: 1000px; }
.manifesto p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 1rem + 2.6vw, 3rem);
  line-height: 1.32; font-weight: 400;
  color: var(--on-light);
}
.manifesto p .mut { color: var(--on-light-mut); }
.manifesto p em { font-style: italic; color: var(--gold-deep); }
.manifesto .sig { margin-top: 2.5rem; }
.sig {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.5rem; color: var(--gold-deep);
}
.sig small { display: block; font-family: 'Inter', sans-serif; font-style: normal; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--on-light-mut); margin-top: 0.5rem; }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-d); border: 1px solid var(--border-d); }
.pillar {
  background: var(--ink);
  padding: clamp(2rem, 3.5vw, 3.4rem) clamp(1.6rem, 3vw, 2.6rem);
  transition: background var(--t-med) var(--ease);
}
.pillar:hover { background: var(--ink-2); }
.pillar__num { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--gold); letter-spacing: 0.1em; }
.pillar__icon { width: 48px; height: 48px; color: var(--gold-soft); margin: 1.6rem 0 1.4rem; }
.pillar__icon svg { width: 100%; height: 100%; stroke-width: 1.2; }
.pillar h3 { font-size: var(--fs-h4); color: var(--cream); margin-bottom: 0.9rem; }
.pillar p { color: var(--on-dark-mut); font-weight: 300; font-size: 0.98rem; }

/* ============================================================
   BREED (split)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 6rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__copy h2 { font-size: var(--fs-h2); margin: 1.2rem 0 1.5rem; }
.split__copy .lead { margin-bottom: 2rem; }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1.5rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border-l); }
.stat .n { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 1.4rem + 2vw, 2.8rem); color: var(--gold-deep); line-height: 1; }
.stat .l { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-light-mut); margin-top: 0.6rem; display: block; }
.section--dark .stat .n { color: var(--gold-soft); }
.section--dark .stat .l { color: var(--on-dark-mut); }

/* ---------- Raza video · marco editorial ---------- */
.raza-frame {
  position: relative;
  padding: clamp(12px, 1.4vw, 18px);
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    linear-gradient(158deg, #f3ecdf 0%, #ece1cd 100%);
  box-shadow:
    0 30px 70px -32px rgba(20,17,15,0.55),
    inset 0 1px 0 rgba(255,255,255,0.6);
}
.raza-frame::after { /* filete dorado interior (passe-partout) */
  content: "";
  position: absolute;
  inset: clamp(6px, 0.8vw, 10px);
  border: 1px solid rgba(176,138,62,0.55);
  border-radius: calc(var(--radius-lg) + 1px);
  pointer-events: none;
  z-index: 3;
}
.raza-frame__tag {
  position: absolute;
  top: calc(clamp(12px, 1.4vw, 18px) + 14px);
  left: calc(clamp(12px, 1.4vw, 18px) + 14px);
  z-index: 4;
  background: rgba(20,17,15,0.9);
  color: var(--gold-soft);
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.5rem 0.9rem; border-radius: 2px;
}
.raza-video-wrap {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.raza-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Portrait placeholder (swap with real photography) ---------- */
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 30%, #efe4d2 0%, #e3d4bd 45%, #d8c6aa 100%);
  display: grid; place-items: center;
  box-shadow: 0 30px 60px -30px rgba(20,17,15,0.45);
}
.portrait::after { /* frame */
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(138,106,40,0.4); border-radius: 2px; pointer-events: none;
}
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.portrait__mono {
  font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 5rem); color: rgba(138,106,40,0.55);
  text-align: center;
}
.portrait__mono small { display:block; font-family:'Inter',sans-serif; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(95,73,40,0.7); margin-top: 0.6rem; }
.portrait--wide { aspect-ratio: 3 / 4; }
.split__media .portrait { aspect-ratio: 5 / 6; }
.portrait__tag {
  position: absolute; left: 16px; top: 16px; z-index: 2;
  background: rgba(20,17,15,0.9); color: var(--gold-soft);
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.5rem 0.9rem; border-radius: 2px;
}

/* ============================================================
   PUPPIES (ejemplares)
   ============================================================ */
.puppies-toolbar { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3.5rem; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.6rem 1.2rem; border: 1px solid var(--border-l); border-radius: 100px;
  color: var(--on-light-mut); transition: var(--t-fast) var(--ease);
}
.pill[aria-pressed="true"], .pill:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.puppy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); }
.puppy {
  background: var(--paper);
  border: 1px solid var(--border-l);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 600ms var(--ease), box-shadow 600ms var(--ease), border-color 600ms var(--ease);
}
.puppy:hover { transform: translateY(-4px); box-shadow: 0 34px 60px -36px rgba(20,17,15,0.4); border-color: rgba(176,138,62,0.45); }
.puppy__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: radial-gradient(80% 60% at 50% 30%, #efe4d2, #d8c6aa); }
.puppy__media .portrait { aspect-ratio: 4/5; border-radius: 0; box-shadow: none; }
.puppy__media .portrait::after { inset: 10px; }
.puppy__media img, .puppy__media .portrait { transition: transform 1200ms var(--ease); }
.puppy:hover .puppy__media img,
.puppy:hover .puppy__media .portrait { transform: scale(1.055); }
.badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  padding: 0.42rem 0.85rem; border-radius: 100px;
}
.badge--avail { background: #1f3a2c; color: #b8e0c2; }
.badge--reserved { background: #3a2f1f; color: var(--gold-soft); }
.badge--sold { background: #2a231d; color: var(--on-dark-mut); }
.puppy__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.puppy__name { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.puppy__name h3 { font-size: 1.5rem; }
.puppy__name .gender { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.puppy__attrs { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; margin: 0.4rem 0 0.9rem; }
.puppy__attrs span { font-size: 0.78rem; color: var(--on-light-mut); display: inline-flex; align-items: center; gap: 0.4rem; }
.puppy__attrs span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.puppy__desc { font-size: 0.92rem; color: var(--on-light-mut); font-weight: 300; }
.puppy__foot { margin-top: auto; padding-top: 1.3rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-l); }
.puppy__price { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--on-light); }
.puppy__price small { display: block; font-family: 'Inter'; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-light-mut); }
.is-hidden { display: none !important; }

/* ============================================================
   PROCESS (timeline)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-d); border: 1px solid var(--border-d); }
.step { background: var(--ink); padding: clamp(1.8rem, 3vw, 2.8rem) clamp(1.4rem, 2.5vw, 2.2rem); position: relative; }
.step__n { font-family: 'Playfair Display', serif; font-size: 0.9rem; letter-spacing: 0.2em; color: var(--gold); }
.step__bar { height: 1px; background: var(--ink-3); margin: 1.3rem 0; position: relative; overflow: hidden; }
.step__bar i { position: absolute; inset: 0; width: 0; background: var(--gold); transition: width 1s var(--ease); }
.step.in-view .step__bar i { width: 100%; }
.step h3 { color: var(--cream); font-size: var(--fs-h4); margin-bottom: 0.7rem; }
.step p { color: var(--on-dark-mut); font-weight: 300; font-size: 0.92rem; }

/* ============================================================
   GUARANTEES (feature list)
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem) clamp(2.5rem, 5vw, 5rem); }
.feature { display: flex; gap: 1.3rem; padding-block: 1.4rem; border-top: 1px solid var(--border-l); }
.feature__ic { flex: none; width: 40px; height: 40px; color: var(--gold-deep); }
.feature__ic svg { width: 100%; height: 100%; stroke-width: 1.2; }
.feature h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.94rem; color: var(--on-light-mut); font-weight: 300; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.4rem); }
.quote { background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; }
.quote .stars { color: var(--gold-soft); letter-spacing: 0.2em; font-size: 0.85rem; margin-bottom: 1.3rem; }
.quote blockquote { font-family: 'Playfair Display', serif; font-size: 1.2rem; line-height: 1.5; color: var(--on-dark); font-style: italic; }
.quote__by { margin-top: auto; padding-top: 1.6rem; display: flex; align-items: center; gap: 0.9rem; }
.quote__av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); display: grid; place-items: center; font-family: 'Playfair Display', serif; color: var(--ink); font-size: 1rem; }
.quote__by b { display: block; color: var(--cream); font-size: 0.92rem; font-weight: 600; }
.quote__by span { font-size: 0.74rem; color: var(--on-dark-mut); letter-spacing: 0.06em; }

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta { position: relative; overflow: hidden; }
.cta__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.cta h2 { font-size: var(--fs-h2); margin: 1.2rem 0 1.5rem; }
.cta .contact-list { margin-top: 2.5rem; display: grid; gap: 1.3rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item svg { flex: none; width: 22px; height: 22px; color: var(--gold-soft); margin-top: 3px; stroke-width: 1.4; }
.contact-item b { display: block; color: var(--cream); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.25rem; }
.contact-item p { color: var(--on-dark-mut); font-weight: 300; }

/* Form */
.form { background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.8rem); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-mut); margin-bottom: 0.55rem; }
.field label .req { color: var(--gold-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.95rem 1.1rem;
  background: rgba(255,255,255,0.02); border: 1px solid var(--ink-3); border-radius: var(--radius);
  color: var(--on-dark); font: inherit; font-size: 0.95rem;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(185,174,158,0.5); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(176,138,62,0.06); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23B08A3E' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; }
.field textarea { resize: vertical; min-height: 110px; }
.field .help { font-size: 0.74rem; color: var(--on-dark-mut); margin-top: 0.5rem; }
.field .error { font-size: 0.76rem; color: #ef8d7a; margin-top: 0.45rem; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #c4503a; }
.field.invalid .error { display: block; }
.form button[type="submit"] { width: 100%; margin-top: 0.5rem; }
.form__ok { display: none; text-align: center; padding: 1rem; color: var(--gold-soft); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem; }
.form.sent .form__ok { display: block; }
.form.sent .form__body { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0E0C0A; color: var(--on-dark-mut); padding-block: clamp(3.5rem, 6vw, 5.5rem) 2.5rem; border-top: 1px solid var(--ink-3); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--ink-3); }
.footer .brand { gap: 1rem; }
.footer .brand__emblem { width: 62px; height: 62px; }
.footer .brand .mark { font-size: 1.25rem; }
.footer__col h4 { font-family: 'Inter'; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.2rem; font-weight: 600; }
.footer__col a, .footer__col p { display: block; font-size: 0.9rem; margin-bottom: 0.7rem; transition: color var(--t-fast) var(--ease); font-weight: 300; }
.footer__col a:hover { color: var(--cream); }
.footer__about p { max-width: 34ch; margin-top: 1.4rem; font-size: 0.92rem; font-weight: 300; }
.socials { display: flex; gap: 0.7rem; margin-top: 1.6rem; }
.socials a { width: 40px; height: 40px; border: 1px solid var(--ink-3); border-radius: 50%; display: grid; place-items: center; color: var(--on-dark-mut); transition: var(--t-fast) var(--ease); }
.socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 2rem; font-size: 0.78rem; }
.footer__bottom a { margin-left: 1.5rem; }
.footer__credit {
  text-align: center; margin-top: 1.8rem; padding-top: 1.4rem;
  border-top: 1px solid var(--ink-3);
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--on-dark-mut);
}
.footer__credit a {
  font-family: 'Playfair Display', serif; font-style: italic; text-transform: none;
  letter-spacing: 0.01em; font-size: 1rem; color: var(--gold-soft); margin-left: 0.4rem;
  transition: color var(--t-fast) var(--ease);
}
.footer__credit a:hover { color: var(--cream); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 130ms; }
.reveal[data-delay="2"] { transition-delay: 260ms; }
.reveal[data-delay="3"] { transition-delay: 390ms; }
.reveal[data-delay="4"] { transition-delay: 520ms; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(14,11,9,0.97);
  backdrop-filter: blur(8px); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity var(--t-med) var(--ease), visibility var(--t-med);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--on-dark); }
.mobile-menu a:hover { color: var(--gold-soft); }
.mobile-menu .btn { margin-top: 1.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .puppy-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .cta__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .site-header .brand .mark { font-size: 0.92rem; }
  .endorse__name { font-size: 1.3rem; }
}
@media (max-width: 560px) {
  .site-header .endorse { display: none; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .features { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .lang-switch { padding: 2px; gap: 0; }
  .lang-switch button { padding: 0.35rem 0.45rem; font-size: 0.6rem; letter-spacing: 0.04em; }
  .puppy-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
  .hero__scroll { display: none; }
}

/* ---------- WhatsApp flotante · elegante ---------- */
.wa-fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  height: 56px;
  width: 56px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--gold-soft);
  border: 1px solid rgba(201, 168, 103, 0.5);
  box-shadow: 0 14px 34px -12px rgba(20, 17, 15, 0.6);
  overflow: hidden;
  white-space: nowrap;
  animation: waIn 0.5s var(--ease) 0.8s both;
  transition: width 0.4s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-fab svg { width: 26px; height: 26px; flex: none; margin: 0 15px; }
.wa-fab__label {
  font-size: 0.8rem; letter-spacing: 0.02em; font-weight: 500;
  padding-right: 22px; opacity: 0;
  transition: opacity 0.25s var(--ease);
}
@media (hover: hover) {
  .wa-fab:hover {
    width: auto;
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
    box-shadow: 0 18px 40px -12px rgba(176, 138, 62, 0.55);
  }
  .wa-fab:hover .wa-fab__label { opacity: 1; }
}
@keyframes waIn {
  from { opacity: 0; transform: translateY(12px) scale(0.9); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab { animation: none; }
}

/* ============================================================
   NIVEL 2 · Refinamiento de lujo (Rolex/LV-inspired)
   ============================================================ */

/* --- 1 · Hero cinematográfico: entrada lenta de la imagen --- */
.hero__media { animation: heroMediaIn 2s var(--ease) both; }
@keyframes heroMediaIn { from { opacity: 0; } to { opacity: 1; } }

/* --- 3 · Titular del hero: revelado por líneas con máscara --- */
h1 .line { display: block; overflow: hidden; }
h1 .line__in { display: block; transform: translateY(112%); transition: transform 1100ms var(--ease); }
.reveal.in-view .line__in { transform: none; }
.reveal.in-view .line:nth-child(1) .line__in { transition-delay: 80ms; }
.reveal.in-view .line:nth-child(2) .line__in { transition-delay: 240ms; }

/* --- 3b · Titulares de sección: máscara ascendente --- */
.section-head.reveal h2, .split__copy.reveal h2 {
  clip-path: inset(0 0 100% 0);
  transform: translateY(26px);
  transition: clip-path 950ms var(--ease) 120ms, transform 950ms var(--ease) 120ms;
}
.section-head.reveal.in-view h2, .split__copy.reveal.in-view h2 {
  clip-path: inset(-20% -6% -20% -6%);
  transform: none;
}

/* --- 2 · Costura dorada entre secciones --- */
.section--dark::before, .section--cream2::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(340px, 62%); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.55; pointer-events: none;
}

/* --- 5 · Hilo de progreso de lectura --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 300; pointer-events: none;
}
.scroll-progress i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
  transform-origin: 0 50%; transform: scaleX(0);
}

/* --- 7 · Filete dorado en fichas al pasar el ratón --- */
.puppy__media .portrait::after { transition: border-color 600ms var(--ease); }
.puppy:hover .puppy__media .portrait::after { border-color: rgba(201, 168, 103, 0.85); }

