/* =============================================================
   PERROS DEL MONO — styles.css
   Archetype: Bold Street — cartel callejero, taller mecánico
   Paleta: negro carbón · rojo intenso · verde lima · hueso
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:         #0D0D0D;
  --bg-2:       #141414;
  --bg-3:       #1A1A1A;
  --red:        #E01F1F;
  --red-2:      #B31818;
  --lime:       #4CAF1A;
  --cream:      #F5F0E8;
  --cream-2:    #B8B0A0;
  --cream-3:    #5A5650;
  --line:       rgba(245,240,232,.1);

  --display:    'Bebas Neue', 'Impact', sans-serif;
  --sans:       'Manrope', system-ui, sans-serif;
  --mono:       'Space Mono', 'Courier New', monospace;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --gutter:     clamp(1rem, 5vw, 4rem);
  --max:        1400px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.0; letter-spacing: 0; }
::selection { background: var(--red); color: var(--cream); }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 4px; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Reveal defensivo — CRÍTICO: si el elemento tiene data-split, nunca queda invisible */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* Defensive: elementos con ambos atributos nunca quedan ocultos */
[data-reveal][data-split] {
  opacity: 1;
  transform: none;
}

/* =============================================================
   4. Tipografía display
   ============================================================= */
.t-display {
  font-family: var(--display);
  font-size: clamp(3.5rem, 12vw, 11rem);
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.t-display--xl {
  font-family: var(--display);
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: .88;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.t-display--sm {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 5rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .95;
}

.t-mono {
  font-family: var(--mono);
  font-size: clamp(.65rem, 1.2vw, .85rem);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.t-price {
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: .02em;
}

/* =============================================================
   5. Componentes — Botones
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .85em 1.8em;
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background .2s var(--ease-out), color .2s var(--ease-out), transform .15s var(--ease-bounce), box-shadow .2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 0 0 0 rgba(224,31,31,0);
}
.btn-primary:hover {
  background: #ff2a2a;
  box-shadow: 0 8px 32px rgba(224,31,31,.45);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,240,232,.4);
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(245,240,232,.08);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1fb958;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
}

/* =============================================================
   6. Custom cursor (desktop only)
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }

.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px; margin: -3px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 30px; height: 30px; margin: -15px;
  border: 1.5px solid rgba(224,31,31,.6);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  transition: width .3s var(--ease-out), height .3s var(--ease-out), margin .3s var(--ease-out), border-color .2s;
}
.cursor.is-interactive .cursor-ring {
  width: 50px; height: 50px; margin: -25px;
  border-color: var(--lime);
}
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   7. Scroll progress bar
   ============================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 200;
  background: rgba(245,240,232,.06);
  pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--red), var(--lime));
  transform-origin: 0 0;
  transform: scaleX(0);
  transition: transform .08s linear;
}

/* =============================================================
   8. Textura asfalto
   ============================================================= */
.asphalt-texture::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* =============================================================
   9. Navegación
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s var(--ease-soft), backdrop-filter .4s;
}

.nav.is-scrolled {
  background: rgba(13,13,13,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-logo {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: none;
  list-style: none;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
}
@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links .nav-num { color: var(--red); margin-right: .3em; }

.nav-cta {
  background: var(--red);
  color: var(--cream);
  padding: .55em 1.3em;
  font-family: var(--display);
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: #ff2a2a;
  box-shadow: 0 4px 20px rgba(224,31,31,.4);
}

/* Burger */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 960px) { .nav-burger { display: none; } }

/* Mobile menu */
.nav-mobile {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease-out);
}
.nav-mobile.is-open { opacity: 1; pointer-events: auto; }
.nav-mobile a {
  font-family: var(--display);
  font-size: clamp(2rem, 10vw, 4rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--cream);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--red); }

/* =============================================================
   10. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: opacity .9s var(--ease-soft), clip-path 1.1s var(--ease-soft);
  /* Safety: auto-hide si JS falla */
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}

.splash-letters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 .02em;
  overflow: hidden;
}

.splash-word {
  display: flex;
  margin: 0 .2em;
}

.splash-char {
  font-family: var(--display);
  font-size: clamp(2.5rem, 10vw, 8rem);
  color: var(--red);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  line-height: .95;
}
.splash-char.is-in {
  opacity: 1;
  transform: none;
}

