/* =========================================================
   Quincé — estilos globales
   Paleta: verde #435d47 (principal) · crema #f5ecd2 · vino #7b263f (acento)
   Fuentes: Bobby Jones Soft (títulos) · Biro Script (frases) · Montserrat (texto)
   ========================================================= */

@font-face {
  font-family: "Bobby Jones Soft";
  src: url("../fonts/BobbyJonesSoft.otf") format("opentype");
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Biro Script";
  src: url("../fonts/BiroScript.otf") format("opentype"),
       url("../fonts/BiroScript.ttf") format("truetype");
  font-weight: normal; font-style: normal; font-display: swap;
}

:root {
  /* Paleta de marca (HEX oficiales del brand toolkit) */
  --green:    #405B46;  /* Organic Emerald */
  --green-d:  #2F4535;  /* verde oscuro (hero / hover) */
  --green-l:  #4D6A52;
  --cream:    #F2ECE0;  /* Warm White */
  --cream-l:  #F8F4EA;  /* crema clara (superficies) */
  --brown:    #7C594B;  /* Brown Cortex */
  --capuccino:#BBA08E;  /* Capuccino */
  --wine:     #7b263f;  /* acento (delantales / reservas) */
  --wine-d:   #611d30;

  /* Roles */
  --bg:      var(--cream);
  --surface: var(--cream-l);
  --text:    #2b3f31;   /* verde muy oscuro (texto, nunca negro) */
  --muted:   #556a51;   /* verde apagado (secundario) */
  --line:    #e3dac6;   /* bordes sobre crema */
  --accent:  var(--wine);
  --on-dark: var(--cream);

  /* Tipografía */
  --display: "Bobby Jones Soft", "Georgia", serif;
  --script:  "Biro Script", "Segoe Script", "Brush Script MT", cursive;
  --sans:    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Redondez */
  --r-btn:   50px;
  --r-card:  20px;
  --r-input: 14px;

  /* Medidas */
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --header-h: 80px;
}

/* ---------- Reset ligero ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: url("../img/veni/veni-snout-pink.svg") 18 17, auto;
}
/* Hocico rosa también sobre elementos interactivos (enlaces, botones, navegación) */
a, button, .btn, .btn--ghost, .nav-toggle, .carousel__nav, .brand, label, summary, [role="button"], select {
  cursor: url("../img/veni/veni-snout-pink.svg") 18 17, pointer !important;
}
input, textarea { cursor: text !important; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); font-weight: normal; line-height: 1.06; margin: 0 0 .32em; letter-spacing: .01em; }
p { margin: 0 0 .75em; }

/* Accesibilidad */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--green); color: var(--on-dark); padding: .6rem 1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

/* ---------- Utilidades ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 0 0 .6rem;
}
.script { font-family: var(--script); font-weight: normal; }
.section { padding-block: clamp(2.1rem, 5vw, 3.6rem); }
.section--tight { padding-block: clamp(1.3rem, 3.2vw, 2.2rem); }
.center { text-align: center; }
.divider { width: 54px; height: 2px; background: var(--wine); border: 0; margin: .85rem 0; border-radius: 2px; }
.center .divider { margin-inline: auto; }

/* ---------- Botones (píldora) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; padding: .95rem 2rem; border-radius: var(--r-btn); cursor: pointer;
  border: 1.5px solid var(--wine); background: var(--wine); color: var(--cream);
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.btn:hover { background: var(--wine-d); border-color: var(--wine-d); }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--wine); border-color: var(--wine); }
.btn--ghost:hover { background: var(--wine); color: var(--cream); }
/* Botones sobre fondos de color (hero, franjas) */
.on-color .btn { background: var(--cream); color: var(--green); border-color: var(--cream); }
.on-color .btn:hover { background: #fff; border-color: #fff; }
.on-color .btn--ghost { background: transparent; color: var(--cream); border-color: rgba(245,236,210,.55); }
.on-color .btn--ghost:hover { background: var(--cream); color: var(--green); border-color: var(--cream); }

/* =========================================================
   Header (verde, logo blanco)
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(123,38,63,.13); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand img { height: 42px; width: auto; display: block; }
.brand { display: inline-flex; align-items: center; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.1rem); }
.nav a.navlink {
  font-family: var(--display); font-size: 1.14rem; letter-spacing: .015em; text-transform: none;
  color: var(--green); font-weight: normal; padding: .32rem .7rem; position: relative; border-radius: 50px;
  transition: color .2s, background .2s, transform .2s;
}
.nav a.navlink:hover { color: var(--wine); background: rgba(123,38,63,.12); transform: translateY(-1px); }
.nav a.navlink[aria-current="page"] { color: var(--wine); }
.nav a.navlink[aria-current="page"]::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: -1px; height: 2px; background: var(--wine); border-radius: 2px;
}
.nav .btn { padding: .7rem 1.5rem; background: var(--wine); color: var(--cream); border-color: var(--wine); }
.nav .btn:hover { background: var(--wine-d); color: var(--cream); border-color: var(--wine-d); }

/* Selector de idioma */
.lang-switch { display: inline-flex; gap: .1rem; align-items: center; font-size: .72rem; letter-spacing: .1em; color: var(--muted); }
.lang-switch a { padding: .2rem .35rem; color: var(--muted); font-weight: 600; text-transform: uppercase; }
.lang-switch a:hover { color: var(--wine); }
.lang-switch a[aria-current="true"] { color: var(--wine); border-bottom: 2px solid var(--wine); }
.lang-switch .sep { opacity: .5; }

/* Menú móvil */
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .5rem; margin: -.5rem;
  color: var(--green);
}
.nav-toggle svg { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.6rem;
    border-radius: 0 0 22px 22px; box-shadow: 0 12px 24px rgba(123,38,63,.12);
    transform: translateY(-120%); transition: transform .32s ease; visibility: hidden;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav a.navlink { padding: .8rem .7rem; border-bottom: 1px solid var(--line); font-size: 1.4rem; border-radius: 0; }
  .nav a.navlink[aria-current="page"]::after { display: none; }
  .nav .btn { margin-top: 1.1rem; width: 100%; }
  .lang-switch { margin-top: 1rem; justify-content: flex-start; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden; background: var(--green-d);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.92); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(31,44,30,.18) 0%, rgba(31,44,30,.12) 40%, rgba(31,44,30,.5) 100%);
}
.hero__inner {
  position: relative; z-index: 2; padding: 3rem clamp(1rem,4vw,3rem); color: var(--text);
}
.hero__logo { width: clamp(230px, 42vw, 370px); margin: 0 auto 1.1rem; filter: drop-shadow(0 2px 7px rgba(20,28,18,.32)); position: relative; z-index: 0; }
/* El texto por delante del logo (que pasa por detrás al bajar) */
.hero__tagline, .hero__meta, .hero__cta { position: relative; z-index: 1; }
.hero__tagline {
  font-family: var(--script); font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: normal;
  max-width: 26ch; margin: 0 auto 1rem; color: #fff; line-height: 1.08;
  text-shadow: 0 2px 12px rgba(20,28,18,.55), 0 1px 3px rgba(20,28,18,.45);
}
.hero__meta {
  font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; color: #fff;
  margin-bottom: 1.5rem; font-weight: 600; text-shadow: 0 1px 8px rgba(20,28,18,.55);
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__cta .btn { box-shadow: 0 4px 14px rgba(20,28,18,.34); }
.hero__cta .btn--ghost { background: rgba(31,44,30,.28); color: var(--cream); border-color: rgba(245,236,210,.6); }
.hero__cta .btn--ghost:hover { background: var(--cream); color: var(--green); border-color: var(--cream); }
.scroll-hint {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--green); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  display: inline-flex; flex-direction: column; align-items: center; gap: .4rem;
}
.scroll-hint span { animation: bob 1.8s ease-in-out infinite; font-size: 1rem; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* =========================================================
   Bloques de contenido
   ========================================================= */
.lead {
  font-family: var(--script); font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1.18;
  color: var(--green); max-width: 24ch; font-weight: normal;
}
.section h2 { font-size: clamp(2rem, 4.2vw, 3rem); color: var(--green); }
.prose { max-width: 62ch; color: var(--muted); }
.prose.large { font-size: 1.06rem; }
.prose p { margin-bottom: .8em; }

/* Pilares producto / cocina / vino (escalonados, sin cajas) */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3.5vw, 3rem); }
.pillar { background: transparent; border: 0; border-top: 2px solid var(--wine); padding: 1rem .2rem 0; }
.pillar:nth-child(2) { margin-top: 2.4rem; }
.pillar:nth-child(3) { margin-top: 4.8rem; }
.pillar h3 { font-size: 1.75rem; color: var(--green); margin-bottom: .18em; }
.pillar p { color: var(--muted); margin: 0; font-size: .98rem; }
.pillar .num { font-family: var(--script); color: var(--wine); font-size: 2.4rem; display: block; margin-bottom: 0; line-height: .9; }
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } .pillar:nth-child(2), .pillar:nth-child(3) { margin-top: 0; } }

/* Toques desenfadados */
.tilt-l { transform: rotate(-2.2deg); }
.tilt-r { transform: rotate(1.8deg); }
.script-h { font-family: var(--script) !important; letter-spacing: 0; }
.section--tint { background: #ece3cc; }

/* Bloque imagen + texto */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; border-radius: var(--r-card); aspect-ratio: 4/5; object-fit: cover; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 3/2; }
}

/* Info horarios + ubicación */
.infogrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 5vw, 4rem); }
@media (max-width: 720px) { .infogrid { grid-template-columns: 1fr; } }
.infocard h3 { font-size: 1.6rem; color: var(--green); }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .98rem;
}
.hours-list li span:last-child { color: var(--text); text-align: right; }
.hours-list li.closed span:last-child { color: var(--muted); font-style: italic; }

.contact-lines { list-style: none; margin: 0; padding: 0; }
.contact-lines li { padding: .55rem 0; color: var(--muted); }
.contact-lines a { color: var(--text); border-bottom: 1px solid transparent; transition: border-color .2s, color .2s; }
.contact-lines a:hover { color: var(--wine); border-color: var(--wine); }
.contact-lines .label { display: block; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--wine); margin-bottom: .1rem; font-weight: 600; }

/* Galería carta */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-card); }
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Carrusel */
.carousel { position: relative; margin-top: 1rem; }
.carousel__track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: .2rem .1rem 1rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__item { flex: 0 0 auto; width: clamp(240px, 42%, 340px); scroll-snap-align: center; margin: 0; }
.carousel__item img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-card); background: var(--surface); }
.carousel__cap { margin: .55rem .15rem 0; }
.carousel__cap b { display: block; font-family: var(--display); font-weight: normal; font-size: 1.15rem; color: var(--green); line-height: 1.1; }
.carousel__cap span { font-size: .84rem; color: var(--muted); }
.carousel__nav {
  position: absolute; top: calc(50% - 1.4rem); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--cream); color: var(--green); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(47,69,53,.18); transition: background .2s, color .2s, opacity .2s;
}
.carousel__nav:hover { background: var(--green); color: var(--cream); }
.carousel__nav svg { width: 20px; height: 20px; }
.carousel__nav--prev { left: -6px; }
.carousel__nav--next { right: -6px; }
.carousel__nav[disabled] { opacity: .35; cursor: default; }
@media (max-width: 640px) {
  .carousel__nav { display: none; }
  .carousel__item { width: 80%; }
}

/* Nota / cita (manuscrita) */
.note {
  font-family: var(--script); font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--green); line-height: 1.25;
  max-width: 26ch; font-weight: normal;
}

/* Franja de concepto (verde) con Veni */
.concept-band { background: var(--green); color: var(--on-dark); position: relative; }
.concept-band .eyebrow { color: var(--cream); opacity: .82; }
.concept-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 760px) { .concept-grid { grid-template-columns: 1fr; text-align: center; } }
.concept-motto { font-family: var(--script); font-size: clamp(2.6rem, 6.5vw, 4.4rem); color: var(--cream); line-height: .92; margin: 0 0 .35em; }
.concept-band .prose { color: rgba(245,236,210,.9); max-width: 48ch; }
@media (max-width: 760px) { .concept-band .prose { margin-inline: auto; } }
.concept-band .prose b { color: #fff; font-weight: 600; }
.concept-veni { position: relative; display: flex; justify-content: center; }
.concept-veni img { width: clamp(210px, 62%, 310px); filter: drop-shadow(0 12px 26px rgba(38,37,35,.32)); }
/* Veni asomándose (verde sobre crema, arriba de la franja) */
.veni-peek { position: absolute; top: 0; left: clamp(1rem, 14%, 12rem); transform: translateY(-70%); width: 110px; z-index: 5; pointer-events: none; }
.veni-peek img { width: 100%; display: block; animation: peek 4.5s ease-in-out infinite; }
@keyframes peek { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) { .veni-peek img { animation: none; } }
/* Huellas de Veni caminando (paso a paso, tipo gif) */
.paws-divider { display: flex; gap: clamp(.7rem, 2.2vw, 1.3rem); justify-content: center; align-items: center; }
.paws-divider img { width: 24px; height: auto; opacity: 0; animation: pawstep 3.6s ease-in-out infinite; }
.paws-divider img:nth-child(odd)  { transform: translateY(-3px) rotate(-6deg); }
.paws-divider img:nth-child(even) { transform: translateY(9px) rotate(7deg); }
.paws-divider img:nth-child(1) { animation-delay: 0s; }
.paws-divider img:nth-child(2) { animation-delay: .26s; }
.paws-divider img:nth-child(3) { animation-delay: .52s; }
.paws-divider img:nth-child(4) { animation-delay: .78s; }
.paws-divider img:nth-child(5) { animation-delay: 1.04s; }
.paws-divider img:nth-child(6) { animation-delay: 1.3s; }
@keyframes pawstep { 0% { opacity: 0; } 12% { opacity: .6; } 68% { opacity: .55; } 84%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .paws-divider img { opacity: .5; animation: none; } }

/* Franja CTA (vino) */
.cta-band { background: var(--wine); text-align: center; color: var(--on-dark); }
.cta-band .eyebrow { color: var(--cream); opacity: .85; }
.cta-band h2 { color: var(--cream); }
.cta-band .lead { color: var(--cream); }
.cta-band .note { color: var(--cream); }
.cta-band .prose { color: rgba(245,236,210,.88); }

/* Mapa */
.map-embed { width: 100%; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* =========================================================
   Formulario
   ========================================================= */
.form { display: grid; gap: 1.1rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--wine); font-weight: 600; }
.field input, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--text);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-input); padding: .85rem 1.1rem;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .82rem; color: var(--muted); }
.form-status { font-size: .9rem; margin-top: .3rem; min-height: 1.2em; }
.form-status.ok { color: var(--green); font-weight: 600; }
.form-status.err { color: var(--wine); font-weight: 600; }

/* =========================================================
   Footer (verde, logo blanco)
   ========================================================= */
.site-footer { background: var(--green); color: var(--on-dark); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 46px; margin-bottom: 1.2rem; }
.footer-brand p { color: rgba(245,236,210,.85); font-size: .92rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream); font-weight: 600; margin: 0 0 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .6rem; color: rgba(245,236,210,.85); font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(245,236,210,.22);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: rgba(245,236,210,.75); font-size: .8rem;
}
.footer-bottom a { color: rgba(245,236,210,.75); }
.footer-bottom a:hover { color: #fff; }

/* Iconos sociales */
.social { display: inline-flex; gap: 1rem; }
.social a { display:inline-flex; width:40px; height:40px; align-items:center; justify-content:center; border:1px solid rgba(245,236,210,.35); border-radius:50%; color: rgba(245,236,210,.85); transition: background .2s, color .2s, border-color .2s; }
.social a:hover { background: var(--cream); color: var(--green); border-color: var(--cream); }
.social svg { width: 19px; height: 19px; display: block; }

/* =========================================================
   Fondo de membrillo (sutil) + Veni de firma
   ========================================================= */
.cta-band, .concept-band, .site-footer { position: relative; overflow: hidden; }
.cta-band > .wrap, .concept-band > .wrap, .site-footer > .wrap { position: relative; z-index: 2; }
.cta-band::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: min(46vw, 440px); aspect-ratio: 1; right: -6%; bottom: -22%;
  background: url("../img/quince/qz-slice-cream.svg") no-repeat center / contain;
  opacity: .08; transform: rotate(-8deg);
}
.concept-band::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: min(42vw, 420px); aspect-ratio: 1; right: -7%; top: -26%;
  background: url("../img/quince/qz-slice-cream.svg") no-repeat center / contain;
  opacity: .10; transform: rotate(10deg);
}
.site-footer::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 330px; aspect-ratio: 1; left: -80px; top: -70px;
  background: url("../img/quince/qz-slice-cream.svg") no-repeat center / contain;
  opacity: .06; transform: rotate(12deg);
}
/* Veni firmando el pie (ligero, cremita) */
.site-footer::after {
  content: ""; position: absolute; z-index: 1; pointer-events: none;
  right: clamp(.8rem, 4vw, 3rem); bottom: .8rem; width: clamp(64px, 9vw, 96px); height: clamp(46px, 6.5vw, 68px);
  background: url("../img/veni/veni-ears-cream.svg") no-repeat center bottom / contain; opacity: .5;
}
@media (max-width: 620px) { .site-footer::after { display: none; } }

/* Marca de agua de membrillo en secciones crema */
.section--qz { position: relative; overflow: hidden; }
.section--qz > .wrap { position: relative; z-index: 2; }
.section--qz::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: min(36vw, 360px); aspect-ratio: 1; right: -5%; top: -12%;
  background: url("../img/quince/qz-slice.svg") no-repeat center / contain;
  opacity: .05; transform: rotate(6deg);
}
.section--qz.qz-left::before { left: -6%; right: auto; }

/* Semilla-acento junto a un título */
.seed { display: inline-block; width: 15px; height: 22px; vertical-align: -3px;
  background: url("../img/quince/qz-seed-wine.svg") no-repeat center / contain; opacity: .9; }

/* Animación de entrada */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-hint span { animation: none; }
}