.splash-line {
  width: 0;
  height: 2px;
  background: var(--lime);
  margin-top: 1.5rem;
  transition: width 1.5s var(--ease-out);
}
.splash-line.is-growing { width: clamp(120px, 30vw, 280px); }

.splash-tagline {
  font-family: var(--mono);
  font-size: clamp(.6rem, 1.5vw, .75rem);
  color: var(--cream-3);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: .8rem;
  opacity: 0;
  transition: opacity .6s .3s;
}
.splash-tagline.is-in { opacity: 1; }

/* =============================================================
   11. Marca lateral fija
   ============================================================= */
.side-brand {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .4rem .8rem;
  pointer-events: none;
}
.side-brand-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: sidePulse 2s ease-in-out infinite;
}
@keyframes sidePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.6); }
}
.side-brand-text {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .15em;
  color: var(--cream-3);
  text-transform: uppercase;
  white-space: nowrap;
}

/* =============================================================
   12. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg-texture {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(224,31,31,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(76,175,26,.04) 0%, transparent 50%);
  z-index: 0;
}

/* Noise grain */
.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Logo badge SVG en hero */
.hero-badge {
  position: absolute;
  right: clamp(2rem, 10vw, 8rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(120px, 20vw, 280px);
  opacity: .08;
  animation: badgePulse 6s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
@keyframes badgePulse {
  0%, 100% { opacity: .08; transform: translateY(-50%) scale(1); }
  50% { opacity: .13; transform: translateY(-50%) scale(1.04); }
}

.hero-content {
  position: relative; z-index: 3;
  padding-top: 5rem;
  width: 100%;
  padding-inline: var(--gutter);
  max-width: var(--max);
  margin-inline: auto;
}

.hero-kicker {
  font-family: var(--mono);
  font-size: clamp(.65rem, 1.5vw, .8rem);
  letter-spacing: .15em;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.hero-kicker::before {
  content: "";
  display: block;
  width: 2rem; height: 1px;
  background: var(--lime);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(4.5rem, 15vw, 13rem);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--cream);
  margin-bottom: .15em;
}
.hero-title .line-2 {
  color: var(--red);
  display: block;
  padding-left: clamp(1rem, 5vw, 4rem);
}

.hero-tagline {
  font-family: var(--sans);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--cream-2);
  font-weight: 300;
  letter-spacing: .04em;
  margin-bottom: 2.5rem;
  margin-top: .8rem;
  padding-left: clamp(1rem, 5vw, 4rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-left: clamp(1rem, 5vw, 4rem);
}

/* =============================================================
   13. Marquee
   ============================================================= */
.marquee-wrap {
  overflow: hidden;
  background: var(--red);
  padding: .75rem 0;
  position: relative;
  z-index: 10;
}
.marquee-wrap.is-dark {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-wrap.is-lime {
  background: var(--lime);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee-track.reverse {
  animation-direction: reverse;
  animation-duration: 22s;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--display);
  font-size: clamp(.85rem, 2.2vw, 1.15rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding-inline: 1.5em;
  color: var(--cream);
  flex-shrink: 0;
}
.marquee-wrap.is-dark .marquee-item { color: var(--cream-3); }
.marquee-wrap.is-lime .marquee-item { color: var(--bg); }

.marquee-sep {
  color: rgba(245,240,232,.35);
  padding-inline: .3em;
}

/* =============================================================
   14. Sección El Negocio (01)
   ============================================================= */
.section-negocio {
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.section-num {
  position: absolute;
  top: -1rem; left: -.05em;
  font-family: var(--display);
  font-size: clamp(8rem, 22vw, 18rem);
  color: rgba(224,31,31,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.negocio-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--max);
  margin-inline: auto;
}
@media (min-width: 960px) {
  .negocio-grid {
    grid-template-columns: 3fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.negocio-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.negocio-title .accent { color: var(--red); }

.negocio-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--cream-2);
  line-height: 1.7;
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

.negocio-defs {
  display: grid;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.def-item {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1.2rem;
  align-items: start;
}
.def-label {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--cream-3);
  text-transform: uppercase;
  padding-top: .15em;
  min-width: 80px;
}
.def-val {
  font-size: .95rem;
  color: var(--cream);
  line-height: 1.4;
}
.def-val a { color: var(--lime); }
.def-val a:hover { text-decoration: underline; }

.negocio-aside {
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.aside-badge {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.aside-stat {
  margin-bottom: 1.5rem;
}
.aside-stat-num {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--cream);
  line-height: 1;
}
.aside-stat-label {
  font-family: var(--mono);
  font-size: .6rem;
  color: var(--cream-3);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .2rem;
}

/* =============================================================
   15. Los Perros (sección 02) — tarjetas
   ============================================================= */
.section-perros {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
}

.perros-header {
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.perros-section-label {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--lime);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.perros-section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: .01em;
  line-height: .95;
}

.perros-progress {
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--cream-3);
  letter-spacing: .12em;
}
.perros-progress .current { color: var(--red); }

/* Desktop: pinned horizontal scroll */
.showcase {
  position: relative;
}
.showcase-track {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 0 var(--gutter) clamp(2rem, 4vw, 3rem);
  /* Mobile: horizontal scroll */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.showcase-track::-webkit-scrollbar { display: none; }

/* Tarjeta de perro */
.dog-card {
  flex: 0 0 clamp(280px, 85vw, 440px);
  min-height: clamp(480px, 70vh, 640px);
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color .3s, box-shadow .3s;
}
.dog-card:hover {
  border-color: var(--card-accent, var(--red));
  box-shadow: 0 0 60px rgba(var(--card-accent-rgb, 224,31,31), .15);
}

/* Número año como marca de agua */
.dog-card-year {
  position: absolute;
  top: -.1em; left: -.05em;
  font-family: var(--display);
  font-size: clamp(6rem, 15vw, 9rem);
  color: rgba(245,240,232,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* SVG ilustración */
.dog-illustration {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: clamp(140px, 50%, 200px);
  opacity: .7;
  pointer-events: none;
}
.dog-illustration path,
.dog-illustration circle,
.dog-illustration rect,
.dog-illustration polyline,
.dog-illustration line {
  stroke-dasharray: var(--path-length, 1000);
  stroke-dashoffset: var(--path-length, 1000);
  transition: stroke-dashoffset 1.5s var(--ease-soft);
}
.dog-card.is-drawn .dog-illustration path,
.dog-card.is-drawn .dog-illustration circle,
.dog-card.is-drawn .dog-illustration rect,
.dog-card.is-drawn .dog-illustration polyline,
.dog-card.is-drawn .dog-illustration line {
  stroke-dashoffset: 0;
}

.dog-card-content {
  position: relative; z-index: 2;
}

.dog-tag {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3em .8em;
  border: 1px solid var(--card-accent, var(--red));
  color: var(--card-accent, var(--red));
  display: inline-block;
  margin-bottom: 1rem;
}

.dog-name {
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--cream);
  line-height: .95;
  margin-bottom: .3rem;
}

.dog-price {
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--card-accent, var(--red));
  letter-spacing: .03em;
  margin-bottom: 1rem;
}
.dog-price-prefix {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--cream-3);
  letter-spacing: .1em;
  vertical-align: middle;
  margin-right: .3em;
}

.dog-ingredients {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1rem;
}
.dog-ing-item {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25em .7em;
  background: rgba(245,240,232,.06);
  color: var(--cream-2);
  border: 1px solid rgba(245,240,232,.1);
}

.dog-desc {
  font-size: .9rem;
  color: var(--cream-2);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  max-width: 42ch;
}

.dog-cta {
  font-family: var(--display);
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--card-accent, var(--red));
  display: flex;
  align-items: center;
  gap: .5em;
  transition: gap .2s var(--ease-out);
}
.dog-cta:hover { gap: .9em; }

/* =============================================================
   16. Sección Cómo Pedir (03)
   ============================================================= */
.section-pedir {
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.pedir-inner {
  max-width: var(--max);
  margin-inline: auto;
}

.pedir-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  text-transform: uppercase;
  color: var(--cream);
  line-height: .95;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: .01em;
}
.pedir-title .accent { color: var(--red); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 720px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-item {
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.step-item:hover {
  border-color: rgba(224,31,31,.4);
  background: rgba(224,31,31,.04);
}

.step-num {
  font-family: var(--display);
  font-size: 4rem;
  color: rgba(224,31,31,.15);
  line-height: 1;
  margin-bottom: .5rem;
  position: absolute;
  top: .5rem; right: 1rem;
  pointer-events: none;
}

.step-icon {
  width: 48px; height: 48px;
  margin-bottom: 1rem;
  color: var(--red);
}

.step-title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: .03em;
  line-height: .95;
  margin-bottom: .6rem;
}

.step-desc {
  font-size: .875rem;
  color: var(--cream-3);
  line-height: 1.55;
}

.pedir-cta-block {
  text-align: center;
  padding: 3rem;
  border: 1px solid var(--line);
  background: var(--bg-3);
}

.pedir-cta-block .pedir-main-cta {
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 1.1em 2.5em;
  background: var(--red);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  transition: background .2s, box-shadow .2s, transform .15s var(--ease-bounce);
  margin-bottom: 1.5rem;
}
.pedir-cta-block .pedir-main-cta:hover {
  background: #ff2a2a;
  box-shadow: 0 12px 48px rgba(224,31,31,.5);
  transform: translateY(-3px);
}

.pedir-alt-link {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--cream-3);
  text-transform: uppercase;
  display: block;
  transition: color .2s;
}
.pedir-alt-link:hover { color: var(--cream); }

/* =============================================================
   17. Galería (04) — Marquee visual
   ============================================================= */
.section-galeria {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: var(--bg);
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.galeria-header {
  padding-inline: var(--gutter);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.gallery-marquee-row {
  display: flex;
  gap: clamp(.5rem, 1.5vw, 1rem);
  animation: marqueeScroll 20s linear infinite;
  will-change: transform;
  margin-bottom: clamp(.5rem, 1.5vw, 1rem);
}
.gallery-marquee-row.row-2 {
  animation-direction: reverse;
  animation-duration: 27s;
}

.gallery-item {
  flex-shrink: 0;
  width: clamp(160px, 28vw, 300px);
  aspect-ratio: 4/3;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-soft);
}
.gallery-item:hover img { transform: scale(1.08); }

/* Tarjetas arte puro — sin texto, patrones visuales con los colores de la marca */
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item::before,
.gallery-item::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

/* Rojo intenso + perro caliente line art */
.gallery-item.gal-red-hot {
  background: #1A0808;
}
.gallery-item.gal-red-hot::before {
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 60%, rgba(224,31,31,.25) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(224,31,31,.04) 18px,
      rgba(224,31,31,.04) 19px
    );
}
.gallery-item.gal-red-hot::after {
  inset: 15% 20%;
  background:
    /* silueta perro caliente — pan superior */
    radial-gradient(ellipse 80% 30% at 50% 28%, rgba(245,240,232,.18) 0%, transparent 100%),
    /* salchicha */
    radial-gradient(ellipse 70% 20% at 50% 50%, rgba(224,31,31,.5) 0%, transparent 100%),
    /* pan inferior */
    radial-gradient(ellipse 80% 30% at 50% 74%, rgba(245,240,232,.12) 0%, transparent 100%);
}

/* Verde lima + geometría angular */
.gallery-item.gal-lime-geo {
  background: #080F06;
}
.gallery-item.gal-lime-geo::before {
  inset: 0;
  background:
    conic-gradient(from 45deg at 30% 70%, rgba(76,175,26,.15) 0deg, transparent 90deg, rgba(76,175,26,.08) 180deg, transparent 270deg),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 22px,
      rgba(76,175,26,.05) 22px,
      rgba(76,175,26,.05) 23px
    );
}
.gallery-item.gal-lime-geo::after {
  inset: 20%;
  border: 1.5px solid rgba(76,175,26,.2);
  transform: rotate(15deg);
}

/* Negro profundo + onda */
.gallery-item.gal-dark-wave {
  background: #111111;
}
.gallery-item.gal-dark-wave::before {
  inset: 0;
  background:
    radial-gradient(ellipse 120% 40% at 50% 30%, rgba(245,240,232,.06) 0%, transparent 60%),
    radial-gradient(ellipse 120% 40% at 50% 70%, rgba(224,31,31,.1) 0%, transparent 60%);
}
.gallery-item.gal-dark-wave::after {
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 12px,
    rgba(245,240,232,.025) 12px,
    rgba(245,240,232,.025) 13px
  );
}

/* Rojo + espiral concentrica */
.gallery-item.gal-red-spiral {
  background: #200808;
}
.gallery-item.gal-red-spiral::before {
  inset: -10%;
  background:
    radial-gradient(circle 45% at 50% 50%, transparent 28%, rgba(224,31,31,.12) 30%, transparent 33%,
      rgba(224,31,31,.09) 36%, transparent 39%,
      rgba(224,31,31,.06) 43%, transparent 46%,
      rgba(224,31,31,.04) 50%, transparent 53%);
}
.gallery-item.gal-red-spiral::after {
  inset: 35%;
  background: radial-gradient(circle, rgba(224,31,31,.6) 0%, rgba(224,31,31,.2) 50%, transparent 70%);
  border-radius: 50%;
}

/* Hueso/crema + cuadrícula fina */
.gallery-item.gal-cream-grid {
  background: #0F0E0C;
}
.gallery-item.gal-cream-grid::before {
  inset: 0;
  background:
    linear-gradient(rgba(245,240,232,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,232,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.gallery-item.gal-cream-grid::after {
  inset: 25% 20%;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245,240,232,.07) 0%, transparent 70%);
  border: 1px solid rgba(245,240,232,.1);
}

/* =============================================================
   18. Contacto & Footer (05)
   ============================================================= */
.section-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.footer-marquee-title {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.footer-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 15s linear infinite;
  padding: 1.2rem 0;
}
.footer-marquee-item {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 5rem);
  color: rgba(245,240,232,.06);
  text-transform: uppercase;
  padding-inline: 1em;
  flex-shrink: 0;
}

.footer-body {
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 720px) {
  .footer-body { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand-col .footer-logo {
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1;
  margin-bottom: .8rem;
}
.footer-brand-col .footer-logo span { color: var(--red); }
.footer-brand-col .footer-tagline {
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--cream-3);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col p,
.footer-col address {
  font-size: .875rem;
  color: var(--cream-2);
  line-height: 1.7;
  font-style: normal;
}
.footer-col a {
  color: var(--lime);
  transition: color .2s;
}
.footer-col a:hover { color: var(--cream); }

/* Maps iframe */
.footer-map {
  grid-column: 1 / -1;
}
.footer-map iframe {
  width: 100%;
  height: clamp(200px, 30vw, 320px);
  border: 0;
  filter: invert(.85) hue-rotate(180deg);
  opacity: .75;
}

.footer-cta-section {
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: var(--max);
  margin-inline: auto;
}

.footer-final-cta {
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .9em 2em;
  background: var(--red);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: .5em;
  transition: background .2s, box-shadow .2s, transform .15s var(--ease-bounce);
}
.footer-final-cta:hover {
  background: #ff2a2a;
  box-shadow: 0 8px 32px rgba(224,31,31,.4);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 1.5rem var(--gutter);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--max);
  margin-inline: auto;
}
.footer-copy {
  font-family: var(--mono);
  font-size: .6rem;
  color: var(--cream-3);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-back {
  font-family: var(--mono);
  font-size: .6rem;
  color: var(--cream-3);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}
.footer-back:hover { color: var(--cream); }

/* =============================================================
   19. Effects — tilt, hover card
   ============================================================= */
.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }

/* =============================================================
   20. Responsive
   ============================================================= */
@media (min-width: 960px) {
  /* Desktop: showcase pinned + horizontal scroll via JS */
  .showcase.is-pinned {
    height: 100vh;
    display: flex;
    align-items: center;
  }
  .showcase.is-pinned .showcase-track {
    overflow: visible;
    padding-bottom: 0;
  }
}

@media (max-width: 539px) {
  .hero-title { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-badge { display: none; }
  .side-brand { display: none; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* =============================================================
   21. Reduced motion (SOLO efectos intrusivos)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .splash-char,
  .splash-line,
  .splash-tagline { transition: none; }
  .hero-badge { animation: none; }
  @keyframes sidePulse { 0%, 100% { opacity: 1; transform: scale(1); } }
  .gallery-marquee-row,
  .marquee-track,
  .footer-marquee-track { animation-play-state: paused; }
}

/* =============================================================
   22. Scrollbar custom
   ============================================================= */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }
